/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Улучшенная типографика */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.025em;
}

p {
    margin-bottom: 1rem;
    color: #475569;
    font-weight: 400;
}

/* Улучшенные описания секций */
.services-description,
.gallery-description {
    text-align: center;
    font-size: 1.2rem;
    color: #1e293b;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Профессиональные иконки */
.benefit-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    position: relative;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.benefit-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

/* Улучшенная шапка */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
}

.logo h1 {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
    margin: 0;
    font-size: inherit;
}

.nav {
    display: flex;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #1e40af;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Революционный главный экран */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #1e40af 75%, #3b82f6 100%);
    color: white;
    padding: 160px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    opacity: 0.8;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    color: #ffffff;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.benefit {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.2rem 2rem;
    border-radius: 16px;
    font-weight: 500;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.benefit:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255,255,255,0.4);
}

.cta-button {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
    color: white;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 30px 60px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 50%, #b91c1c 100%);
}

/* Улучшенные секции */
.section-title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: #0f172a;
    font-weight: 900;
    letter-spacing: -0.025em;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(135deg, #f59e0b 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Революционные проблемы */
.problems {
    padding: 120px 0;
    background: white;
    position: relative;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.problem-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    padding: 3.5rem 3rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

.problem-icon-wrapper {
    margin-bottom: 2.5rem;
}

.problem-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.problem-icon-1 {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 50%, #ef4444 100%);
}

.problem-icon-2 {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #f59e0b 100%);
}

.problem-icon-3 {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 50%, #8b5cf6 100%);
}

.problem-icon-4 {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 50%, #ec4899 100%);
}

.problem-icon::before {
    content: '';
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    opacity: 0.95;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.problem-card h3 {
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.problem-card p {
    color: #374151;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Типы сорняков - Революционный дизайн */
.weeds-types {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.weeds-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.weeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.weed-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 4rem 3rem;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.weed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.weed-card:hover::before {
    opacity: 1;
}

.weed-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.weed-type-icon {
    text-align: center;
    margin-bottom: 2.5rem;
}

.weed-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.weed-card:hover .weed-icon {
    transform: scale(1.15) rotateY(15deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.weed-icon-1 {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 30%, #22c55e 100%);
}

.weed-icon-2 {
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 30%, #06b6d4 100%);
}

.weed-icon-3 {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 30%, #a855f7 100%);
}

.weed-icon-4 {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 30%, #f59e0b 100%);
}

.weed-icon::before {
    content: '';
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.weed-card h3 {
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.025em;
}

.weed-card p {
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 500;
}

.weed-solution {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.weed-card:hover .weed-solution {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border-color: #0ea5e9;
}

.weed-solution strong {
    color: #1e40af;
    font-weight: 700;
}

/* Методы борьбы - Элегантный дизайн */
.methods {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 15% 30%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 85% 70%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.methods-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    padding: 4rem 3.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.method-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.method-item:hover::before {
    opacity: 1;
}

.method-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 32px 64px rgba(0,0,0,0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.method-number {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.method-item:hover .method-number {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.5);
}

.method-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    border-radius: 24px;
}

.method-content h3 {
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.method-content ul {
    margin-top: 1rem;
    padding-left: 0;
    list-style: none;
}

.method-content li {
    margin-bottom: 1rem;
    color: #374151;
    position: relative;
    padding-left: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

.method-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Карта и контакты - Современный дизайн */
.location-map {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.location-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.map-content {
    position: relative;
    z-index: 2;
}

.location-description {
    text-align: center;
    font-size: 1.2rem;
    color: #1e293b;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.contact-details h3 {
    color: #0f172a;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #374151;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1e40af;
}

.work-hours {
    color: #64748b !important;
    font-size: 0.9rem;
    font-weight: 400 !important;
}

.cta-contact {
    margin-top: 1rem;
}

.cta-contact .cta-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid #e2e8f0;
}

.map-frame {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 22px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.map-placeholder > * {
    position: relative;
    z-index: 2;
}

.map-pin {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    animation: float 3s ease-in-out infinite;
}

.map-placeholder h4 {
    color: #0f172a;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.map-placeholder p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.map-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #3b82f6;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-link:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* Точная ссылка на адрес под картой */
.map-address-link {
    margin-top: 1.5rem;
    text-align: center;
}

.exact-address-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.exact-address-link:hover {
    color: #3b82f6;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.exact-address-link svg {
    color: #3b82f6;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}

.company-logo {
    flex-shrink: 0;
}

.company-info h4 {
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.company-info p {
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Адаптивность для карты */
@media (max-width: 968px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-frame {
        height: 350px;
    }
}

@media (max-width: 640px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .map-overlay {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }
    
    .map-frame {
        height: 300px;
    }
}

/* Услуги - Премиум дизайн */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 4rem 3rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.6);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-card.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.service-card.featured::after {
    content: 'ПОПУЛЯРНО';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-20px);
    box-shadow: 0 50px 100px rgba(59, 130, 246, 0.2);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.service-icon-wrapper {
    margin-bottom: 2rem;
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon-1 {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.service-icon-2 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-icon-3 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.service-icon-4 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.service-icon::before {
    content: '';
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    opacity: 0.9;
}

.service-card h3 {
    color: #2c7a2c;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.service-features li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: #374151;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c7a2c;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    margin: 2rem 0;
    text-shadow: 0 2px 4px rgba(255,107,53,0.2);
}

.service-button {
    background: linear-gradient(135deg, #2c7a2c 0%, #4a9d4a 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 15px rgba(44,122,44,0.3);
}

.service-button:hover {
    background: linear-gradient(135deg, #1e5a1e 0%, #2c7a2c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44,122,44,0.4);
}

/* Галерея до/после */
.gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 4rem;
    margin-top: 2rem;
}

.gallery-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    border-color: #3b82f6;
}

.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
    z-index: 2;
}

.gallery-header h3 {
    color: #0f172a;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-header .location {
    display: block;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.gallery-header .area {
    display: block;
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.3;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.before, .after {
    flex: 1;
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 1rem;
    border: 2px dashed #ccc;
}

.before-img {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #d32f2f;
    border-color: #d32f2f;
}

.after-img {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    color: #2c7a2c;
    border-color: #2c7a2c;
}

.arrow {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.arrow::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
}

.before p, .after p {
    font-size: 0.9rem;
    color: #374151;
    margin: 0;
    font-weight: 500;
}

/* Отзывы клиентов */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #2c7a2c;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    margin-bottom: 1.5rem;
}

.star-rating {
    display: flex;
    gap: 4px;
    justify-content: flex-start;
}

.star {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    transition: all 0.3s ease;
}

.star:hover {
    transform: scale(1.1);
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #374151;
    font-weight: 500;
}

.testimonial-author strong {
    color: #2c7a2c;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Преимущества */
.advantages {
    padding: 100px 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 3rem 2.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.advantage-icon-wrapper {
    margin-bottom: 2rem;
    text-align: center;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.advantage-icon-1 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.advantage-icon-2 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.advantage-icon-3 {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.advantage-icon-4 {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.advantage-icon-5 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.advantage-icon-6 {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.advantage-icon-7 {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
}

.advantage-icon-8 {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.advantage-icon::before {
    content: '';
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 8px;
    opacity: 0.9;
}

.advantage-item h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.advantage-item p {
    color: #64748b;
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e8f5e8;
}

.faq-item.active .faq-question {
    background: #2c7a2c;
    color: white;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: inherit;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c7a2c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 2rem;
    margin: 0;
    color: #666;
    line-height: 1.7;
}

/* Форма заказа */
.order-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c7a2c 0%, #4a9d4a 100%);
    color: white;
}

.form-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.consultation-form input,
.consultation-form textarea {
    padding: 1.3rem 1.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1.05rem;
    outline: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transform: translateY(-1px);
}

.submit-button {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
    color: white;
    border: none;
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 50%, #b91c1c 100%);
}

/* Футер - Современный дизайн */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-link {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.footer-link:hover {
    color: #06b6d4;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .nav {
        display: none;
    }
    
    .method-item {
        flex-direction: column;
        text-align: center;
    }
    
    .method-number {
        align-self: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Новые адаптивные стили */
    .weeds-grid,
    .services-grid,
    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .before-after {
        flex-direction: column;
        gap: 1rem;
    }
    
    .arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .service-card,
    .weed-card,
    .advantage-item,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .service-features {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 1.5rem 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .benefit {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .service-card,
    .problem-card,
    .weed-card,
    .advantage-item,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .gallery-item {
        padding: 2rem 1.5rem;
    }
    
    .gallery-header h3 {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .gallery-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(5, 150, 105, 0.1);
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }
    
    .stat-number,
    .stat-label {
        display: inline;
        margin: 0;
    }
    
    .image-placeholder {
        height: 120px;
        font-size: 1rem;
    }
    
    .service-icon,
    .advantage-icon,
    .weed-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon::before,
    .advantage-icon::before,
    .weed-icon::before {
        width: 30px;
        height: 30px;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-answer p {
        padding: 1.5rem;
    }
    
    .method-item {
        padding: 2rem 1.5rem;
    }
    
    .method-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}

/* Расширенные анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Применение анимаций */
.method-item {
    animation: fadeInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.method-item:nth-child(even) {
    animation: fadeInRight 0.8s ease-out;
    animation-fill-mode: both;
}

.service-card,
.weed-card {
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
}

.problem-card,
.advantage-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.testimonial-card {
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.service-icon,
.weed-icon,
.problem-icon,
.advantage-icon {
    animation: float 3s ease-in-out infinite;
}

.cta-button {
    animation: pulse 2s ease-in-out infinite;
}

/* Задержки анимаций для последовательного появления */
.method-item:nth-child(1) { animation-delay: 0.1s; }
.method-item:nth-child(2) { animation-delay: 0.2s; }
.method-item:nth-child(3) { animation-delay: 0.3s; }
.method-item:nth-child(4) { animation-delay: 0.4s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.problem-card:nth-child(1) { animation-delay: 0.1s; }
.problem-card:nth-child(2) { animation-delay: 0.2s; }
.problem-card:nth-child(3) { animation-delay: 0.3s; }
.problem-card:nth-child(4) { animation-delay: 0.4s; }

.weed-card:nth-child(1) { animation-delay: 0.1s; }
.weed-card:nth-child(2) { animation-delay: 0.2s; }
.weed-card:nth-child(3) { animation-delay: 0.3s; }
.weed-card:nth-child(4) { animation-delay: 0.4s; }

.advantage-item:nth-child(1) { animation-delay: 0.1s; }
.advantage-item:nth-child(2) { animation-delay: 0.2s; }
.advantage-item:nth-child(3) { animation-delay: 0.3s; }
.advantage-item:nth-child(4) { animation-delay: 0.4s; }
.advantage-item:nth-child(5) { animation-delay: 0.5s; }
.advantage-item:nth-child(6) { animation-delay: 0.6s; }
.advantage-item:nth-child(7) { animation-delay: 0.7s; }
.advantage-item:nth-child(8) { animation-delay: 0.8s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }

/* Плавная прокрутка с ускорением */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Улучшенные эффекты для интерактивных элементов */
.nav-link,
.footer-link,
.service-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Эффект мерцания для кнопок */
.cta-button,
.submit-button,
.service-button {
    background-size: 200px 100%;
    background-image: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    background-repeat: no-repeat;
    background-position: -200px 0;
    transition: background-position 0.6s ease-in-out,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover,
.submit-button:hover,
.service-button:hover {
    animation: shimmer 1.5s ease-in-out;
}

/* Policy pages styles */
.policy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy-page h1 {
    color: #1e40af;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 20px;
}

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.policy-content h2 {
    color: #1e40af;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    border-left: 4px solid #3b82f6;
    padding-left: 20px;
}

.policy-content h3 {
    color: #1e40af;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.policy-content p {
    margin-bottom: 15px;
    color: #4a5568;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 8px;
    color: #4a5568;
}

.policy-content strong {
    color: #1e40af;
}

.policy-content table {
    margin: 20px 0;
    width: 100%;
    border-collapse: collapse;
}

.policy-content th,
.policy-content td {
    border: 1px solid #e2e8f0;
    padding: 12px;
    text-align: left;
}

.policy-content th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #1e40af;
}

/* Content section spacing for policy pages */
.content {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
}

/* Footer-links styles for policy pages */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Responsive styles for policy pages */
@media (max-width: 768px) {
    .policy-page {
        padding: 20px 10px;
    }
    
    .policy-page h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-content h2 {
        font-size: 1.3rem;
    }
    
    .policy-content h3 {
        font-size: 1.1rem;
    }
    
    .policy-content table,
    .policy-content th,
    .policy-content td {
        font-size: 0.9rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .policy-page h1 {
        font-size: 1.8rem;
    }
    
    .policy-content {
        padding: 15px;
    }
    
    .policy-content h2 {
        font-size: 1.2rem;
        padding-left: 15px;
    }
    
    .policy-content ul {
        padding-left: 20px;
    }
    
    .policy-content table {
        font-size: 0.8rem;
    }
    
    .policy-content th,
    .policy-content td {
        padding: 6px;
    }
} 