/* ============================================================
   BELFIA — clean, modern product page
   Mobile-first, responsive. Builder-compatible.
   ============================================================ */

.lp-section { position: relative; }
.lp-standard, .lp-gsap, .lp-threejs { isolation: isolate; }

/* Pre-paint hide for the hero's staggered text. Applied only when JS is active
   (html.lp-prehide is set by an inline head script and removed the instant the
   GSAP entrance fires). JS off / export = class never added = text visible. */
.lp-prehide .hero > * { opacity: 0; }

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

:root {
    --white: #FFFFFF;
    --bg-soft: #F4F7F1;
    --sage: #E7F0E4;
    --green: #2E6B43;
    --green-700: #245538;
    --green-deep: #14301E;
    --ink: #1A271D;
    --muted: #5F6B60;
    --line: #E4E8DE;
    --amber: #E8A93C;
    --clay: #CF6A47;
    --wa: #25D366;
    --wa-dark: #1DA851;

    --maxw: 1140px;
    --radius: 18px;
    --shadow-sm: 0 2px 10px rgba(26, 39, 29, 0.06);
    --shadow-md: 0 16px 40px -20px rgba(26, 39, 29, 0.4);
    --shadow-lg: 0 30px 64px -28px rgba(26, 39, 29, 0.5);
    --ease: cubic-bezier(.2, .7, .2, 1);

    --content-max: 960px;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', -apple-system, sans-serif;
}

body {
    position: relative;
    isolation: isolate;
    font-family: var(--sans);
    color: var(--ink);
    font-weight: 400;
    line-height: 1.55;
    background:
        radial-gradient(circle at 14% 8%, rgba(231, 240, 228, 0.9), transparent 24%),
        radial-gradient(circle at 84% 10%, rgba(245, 232, 218, 0.8), transparent 20%),
        linear-gradient(180deg, #fbfcf8 0%, #f6f8f1 42%, #ffffff 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(46, 107, 67, 0.10), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(232, 169, 60, 0.12), transparent 20%),
        radial-gradient(circle at 58% 72%, rgba(207, 106, 71, 0.06), transparent 18%);
    filter: blur(14px);
}

body::after {
    background-image:
        linear-gradient(rgba(26, 39, 29, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 39, 29, 0.02) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 88%);
}

img { display: block; max-width: 100%; }

/* ---- Shared type ---- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
}

.eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--green);
}

.eyebrow--light { color: rgba(255, 255, 255, 0.8); }
.eyebrow--light::before { background: rgba(255, 255, 255, 0.5); }

.sec-head {
    margin-bottom: 26px;
    text-align: center;
}

.sec-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(1.7rem, 5.4vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-top: 12px;
}

.sec-lead {
    margin-top: 12px;
    font-size: 15px;
    color: var(--muted);
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.sec-head--center { text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .eyebrow::before { display: none; }
.sec-head--center .sec-lead { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}


.btn-cta {
    background: linear-gradient(180deg, var(--green) 0%, #0f2215 100%);
    color: #fff;
    padding: 15px 26px;
    box-shadow: 0 14px 26px -14px rgba(20, 48, 30, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px -14px rgba(20, 48, 30, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-cta:active { transform: translateY(0) scale(0.98); }

.btn-lg { padding: 17px 34px; font-size: 16px; }

.wa-icon { width: 21px; height: 21px; flex-shrink: 0; }

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.visit-icon { width: 19px; height: 19px; flex-shrink: 0; }

/* ---- Price tokens ---- */
.price-now { font-weight: 700; color: var(--ink); }
.price-old { color: var(--muted); text-decoration: line-through; font-weight: 400; }
.price-off, .price-save {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: var(--clay);
    padding: 4px 11px;
    border-radius: 50px;
}
.price-save { background: rgba(207, 106, 71, 0.12); color: var(--clay); }

/* ============================================================
   1. DELIVERY STRIP
   ============================================================ */
.delivery-strip { background: var(--green-deep); color: rgba(255, 255, 255, 0.9); }

.strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.strip-inner svg { width: 16px; height: 16px; color: #fff; flex-shrink: 0; }
.strip-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, 0.45); flex-shrink: 0; }
.strip-alt { color: rgba(255, 255, 255, 0.6); }

/* ============================================================
   2. HERO (cinematic)
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 72px 24px 72px;
    background: #0f1e13 url("./assets/images/pack.png") 50% -90px / cover no-repeat;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(15, 30, 19, 0.9) 4%, rgba(15, 30, 19, 0.55) 34%, rgba(15, 30, 19, 0.12) 62%, rgba(15, 30, 19, 0.18) 100%);
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-brand {
    display: block;
    width: auto;
    height: clamp(40px, 9vw, 56px);
    margin-bottom: 18px;
    object-fit: contain;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
    justify-content: center;
}

.hero-rating .stars { color: var(--amber); letter-spacing: 2px; font-size: 13px; }

.hero-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(34px, 9vw, 56px);
    line-height: 1.05;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-wrap: balance;
}

.hero-sub {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 40ch;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.hero-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
    justify-content: center;
}

.hero-price .price-now { font-size: 32px; color: #fff; }
.hero-price .price-old { font-size: 17px; color: rgba(255, 255, 255, 0.6); }

.hero-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-buy {
    width: 100%;
    max-width: 360px;
    align-self: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0) 31%),
        linear-gradient(135deg, rgba(122, 225, 139, 0.98) 0%, rgba(66, 160, 93, 0.98) 46%, rgba(24, 74, 43, 1) 100%);
    background-blend-mode: screen, normal;
    box-shadow:
        0 20px 40px -18px rgba(20, 48, 30, 0.82),
        0 0 28px rgba(101, 210, 120, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        inset 0 -1px 0 rgba(0, 0, 0, 0.16);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
    animation: hero-cta-pulse 2.6s var(--ease) infinite;
}

/* Pause the attention pulse on interaction so hover/tap feedback reads cleanly. */
.hero-buy:hover,
.hero-buy:active { animation-play-state: paused; }

.hero-buy > * {
    position: relative;
    z-index: 2;
}

.hero-buy::before {
    content: '';
    position: absolute;
    inset: -30% -55%;
    z-index: 1;
    background: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.42) 45%,
        rgba(255, 255, 255, 0.16) 52%,
        rgba(255, 255, 255, 0) 66%);
    transform: translateX(-70%) skewX(-18deg);
    opacity: 0;
    pointer-events: none;
    animation: hero-reflect-sweep 4.8s ease-in-out infinite;
}

.hero-buy::after {
    content: '';
    position: absolute;
    inset: 1px;
    z-index: 1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.26), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 44%);
    pointer-events: none;
}

.hero-buy:hover {
    filter: brightness(1.06) saturate(1.08);
    box-shadow:
        0 24px 44px -16px rgba(20, 48, 30, 0.95),
        0 0 34px rgba(101, 210, 120, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.16);
}

.hero-buy:hover::before {
    animation-duration: 1.8s;
    opacity: 1;
}

@keyframes hero-reflect-sweep {
    0%, 52% {
        transform: translateX(-85%) skewX(-18deg);
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: translateX(85%) skewX(-18deg);
        opacity: 0;
    }
}

/* Attention pulse — gentle breathe + a radiating green halo to pull the eye. */
@keyframes hero-cta-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 20px 40px -18px rgba(20, 48, 30, 0.82),
            0 0 28px rgba(101, 210, 120, 0.18),
            0 0 0 0 rgba(101, 210, 120, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.26),
            inset 0 -1px 0 rgba(0, 0, 0, 0.16);
    }
    50% {
        transform: scale(1.035);
        box-shadow:
            0 24px 46px -16px rgba(20, 48, 30, 0.9),
            0 0 42px rgba(101, 210, 120, 0.34),
            0 0 0 14px rgba(101, 210, 120, 0),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.16);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-buy,
    .hero-buy::before { animation: none; }
}

.hero-trust {
    margin-top: 16px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.02em;
}

/* ============================================================
   3. CONTENT + TRUST BAR
   ============================================================ */
.content {
    background: var(--white);
    padding-bottom: 110px;
}

.trustbar {
    position: relative;
    z-index: 5;
    max-width: var(--maxw);
    margin: -34px auto 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    justify-items: center;
}

.tb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 14px;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--ink);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.tb-item:nth-child(-n+2) { border-top: none; }
.tb-item:nth-child(odd) { border-left: none; }

.tb-item svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; }
.tb-item .tb-star { color: var(--amber); }

.content-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block {
    width: 100%;
    margin-top: 56px;
}

/* ---- Pack ---- */
.pack-grid { display: grid; gap: 22px; }

.pack-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.75), transparent 34%),
        linear-gradient(180deg, #edf4eb 0%, #dfead8 100%);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
}

.pack-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 22px 24px rgba(20, 48, 30, 0.10));
}

.pack-flag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--clay);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 6px 13px;
    border-radius: 50px;
}

.pack-detail .eyebrow { margin-bottom: 4px; }

.pack-detail {
    width: 100%;
    text-align: center;
}

.pack-items {
    list-style: none;
    margin: 22px 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pack-items li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.pack-items li:last-child { border-bottom: none; }

.pi-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--sage);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pi-float 3.4s ease-in-out infinite;
}

.pi-ico svg {
    width: 21px;
    height: 21px;
    animation: pi-pulse 3.4s ease-in-out infinite;
}

/* gentle, de-synced float so the four badges feel alive without distracting */
.pack-items li:nth-child(2) .pi-ico,
.pack-items li:nth-child(2) .pi-ico svg { animation-delay: 0.45s; }
.pack-items li:nth-child(3) .pi-ico,
.pack-items li:nth-child(3) .pi-ico svg { animation-delay: 0.9s; }
.pack-items li:nth-child(4) .pi-ico,
.pack-items li:nth-child(4) .pi-ico svg { animation-delay: 1.35s; }

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

@keyframes pi-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
    .pi-ico,
    .pi-ico svg { animation: none; }
}

.pack-items div { display: flex; flex-direction: column; align-items: center; }
.pack-items strong { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.pack-items span { font-size: 12.5px; color: var(--muted); }

.offer-bar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    margin-top: 24px;
    justify-content: center;
}

.offer-price { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }
.offer-price .price-now { font-size: 26px; color: var(--green); font-weight: 700; }
.offer-price .price-old { font-size: 15px; }
.offer-bar .btn-cta { width: 100%; }

/* ---- Before / After (contrast block) ---- */
.ba-block {
    background: var(--green-deep);
    color: #fff;
    padding: 54px 22px;
    margin-top: 64px;
}

.ba-block .sec-title { color: #fff; }

.compare {
    position: relative;
    max-width: 430px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: ew-resize;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

.compare-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    pointer-events: none;
}

.compare-after {
    position: absolute;
    inset: 0;
    clip-path: inset(0 0 0 var(--pos, 50%));
}

.compare-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos, 50%);
    width: 3px;
    transform: translateX(-1.5px);
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.compare-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
}

.compare-handle svg { width: 22px; height: 22px; }

.compare-tag {
    position: absolute;
    bottom: 14px;
    z-index: 3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    pointer-events: none;
}

.compare-tag.is-before { left: 14px; background: rgba(255, 255, 255, 0.92); color: var(--green-deep); }
.compare-tag.is-after { right: 14px; background: var(--wa); color: #fff; }

.compare-note {
    text-align: center;
    margin-top: 16px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
}

/* ---- Features ---- */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.feature { text-align: center; }

.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 18px;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(46, 107, 67, 0.35);
}

.feat-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--sage);
    color: var(--green);
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
}

.feat-ico svg { width: 23px; height: 23px; }

.feature h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.feature p { font-size: 12.5px; color: var(--muted); line-height: 1.45; }

/* ---- Reviews ---- */
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px 22px;
    flex-wrap: wrap;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.rs-main { display: flex; align-items: center; gap: 14px; }
.rs-score { font-family: var(--serif); font-size: 46px; font-weight: 700; color: var(--green); line-height: 0.9; }
.rs-meta { display: flex; flex-direction: column; gap: 3px; }
.rs-stars { color: var(--amber); letter-spacing: 2px; font-size: 16px; }
.rs-label { font-size: 12.5px; color: var(--muted); }

.rs-people { display: flex; align-items: center; gap: 12px; }
.rs-avatars { display: flex; }
.rs-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--green);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 15px;
    margin-left: -11px;
}
.rs-av:first-child { margin-left: 0; }
.rs-people-label { font-size: 12.5px; font-weight: 500; color: var(--muted); max-width: 130px; line-height: 1.3; }

.slider-wrap { position: relative; }

.slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
}

.slider-track::-webkit-scrollbar { display: none; }

.review {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.r-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }

.r-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.r-who { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.r-name { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.r-verif { width: 14px; height: 14px; color: var(--wa); flex-shrink: 0; }
.r-city { font-size: 11.5px; color: var(--muted); }
.r-head .r-stars { color: var(--amber); letter-spacing: 1px; font-size: 13px; }
.r-text { font-size: 14.5px; color: var(--ink); line-height: 1.55; }

.slider-dots { display: flex; justify-content: center; gap: 7px; margin-top: 18px; }

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.dot.active { background: var(--green); width: 22px; border-radius: 4px; }

/* ---- WhatsApp review cards ---- */
.wa-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(84%, 84%);
    gap: 14px;
    overflow-x: auto;
    padding: 4px 4px 12px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.wa-grid::-webkit-scrollbar { display: none; }

.wa-grid .wa-card {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.wa-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    color: inherit;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.wa-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #f6efe7;
    overflow: hidden;
}

.wa-photo::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent);
    pointer-events: none;
}

.wa-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 250ms ease;
}

.wa-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 15px;
    background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.wa-card-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.wa-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(20, 138, 84, 0.1);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.wa-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.wa-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(20, 138, 84, 0.18);
}

.wa-cta::after {
    content: '→';
    font-size: 14px;
    line-height: 1;
}

.wa-card:hover,
.wa-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(20, 138, 84, 0.28);
    box-shadow: 0 18px 34px rgba(11, 20, 26, 0.12);
}

.wa-card:hover .wa-photo img,
.wa-card:focus-visible .wa-photo img {
    transform: scale(1.03);
}

.wa-card:focus-visible {
    outline: none;
}

.wa-cta::after {
    content: '>';
}

/* WhatsApp chat paper + outgoing bubble */
.wa-chat {
    background: #efe7dd;
    padding: 14px 12px 16px;
}

.wa-bubble {
    position: relative;
    max-width: 94%;
    margin-left: auto;
    background: #d9fdd3;
    border-radius: 10px;
    padding: 8px 11px 6px;
    box-shadow: 0 1px 1px rgba(11, 20, 26, 0.13);
}

.wa-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    right: -7px;
    width: 0;
    height: 0;
    border-top: 8px solid #d9fdd3;
    border-right: 8px solid transparent;
}

.wa-text { font-size: 13.5px; line-height: 1.5; color: #111b21; }

.wa-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 2px;
    font-size: 10.5px;
    color: #667781;
}

.wa-ticks { width: 16px; height: 12px; color: #53bdeb; flex-shrink: 0; }

.wa-who { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }

.wa-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.wa-id { display: flex; flex-direction: column; min-width: 0; }
.wa-name { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.wa-verif { width: 14px; height: 14px; color: var(--wa); flex-shrink: 0; }
.wa-city { font-size: 11.5px; color: var(--muted); }

/* ---- FAQ ---- */
.faq {
    border-top: 1px solid var(--line);
    max-width: 820px;
    margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--line); }

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 2px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-ico { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-ico::before, .faq-ico::after {
    content: '';
    position: absolute;
    background: var(--green);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.faq-ico::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-ico::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item[open] .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] summary { color: var(--green); }

.faq-a { padding: 0 2px 20px; font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 64ch; }

/* ---- Final CTA ---- */
.final-cta {
    background: var(--green);
    color: #fff;
    margin-top: 64px;
    padding: 60px 22px;
    text-align: center;
}

.final-inner { max-width: 620px; margin: 0 auto; }

.final-cta .eyebrow { margin-bottom: 14px; }

.final-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.final-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.final-price .price-now { font-size: 30px; color: #fff; }
.final-price .price-old { font-size: 16px; color: rgba(255, 255, 255, 0.6); }

.final-cta .btn-cta {
    background: #fff;
    color: var(--green-deep);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.45);
}

.final-cta .btn-cta:hover { background: #fff; transform: translateY(-2px); }

.final-trust { margin-top: 16px; font-size: 12.5px; color: rgba(255, 255, 255, 0.8); }

/* ============================================================
   4. STICKY BUY BAR
   ============================================================ */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 30px -12px rgba(26, 39, 29, 0.25);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
}

.sticky-stack {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.buybar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.buybar-info { display: flex; align-items: center; gap: 11px; flex: 1; min-width: 0; }

.buybar-thumb {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--line);
}

.buybar-text { display: flex; flex-direction: column; min-width: 0; }
.buybar-name { font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buybar-price { font-size: 14px; font-weight: 700; color: var(--green); }
.buybar-price s { font-size: 12px; font-weight: 400; color: var(--muted); margin-left: 5px; }

.buybar-btn {
    flex-shrink: 0;
    padding: 13px 22px;
    animation: sticky-cta-pulse 2.6s var(--ease) infinite;
}

/* Pause the attention pulse on interaction so hover/tap feedback reads cleanly. */
.buybar-btn:hover,
.buybar-btn:active { animation-play-state: paused; }

/* Attention pulse — gentle breathe + a radiating green halo to pull the eye. */
@keyframes sticky-cta-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 14px 26px -14px rgba(20, 48, 30, 0.65),
            0 0 0 0 rgba(46, 107, 67, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    50% {
        transform: scale(1.04);
        box-shadow:
            0 16px 30px -14px rgba(20, 48, 30, 0.72),
            0 0 0 9px rgba(46, 107, 67, 0),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    .buybar-btn { animation: none; }
}

/* ============================================================
   4. CHECKOUT POPUP
   ============================================================ */
body.modal-open { overflow: hidden; }

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s var(--ease), visibility 0.24s var(--ease);
}

.checkout-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.checkout-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 20, 15, 0.72);
    backdrop-filter: blur(12px);
}

.checkout-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 660px);
    max-height: min(92vh, 920px);
    overflow: auto;
    display: block;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 32px 80px -24px rgba(8, 16, 10, 0.58);
    text-align: center;
    direction: ltr;
}

.checkout-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(20, 48, 30, 0.12);
    border-radius: 50%;
    background: rgba(20, 48, 30, 0.05);
    color: var(--green-deep);
    cursor: pointer;
    transition: transform 0.18s var(--ease), background 0.18s var(--ease);
}

.checkout-close svg { width: 18px; height: 18px; }
.checkout-close:hover { transform: scale(1.04); background: rgba(20, 48, 30, 0.08); }

.checkout-content {
    padding: 44px 22px 30px;
}

.checkout-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(46, 107, 67, 0.08);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.checkout-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.05;
    font-weight: 600;
    color: var(--ink);
}

.checkout-lead {
    margin: 12px auto 0;
    max-width: 34ch;
    font-size: 14.5px;
    color: var(--muted);
}

.checkout-summary {
    margin-top: 24px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--bg-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.checkout-summary__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.checkout-product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.checkout-product-price {
    margin-top: 4px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.checkout-product-price .price-now {
    font-size: 28px;
    color: var(--green);
}

.checkout-product-price .price-old {
    color: var(--muted);
}

.checkout-product-note {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

.checkout-form {
    margin-top: 24px;
    text-align: left;
}

.checkout-fields {
    display: grid;
    gap: 14px;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.checkout-field span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.checkout-field input,
.checkout-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8faf5;
    color: var(--ink);
    font: inherit;
    font-weight: 400;
    padding: 14px 15px;
    transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}

.checkout-field textarea {
    min-height: 110px;
    resize: vertical;
}

.checkout-field input::placeholder,
.checkout-field textarea::placeholder {
    color: #8a968d;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    outline: none;
    border-color: rgba(46, 107, 67, 0.45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(46, 107, 67, 0.12);
}

.checkout-field--full { grid-column: 1 / -1; }

.checkout-submit {
    width: 100%;
    margin-top: 18px;
}

.checkout-hint {
    margin-top: 12px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--muted);
    text-align: center;
}

/* ============================================================
   SCROLL REVEAL (export-safe: hidden state applied by JS only)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-in { opacity: 1; transform: none; }

.text-animate {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    filter: blur(4px);
    transition:
        opacity 0.85s var(--ease),
        transform 0.85s var(--ease),
        filter 0.85s var(--ease);
    transition-delay: var(--text-delay, 0s);
}

.text-animate-in {
    opacity: 1;
    transform: none;
    filter: none;
    will-change: auto;
}

/* ============================================================
   RESPONSIVE — TABLET (>= 720px)
   ============================================================ */
@media (min-width: 720px) {
    .trustbar { grid-template-columns: repeat(4, 1fr); }
    .tb-item { border-top: none; flex-direction: row; padding: 18px 16px; font-size: 12px; }
    .tb-item:first-child { border-left: none; }
    .tb-item:not(:first-child) { border-left: 1px solid var(--line); }

    .content-inner { padding: 0 40px; }
    .block { margin-top: 72px; }

    .pack-grid { grid-template-columns: 0.95fr 1.05fr; gap: 36px; align-items: center; }
    .pack-visual { aspect-ratio: 4 / 5; }
    .pack-detail { text-align: center; }

    .compare { max-width: 470px; }
    .ba-block { padding: 70px 40px; }

    .features { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .reviews-summary { padding: 20px 26px; }

    .offer-bar { flex-direction: row; align-items: center; justify-content: space-between; padding: 20px 24px; }
    .offer-bar .btn-cta { width: auto; }

    .wa-grid {
        grid-auto-flow: dense;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-columns: unset;
        gap: 16px;
        padding-inline: 8px;
        overflow-x: visible;
        scroll-snap-type: none;
    }
    .wa-grid .wa-card {
        scroll-snap-align: none;
    }

    .buybar-name { font-size: 14px; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (>= 1024px)
   ============================================================ */
@media (min-width: 1024px) {
    .strip-inner { font-size: 12px; gap: 14px; padding: 10px 24px; }

    /* ---- Hero: left-aligned cinematic layout ---- */
    .hero {
        min-height: 92vh;
        background: #0f1e13 url("./assets/images/pack.png") 65% 50% / cover no-repeat;
        padding: 80px 64px;
        text-align: left;
        align-items: flex-start;
        justify-content: center;
    }
    .hero::before {
        background:
            linear-gradient(to right, rgba(15, 30, 19, 0.92) 0%, rgba(15, 30, 19, 0.78) 32%, rgba(15, 30, 19, 0.35) 58%, rgba(15, 30, 19, 0.10) 80%),
            linear-gradient(to top, rgba(15, 30, 19, 0.6) 0%, transparent 40%);
    }
    .hero-brand { height: 52px; margin-bottom: 22px; }
    .hero-rating { justify-content: flex-start; }
    .hero-title {
        max-width: 14ch;
        font-size: clamp(44px, 4.2vw, 62px);
    }
    .hero-sub {
        font-size: 17px;
        margin-left: 0;
        margin-right: 0;
        max-width: 44ch;
    }
    .hero-price { justify-content: flex-start; }
    .hero-actions {
        flex-direction: row;
        justify-content: flex-start;
        gap: 14px;
        max-width: 400px;
        margin: 0;
    }
    .hero-buy { max-width: none; width: auto; }
    .hero-trust { text-align: left; }

    /* ---- Trust bar ---- */
    .trustbar {
        margin-top: -40px;
        max-width: 960px;
    }

    /* ---- Content ---- */
    .content-inner {
        padding: 0 48px;
        max-width: 1060px;
    }
    .block { margin-top: 96px; }

    .sec-title { font-size: clamp(2rem, 2.6vw, 2.5rem); }

    /* ---- Pack section ---- */
    .pack-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 56px;
        align-items: center;
    }
    .pack-visual {
        aspect-ratio: 4 / 5;
        border-radius: 22px;
    }
    .pack-detail { text-align: left; }
    .pack-detail .eyebrow { justify-content: flex-start; }
    .pack-items {
        max-width: 600px;
        margin-left: 0;
        text-align: left;
    }
    .pack-items li {
        justify-content: flex-start;
        text-align: left;
    }
    .pack-items div { align-items: flex-start; }
    .offer-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 22px 28px;
    }
    .offer-bar .btn-cta { width: auto; }
    .offer-price { justify-content: flex-start; }

    /* ---- Before / After ---- */
    .compare { max-width: 540px; }
    .ba-block {
        padding: 90px 48px;
        margin-top: 96px;
        border-radius: 0;
    }

    /* ---- Features ---- */
    .features { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .feature {
        padding: 30px 26px;
        border-radius: 20px;
    }
    .feat-ico { width: 54px; height: 54px; border-radius: 16px; }
    .feat-ico svg { width: 26px; height: 26px; }
    .feature h3 { font-size: 16px; }
    .feature p { font-size: 13px; }

    /* ---- WhatsApp Reviews ---- */
    .wa-grid {
        grid-auto-flow: dense;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-columns: unset;
        gap: 18px;
        padding-inline: 0;
        overflow-x: visible;
        scroll-snap-type: none;
    }
    .wa-grid .wa-card {
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }
    .wa-card { border-radius: 20px; }
    .wa-photo { aspect-ratio: 3 / 4; }

    /* ---- Reviews ---- */
    .reviews-block .slider-wrap { overflow: visible; }
    .reviews-block .slider-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: visible;
        scroll-snap-type: none;
        gap: 20px;
    }
    .review {
        width: auto;
        min-width: 0;
        flex: none;
        scroll-snap-align: none;
        border-radius: 20px;
        padding: 26px;
    }
    .review:nth-child(n+4) {
        grid-column: span 1;
    }
    .slider-dots { display: none; }
    .reviews-summary {
        max-width: 600px;
        padding: 22px 30px;
        border-radius: 20px;
    }

    /* ---- FAQ ---- */
    .faq { max-width: 820px; margin: 0 auto; }
    .faq-item summary { font-size: 16px; padding: 22px 4px; }
    .faq-a { font-size: 14.5px; }

    /* ---- Final CTA ---- */
    .final-cta { margin-top: 96px; padding: 84px 48px; }
    .final-inner { max-width: 700px; }
    .final-title { font-size: clamp(2rem, 3vw, 2.8rem); }

    /* ---- Sticky bar ---- */
    .sticky-cta {
        padding: 12px 32px;
        border-top: 1px solid rgba(228, 232, 222, 0.7);
        backdrop-filter: blur(16px);
        background: rgba(255, 255, 255, 0.92);
    }
    .sticky-stack {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        max-width: 1100px;
    }
    .buybar {
        width: auto;
        min-width: 0;
        flex: 1 1 auto;
    }
    .buybar-thumb { width: 50px; height: 50px; border-radius: 14px; }
    .buybar-name { font-size: 15px; }
    .buybar-price { font-size: 15px; }
    .buybar-btn { padding: 15px 34px; font-size: 15px; }

    /* ---- Checkout popup ---- */
    .checkout-close {
        top: 18px;
        right: 18px;
    }

    .checkout-content {
        padding: 54px 42px 44px;
        text-align: left;
    }

    .checkout-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .checkout-field--full {
        grid-column: 1 / -1;
    }

    .checkout-lead {
        margin-left: 0;
        margin-right: 0;
    }

    .checkout-summary {
        justify-content: space-between;
        text-align: left;
        flex-direction: row;
        align-items: center;
    }

    .checkout-summary__text {
        align-items: flex-start;
    }
}

/* ============================================================
   RESPONSIVE — LARGE DESKTOP (>= 1320px)
   ============================================================ */
@media (min-width: 1320px) {
    .content { padding-bottom: 120px; }

    .hero {
        padding: 90px 80px;
        background-position: 62% 50%;
    }
    .hero::before {
        background:
            linear-gradient(to right, rgba(15, 30, 19, 0.94) 0%, rgba(15, 30, 19, 0.82) 28%, rgba(15, 30, 19, 0.4) 52%, rgba(15, 30, 19, 0.06) 76%),
            linear-gradient(to top, rgba(15, 30, 19, 0.55) 0%, transparent 35%);
    }
    .hero-title {
        font-size: clamp(52px, 4.5vw, 68px);
        max-width: 15ch;
    }
    .hero-sub { font-size: 18px; max-width: 48ch; }
    .hero-price .price-now { font-size: 36px; }

    .content-inner {
        max-width: 1140px;
        padding: 0 56px;
    }

    .trustbar { max-width: 1060px; }
    .tb-item { padding: 22px 20px; font-size: 13px; }
    .tb-item svg { width: 26px; height: 26px; }

    .pack-grid { gap: 72px; }
    .pack-visual { border-radius: 26px; }

    .compare { max-width: 580px; }
    .ba-block { padding: 100px 64px; }

    .features { gap: 24px; }
    .feature { padding: 34px 28px; }

    .wa-grid { gap: 22px; }

    .reviews-block .slider-track { gap: 24px; }
    .review { padding: 28px; }

    .faq-item summary { font-size: 17px; padding: 24px 6px; }
    .faq-a { font-size: 15px; }

    .final-cta { padding: 100px 64px; }
    .final-title { font-size: clamp(2.2rem, 3.2vw, 3rem); }

    .sticky-cta { padding: 14px 40px; }
    .buybar-thumb { width: 54px; height: 54px; }
    .buybar-name { font-size: 16px; }
    .buybar-btn { padding: 16px 40px; font-size: 16px; }
}

/* ============================================================
   RESPONSIVE — ULTRA-WIDE (>= 1600px)
   ============================================================ */
@media (min-width: 1600px) {
    .hero {
        padding: 100px 120px;
    }
    .hero-title { font-size: 72px; }
    .hero-sub { font-size: 19px; }

    .content-inner {
        max-width: 1240px;
        padding: 0 64px;
    }

    .trustbar { max-width: 1140px; }

    .ba-block { padding: 110px 80px; }
    .compare { max-width: 620px; }

    .final-inner { max-width: 800px; }

    .sticky-stack { max-width: 1200px; }
}

@media (max-width: 767px) {
    .content { padding-bottom: 60px; }
    .content-inner { padding: 0 14px; }

    .hero {
        min-height: 84vh;
        padding: 58px 16px 56px;
        background-position: 50% 20%;
    }
    .hero::before {
        background:
            linear-gradient(to top,
                rgba(15, 30, 19, 0.92) 0%,
                rgba(15, 30, 19, 0.78) 30%,
                rgba(15, 30, 19, 0.6) 55%,
                rgba(15, 30, 19, 0.45) 78%,
                rgba(15, 30, 19, 0.55) 100%);
    }
    .hero-brand {
        height: clamp(34px, 11vw, 46px);
        margin-bottom: 14px;
    }
    .hero-rating {
        gap: 6px;
        margin-bottom: 12px;
        font-size: 11px;
    }
    .hero-title {
        font-size: clamp(29px, 9.2vw, 42px);
        line-height: 1.06;
        margin-bottom: 10px;
        max-width: fit-content;
    }
    .hero-sub {
        max-width: 31ch;
        font-size: 14px;
        margin-bottom: 16px;
    }
    .hero-price {
        gap: 10px;
        margin-bottom: 18px;
    }
    .hero-price .price-now { font-size: 27px; }
    .hero-price .price-old { font-size: 15px; }
    .hero-actions { gap: 10px; }
    .hero-buy { max-width: 100%; padding: 14px 18px; font-size: 14px; }
    .hero-trust { margin-top: 14px; font-size: 11.5px; }

    .pack-items {
        max-width: 100%;
    }
    .pack-grid { gap: 16px; }
    .pack-visual {
        max-width: 430px;
        margin: 0 auto;
        aspect-ratio: 1 / 1;
    }
    .pack-detail { text-align: center; }
    .pack-detail .sec-title { font-size: clamp(1.55rem, 7.2vw, 2rem); }
    .pack-detail .sec-lead { font-size: 14px; }
    .pack-items li {
        align-items: flex-start;
        text-align: left;
        gap: 10px;
        padding: 11px 0;
    }
    .pack-items div { align-items: flex-start; }
    .pack-items strong { font-size: 13.5px; }
    .pack-items span { font-size: 12px; }
    .offer-bar {
        padding: 16px 14px;
        border-radius: 18px;
    }
    .offer-price { gap: 8px; }
    .offer-price .price-now { font-size: 24px; }
    .offer-price .price-save { padding: 4px 9px; }

    .features { grid-template-columns: 1fr; }

    .reviews-summary {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .review { padding: 18px; }

    .wa-grid {
        grid-auto-flow: column;
        grid-auto-columns: minmax(88%, 88%);
        gap: 12px;
        padding: 4px 2px 10px;
    }
    .wa-card { border-radius: 16px; }
    .wa-photo { aspect-ratio: 4 / 5; }
    .wa-block .sec-title { font-size: clamp(1.5rem, 7vw, 1.95rem); }

    .faq-item summary {
        font-size: 14px;
        padding: 16px 2px;
    }

    .final-cta { padding: 54px 18px; }
    .final-cta .btn-cta {
        width: 100%;
        max-width: 420px;
    }
    .sticky-cta { padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px)); }
    .sticky-stack { gap: 8px; }
    .buybar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .buybar-info { width: 100%; }
    .buybar-btn {
        width: 100%;
        justify-content: center;
    }

    .reveal {
        opacity: 0;
        transform: translate3d(0, 34px, 0) scale(0.98);
        transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    }

    .reveal-in {
        opacity: 1;
        transform: none;
    }

    /* Mobile: drop blur entirely — animating filter:blur is GPU-expensive on
       mobile and is the main cause of blurry text + scroll jank/flicker. */
    .text-animate {
        transform: translate3d(0, 12px, 0);
        filter: none;
        transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }
}

@media (max-width: 480px) {
    .trustbar {
        grid-template-columns: repeat(2, 1fr);
        margin: -22px auto 0;
        border-radius: 16px;
    }

    .tb-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        border: none;
        padding: 16px 12px;
        font-size: 11.5px;
    }

    .content-inner { padding: 0 12px; }
    .block { margin-top: 54px; }
    .compare { max-width: 100%; }
    .ba-block { padding: 50px 16px; margin-top: 58px; }
    .final-cta { margin-top: 58px; }
    .final-title { font-size: clamp(1.7rem, 8vw, 2.15rem); }
    .final-price .price-now { font-size: 26px; }
    .checkout-dialog {
        width: 100%;
        max-height: 94vh;
        border-radius: 22px;
    }
    .checkout-content {
        padding: 42px 16px 24px;
    }
    .checkout-title {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }
    .checkout-field input,
    .checkout-field textarea {
        border-radius: 14px;
        padding: 13px 14px;
    }

    .hero-price .price-now { font-size: 28px; }
    .hero-price .price-old { font-size: 15px; }

    .buybar { gap: 10px; }

    .buybar-info { gap: 10px; }
    .buybar-thumb { width: 42px; height: 42px; }
    .buybar-name { font-size: 12.5px; }
    .buybar-price { font-size: 13px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html, .slider-track { scroll-behavior: auto; }
    .reveal, .reveal-in { opacity: 1 !important; transform: none !important; transition: none !important; }
    .text-animate, .text-animate-in { opacity: 1 !important; transform: none !important; transition: none !important; }
    .btn, .feature { transition: none !important; }
}
