/* ═══════════════════════════════════════════
   BREATHIZEN — FULL CONVERSION PAGE (EN-US)
   Model: index.html (Fitness Keto structure)
   Colors: #4661bf / #76a7ed / #ac2d8f / #141414 / #edf2fb / #fff
═══════════════════════════════════════════ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 68px
}

:root {
    --brand: #4661bf;
    --brand-dark: #3550a8;
    --brand-glow: #4661bf;
    --brand-light: #76a7ed;
    --accent: #ac2d8f;
    --accent-dark: #8f2275;
    --gold: #f5c518;
    --gold-light: #ffd15c;
    --amber: #f5c518;
    --amber-dark: #d4a910;
    --red: #d24739;
    --black: #f8f9ff;
    --dark: #edf2fb;
    --dark-2: #e4ecf8;
    --dark-3: #d9e6f5;
    --dark-4: #cddaf0;
    --dark-card: #f2f6fc;
    --white: #141414;
    --off-white: #222;
    --grey-text: #5a6070;
    --light-text: #3a3f50;
    --border-dark: rgba(20, 20, 20, .10);
    --border-blue: rgba(70, 97, 191, .28);
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-blue: 0 8px 32px rgba(70, 97, 191, .18);
    --shadow-dark: 0 8px 32px rgba(20, 20, 20, .10);
    --tr: all .28s cubic-bezier(.4, 0, .2, 1);
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --cream-2: #edf2fb;
    --green: #4661bf;
    --border: rgba(20, 20, 20, .12);
    --text-dark: #141414;
    --text-muted: #5a6070;
    --text-mid: #3a3f50;
    --navy: #141414;
    --navy-dark: #0a0a0a;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
    line-height: 1.7;
    padding-top: 98px
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

/* ═══ SCROLL REVEAL ═══ */

.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease
}

.rv.vi {
    opacity: 1;
    transform: translateY(0)
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

/* ═══ URGENT BAR ═══ */

.urgent-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    min-height: 30px;
    background: linear-gradient(90deg, #3550a8, #4661bf, #3550a8);
    background-size: 200% 100%;
    animation: gradShift 4s ease infinite;
    text-align: center;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    line-height: 1.25;
    color: #fff;
}

.urgent-bar span {
    color: var(--gold-light)
}

.urgent-bar a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 6px
}

@keyframes gradShift {
    0%,
    100% {
        background-position: 0%
    }
    50% {
        background-position: 100%
    }
}

/* ═══ FIXED NAV ═══ */

#main-nav {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(90deg, #ffffff 0%, #f0f4ff 100%);
    border-bottom: 1px solid var(--border-blue);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    height: 68px;
    display: flex;
    align-items: center;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    line-height: 1
}

.nav-brand span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: 1px
}

.nav-brand span em {
    color: var(--accent);
    font-style: normal
}

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

.nav-links a {
    color: rgba(20, 20, 20, .75);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    transition: var(--tr);
    letter-spacing: .2px;
    white-space: nowrap
}

.nav-links a:hover {
    color: #141414;
    background: rgba(70, 97, 191, .12)
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--brand));
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 7px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 0 4px 18px rgba(172, 45, 143, .40);
    transition: var(--tr);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    flex-shrink: 0;
    animation: pulseNav 2.5s ease-in-out infinite;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--brand-dark), var(--accent-dark));
    transform: translateY(-2px);
    animation: none
}

@keyframes pulseNav {
    0%,
    100% {
        box-shadow: 0 4px 18px rgba(172, 45, 143, .40)
    }
    50% {
        box-shadow: 0 6px 28px rgba(172, 45, 143, .65)
    }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #141414;
    border-radius: 2px;
    transition: var(--tr)
}

.mobile-nav-cta {
    display: none
}

@media(max-width:960px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border-blue);
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 20px 18px;
        gap: 0
    }
    .nav-links.open {
        display: flex
    }
    .nav-links a {
        width: 100%;
        padding: 11px 6px;
        border-bottom: 1px solid rgba(20, 20, 20, .06);
        border-radius: 0;
        color: rgba(20, 20, 20, .85) !important
    }
    .nav-links a:last-child {
        border-bottom: none
    }
    .nav-toggle {
        display: flex
    }
    .nav-cta {
        display: none
    }
    .mobile-nav-cta {
        display: inline-flex
    }
}

/* ═══ TRUST MARQUEE ═══ */

.trust-bar {
    background: var(--brand);
    padding: 11px 0;
    overflow: hidden
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 22s linear infinite
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .9);
    font-size: 12.5px;
    font-weight: 700;
    padding: 0 24px;
    flex-shrink: 0;
    letter-spacing: .3px
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-50%)
    }
}

/* ═══ SECTIONS ═══ */

.section {
    padding: 80px 0
}

.section-dark {
    background: var(--dark)
}

.section-darker {
    background: var(--black)
}

.section-card {
    background: var(--dark-2)
}

/* ═══ LABELS / HEADINGS ═══ */

.section-label {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-glow);
    font-weight: 700;
    margin-bottom: 10px;
    display: block
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: .5px
}

h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: .3px
}

h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px
}

p {
    color: var(--light-text);
    margin-bottom: 14px;
    line-height: 1.78
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px
}

.section-title h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    margin: 12px auto 0;
    border-radius: 2px
}

.section-title p {
    color: var(--grey-text)
}

/* ═══ CTA BUTTONS ═══ */

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--brand));
    color: #fff !important;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 17px 40px;
    border-radius: 9px;
    box-shadow: 0 6px 28px rgba(172, 45, 143, .45);
    transition: var(--tr);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    border: none;
    animation: pulseCta 2.4s ease-in-out infinite;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
    transition: left .5s ease
}

.btn-cta:hover::before {
    left: 100%
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--brand-dark), var(--accent-dark));
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(172, 45, 143, .60);
    animation: none
}

.btn-cta:active {
    transform: scale(.97)
}

.btn-cta-sm {
    font-size: .9rem;
    padding: 13px 26px;
    letter-spacing: .5px;
    animation: none
}

.btn-cta-full {
    width: 100%;
    max-width: 540px;
    display: flex;
    margin: 0 auto
}

.btn-cta-wrap {
    text-align: center;
    margin: 32px 0
}

@keyframes pulseCta {
    0%,
    100% {
        box-shadow: 0 6px 28px rgba(172, 45, 143, .45)
    }
    50% {
        box-shadow: 0 10px 44px rgba(172, 45, 143, .75);
        transform: translateY(-2px)
    }
}

/* ═══ HERO ═══ */

.hero {
    background: radial-gradient(ellipse at 70% 40%, rgba(70, 97, 191, .10) 0%, transparent 55%), linear-gradient(160deg, #f0f4ff 0%, #edf2fb 40%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .015;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    min-height: 600px;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 0
}

.hero-left {
    padding: 56px 48px 56px 0;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.hero-right {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(70, 97, 191, .07) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--border-blue);
    min-height: 600px
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    animation: floatImg 4.2s ease-in-out infinite
}

@keyframes floatImg {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-14px)
    }
}

.hero-badge-float {
    position: absolute;
    bottom: 24px;
    left: 20px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--border-blue);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 12px 16px;
    z-index: 2
}

.hero-badge-float .big {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1
}

.hero-badge-float .sub {
    font-size: 12px;
    color: var(--grey-text);
    margin-top: 3px
}

.hero-topbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 4px
}

.hero-label {
    background: rgba(70, 97, 191, .10);
    border: 1px solid rgba(70, 97, 191, .35);
    color: var(--brand-glow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 4px;
    white-space: nowrap
}

.hero-anchors {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.hero-anchors a {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(20, 20, 20, .55);
    border-bottom: 1px solid rgba(20, 20, 20, .18);
    padding-bottom: 1px;
    transition: color .15s, border-color .15s;
    letter-spacing: .2px
}

.hero-anchors a:hover {
    color: var(--brand-glow);
    border-color: var(--brand-glow)
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    line-height: 1.08;
    color: #141414;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0
}

.hero h1 em {
    color: var(--brand);
    font-style: italic
}

.hero-sub {
    font-size: 16px;
    color: rgba(20, 20, 20, .72);
    line-height: 1.65;
    max-width: 560px
}

.hero-sub strong {
    color: #141414
}

.author-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 20, 20, .04);
    border: 1px solid rgba(20, 20, 20, .1);
    border-radius: 8px;
    padding: 10px 14px;
    width: fit-content
}

.author-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0
}

.author-info {
    font-size: 12px;
    color: rgba(20, 20, 20, .7);
    line-height: 1.4
}

.author-info strong {
    display: block;
    color: #141414;
    font-size: 13px
}

.hero-verdict {
    background: rgba(70, 97, 191, .08);
    border: 1px solid rgba(70, 97, 191, .28);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 480px
}

.verd-score {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--brand-glow);
    line-height: 1;
    flex-shrink: 0
}

.verd-text {
    font-size: 13px;
    color: #3a3f50;
    line-height: 1.5
}

.verd-text strong {
    color: #141414;
    display: block;
    font-size: 14px;
    margin-bottom: 2px
}

.stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1px
}

.hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.hero-bullets li {
    font-size: 13.5px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #3a3f50;
    line-height: 1.5
}

.hero-bullets li span.ok {
    color: var(--brand-glow);
    font-weight: 900;
    flex-shrink: 0
}

.hero-bullets li span.no {
    color: var(--red);
    font-weight: 900;
    flex-shrink: 0
}

.hero-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.hbadge {
    background: rgba(20, 20, 20, .05);
    border: 1px solid rgba(20, 20, 20, .12);
    border-radius: 6px;
    padding: 6px 11px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(20, 20, 20, .78);
    letter-spacing: .4px;
    text-transform: uppercase
}

.hero-disclaimer {
    font-size: 11px;
    color: rgba(20, 20, 20, .45);
    display: block;
    margin-top: 5px
}

.hero-mobile-image {
    display: none
}

@media(max-width:900px) {
    .hero-mobile-image {
        display: block;
        width: 100%;
        margin: 6px 0 2px;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(70, 97, 191, .3);
        box-shadow: 0 12px 34px rgba(20, 20, 20, .12)
    }
    .hero-mobile-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        animation: floatImg 4.6s ease-in-out infinite
    }
}

/* ═══ SCORE CARD ═══ */

.score-card {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-dark);
    margin: 24px 0
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.score-item {
    text-align: center
}

.score-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-glow);
    line-height: 1;
    margin-bottom: 6px
}

.score-label {
    font-size: .8rem;
    color: var(--grey-text);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.score-bar {
    background: rgba(20, 20, 20, .12);
    border-radius: 999px;
    height: 5px;
    overflow: hidden
}

.score-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    border-radius: 999px
}

/* ═══ SALES INTRO ═══ */

.official-intro {
    background: rgba(70, 97, 191, .07);
    border-left: 3px solid var(--brand);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 18px 22px;
    margin-bottom: 24px
}

.official-intro p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: #141414;
    margin: 0;
    line-height: 1.6;
    letter-spacing: .2px
}

/* ═══ OVERVIEW TABLE ═══ */

.overview-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    margin: 24px 0
}

.overview-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-dark);
    font-size: .92rem;
    vertical-align: top;
    color: var(--light-text)
}

.overview-table tr:last-child td {
    border-bottom: none
}

.overview-table tr:nth-child(even) td {
    background: rgba(20, 20, 20, .025)
}

.overview-table td:first-child {
    font-weight: 700;
    color: rgba(20, 20, 20, .9);
    white-space: nowrap;
    width: 38%
}

.ov-good {
    color: var(--brand-glow);
    font-weight: 700
}

.ov-warn {
    color: var(--amber-dark);
    font-weight: 700
}

/* ═══ PROBLEM / SOLUTION ═══ */

.ps-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
    margin: 24px 0
}

.ps-grid-rev {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
    margin: 28px 0
}

.ps-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(20, 20, 20, .12);
    border: 1px solid var(--border-dark)
}

.ps-img img {
    width: 100%;
    display: block
}

.ps-list {
    list-style: none;
    margin: 14px 0
}

.ps-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--light-text)
}

.icon-bad {
    color: var(--red);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px
}

.icon-good {
    color: var(--brand-glow);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px
}

.solution-cta-box {
    background: rgba(70, 97, 191, .07);
    border: 1px solid var(--border-blue);
    border-left: 4px solid var(--brand);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.cta-text strong {
    display: block;
    font-size: .92rem;
    color: #141414;
    margin-bottom: 2px
}

.cta-text span {
    font-size: .8rem;
    color: var(--grey-text)
}

.solution-cta-box a {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .9rem;
    padding: 11px 20px;
    border-radius: 6px;
    white-space: nowrap;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: background .2s
}

.solution-cta-box a:hover {
    background: var(--brand-dark)
}

/* ═══ HOW IT WORKS ═══ */

.how-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start
}

.how-media-stack {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.how-media-slot {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-dark)
}

.how-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 14px 0 18px
}

.how-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .95rem;
    color: var(--light-text);
    line-height: 1.55
}

.how-list li::before {
    content: '→';
    color: var(--brand-glow);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
    font-family: var(--font-display)
}

/* ═══ HOW TO USE STEPS ═══ */

#how-to-use {
    background: var(--cream-2);
    padding: 80px 0
}

#how-to-use .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px
}

#how-to-use .step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center
}

#how-to-use .step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px
}

#how-to-use .step-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 7px
}

#how-to-use .step-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6
}

#how-to-use .step-note {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 24px;
    margin-top: 24px;
    text-align: center
}

#how-to-use .step-note p {
    margin: 0;
    font-size: 14px;
    color: var(--text-mid)
}

/* ═══ INGREDIENTS ═══ */

.ingredient-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-dark);
    transition: var(--tr);
    cursor: default
}

.ingredient-box:hover {
    border-color: var(--border-blue);
    transform: translateX(4px)
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    background: rgba(70, 97, 191, .10);
    border: 1px solid var(--border-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
    overflow: hidden
}

.ingredient-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ingredient-content h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: .3px
}

.ingredient-content p {
    font-size: .88rem;
    color: var(--grey-text);
    line-height: 1.65;
    margin: 0
}

/* ═══ COMPACT INGREDIENT GALLERY ═══ */

.ingredients-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 28px auto 24px;
}

.ingredient-gallery-card {
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .14);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20, 20, 20, .08);
    transition: var(--tr);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.ingredient-gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(70, 97, 191, .38);
    box-shadow: 0 16px 38px rgba(70, 97, 191, .14);
}

.ingredient-gallery-img {
    width: 100%;
    aspect-ratio: 1.25/1;
    background: #e4ecf8;
    overflow: hidden;
}

.ingredient-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ingredient-gallery-body {
    padding: 12px 12px 14px;
    text-align: center;
}

.ingredient-gallery-body h4 {
    font-family: var(--font-display);
    font-size: .94rem;
    line-height: 1.15;
    color: #141414;
    margin: 0 0 7px;
    letter-spacing: .2px;
}

.ingredient-gallery-body p {
    font-size: .77rem;
    line-height: 1.48;
    color: var(--grey-text);
    margin: 0;
}

.ingredient-summary {
    background: rgba(70, 97, 191, .07);
    border: 1px solid var(--border-blue);
    border-left: 4px solid var(--brand);
    border-radius: 10px;
    padding: 15px 18px;
    color: var(--grey-text);
    font-size: .92rem;
    line-height: 1.65;
    max-width: 920px;
    margin: 6px auto 0;
}

.ingredient-summary strong {
    color: #141414
}

@media(max-width:1050px) {
    .ingredients-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media(max-width:720px) {
    .ingredients-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px
    }
    .ingredient-gallery-body {
        padding: 10px 10px 12px
    }
    .ingredient-gallery-body p {
        font-size: .73rem;
        line-height: 1.42
    }
}

@media(max-width:420px) {
    .ingredients-gallery {
        grid-template-columns: 1fr
    }
}

/* ═══ COMPARISON TABLE ═══ */

.comparison-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 24px
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 520px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark)
}

.comparison-table thead th {
    background: #dde5f5;
    color: var(--grey-text);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 14px 16px;
    text-align: center
}

.comparison-table thead th:first-child {
    text-align: left
}

.comparison-table .product-col-header {
    background: rgba(70, 97, 191, .75) !important;
    color: #fff !important
}

.comparison-table tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border-dark);
    font-size: .88rem;
    text-align: center;
    vertical-align: middle;
    color: var(--light-text);
    background: #fff
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--white)
}

.comparison-table .highlighted-row td {
    background: rgba(70, 97, 191, .04)
}

.check-yes {
    color: var(--brand-glow);
    font-weight: 800;
    font-size: 1rem
}

.check-no {
    color: var(--red);
    font-weight: 800
}

.check-maybe {
    color: var(--amber-dark);
    font-weight: 700;
    font-size: .82rem
}

/* ═══ BUYER RESULTS ═══ */

.buyer-reports-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 24px
}

.offer-card {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 22px;
    transition: var(--tr);
    border-top: 3px solid var(--brand)
}

.offer-card.accent-top {
    border-top-color: var(--accent)
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark)
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.offer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(70, 97, 191, .15);
    border: 2px solid var(--border-blue);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--brand);
    overflow: hidden
}

.offer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.offer-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--white)
}

.verified-badge {
    font-size: 11px;
    color: var(--brand-glow);
    font-weight: 700;
    background: rgba(70, 97, 191, .10);
    padding: 2px 7px;
    border-radius: 4px
}

.offer-text {
    font-size: 14px;
    color: var(--grey-text);
    line-height: 1.7;
    font-style: italic
}

.stars-small {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 1px
}

.rating-summary {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin: 0 auto 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    box-shadow: var(--shadow-dark);
    max-width: 860px
}

.rating-score {
    text-align: center;
    min-width: 140px
}

.big-num {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--brand-glow);
    line-height: 1
}

.big-stars {
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin: 6px 0 4px
}

.big-count {
    font-size: .83rem;
    color: var(--grey-text);
    font-weight: 700
}

.rating-bars {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.rating-bar-label {
    font-size: .83rem;
    color: var(--grey-text);
    width: 40px;
    text-align: right
}

.rating-bar-track {
    flex: 1;
    background: rgba(20, 20, 20, .12);
    border-radius: 999px;
    height: 9px;
    overflow: hidden
}

.rating-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 999px
}

.rating-bar-pct {
    font-size: .82rem;
    color: var(--grey-text);
    width: 34px
}

/* ═══ SCAM SECTION ═══ */

.scam-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0
}

.scam-stat-card {
    background: #fff4f3;
    border: 1px solid rgba(210, 71, 57, .20);
    border-top: 4px solid var(--red);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-dark)
}

.scam-stat-number {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px
}

.scam-stat-label {
    font-size: .85rem;
    color: var(--grey-text);
    line-height: 1.5
}

.scam-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0
}

.scam-warning-card {
    background: rgba(210, 71, 57, .05);
    border: 1.5px solid rgba(210, 71, 57, .25);
    border-radius: var(--radius);
    padding: 24px 22px
}

.scam-warning-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .97rem;
    color: var(--red);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(210, 71, 57, .2)
}

.scam-avoid-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.scam-avoid-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.scam-avoid-list strong {
    display: block;
    font-size: .9rem;
    color: var(--white);
    margin-bottom: 2px
}

.scam-avoid-list p {
    font-size: .83rem;
    color: var(--grey-text);
    margin: 0;
    line-height: 1.5
}

.scam-rules-card {
    background: rgba(70, 97, 191, .06);
    border: 1.5px solid rgba(70, 97, 191, .20);
    border-radius: var(--radius);
    padding: 24px 22px;
    position: relative
}

.scam-rules-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-glow);
    border-radius: var(--radius) 0 0 var(--radius)
}

.scam-rules-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .97rem;
    color: var(--brand);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(70, 97, 191, .2)
}

.scam-rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.scam-rules-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.scam-rule-num {
    background: var(--brand-glow);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px
}

.scam-rules-list strong {
    display: block;
    font-size: .9rem;
    color: var(--brand-glow);
    margin-bottom: 2px
}

.scam-rules-list p {
    font-size: .83rem;
    color: var(--grey-text);
    margin: 0;
    line-height: 1.5
}

/* ═══ PRICING ═══ */

.pricing-section {
    background: linear-gradient(180deg, #edf2fb 0%, #e4ecf8 50%, #edf2fb 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center top, rgba(70, 97, 191, .08) 0%, transparent 60%)
}

.offer-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
    letter-spacing: .5px
}

.offer-sub {
    font-size: 1rem;
    color: #5a6070;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.72;
    position: relative;
    z-index: 1
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1
}

.price-card {
    background: #fff;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    position: relative;
    transition: var(--tr);
    box-shadow: 0 2px 12px rgba(20, 20, 20, .07)
}

.price-card:hover {
    background: #f5f8ff;
    border-color: var(--border-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue)
}

.price-card.featured {
    background: rgba(70, 97, 191, .07);
    border: 2px solid var(--brand);
    transform: scale(1.04)
}

.price-card.featured:hover {
    transform: scale(1.04) translateY(-4px)
}

.price-card.best-val {
    background: rgba(172, 45, 143, .06);
    border: 2px solid var(--accent)
}

.has-badge {
    padding-top: 46px
}

.price-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    font-family: var(--font-display);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 18px;
    border-radius: 0 0 10px 10px;
    white-space: nowrap
}

.price-card.best-val .price-badge {
    background: var(--accent)
}

.bottles {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey-text);
    margin-bottom: 4px
}

.price-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: .3px
}

.price-image-slot {
    min-height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 14px;
    padding: 10px 8px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(70, 97, 191, .06), rgba(172, 45, 143, .04));
    border: 1px dashed rgba(20, 20, 20, .14)
}

.price-image-slot img {
    width: 100%;
    max-width: 150px !important;
    height: auto;
    object-fit: contain;
    margin: 0 auto !important;
    filter: drop-shadow(0 12px 22px rgba(20, 20, 20, .12))
}

.price-card.featured .price-image-slot img,
.price-card.best-val .price-image-slot img {
    max-width: 165px !important
}

.price-old {
    font-size: .87rem;
    color: rgba(20, 20, 20, .35);
    text-decoration: line-through;
    margin-bottom: 2px
}

.price-new {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-glow);
    line-height: 1;
    margin-bottom: 2px
}

.price-new span {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 5px;
    display: inline-block
}

.price-per {
    font-size: .76rem;
    color: var(--grey-text);
    margin-bottom: 14px
}

.price-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    margin-bottom: 18px
}

.price-perks li {
    font-size: .81rem;
    color: rgba(20, 20, 20, .65);
    display: flex;
    align-items: flex-start;
    gap: 7px
}

.price-perks li::before {
    content: '✓';
    color: var(--brand-glow);
    flex-shrink: 0;
    font-weight: 900
}

.btn-order {
    display: block;
    background: linear-gradient(135deg, var(--accent), var(--brand));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13.5px;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: all .2s;
    box-shadow: 0 4px 18px rgba(172, 45, 143, .30);
    margin-bottom: 12px
}

.btn-order:hover {
    background: linear-gradient(135deg, var(--brand-dark), var(--accent-dark));
    color: #fff;
    transform: translateY(-2px)
}

.countdown-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.countdown-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--grey-text);
    text-transform: uppercase
}

.countdown-timer {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--brand-glow);
    letter-spacing: 3px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(70, 97, 191, .3)
}

.offer-timer-text {
    font-size: .85rem;
    color: var(--grey-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px
}

.urgency-text {
    text-align: center;
    font-size: .87rem;
    color: rgba(20, 20, 20, .45);
    margin-top: 20px;
    font-style: italic
}

/* ═══ SCIENCE SECTION ═══ */

#science-section {
    background: var(--cream-2);
    padding: 80px 0
}

#science-section .science-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 840px;
    margin: 0 auto
}

#science-section .science-highlight {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 8px
}

#science-section .science-highlight p {
    margin: 0;
    font-size: 13px;
    color: var(--text-mid)
}

/* ═══ TRUST SECTION ═══ */

.trust-section {
    background: linear-gradient(180deg, #e4ecf8 0%, #edf2fb 100%);
    padding: 72px 0
}

.trust-title {
    text-align: center;
    margin-bottom: 40px
}

.trust-title h2 {
    margin-bottom: 8px
}

.trust-title p {
    color: var(--grey-text)
}

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

.trust-feat {
    text-align: center;
    padding: 28px 20px;
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--brand);
    border-radius: var(--radius);
    transition: var(--tr)
}

.trust-feat:hover {
    background: rgba(70, 97, 191, .05);
    transform: translateY(-4px);
    border-color: var(--border-blue)
}

.trust-feat img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block
}

.trust-feat h3 {
    font-size: 1.05rem;
    margin-bottom: 10px
}

.trust-feat p {
    font-size: .9rem;
    color: var(--grey-text);
    line-height: 1.72;
    margin: 0
}

.trust-warn {
    margin-top: 28px;
    text-align: center;
    color: #7a4c00;
    font-size: .9rem;
    line-height: 1.6;
    background: rgba(245, 197, 24, .12);
    border: 1px solid rgba(245, 197, 24, .35);
    border-radius: var(--radius-sm);
    padding: 14px 18px
}

/* ═══ GUARANTEE ═══ */

.guarantee-section {
    background: linear-gradient(160deg, #edf2fb 0%, #e4ecf8 100%);
    padding: 68px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark)
}

.guarantee-section h2 {
    text-align: center
}

.guarantee-section p {
    color: var(--grey-text);
    text-align: center
}

.guarantee-icon {
    width: 180px;
    max-width: 180px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center
}

.guarantee-icon img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    object-fit: contain
}

/* ═══ BONUS / DIGITAL LIBRARY GALLERY ═══ */

section.bg-white {
    background: #f5f8ff;
    padding: 80px 0
}

section.bg-white .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.bonus-gallery-section {
    position: relative;
    overflow: hidden
}

.bonus-gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 12% 18%, rgba(70, 97, 191, .09) 0%, transparent 28%), radial-gradient(circle at 88% 70%, rgba(172, 45, 143, .08) 0%, transparent 30%);
}

.bonus-gallery-section .container {
    position: relative;
    z-index: 1
}

.bonus-gallery-section code {
    background: rgba(70, 97, 191, .08);
    border: 1px solid rgba(70, 97, 191, .18);
    border-radius: 6px;
    padding: 1px 6px;
    color: var(--brand);
    font-size: .86em;
}

.bonus-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: stretch;
    margin: 30px auto 28px;
}

.bonus-gallery-card {
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .10);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20, 20, 20, .09);
    transition: var(--tr);
    display: flex;
    flex-direction: column;
}

.bonus-gallery-card:hover {
    transform: translateY(-5px);
    border-color: rgba(70, 97, 191, .35);
    box-shadow: 0 18px 44px rgba(70, 97, 191, .16);
}

.bonus-gallery-image {
    min-height: 210px;
    background: linear-gradient(180deg, #eef4ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    border-bottom: 1px solid rgba(20, 20, 20, .07);
}

.bonus-gallery-image img {
    width: 100%;
    max-width: 150px;
    height: 190px;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(20, 20, 20, .16));
    margin: 0 auto;
}

.bonus-gallery-body {
    padding: 16px 14px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bonus-number {
    display: inline-flex;
    align-self: flex-start;
    background: rgba(70, 97, 191, .10);
    border: 1px solid rgba(70, 97, 191, .22);
    color: var(--brand);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.bonus-gallery-body h3 {
    font-family: var(--font-display);
    color: #141414;
    font-size: 1.08rem;
    line-height: 1.12;
    margin-bottom: 8px;
}

.bonus-gallery-body p {
    color: var(--grey-text);
    font-size: .82rem;
    line-height: 1.55;
    margin: 0;
}

.bonus-gallery-summary {
    background: linear-gradient(135deg, rgba(70, 97, 191, .10), rgba(172, 45, 143, .08));
    border: 1px solid var(--border-blue);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: var(--shadow-dark);
    margin: 0 auto;
    max-width: 920px;
}

.bonus-gallery-summary strong {
    display: block;
    color: #141414;
    font-size: 1rem;
    margin-bottom: 3px;
}

.bonus-gallery-summary span {
    display: block;
    color: var(--grey-text);
    font-size: .9rem;
    line-height: 1.55;
}

.bonus-gallery-note {
    text-align: center;
    margin: 18px auto 0;
    max-width: 740px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.bonus-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: var(--radius);
    padding: 24px;
    max-width: 640px;
    margin: 24px auto;
    box-shadow: var(--shadow-dark)
}

.bonus-card img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0
}

.bonus-card-body {
    flex: 1
}

.bonus-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand);
    margin-bottom: 6px
}

.bonus-card-body h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #141414;
    margin-bottom: 6px
}

.bonus-price-old {
    font-size: .85rem;
    color: rgba(20, 20, 20, .4);
    text-decoration: line-through;
    margin-bottom: 3px
}

.bonus-price-free {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand)
}

@media(max-width:1100px) {
    .bonus-gallery-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:760px) {
    .bonus-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }
    .bonus-gallery-summary {
        flex-direction: column;
        text-align: center
    }
    .bonus-gallery-summary .btn-cta {
        width: 100%
    }
}

@media(max-width:520px) {
    .bonus-gallery-grid {
        grid-template-columns: 1fr
    }
    .bonus-gallery-image {
        min-height: 230px
    }
    .bonus-gallery-image img {
        height: 205px;
        max-width: 170px
    }
}

/* ═══ FAQ ═══ */

#faq,
#faq * {
    box-sizing: border-box !important
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 820px;
    margin: 0 auto
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: var(--tr)
}

.faq-item:hover {
    border-color: var(--border-blue)
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    transition: background .2s;
    position: relative;
    padding-right: 40px
}

.faq-question::after {
    content: '＋';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--brand-glow);
    transition: transform .2s
}

.faq-question:hover {
    background: rgba(70, 97, 191, .06)
}

.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(45deg)
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: .92rem;
    color: var(--grey-text);
    line-height: 1.72;
    background: #fff
}

.faq-item.open .faq-answer {
    display: block
}

/* ═══ RESULTS GALLERY ═══ */

.results-gallery-section {
    background: linear-gradient(180deg, #edf2fb 0%, #f5f8ff 100%);
    padding: 54px 0 58px;
    border-top: 1px solid rgba(20, 20, 20, .06);
    border-bottom: 1px solid rgba(20, 20, 20, .06)
}

.results-gallery-wrap {
    max-width: 980px;
    margin: 0 auto;
    text-align: center
}

.results-gallery-title {
    margin-bottom: 28px
}

.results-gallery-title .section-label {
    display: block;
    text-align: center;
    margin-bottom: 8px
}

.results-gallery-title h2 {
    max-width: 760px;
    margin: 0 auto 10px;
    color: #141414
}

.results-gallery-title p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--grey-text);
    font-size: .95rem
}

.results-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch
}

.results-gallery-card {
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .10);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 34px rgba(20, 20, 20, .10);
    transition: all .25s ease;
    text-align: left
}

.results-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 42px rgba(20, 20, 20, .14);
    border-color: rgba(70, 97, 191, .35)
}

.results-gallery-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: #f5f8ff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.results-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block
}

.results-gallery-body {
    padding: 16px 16px 18px
}

.results-gallery-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.15;
    color: #141414;
    margin-bottom: 8px
}

.results-gallery-body p {
    color: var(--grey-text);
    font-size: .88rem;
    line-height: 1.6;
    margin: 0
}

.results-gallery-note {
    max-width: 760px;
    margin: 22px auto 0;
    color: rgba(20, 20, 20, .50);
    font-size: .82rem;
    font-style: italic;
    line-height: 1.6
}

/* ═══ POPULAR SECTION ═══ */

.popular-section {
    background: linear-gradient(135deg, #4661bf 0%, #3550a8 45%, #ac2d8f 100%);
    padding: 56px 0 58px;
    position: relative;
    overflow: hidden
}

.popular-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 35%, rgba(255, 255, 255, .12) 0%, transparent 26%), radial-gradient(circle at 78% 70%, rgba(255, 255, 255, .08) 0%, transparent 28%);
    pointer-events: none
}

.popular-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 36px;
    align-items: center
}

.popular-media {
    position: relative;
    height: 420px;
    min-height: 420px;
    width: 100%;
    overflow: visible
}

.popular-product-img {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    max-width: none !important;
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(20, 20, 20, .22));
    z-index: 2;
    animation: floatImg 4.2s ease-in-out infinite
}

.popular-content {
    color: #fff;
    position: relative;
    z-index: 8
}

.popular-kicker {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.3vw, 2.7rem);
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.popular-title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.8vw, 3.7rem);
    line-height: 1.02;
    font-weight: 800;
    color: rgba(255, 255, 255, .85);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px
}

.popular-content p {
    color: rgba(255, 255, 255, .9);
    font-size: 1.03rem;
    line-height: 1.68;
    margin-bottom: 16px;
    max-width: 620px;
    font-weight: 500
}

.popular-content strong {
    color: #fff;
    font-weight: 800
}

.popular-summary {
    font-weight: 800 !important;
    color: #fff !important;
    margin-top: 18px
}

.popular-cta {
    margin-top: 24px
}

.popular-cta .btn-cta {
    background: linear-gradient(135deg, #141414, #222);
    color: #fff !important;
    box-shadow: 0 10px 34px rgba(20, 20, 20, .28)
}

.popular-cta .btn-cta:hover {
    background: linear-gradient(135deg, #3550a8, #4661bf);
    color: #fff !important
}

/* ═══ SEO FOOTER ═══ */

.seo-footer-section {
    background: #e4ecf8;
    padding: 28px 0 16px;
    border-top: 1px solid var(--border-dark)
}

.seo-footer-box {
    text-align: center
}

.seo-footer-box h2 {
    font-size: .95rem;
    font-weight: 700;
    color: rgba(20, 20, 20, .8);
    margin-bottom: 14px;
    line-height: 1.4;
    letter-spacing: .2px
}

.seo-footer-box p {
    color: var(--grey-text);
    font-size: .73rem;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

.seo-footer-box strong {
    color: #141414;
    font-weight: 700
}

/* ═══ FOOTER ═══ */

.site-footer {
    background: #141414;
    padding: 36px 0
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center
}

.footer-sitemap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 860px;
    margin: 0 auto 24px;
    text-align: left
}

.footer-sitemap-col h4 {
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.footer-sitemap-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-sitemap-col ul li a {
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    transition: color .2s
}

.footer-sitemap-col ul li a:hover {
    color: var(--brand-light)
}

.footer-divider {
    width: 100%;
    max-width: 860px;
    height: 1px;
    background: rgba(255, 255, 255, .1);
    margin: 4px 0
}

.footer-links-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center
}

.footer-links-row a {
    color: rgba(255, 255, 255, .4);
    font-size: .82rem;
    transition: color .2s
}

.footer-links-row a:hover {
    color: rgba(255, 255, 255, .8)
}

.footer-copy {
    color: rgba(255, 255, 255, .35);
    font-size: .8rem;
    line-height: 1.5
}

.footer-disclaimer {
    color: rgba(255, 255, 255, .32);
    font-size: .7rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 760px
}

.footer-disclaimer strong {
    color: rgba(255, 255, 255, .72) !important
}

/* ═══ RESPONSIVE ═══ */

@media(max-width:1100px) {
    .price-cards {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr
    }
    .hero-right {
        display: none
    }
    .hero-left {
        padding: 48px 0 44px
    }
    .ps-grid,
    .ps-grid-rev {
        grid-template-columns: 1fr
    }
    .how-grid {
        grid-template-columns: 1fr
    }
    .how-media-stack {
        display: none
    }
    .trust-features-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }
    .score-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .buyer-reports-grid {
        grid-template-columns: 1fr
    }
    .scam-split {
        grid-template-columns: 1fr
    }
    .rating-summary {
        flex-direction: column
    }
    .footer-sitemap {
        grid-template-columns: 1fr;
        gap: 18px
    }
    .scam-stat-grid {
        grid-template-columns: 1fr
    }
    #how-to-use .steps-grid {
        grid-template-columns: 1fr
    }
    #science-section .science-grid {
        grid-template-columns: 1fr
    }
    .bonus-card {
        flex-direction: column;
        text-align: center
    }
    .popular-grid {
        grid-template-columns: 1fr
    }
    .popular-media {
        display: none
    }
    .results-gallery-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto
    }
}

@media(max-width:600px) {
    body {
        padding-top: 116px !important
    }
    .urgent-bar {
        min-height: 48px !important;
        height: 48px !important;
        padding: 7px 10px !important;
        font-size: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 0 4px !important
    }
    #main-nav {
        top: 48px !important;
        height: 68px !important
    }
    .section {
        padding: 52px 0
    }
    .pricing-section,
    .trust-section {
        padding: 52px 0
    }
    .price-cards {
        grid-template-columns: 1fr
    }
    .price-card.featured {
        transform: none
    }
    .hero h1 {
        font-size: 2rem
    }
    .score-grid {
        grid-template-columns: 1fr 1fr
    }
    .container {
        padding-left: 18px !important;
        padding-right: 18px !important
    }
}

@media(max-width:600px) {
    .price-image-slot {
        min-height: 132px;
        margin: 6px auto 12px
    }
    .price-image-slot img,
    .price-card.featured .price-image-slot img,
    .price-card.best-val .price-image-slot img {
        max-width: 140px !important
    }
}

@media(max-width:960px) {
    .nav-toggle {
        display: flex
    }
}

.nav-toggle,
.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle:active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important
}

.nav-toggle span {
    background: #141414 !important
}

/* ═══ DECISION ANCHOR STRIP — added to match conversion model density ═══ */

.decision-strip {
    background: #fff;
    border-bottom: 1px solid var(--border-blue);
    padding: 18px 0;
    box-shadow: 0 8px 26px rgba(20, 20, 20, .06)
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.decision-card {
    background: linear-gradient(180deg, #f8faff, #eef4ff);
    border: 1px solid rgba(70, 97, 191, .20);
    border-radius: 12px;
    padding: 14px 14px 15px;
    transition: var(--tr);
    position: relative;
    overflow: hidden
}

.decision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand), var(--accent))
}

.decision-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
    border-color: rgba(70, 97, 191, .38)
}

.decision-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.1;
    color: #141414;
    margin-bottom: 6px;
    letter-spacing: .4px
}

.decision-card span {
    display: block;
    font-size: .82rem;
    line-height: 1.45;
    color: var(--grey-text);
    margin-bottom: 10px
}

.decision-card a {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 3px
}

/* ═══ BENEFITS — missing in user version, added preserving visual identity ═══ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 26px
}

.benefit-card {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--brand);
    border-radius: var(--radius);
    padding: 22px 20px;
    box-shadow: var(--shadow-dark);
    transition: var(--tr);
    min-height: 210px
}

.benefit-card:nth-child(even) {
    border-top-color: var(--accent)
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-blue);
    box-shadow: var(--shadow-blue)
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(70, 97, 191, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 14px;
    border: 1px solid var(--border-blue)
}

.benefit-card h3 {
    font-size: 1.12rem;
    line-height: 1.15;
    margin-bottom: 8px
}

.benefit-card p {
    font-size: .9rem;
    line-height: 1.68;
    margin: 0;
    color: var(--grey-text)
}

.benefits-bridge {
    margin-top: 24px;
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: var(--shadow-dark)
}

.benefits-bridge p {
    margin: 0;
    color: #3a3f50;
    font-size: .94rem;
    line-height: 1.55
}

.benefits-bridge strong {
    color: #141414
}

/* ═══ OFFICIAL SOURCE / WHERE TO BUY ═══ */

.official-buy-section {
    background: linear-gradient(180deg, #f5f8ff 0%, #edf2fb 100%);
    padding: 76px 0;
    border-top: 1px solid rgba(20, 20, 20, .08);
    border-bottom: 1px solid rgba(20, 20, 20, .08)
}

.official-buy-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 34px;
    align-items: center
}

.official-buy-card {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-dark);
    position: relative;
    overflow: hidden
}

.official-buy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand), var(--accent))
}

.official-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0
}

.official-step {
    background: #f4f7ff;
    border: 1px solid rgba(70, 97, 191, .16);
    border-radius: 10px;
    padding: 14px;
    text-align: center
}

.official-step .num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 9px;
    font-size: .8rem
}

.official-step strong {
    display: block;
    color: #141414;
    font-size: .88rem;
    margin-bottom: 4px
}

.official-step span {
    font-size: .78rem;
    color: var(--grey-text);
    line-height: 1.45
}

.official-buy-media {
    background: #fff;
    border: 1px solid rgba(70, 97, 191, .18);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-blue);
    text-align: center
}

.official-buy-media img {
    max-width: 250px;
    margin: 0 auto 12px;
    filter: drop-shadow(0 14px 22px rgba(20, 20, 20, .13))
}

.official-buy-media p {
    font-size: .82rem;
    color: var(--grey-text);
    line-height: 1.55;
    margin: 0
}

/* ═══ FINAL CONVERSION STRIP ═══ */

.final-strip {
    background: linear-gradient(135deg, #141414 0%, #1c2d5f 52%, #ac2d8f 100%);
    padding: 54px 0;
    color: #fff;
    position: relative;
    overflow: hidden
}

.final-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 16% 34%, rgba(255, 255, 255, .14) 0%, transparent 26%), radial-gradient(circle at 82% 72%, rgba(118, 167, 237, .18) 0%, transparent 28%);
    pointer-events: none
}

.final-strip-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center
}

.final-strip h2 {
    color: #fff;
    margin-bottom: 10px
}

.final-strip p {
    color: rgba(255, 255, 255, .82);
    max-width: 720px;
    margin: 0;
    line-height: 1.68
}

.final-strip .btn-cta {
    background: linear-gradient(135deg, #fff, #edf2fb);
    color: #141414 !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, .14)
}

.final-strip .btn-cta:hover {
    background: linear-gradient(135deg, var(--brand-light), #fff);
    color: #141414 !important
}

/* ═══ POLICY PAGES ═══ */

.page-hero {
    background: radial-gradient(ellipse at 70% 30%, rgba(70, 97, 191, .14) 0%, transparent 56%), linear-gradient(160deg, #f0f4ff 0%, #edf2fb 100%);
    padding: 72px 0 52px;
    border-bottom: 1px solid var(--border-blue)
}

.page-hero .container {
    max-width: 1000px
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.05;
    color: #141414;
    letter-spacing: 1px;
    margin-bottom: 12px
}

.page-hero p {
    font-size: 1.02rem;
    color: rgba(20, 20, 20, .68);
    max-width: 760px;
    margin: 0
}

.policy-section {
    background: #edf2fb;
    padding: 64px 0
}

.policy-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start
}

.policy-toc {
    position: sticky;
    top: 118px;
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-dark)
}

.policy-toc h3 {
    font-size: 1rem;
    color: #141414;
    margin-bottom: 10px
}

.policy-toc a {
    display: block;
    color: var(--grey-text);
    font-size: .88rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(20, 20, 20, .06);
    transition: var(--tr)
}

.policy-toc a:hover {
    color: var(--brand);
    padding-left: 4px
}

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.policy-card {
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .10);
    border-radius: var(--radius);
    padding: 26px 28px;
    box-shadow: var(--shadow-dark)
}

.policy-card h2 {
    font-size: 1.65rem;
    color: #141414;
    margin-bottom: 10px
}

.policy-card h3 {
    font-size: 1.15rem;
    color: #141414;
    margin-top: 12px
}

.policy-card p,
.policy-card li {
    color: var(--grey-text);
    font-size: .95rem;
    line-height: 1.75
}

.policy-card ul {
    padding-left: 20px;
    margin: 10px 0 0
}

.policy-callout {
    background: rgba(70, 97, 191, .07);
    border: 1px solid var(--border-blue);
    border-left: 4px solid var(--brand);
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 12px
}

.policy-callout p {
    margin: 0;
    color: #3a3f50
}

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

.contact-method {
    background: #f7faff;
    border: 1px solid rgba(70, 97, 191, .18);
    border-radius: 12px;
    padding: 20px
}

.contact-method strong {
    display: block;
    color: #141414;
    margin-bottom: 6px
}

.contact-method a {
    color: var(--brand);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px
}

.static-form {
    display: grid;
    gap: 12px;
    margin-top: 12px
}

.static-form input,
.static-form textarea {
    width: 100%;
    border: 1px solid rgba(20, 20, 20, .12);
    border-radius: 8px;
    padding: 13px 14px;
    font-family: var(--font-body);
    background: #fff;
    color: #141414
}

.static-form textarea {
    min-height: 120px;
    resize: vertical
}

.static-form .btn-cta {
    width: fit-content
}

@media(max-width:900px) {
    .decision-grid,
    .benefits-grid {
        grid-template-columns: 1fr 1fr
    }
    .official-buy-grid,
    .final-strip-inner,
    .policy-layout,
    .contact-grid {
        grid-template-columns: 1fr
    }
    .policy-toc {
        position: static
    }
    .official-steps {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {
    .decision-grid,
    .benefits-grid {
        grid-template-columns: 1fr
    }
    .benefits-bridge {
        flex-direction: column;
        align-items: flex-start
    }
    .official-buy-section,
    .policy-section {
        padding: 48px 0
    }
    .page-hero {
        padding: 52px 0 38px
    }
}

/* ═══ ACCEPTED PAYMENT METHODS NEAR PRICING ═══ */

.accepted-payments {
    margin: 22px auto 26px;
    max-width: 720px;
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 12px;
    padding: 16px 18px;
    text-align: center;
    box-shadow: 0 10px 34px rgba(20, 20, 20, .08);
}

.accepted-payments span {
    display: block;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--brand);
    margin-bottom: 10px;
}

.accepted-payments img {
    max-width: 420px;
    width: 100%;
    margin: 0 auto 8px;
    object-fit: contain;
}

.accepted-payments small {
    display: block;
    color: var(--grey-text);
    font-size: .72rem;
    line-height: 1.55;
}

/* ═══ CLICKBANK CHECKOUT EXPLANATION ═══ */

.clickbank-checkout-section {
    background: linear-gradient(180deg, #f5f8ff 0%, #edf2fb 100%);
    padding: 78px 0;
    border-top: 1px solid rgba(20, 20, 20, .08);
    border-bottom: 1px solid rgba(20, 20, 20, .08);
}

.clickbank-checkout-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 34px;
    align-items: center;
}

.clickbank-visual {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 14px 42px rgba(20, 20, 20, .10);
}

.clickbank-logo-img {
    max-width: 220px;
    margin: 0 auto 14px;
    object-fit: contain;
}

.clickbank-checkout-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(20, 20, 20, .10);
    box-shadow: 0 8px 26px rgba(20, 20, 20, .08);
}

.clickbank-copy {
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .10);
    border-left: 5px solid var(--brand);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 14px 42px rgba(20, 20, 20, .09);
}

.clickbank-copy h3 {
    color: #141414;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.clickbank-copy p {
    color: var(--grey-text);
    font-size: .96rem;
}

.clickbank-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0;
}

.clickbank-step {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #f5f8ff;
    border: 1px solid rgba(70, 97, 191, .18);
    border-radius: 10px;
    padding: 12px;
}

.clickbank-step strong {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    font-size: .78rem;
}

.clickbank-step span {
    color: #3a3f50;
    font-size: .82rem;
    line-height: 1.45;
}

.clickbank-trust-note {
    background: rgba(245, 197, 24, .12);
    border: 1px solid rgba(245, 197, 24, .34);
    color: #4c3b00;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: .88rem;
    line-height: 1.55;
    margin: 16px 0;
}

.clickbank-payment-inline {
    margin: 16px 0 20px;
    padding: 14px;
    background: #f5f8ff;
    border: 1px solid rgba(70, 97, 191, .18);
    border-radius: 12px;
    text-align: center;
}

.clickbank-payment-inline span {
    display: block;
    color: var(--brand);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.clickbank-payment-inline img {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    object-fit: contain;
}

/* ═══ FINAL SECURITY IMAGES ═══ */

.final-security-section {
    background: linear-gradient(180deg, #edf2fb 0%, #f5f8ff 100%);
    padding: 68px 0;
    border-top: 1px solid rgba(20, 20, 20, .08);
}

.final-security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 360px;
    margin: 0 auto;
}

.final-security-card {
    background: #fff;
    border: 1px solid var(--border-blue);
    border-radius: 14px;
    padding: 10px 12px;
    box-shadow: 0 10px 28px rgba(20, 20, 20, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-security-card img {
    width: auto;
    max-width: 100%;
    max-height: 112px;
    border-radius: 8px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

@media(max-width:900px) {
    .clickbank-checkout-grid {
        grid-template-columns: 1fr
    }
    .clickbank-steps {
        grid-template-columns: 1fr
    }
    .final-security-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {
    .clickbank-checkout-section,
    .final-security-section {
        padding: 52px 0
    }
    .clickbank-copy {
        padding: 20px
    }
    .accepted-payments {
        padding: 14px
    }
}

/* Final requested adjustments: daily routine cards, security badges, testimonial photos */

@media(max-width:900px) {
    .results-gallery-image {
        aspect-ratio: 4/3
    }
    .final-security-grid {
        max-width: 320px
    }
    .final-security-card img {
        max-height: 96px
    }
}

@media(max-width:600px) {
    .results-gallery-image {
        aspect-ratio: 4/3
    }
    .offer-avatar {
        width: 50px;
        height: 50px
    }
}