    /* ============================================================
       PRELOADER
    ============================================================ */
    #preloader {
        position: fixed; inset: 0; z-index: 10000;
        background: var(--white);
        display: flex; align-items: center; justify-content: center;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    #preloader.hidden { opacity: 0; visibility: hidden; }

    .preloader-inner {
        display: flex; flex-direction: column; align-items: center; gap: 20px;
    }
    .preloader-logo {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 900;
        letter-spacing: -0.04em;
        color: var(--ink);
    }
    .preloader-logo span { color: var(--green); }
    .preloader-bar {
        width: 160px; height: 3px;
        background: var(--gray-100);
        border-radius: 10px;
        overflow: hidden;
    }
    .preloader-bar::after {
        content: '';
        display: block;
        height: 100%;
        width: 0;
        background: var(--green);
        border-radius: 10px;
        animation: load 1.8s ease forwards;
    }
    @keyframes load { to { width: 100%; } }

    /* ============================================================
       HEADER / NAV
    ============================================================ */
    .header {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        z-index: 1000;
        transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s;
    }
    .header.scrolled {
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
        padding: 0 40px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .nav__logo img { height: 36px; width: auto; }

    .nav__list {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 36px;
    }

    .nav__link {
        font-family: var(--font-display);
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        color: var(--gray-700);
        transition: color 0.2s;
        position: relative;
    }
    .nav__link::after {
        content: '';
        position: absolute;
        bottom: -4px; left: 0;
        width: 0; height: 2px;
        background: var(--green);
        border-radius: 2px;
        transition: width 0.25s ease;
    }
    .nav__link:hover { color: var(--green-dark); }
    .nav__link:hover::after { width: 100%; }

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

    .nav__toggle, .nav__close {
        display: none;
        font-size: 1.5rem;
        color: var(--ink);
        cursor: pointer;
        border: none;
        background: none;
        padding: 4px;
    }

    /* Mobile nav */
    @media (max-width: 900px) {
        .nav__menu {
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            background: var(--white);
            padding: 88px 40px 48px;
            transition: top 0.4s cubic-bezier(0.16,1,0.3,1);
            box-shadow: var(--shadow-lg);
            border-bottom: 1px solid var(--border);
        }
        .nav__menu.show-menu { top: 0; }
        .nav__list {
            flex-direction: column;
            align-items: flex-start;
            gap: 28px;
        }
        .nav__link { font-size: 1.1rem; }
        .nav__toggle, .nav__close { display: flex; }
        .nav__actions .btn-green { display: none; }
        .nav__close {
            position: absolute;
            top: 24px; right: 24px;
        }
    }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
        min-height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-top: 72px;
        position: relative;
        overflow: hidden;
    }

    /* Subtle grid texture */
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
        background-size: 60px 60px;
        z-index: 0;
    }

    /* Green glow top-right */
    .hero::after {
        content: '';
        position: absolute;
        top: -80px; right: -100px;
        width: 700px; height: 700px;
        background: radial-gradient(ellipse, rgba(29,229,72,0.10) 0%, transparent 70%);
        z-index: 0;
        pointer-events: none;
    }

    .hero__inner {
        position: relative;
        z-index: 1;
        padding: 80px 40px 0;
        max-width: 1280px;
        margin: 0 auto;
        width: 100%;
    }

    .hero__top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        max-width: 860px;
        margin: 0 auto 64px;
    }

    .hero__top h1 {
        font-size: clamp(2.6rem, 5.5vw, 5.2rem);
        font-weight: 900;
        letter-spacing: -0.04em;
        line-height: 1.04;
        color: var(--ink);
    }

    .hero__top p {
        font-size: 1.1rem;
        color: var(--gray-500);
        max-width: 560px;
        line-height: 1.75;
        font-weight: 400;
    }

    .hero__cta {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__watch {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-display);
        font-size: 0.84rem;
        font-weight: 600;
        color: var(--gray-700);
        cursor: pointer;
        transition: color 0.2s;
    }
    .hero__watch:hover { color: var(--green-dark); }
    .hero__watch .play-btn {
        width: 40px; height: 40px;
        border-radius: 50%;
        background: var(--ink);
        display: flex; align-items: center; justify-content: center;
        color: var(--white);
        font-size: 0.9rem;
        transition: all 0.2s;
        flex-shrink: 0;
    }
    .hero__watch:hover .play-btn {
        background: var(--green-dark);
        transform: scale(1.05);
    }

    /* Hero visual grid */
    .hero__visuals {
        display: grid;
        grid-template-columns: 1fr 1.1fr 1fr;
        gap: 16px;
        align-items: end;
        position: relative;
    }

    .hero__col { display: flex; flex-direction: column; gap: 12px; }
    .hero__col.center { margin-bottom: -1px; }

    /* Floating UI cards */
    .rx-card {
        background: var(--white);
        border: 1.5px solid var(--border-md);
        border-radius: var(--r-md);
        padding: 14px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        box-shadow: var(--shadow-sm);
    }
    .rx-card p {
        font-size: 0.84rem;
        font-weight: 500;
        color: var(--gray-700);
    }
    .rx-icon {
        width: 36px; height: 36px;
        border-radius: 50%;
        background: var(--green);
        display: flex; align-items: center; justify-content: center;
        color: var(--black);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .hero__img-main {
        width: 100%;
        border-radius: var(--r-lg) var(--r-lg) 0 0;
        object-fit: cover;
        display: block;
    }

    .hero__img-mid {
        width: 100%;
        border-radius: var(--r-lg) var(--r-lg) 0 0;
        object-fit: cover;
        max-height: 480px;
        display: block;
    }

    .ultimate-card {
        background: var(--white);
        border: 1.5px solid var(--border-md);
        border-radius: var(--r-xxl);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        box-shadow: var(--shadow-sm);
    }
    .ultimate-card__logo img { width: 28px; height: 28px; border-radius: 50%; }
    .ultimate-card p { font-size: 0.84rem; font-weight: 600; color: var(--gray-900); flex: 1; }
    .ultimate-card__arrow {
        width: 32px; height: 32px;
        border-radius: 50%;
        background: var(--ink);
        display: flex; align-items: center; justify-content: center;
        color: var(--white);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .customers-badge {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .customers-badge__imgs {
        display: flex;
    }
    .customers-badge__imgs img {
        width: 38px; height: 38px;
        border-radius: 50%;
        border: 2px solid var(--white);
        object-fit: cover;
        margin-left: -10px;
        box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
    }
    .customers-badge__imgs img:first-child { margin-left: 0; }
    .customers-badge span {
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--gray-900);
        font-family: var(--font-display);
    }

    .report-card {
        background: var(--white);
        border: 1.5px solid var(--border-md);
        border-radius: var(--r-md);
        padding: 14px;
        box-shadow: var(--shadow-sm);
    }
    .report-card img { width: 100%; border-radius: var(--r-sm); }

    /* ============================================================
       TRUST BANNER
    ============================================================ */
    .trust-banner {
        background: var(--off-white);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 28px 40px;
    }
    .trust-banner__inner {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .trust-banner__text {
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gray-500);
        font-family: var(--font-display);
    }
    .trust-banner__logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }
    .trust-banner__logos img {
        height: 32px;
        width: auto;
        opacity: 0.55;
        filter: grayscale(1);
        transition: opacity 0.2s, filter 0.2s;
    }
    .trust-banner__logos img:hover { opacity: 1; filter: none; }

    /* ============================================================
       STATS SECTION
    ============================================================ */
    .stats {
        padding: 100px 40px;
        background: var(--white);
    }
    .stats__inner {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
    .stats__left { display: flex; flex-direction: column; gap: 20px; }
    .stats__left h2 {
        font-size: clamp(2rem, 3.2vw, 2.8rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.15;
    }
    .stats__left p { color: var(--gray-500); line-height: 1.8; max-width: 440px; }

    .stats__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        background: var(--border);
        border: 1px solid var(--border-md);
        border-radius: var(--r-lg);
        overflow: hidden;
    }
    .stat-item {
        background: var(--white);
        padding: 36px 32px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        transition: background 0.2s;
    }
    .stat-item:hover { background: var(--off-white); }
    .stat-item__number {
        font-family: var(--font-display);
        font-size: 3rem;
        font-weight: 900;
        letter-spacing: -0.06em;
        color: var(--green-dark);
        line-height: 1;
    }
    .stat-item__label {
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--gray-900);
        font-family: var(--font-display);
        margin-bottom: 2px;
    }
    .stat-item__desc { font-size: 0.78rem; color: var(--gray-500); line-height: 1.5; }

    /* ============================================================
       FEATURES SECTION
    ============================================================ */
    .features {
        padding: 100px 40px;
        background: var(--off-white);
        border-top: 1px solid var(--border);
    }
    .features__inner { max-width: 1280px; margin: 0 auto; }

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

    .features__left { display: flex; flex-direction: column; gap: 48px; }

    .feature-group { display: flex; flex-direction: column; gap: 32px; }

    .feature-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }
    .feature-item__icon {
        width: 48px; height: 48px;
        border-radius: var(--r-md);
        background: var(--white);
        border: 1.5px solid var(--border-md);
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        box-shadow: var(--shadow-sm);
        transition: all 0.25s;
    }
    .feature-item:hover .feature-item__icon {
        background: var(--green-soft);
        border-color: var(--green-border);
    }
    .feature-item__icon i {
        font-size: 1.3rem;
        color: var(--green-deep);
    }
    .feature-item__body { display: flex; flex-direction: column; gap: 6px; }
    .feature-item__body h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--ink);
    }
    .feature-item__body p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; }

    .features__right {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .features__img-wrap {
        position: relative;
        width: 100%;
    }
    .features__img-main {
        width: 100%;
        border-radius: var(--r-xl);
        object-fit: cover;
        box-shadow: var(--shadow-lg);
    }
    .features__notif {
        position: absolute;
        background: var(--white);
        border: 1.5px solid var(--border-md);
        border-radius: var(--r-md);
        padding: 12px 16px;
        box-shadow: var(--shadow-md);
        display: flex;
        align-items: center;
        gap: 12px;
        max-width: 220px;
    }
    .features__notif i { color: var(--green-dark); font-size: 1.3rem; flex-shrink: 0; }
    .features__notif--text p { font-size: 0.75rem; color: var(--gray-500); line-height: 1.4; }
    .features__notif--text strong { font-size: 0.82rem; color: var(--ink); display: block; margin-bottom: 2px; font-family: var(--font-display); font-weight: 700; }

    .notif-1 { bottom: 10%; left: -8%; }
    .notif-2 { bottom: 28%; right: -8%; }
    .notif-3 { top: 12%; right: -6%; }

    /* ============================================================
       REACH SECTION
    ============================================================ */
    .reach {
        padding: 100px 40px;
        background: var(--white);
        border-top: 1px solid var(--border);
    }
    .reach__inner {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
    .reach__img {
        width: 100%;
        border-radius: var(--r-xl);
        object-fit: cover;
        box-shadow: var(--shadow-lg);
        order: -1;
    }
    .reach__content {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .reach__content h2 {
        font-size: clamp(2rem, 3.2vw, 2.8rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.15;
    }
    .reach__content p { color: var(--gray-500); line-height: 1.8; }
    .reach__btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

    /* ============================================================
       PRICING
    ============================================================ */
    .pricing {
        padding: 100px 40px;
        background: var(--off-white);
        border-top: 1px solid var(--border);
    }
    .pricing__inner { max-width: 1280px; margin: 0 auto; }

    .pricing__toggle {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 48px;
    }
    .toggle-lbl {
        font-family: var(--font-display);
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--gray-500);
        transition: color 0.2s;
        cursor: pointer;
    }
    .toggle-lbl.on { color: var(--gray-900); }
    .save-badge {
        background: var(--green-soft);
        border: 1px solid var(--green-border);
        color: var(--green-dark);
        font-size: 0.7rem;
        font-weight: 800;
        padding: 3px 10px;
        border-radius: var(--r-xxl);
        letter-spacing: 0.06em;
        font-family: var(--font-display);
    }

    .toggle-sw { position: relative; width: 52px; height: 28px; cursor: pointer; flex-shrink: 0; }
    .toggle-sw input { opacity: 0; position: absolute; width: 0; height: 0; }
    .toggle-track {
        position: absolute; inset: 0;
        border-radius: 14px;
        background: var(--gray-100);
        border: 1.5px solid var(--border-md);
        transition: all 0.3s;
    }
    .toggle-thumb {
        position: absolute;
        top: 4px; left: 4px;
        width: 18px; height: 18px;
        border-radius: 50%;
        background: var(--gray-300);
        transition: all 0.3s;
    }
    .toggle-sw input:checked ~ .toggle-track { background: var(--green-soft); border-color: var(--green); }
    .toggle-sw input:checked ~ .toggle-thumb { left: 26px; background: var(--green); }

    .pricing__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: var(--border-md);
        border: 1px solid var(--border-md);
        border-radius: var(--r-xl);
        overflow: hidden;
    }

    .pricing-card {
        background: var(--white);
        padding: 36px 28px;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: background 0.2s;
    }
    .pricing-card:hover { background: var(--off-white); }
    .pricing-card.popular {
        background: var(--ink);
    }
    .pricing-card.popular:hover { background: var(--ink-2); }

    .popular-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--green);
        color: var(--black);
        font-family: var(--font-display);
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: var(--r-xxl);
        margin-bottom: 20px;
        width: fit-content;
    }

    .plan-name {
        font-family: var(--font-display);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gray-500);
        margin-bottom: 12px;
    }
    .pricing-card.popular .plan-name { color: rgba(255,255,255,0.5); }

    .plan-price {
        font-family: var(--font-display);
        font-size: 2.6rem;
        font-weight: 900;
        letter-spacing: -0.05em;
        color: var(--ink);
        line-height: 1;
        margin-bottom: 4px;
    }
    .pricing-card.popular .plan-price { color: var(--white); }
    .plan-price .curr { font-size: 0.95rem; font-weight: 600; opacity: 0.6; vertical-align: top; margin-top: 7px; display: inline-block; letter-spacing: 0; }
    .plan-price .per { font-size: 0.78rem; font-weight: 500; opacity: 0.5; letter-spacing: 0; }

    .plan-savings {
        font-size: 0.75rem;
        color: var(--green-dark);
        font-weight: 600;
        min-height: 18px;
        margin-bottom: 16px;
        font-family: var(--font-display);
    }
    .pricing-card.popular .plan-savings { color: var(--green); }

    .plan-desc {
        font-size: 0.82rem;
        color: var(--gray-500);
        line-height: 1.6;
        margin-bottom: 24px;
        min-height: 56px;
    }
    .pricing-card.popular .plan-desc { color: rgba(255,255,255,0.5); }

    .plan-sep {
        height: 1px;
        background: var(--border);
        margin-bottom: 24px;
    }
    .pricing-card.popular .plan-sep { background: rgba(255,255,255,0.1); }

    .plan-features {
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
        margin-bottom: 32px;
    }
    .plan-feature {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.82rem;
        color: var(--gray-700);
        line-height: 1.45;
    }
    .pricing-card.popular .plan-feature { color: rgba(255,255,255,0.75); }
    .feat-ico {
        width: 18px; height: 18px;
        border-radius: 50%;
        background: var(--green-soft);
        border: 1px solid var(--green-border);
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
    }
    .feat-ico i { font-size: 0.65rem; color: var(--green-dark); }
    .pricing-card.popular .feat-ico {
        background: rgba(29,229,72,0.15);
        border-color: rgba(29,229,72,0.4);
    }
    .pricing-card.popular .feat-ico i { color: var(--green); }

    .plan-btn {
        width: 100%;
        padding: 13px;
        border-radius: var(--r-xxl);
        font-family: var(--font-display);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-align: center;
        border: none;
        cursor: pointer;
        transition: all 0.25s;
    }
    .plan-btn.outline {
        background: transparent;
        color: var(--ink);
        border: 1.5px solid var(--border-md);
    }
    .plan-btn.outline:hover { border-color: var(--green-dark); color: var(--green-dark); }
    .plan-btn.solid {
        background: var(--green);
        color: var(--black);
    }
    .plan-btn.solid:hover {
        background: #2dfb55;
        box-shadow: var(--shadow-green);
        transform: translateY(-1px);
    }

    .pricing__foot {
        margin-top: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
    }
    .pricing__foot span {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--gray-500);
        font-family: var(--font-display);
    }
    .pricing__foot i { color: var(--green-dark); font-size: 0.95rem; }

    .pricing__compare {
        display: flex;
        justify-content: center;
        margin-top: 28px;
    }

    /* ============================================================
       REVIEWS
    ============================================================ */
    .reviews {
        padding: 100px 40px;
        background: var(--ink);
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .reviews__inner { max-width: 1280px; margin: 0 auto; }
    .reviews .section-heading h2 { color: var(--white); }
    .reviews .section-heading p { color: rgba(255,255,255,0.45); }
    .reviews .chip { background: rgba(29,229,72,0.08); border-color: rgba(29,229,72,0.2); }

    .reviews__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .review-card {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: var(--r-lg);
        padding: 28px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 24px;
        transition: background 0.25s, border-color 0.25s;
    }
    .review-card:hover {
        background: rgba(255,255,255,0.07);
        border-color: rgba(29,229,72,0.2);
    }

    .review-card.img-card {
        padding: 0;
        overflow: hidden;
        background: transparent;
        border: none;
    }
    .review-card.img-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--r-lg);
    }

    .review-card.stat-card {
        background: rgba(29,229,72,0.06);
        border-color: rgba(29,229,72,0.15);
    }

    .review-stat-num {
        font-family: var(--font-display);
        font-size: 3rem;
        font-weight: 900;
        color: var(--green);
        letter-spacing: -0.05em;
        line-height: 1;
        margin-bottom: 4px;
    }
    .review-stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }

    .review-quote {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.7);
        line-height: 1.7;
        font-style: italic;
        flex: 1;
    }

    .reviewer {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-top: auto;
    }
    .reviewer img {
        width: 42px; height: 42px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(255,255,255,0.1);
    }
    .reviewer__info h4 { font-size: 0.88rem; color: var(--white); font-weight: 700; }
    .reviewer__info span {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.4);
        display: flex; align-items: center; gap: 4px;
    }

    /* ============================================================
       FAQ
    ============================================================ */
    .faq {
        padding: 100px 40px;
        background: var(--white);
        border-top: 1px solid var(--border);
    }
    .faq__inner {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 80px;
        align-items: start;
    }
    .faq__left {
        position: sticky;
        top: 100px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .faq__left h2 {
        font-size: clamp(1.8rem, 2.8vw, 2.4rem);
        font-weight: 800;
        letter-spacing: -0.03em;
    }
    .faq__left p { color: var(--gray-500); line-height: 1.75; }

    .faq-list {
        border: 1px solid var(--border-md);
        border-radius: var(--r-xl);
        overflow: hidden;
    }
    .faq-item {
        border-bottom: 1px solid var(--border);
        background: var(--white);
        transition: background 0.2s;
    }
    .faq-item:last-child { border-bottom: none; }
    .faq-item.open { background: var(--off-white); }

    .faq-q {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 22px 28px;
        cursor: pointer;
        user-select: none;
    }
    .faq-q-text {
        font-family: var(--font-display);
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--ink);
        line-height: 1.5;
        transition: color 0.2s;
    }
    .faq-item.open .faq-q-text { color: var(--green-dark); }
    .faq-ico {
        width: 30px; height: 30px;
        border-radius: 50%;
        background: var(--gray-100);
        border: 1.5px solid var(--border-md);
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        color: var(--gray-700);
        transition: all 0.3s;
    }
    .faq-item.open .faq-ico {
        background: var(--green-soft);
        border-color: var(--green-border);
        color: var(--green-dark);
        transform: rotate(45deg);
    }
    .faq-ico i { font-size: 0.85rem; }

    .faq-ans {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .faq-item.open .faq-ans { max-height: 400px; }
    .faq-ans-inner {
        padding: 0 28px 22px;
        border-top: 1px solid var(--border);
        padding-top: 16px;
        font-size: 0.88rem;
        color: var(--gray-500);
        line-height: 1.75;
    }

    /* ============================================================
       CTA SECTION
    ============================================================ */
    .cta-section {
        padding: 60px 40px;
        background: var(--off-white);
        border-top: 1px solid var(--border);
    }
    .cta-section__inner {
        max-width: 1280px;
        margin: 0 auto;
    }
    .cta-box {
        background: var(--ink);
        border-radius: var(--r-xl);
        padding: 72px 64px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cta-box::before {
        content: '';
        position: absolute;
        top: -120px; right: -120px;
        width: 500px; height: 500px;
        background: radial-gradient(ellipse, rgba(29,229,72,0.12) 0%, transparent 70%);
        pointer-events: none;
    }
    .cta-box::after {
        content: '';
        position: absolute;
        bottom: -80px; left: -80px;
        width: 300px; height: 300px;
        background: radial-gradient(ellipse, rgba(29,229,72,0.06) 0%, transparent 70%);
        pointer-events: none;
    }
    .cta-stars {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        position: relative; z-index: 1;
    }
    .cta-stars__icons { display: flex; gap: 4px; }
    .cta-stars__icons i { color: var(--green); font-size: 1rem; }
    .cta-stars span {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.45);
        font-family: var(--font-display);
        font-weight: 600;
    }
    .cta-box h2 {
        font-size: clamp(1.8rem, 3.2vw, 3rem);
        font-weight: 800;
        color: var(--white);
        max-width: 680px;
        letter-spacing: -0.03em;
        line-height: 1.2;
        position: relative; z-index: 1;
    }
    .cta-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        position: relative; z-index: 1;
    }
    .cta-trustpilot {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.3);
        position: relative; z-index: 1;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer {
        background: var(--off-white);
        border-top: 1px solid var(--border);
        padding-top: 72px;
    }
    .footer__inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        flex-direction: column;
        gap: 56px;
    }
    .footer__top {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 80px;
        align-items: start;
    }
    .footer__brand { display: flex; flex-direction: column; gap: 18px; }
    .footer__brand img { height: 36px; width: auto; }
    .footer__brand p {
        font-size: 0.88rem;
        color: var(--gray-500);
        max-width: 380px;
        line-height: 1.7;
    }
    .footer__social { display: flex; gap: 10px; }
    .footer__social a {
        width: 38px; height: 38px;
        border-radius: var(--r-sm);
        background: var(--gray-100);
        border: 1px solid var(--border-md);
        display: flex; align-items: center; justify-content: center;
        color: var(--gray-700);
        font-size: 1rem;
        transition: all 0.2s;
    }
    .footer__social a:hover {
        background: var(--green-soft);
        border-color: var(--green-border);
        color: var(--green-dark);
    }

    .footer__newsletter { display: flex; flex-direction: column; gap: 14px; }
    .footer__newsletter h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--ink);
    }
    .footer__newsletter p { font-size: 0.82rem; color: var(--gray-500); }
    .newsletter-form {
        display: flex;
        align-items: center;
        background: var(--white);
        border: 1.5px solid var(--border-md);
        border-radius: var(--r-xxl);
        padding: 5px 5px 5px 18px;
        gap: 8px;
        transition: border-color 0.2s;
    }
    .newsletter-form:focus-within { border-color: var(--green); }
    .newsletter-form input {
        flex: 1;
        border: none;
        outline: none;
        font-family: var(--font-body);
        font-size: 0.85rem;
        color: var(--gray-900);
        background: transparent;
    }
    .newsletter-form input::placeholder { color: var(--gray-300); }
    .newsletter-form button {
        width: 38px; height: 38px;
        border-radius: 50%;
        background: var(--green);
        border: none;
        cursor: pointer;
        display: flex; align-items: center; justify-content: center;
        color: var(--black);
        font-size: 1.1rem;
        transition: all 0.2s;
        flex-shrink: 0;
    }
    .newsletter-form button:hover { background: #2dfb55; }

    .footer__mid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        padding: 40px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
    .footer__col h5 {
        font-family: var(--font-display);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gray-900);
        margin-bottom: 16px;
    }
    .footer__col a {
        display: block;
        font-size: 0.85rem;
        color: var(--gray-500);
        margin-bottom: 10px;
        transition: color 0.2s;
    }
    .footer__col a:hover { color: var(--green-dark); }
    .footer__col p {
        font-size: 0.85rem;
        color: var(--gray-500);
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .footer__legal {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 40px;
    }
    .footer__legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 24px;
    }
    .footer__legal-links a {
        font-size: 0.78rem;
        color: var(--gray-500);
        transition: color 0.2s;
    }
    .footer__legal-links a:hover { color: var(--green-dark); }
    .footer__legal-text {
        font-size: 0.75rem;
        color: var(--gray-300);
        line-height: 1.7;
        max-width: 900px;
    }
    .footer__legal-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
    }
    .footer__copy {
        font-size: 0.78rem;
        color: var(--gray-300);
        font-family: var(--font-display);
    }
    .footer__stores { display: flex; gap: 10px; align-items: center; }
    .footer__stores img { height: 30px; width: auto; }

    /* ============================================================
       REVEAL ANIMATION
    ============================================================ */
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.active { opacity: 1; transform: translateY(0); }
    .reveal.delay-1 { transition-delay: 0.1s; }
    .reveal.delay-2 { transition-delay: 0.2s; }
    .reveal.delay-3 { transition-delay: 0.3s; }
    .reveal.delay-4 { transition-delay: 0.4s; }
    .reveal.delay-5 { transition-delay: 0.5s; }
    .reveal.delay-6 { transition-delay: 0.6s; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1100px) {
        .hero__visuals { grid-template-columns: 1fr 1fr; }
        .hero__col:last-child { display: none; }
        .stats__inner { grid-template-columns: 1fr; gap: 48px; }
        .features__grid { grid-template-columns: 1fr; gap: 48px; }
        .reach__inner { grid-template-columns: 1fr; gap: 48px; }
        .reach__img { order: 0; max-height: 360px; }
        .pricing__grid { grid-template-columns: repeat(2, 1fr); }
        .reviews__grid { grid-template-columns: repeat(2, 1fr); }
        .faq__inner { grid-template-columns: 1fr; gap: 40px; }
        .faq__left { position: static; }
        .footer__top { grid-template-columns: 1fr; gap: 40px; }
        .footer__mid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
        .nav { padding: 0 24px; }
        .hero__inner { padding: 48px 24px 0; }
        .hero__top h1 { font-size: 2.4rem; }
        .hero__visuals { grid-template-columns: 1fr; }
        .hero__col:not(:first-child) { display: none; }
        .stats, .features, .reach, .pricing, .reviews, .faq, .cta-section { padding: 64px 24px; }
        .pricing__grid { grid-template-columns: 1fr; }
        .reviews__grid { grid-template-columns: 1fr; }
        .cta-box { padding: 48px 28px; }
        .footer__inner { padding: 0 24px; }
        .footer__mid { grid-template-columns: repeat(2, 1fr); }
        .footer__legal-bottom { flex-direction: column; align-items: flex-start; }
        .notif-1, .notif-2, .notif-3 { display: none; }
    }

    @media (max-width: 480px) {
        .container { padding: 0 20px; }
        .footer__mid { grid-template-columns: 1fr 1fr; }
    }
    