:root {
    /* Brand Palette - VIBRANT UPDATE */
    --primary-green: #28a745;
    --online-green: #4CD964;
    --primary-action: #4CD964;
    --dark-bg: #0E1114;
    --text-primary: #3f3f42;
    --bg-white: #FFFFFF;
    --bg-secondary: #F5F7A6;
    --color-error: #E44545;
    --color-info: #3B82F6;

    --text-muted: #6b7280;

    /* Spacing & Layout */
    --nav-height: 64px;
    --section-padding: 64px;
    --container-width: 1100px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth; /* fallback if Lenis not loaded */
}

/* Lenis smooth scroll overrides */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    z-index: 9999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.logo-text {
    font-weight: 800;
    font-size: 30px; /* FIXED: Larger */
    letter-spacing: -1.2px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.btn-nav-trial {
    background: var(--primary-green);
    color: white !important;
    padding: 8px 16px;
    border-radius: 980px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 4px;
    z-index: 10000;
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
}

/* Sections */
section {
    padding: var(--section-padding) 0;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 12px);
    padding-bottom: 40px;
    text-align: center;
}

.badge {
    color: #9ca3af;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 60px;
    margin-bottom: 0px;
    /* Убрали отступ снизу, чтобы притянуть заголовок */
    display: inline-block;
}

.hero-headline-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    min-height: 380px;
    /* Уменьшили высоту, чтобы поднять заголовок и лого выше */
}

.hero-logo {
    position: absolute;
    height: 272px;  /* Was 680px, reduced 2.5x */
    width: auto;
    left: 29%;
    top: 50%;
    transform: translate(-92%, -48%);
    z-index: -1;
    filter: drop-shadow(0 40px 100px rgba(0, 0, 0, 0.1));
    opacity: 0.88;
}

.headline {
    font-size: 82px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-align: left;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    margin-left: 150px;
}

.line-1 {
    margin-left: 20px;
    /* Сдвигаем вторую строку правее */
}

.line-2 {
    display: inline-block;
}

.line-2 {
    margin-left: 40px;
    /* Сдвигаем вторую строку правее */
}

/* slideInRight removed — GSAP handles hero entrance now */

.subhead {
    font-size: 22px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 24px;
    /* Уменьшили отступ снизу до кнопок */
}

.btn-subtext {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    display: block;
}

/* Referral Banner */
.referral-banner {
    display: none;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a2e;
    text-align: center;
    padding: 14px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    box-sizing: border-box;
    animation: bannerSlideDown 0.5s ease-out;
}

@keyframes bannerSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Referral-enhanced subtext */
.btn-subtext.referral {
    font-size: 16px;
    color: #f59e0b;
    font-weight: 700;
    margin-top: 20px;
}

/* Referral badge override */
.badge.referral {
    color: #f59e0b;
    background: rgba(251, 191, 36, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Social Proof */
.social-proof {
    padding: 24px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.proof-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    opacity: 0.5;
    filter: grayscale(1);
    flex-wrap: wrap;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 404px;
    margin: 0 auto;
}

.btn-primary {
    background-color: var(--primary-action);
    color: var(--dark-bg);
    height: 56px;
    width: 196px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(76, 217, 100, 0.2);
    border: 2px solid transparent;
    box-sizing: border-box;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 28px rgba(76, 217, 100, 0.4);
    filter: brightness(1.05);
}

.btn-secondary {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    height: 56px;
    width: 196px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.btn-secondary:hover {
    background: rgba(34, 167, 69, 0.05);
    transform: translateY(-1px);
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}


.feature-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.2s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    background: #f0fdf4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.feature-icon-box svg {
    width: 32px;
    height: 32px;
    stroke: #227D44;
}

.icon-dot {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 10px;
    height: 10px;
    background: #4CD964;
    border-radius: 50%;
    border: 2px solid #f0fdf4;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 32px;
    flex-grow: 1;
}

.feature-badge-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 10px 16px;
    border-radius: 12px;
    width: 100%;
}



.feature-badge-wrap svg {
    width: 18px;
    height: 18px;
    fill: #227D44;
}

.feature-badge-wrap span {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}



/* === Section Subtitle (reusable) === */
.section-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* === Benefits Section === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid #f0f0f0;
    background: #fff;
    transition: transform 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: #227D44;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.benefit-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* === Results Section === */
.results-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.results-section .section-title,
.results-section .section-subtitle {
    color: #fff;
}

.results-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    margin-top: 48px;
}

.result-card {
    padding: 32px 16px;
}

.result-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--online-green);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.result-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.result-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.results-disclaimer {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    margin-top: 32px;
}

/* === Testimonials Section === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-soft);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    margin: 0 0 24px;
}

.testimonial-card blockquote p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: #f0fdf4;
    color: #227D44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* === Deep Features Section (Accordion) === */
.deep-features-section {
    background: #fafafa;
}

details.deep-feature-block {
    max-width: 800px;
    margin: 0 auto 16px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: var(--radius-lg);
    padding: 0;
    list-style: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

details.deep-feature-block:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

details.deep-feature-block[open] {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

details.deep-feature-block:last-of-type {
    margin-bottom: 0;
}

.deep-feature-summary {
    padding: 32px 40px;
    list-style: none;
    outline: none;
}

.deep-feature-summary::-webkit-details-marker {
    display: none;
}

.deep-feature-summary::marker {
    display: none;
    content: '';
}

.deep-feature-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(34, 125, 68, 0.1);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 12px;
}

.deep-feature-summary h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.accordion-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 16px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--text-muted);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

details[open] .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.deep-feature-body {
    padding: 0 40px 32px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* === Steps Timeline === */
.steps-grid {
    position: relative;
}

.step {
    position: relative;
    padding-left: 24px;
}

.step::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 40px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--online-green), rgba(76, 217, 100, 0.1));
}

.step:last-child::before {
    display: none;
}

/* How it works */
.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.step {
    text-align: left;
}

.step-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 12px;
    background: rgba(34, 125, 68, 0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 99px;
}

/* Pricing Card */
.pricing-wrap {
    display: flex;
    justify-content: center;
    gap: 32px;
    /* Расстояние между карточками */
    margin-top: 40px;
}

.price-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.price-card .price {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.price-card .period {
    color: var(--text-muted);
    font-size: 20px;
    margin-bottom: 32px;
}

.price-features {
    text-align: left;
    margin: 32px 0;
    list-style: none;
}

.price-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.price-features li::before {
    content: '✓';
    color: var(--online-green);
    font-weight: 900;
}

/* Gallery Stack (Subtle adjustment) */
.gallery-stack {
    position: relative;
    max-width: 1100px;
    width: 100%;
    height: 700px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stack-img {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    padding: 48px 0;
    border-top: 1px solid #f0f0f0;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.copy {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}



/* Scroll reveal — GSAP controls via autoAlpha */
.reveal, .reveal-img {
    visibility: hidden;
}

/* Contact Form */
.contact-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-info p {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form {
    background: #fafafa;
    padding: 48px;
    border-radius: 32px;
    border: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 16px;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(76, 217, 100, 0.1);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-green);
    color: white;
    padding: 16px;
    border-radius: 980px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 900px) {
    :root {
        --section-padding: 40px;
    }

    .container {
        padding: 0 20px;
    }

    /* Nav Mobile */
    .nav-content {
        justify-content: center;
        position: relative;
    }

    .logo-wrapper img {
        display: none;  /* Hide logo image on mobile */
    }

    .logo-text {
        font-size: 24px;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 24px;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        height: calc(100vh - var(--nav-height));
        padding: 24px;
    }

    .nav-links a {
        width: 100%;
        padding: 16px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }

    .btn-nav-trial {
        margin-top: 24px;
        text-align: center;
        border-radius: 12px;
    }

    /* Hero Mobile */
    .hero {
        padding-top: calc(var(--nav-height) + 10px);
        padding-bottom: 40px;
    }

    .badge {
        margin-top: 10px;
        margin-bottom: 90px;
    }

    /* ======= HERO MOBILE - НАСТРОЙКИ ======= */

    .hero-headline-wrap {
        min-height: auto;
        margin-bottom: 32px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0;                        /* Расстояние между лого и текстом */
        text-align: left;
        transform: translateX(0);      /* Весь блок: -10% влево, 10% вправо, 0 = центр */
    }

    .hero-logo {
        height: 120px;                 /* РАЗМЕР ЛОГО */
        width: auto;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-left: 0;                /* ← Сдвиг лого ВЛЕВО */
        margin-right: 0;               /* → Сдвиг лого ВПРАВО */
        margin-top: 0;                 /* ↑ Сдвиг лого ВВЕРХ */
        margin-bottom: 40px;              /* ↓ Сдвиг лого ВНИЗ */
        opacity: 1;
        flex-shrink: 0;
    }

    .headline {
        font-size: 32px;               /* РАЗМЕР ТЕКСТА */
        text-align: left;
        margin-left: -48px;            /* ← Наезд на лого (отрицат. = наезжает) */
        margin-right: 0;               /* → Отступ справа */
        margin-top: 0;                 /* ↑ Сдвиг вверх */
        margin-bottom: 0;              /* ↓ Сдвиг вниз */
        width: auto;
        line-height: 1.2;              /* Межстрочный интервал */
    }

    .line-1,
    .line-2 {
        margin-left: 0;
        display: inline;
    }

    .subhead {
        font-size: 18px;
        padding: 0 10px;
        text-align: center;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* === HIDE Features + Gallery on mobile (too heavy) === */
    #features,
    #gallery {
        display: none !important;
    }

    /* Benefits Grid — compact 2 columns */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .benefit-item {
        padding: 16px;
        gap: 12px;
    }

    .benefit-icon {
        width: 36px;
        height: 36px;
    }

    .benefit-icon svg {
        width: 18px;
        height: 18px;
    }

    .benefit-text h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .benefit-text p {
        font-size: 12px;
        line-height: 1.4;
    }

    /* Steps Grid — compact */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step {
        padding-left: 0;
    }

    .step::before {
        display: none;
    }

    .step h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .step p {
        font-size: 14px;
    }

    /* Results Grid — 2x2 compact */
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .result-card {
        padding: 16px 8px;
    }

    .result-number {
        font-size: 32px;
        margin-bottom: 4px;
    }

    .result-card h3 {
        font-size: 12px;
    }

    .result-card p {
        font-size: 11px;
        line-height: 1.3;
    }

    .results-section {
        padding: 40px 0;
    }

    /* Testimonials — horizontal scroll row, compact */
    #testimonials .section-title {
        font-size: 20px;
        margin-bottom: 0;
    }

    #testimonials .container > div:first-child {
        margin-bottom: 16px !important;
    }

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        margin-top: 0;
    }

    .testimonial-card {
        width: calc(100vw - 64px);
        max-width: 320px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 14px 16px;
        box-sizing: border-box;
    }

    .testimonial-card blockquote {
        margin: 0 0 10px;
    }

    .testimonial-card blockquote p {
        font-size: 13px;
        line-height: 1.4;
    }

    .testimonial-stars {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .testimonial-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .testimonial-author {
        gap: 8px;
    }

    .testimonial-author strong {
        font-size: 13px;
    }

    .testimonial-author span {
        font-size: 11px;
    }

    /* Deep Features — compact */
    .deep-feature-summary {
        padding: 16px;
    }

    .deep-feature-summary h3 {
        font-size: 16px;
    }

    .deep-feature-body {
        padding: 0 16px 16px;
        font-size: 13px;
    }

    .deep-feature-label {
        font-size: 11px;
    }

    /* Feature Grid (fallback if shown) */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    /* Pricing Card */
    .pricing-wrap {
        flex-direction: column-reverse;
        align-items: center;
    }

    .price-card {
        padding: 24px 20px;
        max-width: 100%;
    }

    .price-card .price {
        font-size: 48px;
    }

    /* Gallery - hidden via section hide above, but fallback */
    .gallery-stack {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
        overflow-x: auto;
        gap: 16px;
        padding: 20px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        height: auto;
        margin-top: 24px;
    }

    .stack-img {
        position: relative;
        width: 85vw !important;
        flex-shrink: 0;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin-bottom: 0;
        scroll-snap-align: center;
        object-fit: contain;
    }

    /* Contact Section — compact */
    .contact-section {
        padding: 40px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-info h2 {
        font-size: 24px;
    }

    .contact-form {
        padding: 24px 16px;
    }

    /* General — tighter spacing */
    .section-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    section {
        padding: 40px 0;
    }

    #pricing {
        margin: 0 !important;
        border-radius: 0 !important;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .logo-grid {
        gap: 16px;
    }

    .logo-grid span {
        font-size: 11px;
    }

    /* Benefits: single column on very small screens */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    /* Results: stay 2x2 even on small */
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .result-number {
        font-size: 28px;
    }

    /* Testimonials: full-width on small screens */
    .testimonial-card {
        width: calc(100vw - 56px);
    }
}

/* ==================== GSAP ANIMATION ENHANCEMENTS ==================== */

/* Hero 3D perspective */
.hero-headline-wrap {
    perspective: 1000px;
}

.headline span {
    display: inline-block;
    transform-origin: center bottom;
}

/* Gradient shimmer on hero headline */
@keyframes shimmer {
    0%, 100% { background-position: -10% 0; }
    30% { background-position: 110% 0; }
}

.shimmer-active .line-1,
.shimmer-active .line-2 {
    background: linear-gradient(
        90deg,
        var(--text-primary) 0%,
        var(--text-primary) 44%,
        var(--online-green) 50%,
        var(--text-primary) 56%,
        var(--text-primary) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s ease-in-out infinite;
}

/* Benefits section */

/* Glassmorphism cards */
.benefit-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(76, 217, 100, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(76, 217, 100, 0.25);
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(76, 217, 100, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border-color: rgba(76, 217, 100, 0.25);
}

/* Floating icons */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.benefit-icon {
    animation: float 3s ease-in-out infinite;
    animation-play-state: paused;
}

.benefit-item:nth-child(1) .benefit-icon { animation-delay: 0s; }
.benefit-item:nth-child(2) .benefit-icon { animation-delay: 0.5s; }
.benefit-item:nth-child(3) .benefit-icon { animation-delay: 1.0s; }
.benefit-item:nth-child(4) .benefit-icon { animation-delay: 1.5s; }
.benefit-item:nth-child(5) .benefit-icon { animation-delay: 2.0s; }
.benefit-item:nth-child(6) .benefit-icon { animation-delay: 2.5s; }

.feature-icon-box {
    animation: breathe 4s ease-in-out infinite;
    animation-play-state: paused;
}

.feature-card:nth-child(1) .feature-icon-box { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon-box { animation-delay: 0.8s; }
.feature-card:nth-child(3) .feature-icon-box { animation-delay: 1.6s; }

.in-view .benefit-icon,
.in-view .feature-icon-box {
    animation-play-state: running;
}

/* Results gradient shift */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.results-section {
    background: var(--dark-bg);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(76, 217, 100, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(76, 217, 100, 0.03) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease-in-out infinite;
}

/* Timeline line-draw effect */
@media (min-width: 901px) {
    .step::before {
        transform-origin: top;
        transform: scaleY(0);
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .step.line-drawn::before {
        transform: scaleY(1);
    }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    .shimmer-active .line-1,
    .shimmer-active .line-2 {
        background: none;
        -webkit-text-fill-color: var(--text-primary);
        animation: none;
    }

    .benefit-icon,
    .feature-icon-box {
        animation: none !important;
    }

    .results-section {
        animation: none;
    }
}

/* ==================== MOBILE OVERRIDES ==================== */
@media (max-width: 900px) {
    /* No glassmorphism blur on mobile (performance) */
    .benefit-item,
    .feature-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #fff;
        border: 1px solid #f0f0f0;
    }

    /* No floating icons on mobile */
    .benefit-icon,
    .feature-icon-box {
        animation: none !important;
    }

    /* Shimmer on mobile — same as desktop */

}