/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f8f0 100%);
    overflow-x: hidden;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Хедер */
.header {
    background: linear-gradient(135deg, #1e3a21 0%, #2c5530 50%, #4a7c59 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(44, 85, 48, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.contact-header {
    justify-self: center;
}

.nav-links {
    justify-self: end;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    color: white;
}

.tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
}

.contact-header {
    color: white;
}

.phone {
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #90c695;
}

/* Hero секция */
.hero {
    background: radial-gradient(ellipse at top, #f0fdf4 0%, #dcfce7 30%, #bbf7d0 60%, #86efac 100%);
    padding: 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    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"><circle cx="20" cy="20" r="2" fill="%2390c695" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%234a7c59" opacity="0.1"/><circle cx="40" cy="60" r="1.5" fill="%2390c695" opacity="0.1"/><circle cx="60" cy="30" r="1.5" fill="%234a7c59" opacity="0.1"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #1e3a21 0%, #2c5530 50%, #4a7c59 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(44, 85, 48, 0.2);
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a7c59;
    margin-bottom: 2rem;
}

.hero-features {
    list-style: none;
    margin-bottom: 2rem;
}

.hero-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    font-size: 1.1rem;
    color: #166534;
    font-weight: 500;
    position: relative;
}

.hero-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
}

.hero-cta {
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary::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.5s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.price {
    margin-top: 1.5rem;
    font-size: 1.3rem;
    color: #166534;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
    border-radius: 15px;
    border: 2px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
}

.price span {
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 0.5rem;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

/* Hero изображение */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 30%, #15803d 70%, #166534 100%);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 20px 40px rgba(34, 197, 94, 0.3),
        0 10px 20px rgba(34, 197, 94, 0.2),
        inset 0 -5px 10px rgba(0, 0, 0, 0.1);
    transform: rotate(-8deg);
    position: relative;
    animation: productFloat 6s ease-in-out infinite;
}

.product-placeholder::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #22c55e, #16a34a, #15803d, #166534);
    border-radius: 35px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(10px);
}

@keyframes productFloat {
    0%, 100% { transform: rotate(-8deg) translateY(0px); }
    50% { transform: rotate(-8deg) translateY(-10px); }
}

.product-box {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    color: #166534;
    transform: rotate(8deg);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.product-box::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.product-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.badge {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.economy {
    font-size: 0.9rem;
    color: #166534;
    margin-top: 0.5rem;
    font-style: italic;
}

.product-features {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.product-features span {
    font-size: 0.9rem;
    color: #166534;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
}

.product-box h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-box p {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Каталог культур */
.catalog {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f0fdf4 100%);
    position: relative;
}

.catalog::before {
    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"><circle cx="25" cy="25" r="1" fill="%2322c55e" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%2316a34a" opacity="0.05"/></svg>') repeat;
    animation: featuresFloat 25s infinite linear;
}

@keyframes featuresFloat {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-50px); }
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.culture-card {
    background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.2);
}

.culture-icon {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    letter-spacing: -1px;
}

/* О препарате */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.composition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.element {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.element:hover {
    transform: translateY(-3px);
}

.element strong {
    color: #166534;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.element span {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.element p {
    color: #6b7280;
    font-size: 0.9rem;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #16a34a, #15803d);
    transition: left 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
}

.feature-card:hover::before {
    left: 0;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: iconShine 3s infinite;
}

@keyframes iconShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.feature-card h3 {
    color: #2c5530;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Инструкции */
.instructions {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-card h4 {
    color: #166534;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.timing-table {
    margin-top: 3rem;
}

.timing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.timing-table th,
.timing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.timing-table th {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-weight: 600;
}

.timing-table tr:hover {
    background-color: #f0fdf4;
}

/* Преимущества */
.advantages {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.15);
}

.advantage-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Результаты */
.results {
    padding: 6rem 0;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #374151;
    font-weight: 500;
}

.results-description ul {
    margin-left: 1.5rem;
}

.results-description li {
    margin-bottom: 0.8rem;
    color: #374151;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.benefits-list h3,
.application-guide h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefits-list ul,
.application-guide ol {
    margin-left: 1.5rem;
}

.benefits-list li,
.application-guide li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

/* Отзывы */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fefefe 0%, #f9fafb 30%, #f3f4f6 70%, #f0fdf4 100%);
    position: relative;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(34, 197, 94, 0.05), transparent);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid #22c55e;
    position: relative;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #22c55e;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.15);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.author {
    color: #2c5530;
    font-weight: bold;
}

/* Контакты */
.contact {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 30%, #bbf7d0 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    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"><circle cx="25" cy="25" r="2" fill="%2322c55e" opacity="0.1"/><circle cx="75" cy="75" r="2" fill="%2315803d" opacity="0.1"/><circle cx="50" cy="10" r="1.5" fill="%2322c55e" opacity="0.1"/><circle cx="10" cy="50" r="1.5" fill="%2315803d" opacity="0.1"/></svg>') repeat;
    animation: contactFloat 25s infinite linear;
}

@keyframes contactFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #166534;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.map-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(44, 85, 48, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(21, 128, 61, 0.05) 100%);
    z-index: -1;
}

.map-container h3 {
    margin-bottom: 1.5rem;
    color: #166534;
    font-size: 1.4rem;
}

.map-wrapper {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    transition: transform 0.3s ease;
}

.map-wrapper:hover iframe {
    transform: scale(1.02);
}

.map-address {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.map-address p {
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.contact-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(44, 85, 48, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: #166534;
    font-size: 1.4rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #166534;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item strong {
    color: #15803d;
}

/* Футер */
.footer {
    background-color: #1a3a1d;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #90c695;
}

.footer-section p,
.footer-section a {
    margin-bottom: 0.5rem;
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #90c695;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .contact-header,
    .nav-links {
        justify-self: center;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .features-badges {
        grid-template-columns: 1fr;
    }

    .instructions-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        order: 1;
    }

    .contact-info {
        order: 2;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .product-placeholder {
        margin-top: 2rem;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .timing-table {
        overflow-x: auto;
    }

    .timing-table table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .catalog h2,
    .about h2,
    .instructions h2,
    .advantages h2,
    .results h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .product-placeholder {
        height: 200px;
    }

    .product-box {
        padding: 1rem;
    }

    .product-box h3 {
        font-size: 1rem;
    }

    .map-wrapper iframe {
        height: 250px;
    }

    .results-stats {
        grid-template-columns: 1fr;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .map-container,
    .contact-info {
        padding: 1.5rem;
    }
}

/* Анимации появления */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.testimonial:nth-child(1) { animation-delay: 0.1s; }
.testimonial:nth-child(2) { animation-delay: 0.2s; }
.testimonial:nth-child(3) { animation-delay: 0.3s; }

/* Пульсирующая кнопка */
@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 12px 35px rgba(34, 197, 94, 0.5); }
    100% { box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3); }
}

.btn-primary {
    animation: pulse 2s infinite;
}

/* Улучшенный контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Градиентные заголовки */
.catalog h2,
.about h2,
.instructions h2,
.advantages h2,
.results h2 {
    background: linear-gradient(135deg, #166534 0%, #15803d 50%, #22c55e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
} 