/* ==================================================================
   WELL FOUNTAIN — Spike Protein Detox Landing Page
   Colors: Forest #1B4332, Gold #C8A96E, Cream #F5ECD7, Off-white #FAFAF5
   Typography: Montserrat 900, Barlow Condensed 800, DM Sans 400-700
   ================================================================== */

/* ── RESET & BASE ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest: #1B4332;
    --forest-deep: #142e23;
    --forest-light: #2d6a4f;
    --gold: #C8A96E;
    --gold-light: #dcc496;
    --gold-dark: #a8893e;
    --cream: #F5ECD7;
    --cream-dark: #e8ddc5;
    --offwhite: #FAFAF5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-body: #3a3a3a;
    --text-muted: #6b6b6b;
    --red: #c0392b;
    --green-check: #27ae60;
    --star-yellow: #F9C528;

    --font-headline: 'Montserrat', sans-serif;
    --font-number: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --section-padding: 100px 0;
    --container-width: 1120px;
    --container-padding: 0 28px;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(27, 67, 50, 0.08);
    --shadow-lg: 0 16px 48px rgba(27, 67, 50, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--offwhite);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

strong {
    font-weight: 700;
    color: var(--text-dark);
}

/* ── HEADER ── */
.header {
    width: 100%;
    background: var(--white);
    padding: 12px 20px 8px; /* Reduced top and bottom white space */
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* very subtle shadow to define edge */
}

.header__promo-title {
    font-family: var(--font-header);
    font-weight: 900;
    color: var(--forest);
    font-size: 26px; /* Increased font size for a bolder look */
    letter-spacing: -0.01em; /* Slight letter spacing reduction for that chunkier bold look */
    margin-bottom: 0px; /* Removed bottom margin */
    line-height: 1.1;
}

.header__promo-offer {
    color: var(--gold-dark);
    font-weight: 800; /* Increased font weight */
    font-size: 17px; /* Slight bump to balance the larger top tier */
    line-height: 1.4;
}

/* ── HERO ── */
.hero {
    background: var(--forest);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__logo-top {
    font-family: var(--font-number);
    font-weight: 800;
    font-size: 26px;
    color: var(--gold);
    letter-spacing: 0.08em; /* Reduced from 0.15em */
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero__offer-highlight {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    padding: 6px 14px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    border-radius: 2px;
}

.hero__eyebrow {
    font-family: var(--font-number);
    font-weight: 800;
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.hero__headline {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero__headline-accent {
    color: var(--gold);
}

.hero__subhead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--forest);
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 60px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3);
}

.hero__cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 169, 110, 0.4);
}

.hero__trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero__stars {
    color: var(--star-yellow);
    font-size: 16px;
    letter-spacing: 2px;
}

.hero__trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.hero__trust-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 8px;
}

.hero__trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__image-wrapper::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__image {
    max-width: 520px; /* Bumped up from 420px */
    width: 100%;
    border-radius: 0px; /* Squared corners */
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

/* ── REASON SECTIONS ── */
.reason {
    padding: var(--section-padding);
}

.reason--cream {
    background: var(--cream);
}

.reason--white {
    background: var(--offwhite);
}

.reason__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.reason__container--reverse {
    direction: rtl;
}

.reason__container--reverse > * {
    direction: ltr;
}

.reason__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 8px;
}

.reason__category {
    font-family: var(--font-number);
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--forest);
}

.reason__number-small {
    font-family: var(--font-number);
    font-weight: 800;
    font-size: 24px;
    color: var(--forest);
}

.reason__line {
    width: 100%;
    height: 1px;
    background-color: var(--forest);
    margin-bottom: 24px;
}

.reason__headline {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
    color: var(--forest);
    margin-bottom: 20px;
}

.reason__body {
    font-size: 20px;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 24px;
}

.reason__body:last-child {
    margin-bottom: 0;
}

.reason__image-col {
    display: flex;
    justify-content: center;
}

.reason__image {
    width: 100%;
    max-width: 560px; /* Increased to fill more of the column */
    border-radius: 0; /* Square corners */
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.reason__image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}



/* ── REVIEWS ── */
.reviews {
    background: var(--cream);
    padding: var(--section-padding);
}

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

.reviews__header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews__stars-big {
    display: block;
    color: var(--gold);
    font-size: 32px;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.reviews__headline {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--forest);
}

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

.reviews__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.reviews__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.reviews__card-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.reviews__card-quote {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-body);
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}

.reviews__card-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid var(--cream);
}

.reviews__card-name {
    font-weight: 700;
    color: var(--forest);
    font-size: 15px;
}

.reviews__card-meta {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── COMPARISON TABLE ── */
.comparison {
    background: var(--offwhite);
    padding: var(--section-padding);
}

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

.comparison__headline {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--forest);
    text-align: center;
    margin-bottom: 40px;
}

.comparison__table-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison__table thead th {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 20px 24px;
    text-align: center;
}

.comparison__table thead th:first-child {
    text-align: left;
}

.comparison__col-wf {
    background: rgba(27, 67, 50, 0.04);
    color: var(--forest);
}

.comparison__col-sep {
    color: var(--text-muted);
}

.comparison__table thead .comparison__col-wf {
    background: var(--forest);
    color: var(--gold);
}

.comparison__table thead .comparison__col-sep {
    background: #f0f0f0;
    color: var(--text-muted);
}

.comparison__table td {
    padding: 16px 24px;
    font-size: 15px;
    border-top: 1px solid #f0ece3;
    text-align: center;
    font-weight: 500;
}

.comparison__table td:first-child {
    text-align: left;
    color: var(--text-dark);
    font-weight: 600;
}

.comparison__yes {
    color: var(--green-check);
    font-weight: 700;
    font-size: 18px;
}

.comparison__no {
    color: var(--red);
    opacity: 0.7;
    font-size: 14px;
}

.comparison__maybe {
    color: var(--gold-dark);
    font-size: 14px;
}

.comparison__highlight {
    color: var(--forest);
    font-weight: 800;
    font-size: 18px;
    font-family: var(--font-number);
}

/* ── FINAL CTA ── */
.final-cta {
    background: var(--forest);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(200, 169, 110, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(200, 169, 110, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta__headline {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: clamp(30px, 4.5vw, 48px);
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta__subtext {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.final-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--forest);
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 18px;
    padding: 20px 48px;
    border-radius: 60px;
    transition: var(--transition);
    box-shadow: 0 6px 28px rgba(200, 169, 110, 0.35);
}

.final-cta__button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 169, 110, 0.45);
}

.final-cta__trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.final-cta__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.final-cta__badge-icon {
    font-size: 18px;
}

/* ==================== BUY BOX ==================== */
.buy-box {
    background: var(--off-white);
    padding: 80px 20px 100px;
    position: relative;
}

.buy-box__top-badge {
    text-align: center;
    margin-bottom: 40px;
}

.buy-box__top-badge span {
    background: #FFEDD5;
    color: #9A3412;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.buy-box__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.buy-box__gallery {
    display: flex;
    gap: 16px;
}

.buy-box__thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 64px;
    flex-shrink: 0;
}

.buy-box__thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
}

.buy-box__thumb.active {
    border-color: var(--forest);
}

.buy-box__main-col {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.buy-box__main-image-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.buy-box__banner {
    background: var(--forest);
    color: #fff;
    text-align: center;
    font-weight: 800;
    padding: 10px;
    font-size: 14px;
}

.buy-box__main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 20px;
}

.buy-box__nutrition-btn {
    width: 100%;
    background: transparent;
    border: 2px solid var(--forest);
    border-radius: 30px;
    padding: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--forest);
    cursor: pointer;
    transition: var(--transition);
}

.buy-box__nutrition-btn:hover {
    background: rgba(27, 67, 50, 0.05);
}

.buy-box__tested-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
}

.buy-box__tested-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: #4b5563;
}

.buy-box__tested-text strong {
    color: #111827;
    margin-bottom: 2px;
}

.buy-box__badge-date {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
}

.buy-box__details {
    display: flex;
    flex-direction: column;
}

.buy-box__reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.buy-box__reviews-link {
    color: #4b5563;
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
}

.buy-box__title {
    font-family: var(--font-headline);
    font-size: 42px;
    font-weight: 800;
    color: var(--forest);
    line-height: 1.1;
    margin-bottom: 16px;
}

.buy-box__desc {
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 32px;
}

.buy-box__divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 32px;
}

.buy-box__amazon-btn {
    display: block;
    width: 100%;
    background-color: var(--gold);
    color: var(--forest);
    text-align: center;
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 24px;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
    margin-bottom: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.buy-box__amazon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.buy-box__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.buy-box__benefits li {
    font-weight: 600;
    color: var(--forest);
    font-size: 15px;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    display: none;
    position: fixed !important;
    z-index: 100000 !important;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox__content {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    border-radius: 8px;
    animation: zoom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fff;
}

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

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.lightbox__close:hover {
    color: var(--gold);
}

/* ==================== SUCCESS STORIES ==================== */
.success-stories {
    background: #fff;
    padding: 0; /* Fully bleed the banner as per visual */
}

.success-stories__container {
    max-width: 1400px; /* Slightly wider for the grid */
    margin: 0 auto;
    text-align: center;
}

.success-stories__image {
    width: 100%;
    height: auto;
    display: block;
}

/* ── FOOTER ── */
.footer {
    background: var(--forest-deep);
    padding: 48px 0;
    text-align: center;
}

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

.footer__brand {
    font-family: var(--font-number);
    font-weight: 800;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer__disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 16px;
}

.footer__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

/* ── FLOATING CTA (MOBILE) ── */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 12px 20px;
    background: rgba(27, 67, 50, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(200, 169, 110, 0.15);
    -webkit-backdrop-filter: blur(12px);
}

.floating-cta__button {
    display: block;
    background: var(--gold);
    color: var(--forest);
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 16px;
    text-align: center;
    padding: 16px;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3);
    transition: var(--transition);
}

.floating-cta__button:active {
    transform: scale(0.97);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reason__container,
.mid-cta__container,
.reviews__card,
.comparison__table-wrap {
    animation: fadeInUp 0.6s ease-out both;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    :root {
        --section-padding: 72px 0;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__subhead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__trust-row {
        justify-content: center;
    }

    .hero__image {
        max-width: 380px;
    }

    .reason__container,
    .reason__container--reverse {
        grid-template-columns: 1fr;
        gap: 36px;
        direction: ltr;
    }

    .reason__image {
        max-width: 100%; /* Increased for mobile viewing */
        margin: 0 auto;
    }

    .buy-box__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .buy-box__title {
        font-size: 32px;
    }
    
    .buy-box__gallery {
        flex-direction: column-reverse;
    }
    
    .buy-box__thumbnails {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }

    .reason__number {
        font-size: 80px;
    }

    .mid-cta__product-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px;
        text-align: center;
    }

    .mid-cta__product-image {
        max-width: 240px;
        margin: 0 auto;
    }

    .mid-cta__checklist {
        align-items: flex-start;
        text-align: left;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison__table td,
    .comparison__table th {
        padding: 12px 14px;
        font-size: 13px;
    }

    .final-cta__trust-badges {
        gap: 20px;
    }

    .floating-cta {
        display: block;
    }

    body {
        padding-bottom: 72px;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 56px 0;
        --container-padding: 0 20px;
    }

    body {
        font-size: 16px;
    }

    .hero {
        padding: 100px 0 56px;
    }

    .hero__headline {
        font-size: 28px;
    }

    .hero__subhead {
        font-size: 16px;
    }

    .hero__image {
        max-width: 260px;
    }

    .reason__headline {
        font-size: 22px;
    }

    .reason__number {
        font-size: 64px;
    }

    .mid-cta__headline {
        font-size: 26px;
    }

    .reviews__headline {
        font-size: 24px;
    }

    .comparison__headline {
        font-size: 22px;
    }

    .final-cta__headline {
        font-size: 28px;
    }

    .final-cta__button {
        font-size: 16px;
        padding: 18px 36px;
    }

    .top-bar__text {
        font-size: 11px;
    }

    .top-bar__divider {
        margin: 0 4px;
    }
}

/* ── SCROLL REVEAL (JS-ENHANCED) ── */
.reason,
.mid-cta,
.reviews,
.comparison,
.final-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reason.visible,
.mid-cta.visible,
.reviews.visible,
.comparison.visible,
.final-cta.visible {
    opacity: 1;
    transform: translateY(0);
}
