/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #1A1A1A;
    --bg-soft: #2A2A2A;
    --bg-panel: #222222;
    --text: #FFFFFF;
    --text-muted: #B0B0B0;
    --border: #444444;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-b: rgba(255, 255, 255, 0.08);
    --ink: #1A1A1A;
    --nav-height: 68px;
    --ticker-height: 30px;
    --hero-height: calc(100vh - var(--nav-height) - var(--ticker-height));
    --section-px: clamp(1.5rem, 4vw, 5rem);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    width: 100%;
    overflow-x: hidden;
}

/* ── SUBTLE NOISE TEXTURE ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0 var(--section-px);
    z-index: 100;
}

.navbar__inner {
    max-width: 1280px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.08em;
    line-height: 1;
}

.navbar__brand em {
    font-style: normal;
    color: var(--text);
    opacity: 0.5;
}

.navbar__links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.navbar__links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}

.navbar__links a:hover {
    color: var(--text);
}

/* Navbar Buy Now button */
.navbar__buy {
    background: #fff;
    color: #000 !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
    font-weight: 700;
    font-size: 0.82rem !important;
}

.navbar__buy:hover {
    color: #000 !important;
    background: #E8E8E8;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15) !important;
}

/* ── TICKER (Tightened) ── */
.ticker-bar {
    position: relative;
    z-index: 10;
    height: 34px;
    background: #111111;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    white-space: nowrap;
    margin-top: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 var(--section-px);
}

@media (max-height: 800px) {
    :root {
        --ticker-height: 30px;
    }

    .ticker-bar {
        height: 30px;
        font-size: 0.75rem;
    }
}

.ticker-inner {
    display: inline-flex;
    gap: 3rem;
    animation: ticker 40s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text-muted);
}

.ticker-item svg {
    width: 12px;
    height: 12px;
    color: var(--text);
    flex-shrink: 0;
}

.ticker-item span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: var(--hero-height);
    display: flex;
    align-items: center;
    padding: 0 var(--section-px);
    background: #0D0D0D;
    overflow: visible;
    /* Changed from hidden to prevent cropping */
}

/* Inner grid — same pattern as all other sections */
.hero__inner {
    max-width: 1440px;
    /* Increased from 1280px for better spread on wide screens */
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    min-height: var(--hero-height);
    padding: 2rem 0;
    /* Vertical breathing room */
    position: relative;
    z-index: 1;
}

/* Hero background */
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 72% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 65%),
        linear-gradient(135deg, #1A1A1A 0%, #1E1E1E 50%, #1C1C1C 100%);
    z-index: 0;
}

/* Right panel — soft black */
.hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 48%;
    height: 100%;
    background: var(--bg-soft);
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero__copy {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    /* Compress vertically on short screens */
    overflow: visible;
}

.hero__badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
    width: fit-content;
    opacity: 0;
    animation: fadeUp 0.6s 0.1s ease forwards;
}

.hero__badge-pill .dot {
    width: 6px;
    height: 6px;
    background: #FF3D77;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 61, 119, 0.5);
}

.hero__main-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.4rem, 3.8svh, 3rem);
    /* Smaller scale */
    font-weight: 900;
    line-height: 0.9;
    color: var(--text);
    margin-bottom: 0.2rem;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s ease forwards;
}

.hero__main-title span {
    color: rgba(255, 255, 255, 0.3);
}

.hero__lead-text {
    font-size: clamp(0.85rem, 1svh, 0.95rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
    /* Significantly reduced gap */
    max-width: 420px;
    opacity: 0;
    animation: fadeUp 0.7s 0.3s ease forwards;
}

.hero__benefits-list {
    margin-bottom: 0.3rem;
    opacity: 0;
    animation: fadeUp 0.7s 0.4s ease forwards;
}

.hero__benefits-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    /* Even tighter */
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: clamp(0.75rem, 0.8svh, 0.88rem);
    /* Slightly smaller */
    font-weight: 500;
    color: var(--text-muted);
}

.check-circle {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-circle svg {
    width: 14px;
    height: 14px;
    color: var(--text);
}

/* Thumbnail styles removed */

/* Old CTA Button styles preserved further down */

.hero__availability {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: clamp(0.7rem, 0.8vw, 0.82rem);
    color: var(--text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    /* Green availability signal */
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: pulse 2s infinite;
}

/* ── WHY BOX ── */
.why-box {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.9rem 1.3rem;
    margin-bottom: 0.95rem;
    opacity: 0;
    animation: fadeUp 0.7s 0.55s ease forwards;
}

.why-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    color: var(--text);
    margin-bottom: 0.7rem;
}

.benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 1.2rem;
}

.benefits li {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    line-height: 1.35;
}

.benefits li svg.icon-check {
    color: var(--text);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* ── CTA GROUP ── */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    opacity: 0;
    animation: fadeUp 0.7s 0.55s ease forwards;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.55rem 2.2rem;
    /* Ultra-slim height */
    background: #FFFFFF;
    color: #000000;
    border-radius: 12px;
    font-size: 0.85rem;
    /* Smaller text for slim look */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.12);
    width: fit-content;
}

.cta-btn:hover {
    background: #EBEBEB;
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(255, 255, 255, 0.2);
}

.cta-btn:active {
    transform: translateY(0);
}

.icon-arrow,
.icon-flame {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cta-btn .icon-arrow {
    transition: transform 0.2s;
}

.cta-btn:hover .icon-arrow {
    transform: translateX(4px);
}

.discount-note {
    font-size: 0.78rem;
    color: #666666;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.discount-note strong {
    color: var(--text-muted);
    font-style: normal;
}

.discount-note .icon-flame {
    color: #FF7A30;
    width: 14px;
    height: 14px;
}

/* ── RIGHT VISUAL ── */
.hero__visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-width: 0;
}

.product-wrap {
    position: relative;
    height: clamp(450px, 96%, 820px);
    /* Taller wrap */
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(0 24px 48px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.06));
    animation: floatImg 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
    transform: scale(1.6);
    /* Even larger scale */
}

/* Radial glow blob */
.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    /* Larger glow for larger image */
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.02) 40%,
            transparent 70%);
    border-radius: 50%;
    animation: breathe 4s ease-in-out infinite;
    pointer-events: none;
}

/* ── STAT CHIPS ── */
.chip {
    position: absolute;
    background: rgba(28, 28, 28, 0.95);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 10px;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 3;
    opacity: 0;
    animation: popIn 0.5s ease forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.chip--1 {
    top: 12%;
    left: 2%;
    animation-delay: 0.9s;
}

.chip--2 {
    bottom: 18%;
    left: 5%;
    animation-delay: 1.2s;
}

.chip--3 {
    top: 38%;
    right: 2%;
    animation-delay: 1.5s;
}

.chip__label {
    color: #666666;
    font-weight: 400;
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.chip__val {
    color: var(--text);
    font-size: 1.05rem;
    display: block;
    margin-top: 2px;
    font-weight: 700;
}

/* ── MEDIUM SCREEN (900–1280px) ── */
@media (min-width: 900px) and (max-width: 1280px) {
    .hero__inner {
        gap: 2rem;
    }

    .hero__main-title {
        font-size: clamp(1.8rem, 2.8vw, 3rem);
    }

    .check-list li {
        font-size: 0.84rem;
    }

    .product-wrap {
        height: clamp(360px, 78%, 640px);
    }

    .chip {
        padding: 0.42rem 0.78rem;
        font-size: 0.72rem;
    }

    .chip__val {
        font-size: 0.88rem;
    }
}

/* ── MOBILE (< 900px) ── */
/* --- FLOATING MOBILE CTA --- */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #FFF 0%, #E0E0E0 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: calc(100vw - 32px);
}

.floating-cta.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
    0% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 0px rgba(255, 255, 255, 0.3); }
    70% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 0px rgba(255, 255, 255, 0); }
}

.floating-cta svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

@media (max-width: 900px) {
    .floating-cta {
        display: flex;
    }
    :root {
        --section-px: 1.25rem;
    }

    html, body {
        overflow-x: hidden !important;
    }

    .hero {
        height: auto;
        min-height: 100svh;
        align-items: flex-start;
        padding: 2.5rem var(--section-px) 3rem;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        height: auto;
    }

    .hero::after {
        display: none;
    }

    .hero__copy {
        max-width: 100%;
        align-items: center;
    }

    .check-list {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero__badge-pill {
        margin: 0 auto clamp(0.5rem, 1.2svh, 1rem);
    }

    .hero__lead-text {
        max-width: 100%;
    }

    .cta-group {
        align-items: center;
    }

    .hero__visual {
        order: -1;
        height: auto;
    }

    .chip--1,
    .chip--2,
    .chip--3 {
        display: none;
    }

    .product-wrap {
        height: auto;
        aspect-ratio: 1/1;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .product-img {
        transform: scale(1.1); /* Reduced from 1.6 on mobile */
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes breathe {

    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.18);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(0.65);
    }
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.75);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shine-sweep {
    0% {
        transform: translateX(-130%);
    }

    60% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(200%);
    }
}

/* ── WHY MEN SECTION ── */
.why-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: 5rem var(--section-px);
}

.why-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
}

/* Centred header block */
.why-section__header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.why-section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 1.1rem;
    line-height: 1.05;
}

.why-section__lead {
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Symmetric body: equal 50/50 columns, same height */
.why-section__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    width: 100%;
}

.why-section__left,
.why-section__right {
    min-width: 0;
}

/* ── LEFT column ── */
.why-section__left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem 2.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.why-section__sub {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
}

.why-section__callout {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.4rem 1.6rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 3px solid var(--text);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.why-section__callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.why-section__callout-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 0.2rem;
}

.why-section__callout-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    letter-spacing: 0.04em;
    color: var(--text);
    line-height: 1.1;
}

.why-section__callout-body {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ── RIGHT column ── */
.why-section__right {
    padding: 2rem 2.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.why-section__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 1.2rem;
}

/* 2x2 grid of impact cards */
.why-section__grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
}

.why-section__grid li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1.1rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: background 0.2s, border-color 0.2s;
    cursor: default;
}

.why-section__grid li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #666666;
}

.why-section__grid li svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.why-section__grid li span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .why-section {
        padding: 3.5rem var(--section-px);
    }

    .why-section__body {
        grid-template-columns: 1fr;
    }

    .why-section__header {
        text-align: left;
    }

    .why-section__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── ABOUT VITALPRO SECTION ── */
.about-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 5rem var(--section-px);
}

.about-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

.about-section__content,
.about-section__image-wrap {
    min-width: 0;
}

/* ── LEFT: text ── */
.about-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.about-section__tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 0.8rem;
}

.about-section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: 0.05em;
    color: var(--text);
    line-height: 1.05;
    margin: 0;
}

.about-section__lead {
    font-size: clamp(0.93rem, 1.2vw, 1.05rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Focus list */
.about-section__focus {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.about-section__focus-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #666666;
}

.about-section__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.about-section__list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.62rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s;
}

.about-section__list li:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #666666;
}

.about-section__list li svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Conversion trigger */
.about-section__trigger {
    padding: 1.4rem 1.6rem;
    border-left: 3px solid var(--text);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 10px 10px 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-section__trigger-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    letter-spacing: 0.04em;
    color: var(--text);
    line-height: 1.1;
}

.about-section__trigger-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── RIGHT: image ── */
.about-section__image-wrap {
    width: 100%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image placeholder — transparent once image is added */
.about-section__image-placeholder {
    width: 100%;
    display: block;
    background: transparent;
    border: none;
    padding: 0;
}

/* Hide placeholder helper elements once image is inside */
.about-section__image-placeholder>svg,
.about-section__image-placeholder>p,
.about-section__image-placeholder>span {
    display: none;
}

/* Real image style (active when placeholder is replaced) */
.about-section__img,
.about-section__image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .about-section {
        padding: 3.5rem var(--section-px);
    }

    .about-section__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-section__image-wrap {
        order: -1;
    }
}


/*  COMPARE SECTION  */
.compare-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: 5rem var(--section-px);
}

.compare-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    width: 100%;
}

.compare-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.compare-section__tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 0.7rem;
}

.compare-section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: 0.05em;
    color: var(--text);
    line-height: 1.05;
    margin-bottom: 0.9rem;
}

.compare-section__lead {
    font-size: clamp(0.92rem, 1.2vw, 1.05rem);
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
}

.compare-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.compare-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: background 0.2s, border-color 0.2s;
}

.compare-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #606060;
}

.compare-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.compare-card__icon svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.compare-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    color: var(--text);
    line-height: 1.2;
}

.compare-card__points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.compare-card__point {
    font-size: 0.88rem;
    line-height: 1.6;
    padding: 0.65rem 0.9rem 0.65rem 2.2rem;
    border-radius: 8px;
    position: relative;
}

.compare-card__point::before {
    content: '';
    position: absolute;
    left: 0.8rem;
    top: 0.85rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-size: 9px;
    background-repeat: no-repeat;
    background-position: center;
}

.compare-card__point--other {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
}

.compare-card__point--other::before {
    background-color: #3a3a3a;
    border: 1px solid #555555;
}

.compare-card__point--vitalpro {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text);
    font-weight: 500;
}

.compare-card__point--vitalpro::before {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.compare-section__callout {
    text-align: center;
    padding: 1.6rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 560px;
    margin: 0 auto;
}

.compare-section__callout-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    letter-spacing: 0.06em;
    color: var(--text);
}

@media (max-width: 900px) {
    .compare-section {
        padding: 3.5rem var(--section-px);
    }

    .compare-section__grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* -- BENEFITS SECTION -- */
.benefits-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 5rem var(--section-px);
}

.benefits-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

.benefits-section__content,
.benefits-section__image-wrap {
    min-width: 0;
}

.benefits-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.benefits-section__tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 0.8rem;
}

.benefits-section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: 0.05em;
    color: var(--text);
    line-height: 1.05;
    margin: 0;
}

.benefits-section__lead {
    font-size: clamp(0.93rem, 1.2vw, 1.05rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
}

.benefits-section__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.benefits-section__list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s;
}

.benefits-section__list li:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #666666;
}

.benefits-section__list li svg {
    width: 17px;
    height: 17px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.benefits-section__trigger {
    padding: 1.4rem 1.6rem;
    border-left: 3px solid var(--text);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 10px 10px 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.benefits-section__trigger-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    letter-spacing: 0.04em;
    color: var(--text);
    line-height: 1.1;
}

.benefits-section__trigger-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
}

.benefits-section__image-wrap {
    width: 100%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-section__image-placeholder {
    width: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: none;
    border-radius: 16px;
    background: transparent;
    text-align: center;
    padding: 2rem;
}

.benefits-section__image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
    color: #555555;
}

.benefits-section__image-placeholder p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666666;
}

.benefits-section__image-placeholder span {
    font-size: 0.78rem;
    color: #444444;
    max-width: 220px;
    line-height: 1.5;
}

.benefits-section__img,
.benefits-section__image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    display: block;
}

@media (max-width: 900px) {
    .benefits-section {
        padding: 3.5rem var(--section-px);
    }

    .benefits-section__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .benefits-section__image-wrap {
        order: -1;
    }
}

/* Ensure headers match grid width and spacing */
.about-section__header,
.benefits-section__header {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 3.5rem;
    padding: 0;
    overflow: hidden;
}

/*  HOW IT WORKS SECTION  */
.works-section {
    background: #141414;
    border-top: 1px solid var(--border);
    padding: 6rem var(--section-px);
}

.works-section__header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.works-section__tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 1rem;
}

.works-section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    letter-spacing: 0.05em;
    color: var(--text);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.works-section__lead {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
}

.works-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
    width: 100%;
}

.works-section__media,
.works-section__mechanisms {
    min-width: 0;
}

/* LEFT: Image & Idea */
.works-section__media {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.works-section__image-placeholder {
    width: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 2px dashed var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    padding: 2rem;
}

.works-section__image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
    color: #555555;
}

.works-section__image-placeholder p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666666;
}

.works-section__image-placeholder span {
    font-size: 0.78rem;
    color: #444444;
    max-width: 220px;
    line-height: 1.5;
}

/* Base style for actual injected image (when user drops it in) */
.works-section__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.works-section__idea {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid #6BA4FF;
    /* Tie into the Highlight Accent */
    border-radius: 0 8px 8px 0;
}

.works-section__idea p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.6;
}

/* RIGHT: Cards */
.works-section__mechanisms {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mechanism-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.mechanism-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: #555555;
    transform: translateY(-2px);
}

.mechanism-card__number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #444444;
    line-height: 0.8;
}

.mechanism-card:hover .mechanism-card__number {
    color: var(--text);
}

.mechanism-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mechanism-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}

.mechanism-card__title span {
    font-weight: 400;
    color: #888888;
    font-size: 0.9rem;
}

.mechanism-card__text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Focused Mechanism Trigger (Restored) */
.works-section__trigger {
    margin-top: 1.5rem;
    padding: 1.2rem;
    text-align: center;
    border: 1px dashed var(--border);
    border-radius: 8px;
    background: transparent;
}

.works-section__trigger p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.works-section__trigger p span {
    font-size: 1.1rem;
    filter: grayscale(1);
}

/* Premium Conversion Article Bar */
.conversion-bar {
    margin-top: 3rem;
    padding: 2.5rem;
    background: #1A1A1A;
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.conversion-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--text);
}

.conversion-bar__content {
    flex: 1;
}

.conversion-bar__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 0.75rem;
}

.conversion-bar__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.conversion-bar__subtext {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
}

.conversion-bar__btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--text);
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: transform 0.2s, background 0.2s;
    white-space: nowrap;
}

.conversion-bar__btn:hover {
    background: #EEEEEE;
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .conversion-bar {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }

    .conversion-bar::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }

    .conversion-bar__title {
        font-size: 1.5rem;
    }
}

@media (max-width: 900px) {
    .works-section {
        padding: 4rem var(--section-px);
    }

    .works-section__header {
        margin-bottom: 3rem;
        text-align: left;
    }

    .works-section__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/*  MOBILE NAVBAR  */
.navbar__toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 9px;
}

.hamburger-line:nth-child(3) {
    top: 18px;
}

/* Hamburger Active State */
.navbar__toggle[aria-expanded="true"] .hamburger-line {
    background: var(--text);
}

.navbar__toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar__toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    :root {
        --nav-height: 52px;
        /* Slimmer navbar */
    }

    .navbar {
        height: var(--nav-height);
    }

    .ticker-bar {
        margin-top: var(--nav-height);
        height: 24px;
        /* Tighter ticker */
    }

    .navbar__toggle {
        display: block;
    }

    .navbar__brand {
        font-size: 1.8rem;
        /* Scaled down for mobile */
    }

    .navbar__links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
        gap: 2rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);

        /* Animation properties */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        pointer-events: none;
        z-index: 2000;
    }

    .navbar__links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Modify hero distribution for mobile */
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        /* Ultimate compression */
        text-align: left;
        height: auto;
        padding-top: 0;
        padding-bottom: 1rem;
    }

    .hero {
        height: auto;
        min-height: auto;
        overflow: visible;
    }

    .hero__copy {
        padding-top: 0;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
        /* Remove vertical centering */
        gap: 0.75rem;
    }

    .hero__visual {
        display: none;
    }

    .check-list {
        gap: 0.5rem;
        /* Tighter checklist items */
        margin-top: 0.2rem;
    }

    .check-list li {
        justify-content: flex-start;
    }

    .hero__gallery {
        justify-content: flex-start;
    }

    .hero__main-title {
        font-size: 2.6rem;
        line-height: 1.1;
        margin-bottom: 0;
    }

    .hero__lead-text {
        font-size: 1.15rem;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .cta-group {
        width: 100%;
        padding-top: 0;
        /* Zeroed CTA padding */
    }

    .hero::after {
        display: none;
    }

    .hero__bg {
        background: #0D0D0D;
    }
}


/* -- RESULTS SECTION -- */
.results-section {
    background:
        radial-gradient(ellipse 55% 70% at 72% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 65%),
        linear-gradient(135deg, #1A1A1A 0%, #1E1E1E 50%, #1C1C1C 100%);
    border-top: 1px solid var(--border);
    padding: 6rem var(--section-px);
    position: relative;
    overflow: visible; /* Changed from hidden to avoid clipping */
}

.results-section__container {
    max-width: 1280px;
    margin: 0 auto;
}

.results-section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.results-section__tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 1rem;
}

.results-section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: 0.04em;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.results-section__lead {
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.results-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.results-card:hover {
    transform: translateY(-4px);
    border-color: #555555;
    background: rgba(255, 255, 255, 0.04);
}

.results-card__side {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.results-card__image-container {
    width: 100%;
    height: 180px;
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 1px solid var(--border);
    position: relative;
}

.results-card__image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to avoid cropping on mobile/desktop */
    background: #000;
    display: block;
    position: relative;
    z-index: 1;
}

/* Hide broken image icon when src is empty */
.results-card__image-container img:not([src]),
.results-card__image-container img[src=""] {
    opacity: 0;
}

.results-card__image-container::before {
    content: 'Add Image Asset';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #444444;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    z-index: 0;
}

.results-card__side--after .results-card__image-container::before {
    content: 'Add Transformation Asset';
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    color: #555555;
}

.results-card__label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.results-card__side--before .results-card__label {
    color: #666666;
}

.results-card__side--after .results-card__label {
    color: var(--text);
}

.results-card__text {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

.results-card__side--before .results-card__text {
    color: var(--text-muted);
}

.results-card__side--after .results-card__text {
    color: var(--text);
}

.results-card__divider {
    width: 44px;
    height: 44px;
    background: var(--border);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.results-card__side--after {
    background: rgba(255, 255, 255, 0.03);
}

.results-section__footer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.results-section__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

.note-icon {
    flex-shrink: 0;
    opacity: 0.6;
    color: var(--text-muted);
}

.results-section__trigger {
    padding: 1.5rem 2rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: 12px;
}

.trigger-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.results-section__trigger p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--text);
}

/* -- TIMELINE SECTION -- */
.timeline-section {
    background:
        radial-gradient(ellipse 55% 70% at 28% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 65%),
        linear-gradient(135deg, #141414 0%, #181818 50%, #161616 100%);
    padding: 6rem var(--section-px);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: visible;
}

.timeline-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.timeline-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 2.8rem 2.2rem;
    border-radius: 20px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-8px);
    border-color: #555555;
    background: rgba(255, 255, 255, 0.04);
}

.timeline-step__header {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.timeline-step__number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    background: linear-gradient(180deg, #FFFFFF 0%, #333333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    font-weight: 900;
}

.timeline-step__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-top: -1.5rem;
}

.timeline-step__text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

.timeline-section__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.8rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed var(--border);
    max-width: fit-content;
    margin: 0 auto;
}

.timeline-section__footer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 991px) {
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-step {
        padding: 2rem;
    }
}

.timeline-step__icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.timeline-step__icon svg {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

/* -- ORDER SECTION -- */
.order-section {
    background:
        radial-gradient(ellipse 55% 70% at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 65%),
        linear-gradient(135deg, #121212 0%, #161616 50%, #141414 100%);
    padding: 4rem var(--section-px);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: visible;
}

.order-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.order-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 2rem 1.8rem;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card--featured {
    background: rgba(255, 255, 255, 0.04);
    border-color: #444444;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.pricing-card__badge {
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    align-self: center;
}

.pricing-card__badge--best {
    background: #333333;
    color: #ffffff;
}

.pricing-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
}

.pricing-card__supply {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: -1rem;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.pricing-card__price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.pricing-card__price .amount {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
}

.pricing-card__price .per {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-card__features span {
    color: #ffffff;
    font-weight: 700;
}

.pricing-card__btn {
    display: block;
    padding: 1.25rem;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.pricing-card__btn--highlight {
    background: #ffffff;
}

.pricing-card__btn:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.pricing-card__total {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.old-price {
    text-decoration: line-through;
    margin-left: 0.5rem;
    opacity: 0.5;
}

.order-section__footer {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    opacity: 0.6;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 2.5rem;
    }

    .pricing-card--featured {
        transform: none;
        order: -1;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* -- EXPERT SECTION -- */
.expert-section {
    background:
        radial-gradient(ellipse 55% 70% at 20% 50%, rgba(255, 255, 255, 0.01) 0%, transparent 65%),
        linear-gradient(135deg, #161616 0%, #1A1A1A 50%, #181818 100%);
    padding: 6rem var(--section-px);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: visible; /* Changed from hidden */
}

.expert-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.expert-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expert-section__visual {
    position: relative;
}

.expert-section__image-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-section__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Ensure professional faces aren't cut from the top */
    opacity: 0.9;
    filter: grayscale(0.2);
}

.expert-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expert-section__tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}

.expert-section__title {
    font-size: 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text);
    line-height: 1.1;
}

.expert-section__lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

.expert-section__list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.expert-section__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text);
    font-weight: 400;
}

.expert-icon {
    width: 28px;
    height: 28px;
    color: var(--text-muted);
    opacity: 0.7;
    flex-shrink: 0;
}

.expert-section__note {
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-left: 2px solid #444;
    border-radius: 0 12px 12px 0;
}

.expert-section__note p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
    opacity: 0.8;
}

.expert-section__trigger {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border);
    border-radius: 12px;
}

.expert-section__trigger span {
    font-size: 1.2rem;
}

.expert-section__trigger p {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 991px) {
    .expert-section__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .expert-section__visual {
        max-width: 400px; /* Reduced for mobile */
        margin: 0 auto;
    }
    
    .expert-section__image-container {
        aspect-ratio: 1/1; /* Square for mobile often looks better than deep portrait */
    }
}

/* -- CERTIFICATION SECTION -- */
.cert-section {
    background:
        radial-gradient(ellipse 55% 70% at 50% 10%, rgba(255, 255, 255, 0.02) 0%, transparent 65%),
        linear-gradient(135deg, #181818 0%, #161616 100%);
    padding: 6rem var(--section-px);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: visible;
}

.cert-section__container {
    max-width: 1000px;
    margin: 0 auto;
}

.cert-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.cert-item__icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color 0.3s ease, background 0.3s ease;
}

.cert-item:hover .cert-item__icon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.cert-item p {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4;
    max-width: 200px;
}

.cert-section__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.cert-section__visual {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.cert-section__visual img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
    filter: brightness(0.9);
}

.cert-section__trigger {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border);
    border-radius: 12px;
}

.cert-section__trigger span {
    font-size: 1.2rem;
}

.cert-section__trigger p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

@media (max-width: 768px) {
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* -- BREAKDOWN SECTION -- */
.breakdown-section {
    background:
        radial-gradient(ellipse 55% 70% at 72% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 65%),
        linear-gradient(135deg, #161616 0%, #1A1A1A 50%, #181818 100%);
    padding: 6rem var(--section-px);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: visible;
}

.breakdown-section__container {
    max-width: 1000px;
    margin: 0 auto;
}

.breakdown-section__header {
    text-align: center;
    margin-bottom: 5rem;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    margin-bottom: 5rem;
}

.breakdown-item {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.breakdown-item:hover {
    transform: translateY(-8px);
    border-color: #555555;
}

.breakdown-item__image {
    width: 100%;
    height: 180px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border);
}

.breakdown-item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Switch to contain for ingredient photos to see the whole image */
    background: #000;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.breakdown-item:hover .breakdown-item__image img {
    opacity: 1;
    transform: scale(1.05);
}

.breakdown-item__info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.breakdown-item__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}

.breakdown-item__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

.breakdown-section__footer {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.breakdown-section__trigger {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border);
    border-radius: 50px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.breakdown-section__trigger:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #666;
}

.breakdown-section__trigger .trigger-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.breakdown-section__trigger p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}

@media (max-width: 850px) {
    .breakdown-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* -- FACTS SECTION -- */
.facts-section {
    padding: 6rem var(--section-px);
    background:
        radial-gradient(ellipse 55% 70% at 20% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 65%),
        linear-gradient(135deg, #1A1A1A 0%, #161616 100%);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: visible;
}

.facts-section__container {
    max-width: 1100px;
    margin: 0 auto;
}

.facts-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

/* Facts Card */
.facts-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
}

.facts-card__title {
    font-size: 1.85rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.facts-card__lead {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.facts-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.facts-details li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.facts-details li strong {
    color: var(--text);
    font-weight: 600;
}

.facts-callout {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.facts-callout p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
}

/* Suitability Card */
.suitability-card {
    padding: 1rem 0;
}

.suitability-columns {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.suitability-box {
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.suitability-box__header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.status-indicator::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: 0.25;
}

.status-indicator--ideal {
    background: #00ff88;
    color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.status-indicator--caution {
    background: #ff4444;
    color: #ff4444;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.suitability-box--ideal {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(0, 255, 136, 0.1);
}

.suitability-box--caution {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(255, 68, 68, 0.1);
}

.suitability-box h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.suitability-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.suitability-box ul li {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.5;
}

.suitability-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-size: 0.85rem;
    opacity: 0.4;
}

/* Redesigned Footer Pill */
.facts-section__footer-cta {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    width: 100%;
}

.facts-status-pill {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.15rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.facts-status-pill__icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.facts-status-pill p {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.facts-visual {
    width: 100%;
    max-width: 900px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.facts-visual img {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.facts-section__trigger {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border);
    border-radius: 50px;
}

.facts-section__trigger p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.callout-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
}

.usage-section {
    padding: 6rem var(--section-px);
    background: var(--bg);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: visible;
}

.usage-section__container {
    max-width: 1000px;
    margin: 0 auto;
}

.usage-section__title {
    font-size: 1.85rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text);
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 0.03em;
}

.usage-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 24px;
}

.usage-content {
    flex: 1;
}

.usage-lead {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2rem;
    font-weight: 400;
}

.usage-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.usage-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.usage-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #444;
}

.usage-callout {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.usage-callout__icon {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.usage-callout__icon svg {
    width: 100%;
    height: 100%;
}

.usage-callout p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
}

@media (max-width: 850px) {
    .usage-container {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .usage-list {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (max-width: 991px) {
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* -- GUARANTEE SECTION -- */
.guarantee-section {
    padding: 6rem var(--section-px);
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.guarantee-section__container {
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ffffff;
    opacity: 0.1;
}

.guarantee-card__badge {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    border: 1px solid var(--border);
}

.guarantee-card__badge img {
    width: 100px;
    height: auto;
    filter: brightness(0.9);
}

.guarantee-card__content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.guarantee-card__title {
    font-size: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text);
    letter-spacing: 0.02em;
}

.guarantee-card__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

.guarantee-card__text strong {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 768px) {
    .guarantee-card {
        flex-direction: column;
        padding: 3rem 2rem;
        text-align: center;
        gap: 2rem;
    }

    .guarantee-card__badge {
        width: 120px;
        height: 120px;
    }
}

/* -- FAQ SECTION -- */
.faq-section {
    background:
        radial-gradient(ellipse 55% 70% at 72% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 65%),
        linear-gradient(135deg, #141414 0%, #181818 50%, #161616 100%);
    padding: 6rem var(--section-px);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: visible;
}

.faq-section__container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item__question {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    border-left: 2px solid #333333;
    padding-left: 1.25rem;
}

.faq-item__answer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
    padding-left: 1.35rem;
}

@media (max-width: 850px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .results-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .results-card__divider {
        display: none;
    }

    .results-card__side {
        padding: 1.5rem;
    }

    .results-card__side--after {
        border-top: 1px solid var(--border);
    }
}

/* -- BENEFITS SECTION -- */
.benefits-section {
    padding: 6rem var(--section-px);
    background: var(--bg);
    border-top: 1px solid var(--border);
    overflow: visible;
}

.benefits-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-section__tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666;
    margin-bottom: 1rem;
}

.benefits-section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--text);
}

.benefits-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.benefits-section__image-wrap {
    width: 100%;
    position: relative;
}

.benefits-section__image-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-section__image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.benefits-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-section__lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

.benefits-section__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefits-section__list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.5;
    font-size: 1rem;
    color: var(--text-muted);
}

.benefits-section__list li strong {
    color: var(--text);
}

.benefits-section__list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--text);
}

.benefits-section__trigger {
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-top: 1rem;
}

.benefits-section__trigger-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.benefits-section__trigger-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .benefits-section {
        padding: 4rem var(--section-px);
    }

    .benefits-section__header {
        text-align: left;
        margin-bottom: 3rem;
    }

    .benefits-section__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-section__image-wrap {
        order: 2;
    }

    .benefits-section__image-placeholder {
        aspect-ratio: 4/3;
    }

    .availability-grid {
        grid-template-columns: 1fr !important;
    }
}

/* -- INGREDIENTS SECTION -- */
.ingredients-section {
    background:
        radial-gradient(ellipse 55% 70% at 30% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 65%),
        linear-gradient(135deg, #181818 0%, #1A1A1A 50%, #161616 100%);
    padding: 6rem var(--section-px);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.ingredients-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.ingredients-section__header {
    text-align: center;
    margin-bottom: 5rem;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.ingredient-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.ingredient-card__visual {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.ingredient-card:hover .ingredient-card__visual {
    border-color: #555555;
    background: rgba(255, 255, 255, 0.05);
}

.ingredient-card__visual::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.ingredient-card__circle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--text);
    opacity: 0.8;
}

.ingredient-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}

.ingredient-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 250px;
}

.ingredients-section__footer {
    display: flex;
    justify-content: center;
}

.ingredients-section__footer .trigger-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 50px;
}

.trigger-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.ingredients-section__footer p {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text);
    margin: 0;
}

@media (max-width: 1024px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
}

@media (max-width: 640px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .ingredient-card__visual {
        width: 70px;
        height: 70px;
    }
}

/* ── RESEARCH SECTION ── */
.research-section {
    padding: 6rem var(--section-px);
    background: var(--bg);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: visible;
}

.research-section__container {
    max-width: 1280px;
    margin: 0 auto;
}

.research-section__header {
    max-width: 800px;
    margin-bottom: 5rem;
}

.research-section__tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.research-section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.research-section__sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

.research-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.research-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    /* For image rounding */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.research-card:hover {
    transform: translateY(-8px);
    border-color: #555555;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.research-card__image-container {
    width: 100%;
    height: 200px;
    background: #111111;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.ingredient-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    color: #444444;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-align: center;
    padding: 2rem;
    transition: color 0.3s ease;
}

.research-card:hover .ingredient-placeholder {
    color: #888888;
}

.research-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.research-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.research-card__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.research-card__icon svg {
    width: 22px;
    height: 22px;
}

.research-card__content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.research-card__content p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

.research-section__footer {
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.research-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
}

/* ── FOOTER ── */
.footer {
    padding: 5rem 5vw;
    background: #111111;
    border-top: 1px solid var(--border);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.footer__brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
}

.footer__copyright {
    font-size: 0.85rem;
    color: #666666;
}

.footer__links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--text);
}

@media (max-width: 768px) {
    .research-section {
        padding: 4rem 5vw;
    }

    .research-section__header {
        margin-bottom: 3rem;
    }

    .research-section__grid {
        gap: 1.5rem;
    }

    .footer {
        padding: 3rem 5vw;
    }
}


/* ── INTERMEDIATE SCALE (Standard Laptops & Desktops: 1024px - 1440px) ── */
@media (min-width: 1024px) {
    .hero {
        gap: 5.5rem;
    }

    .hero__main-title {
        font-size: clamp(3rem, 4.8vw, 4rem);
        margin-bottom: 1.2rem;
    }

    .hero__badge-pill {
        font-size: 0.75rem;
        padding: 0.45rem 1.25rem;
        margin-bottom: 1.2rem;
    }

    .hero__lead-text {
        font-size: 1.15rem;
        max-width: 580px;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .check-list {
        gap: 1.1rem;
    }

    .check-list li {
        font-size: 1.2rem;
    }

    .check-circle {
        width: 32px;
        height: 32px;
    }

    .cta-btn {
        font-size: 1.25rem;
        padding: 1.45rem 4rem;
        border-radius: 14px;
    }

    .product-wrap {
        height: 70vh;
        /* Fills the vertical space much better on standard 1080p */
        max-width: 540px;
    }

    .chip {
        padding: 1rem 1.5rem;
    }

    .chip__val {
        font-size: 1.15rem;
    }
}

/* ── LARGE SCREEN UPSCALING (e.g. 15.7-inch, 27-inch, 1440p+) ── */
@media (min-width: 1440px) and (min-height: 850px) {
    .hero {
        align-items: flex-start;
        padding-top: 12vh;
        gap: 6rem;
    }

    .hero__main-title {
        font-size: clamp(4.5rem, 6.5vw, 6.5rem);
        margin-bottom: 2rem;
    }

    .hero__badge-pill {
        font-size: 0.95rem;
        padding: 0.6rem 1.8rem;
        margin-bottom: 2.5rem;
    }

    .hero__lead-text {
        font-size: 1.6rem;
        max-width: 700px;
        margin-bottom: 3.5rem;
        line-height: 1.6;
    }

    .check-list {
        gap: 1.4rem;
    }

    .check-list li {
        font-size: 1.4rem;
    }

    .check-circle {
        width: 36px;
        height: 36px;
    }

    .check-circle svg {
        width: 18px;
        height: 18px;
    }

    .cta-btn {
        font-size: 1.5rem;
        padding: 1.6rem 4.5rem;
        border-radius: 16px;
    }

    .product-wrap {
        height: 75vh;
        /* Significantly larger product visual on big screens */
    }

    .chip {
        padding: 1.2rem 1.8rem;
    }

    .chip__val {
        font-size: 1.35rem;
    }

    .status-dot {
        width: 12px;
        height: 12px;
    }

    .hero__availability {
        font-size: 1rem;
    }
}

/* -- TESTIMONIALS SECTION -- */
.testimonials-section {
    background:
        radial-gradient(ellipse 55% 70% at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 65%),
        linear-gradient(135deg, #1A1A1A 0%, #1E1E1E 50%, #1C1C1C 100%);
    padding: 6rem var(--section-px);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.testimonials-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 2.2rem 2.2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: #555555;
    background: rgba(255, 255, 255, 0.04);
}

.review-card__user {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

.review-card__avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.review-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.review-card__stars {
    display: flex;
    gap: 4px;
    color: #FFD700;
    /* Gold stars */
    opacity: 0.8;
}

.review-card__quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    font-weight: 300;
    font-style: italic;
    flex: 1;
    margin: 0;
}

.review-card__author {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-style: normal;
}

.review-card__author strong {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
}

.review-card__author span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonials-section__footer {
    display: flex;
    justify-content: center;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed var(--border);
    max-width: fit-content;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* -- BRAND SECTION -- */
.brand-section {
    padding: 8rem var(--section-px);
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.brand-section__container {
    max-width: 1100px;
    margin: 0 auto;
}

.brand-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.brand-title {
    font-size: 2.2rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.brand-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

.brand-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.brand-list li {
    font-size: 1rem;
    color: var(--text);
    padding-left: 2.5rem;
    position: relative;
    opacity: 0.85;
}

.brand-list li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: #444;
    font-size: 1.1rem;
}

.brand-list li strong {
    color: #fff;
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
}

.brand-vibe {
    display: flex;
    justify-content: flex-end;
}

.brand-vibe__pill {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 3rem;
    border-radius: 40px;
    max-width: 380px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.brand-vibe__icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.brand-vibe__pill p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
    .brand-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }

    .brand-vibe__pill {
        padding: 2.5rem 1.5rem;
        max-width: 100%;
    }

    .brand-list {
        align-items: center;
    }

    .brand-list li {
        padding-left: 0;
        text-align: center;
    }

    .brand-list li::before {
        display: none;
    }
}


@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 2rem;
    }
}

/* -- AVOID FAKE SECTION -- */
.avoid-fake-section {
    padding: 6rem var(--section-px);
    background: var(--bg);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: visible;
}

.avoid-fake-section__container {
    max-width: 800px;
    margin: 0 auto;
}

.avoid-fake-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.avoid-fake-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.avoid-fake-header .icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    flex-shrink: 0;
}

.avoid-fake-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text);
    letter-spacing: 0.03em;
}

.avoid-fake-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.avoid-fake-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.avoid-fake-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 400;
}

.avoid-fake-list li svg {
    color: #4CAF50;
    /* Add a subtle color to the check marks or leave text color */
}

.avoid-fake-footer {
    padding-top: 2rem;
    border-top: 1px dashed var(--border);
}

.avoid-fake-footer p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .avoid-fake-card {
        padding: 2.5rem 1.5rem;
    }

    .avoid-fake-header h2 {
        font-size: 1.8rem;
    }

    .avoid-fake-lead,
    .avoid-fake-list li,
    .avoid-fake-footer p {
        font-size: 1rem;
    }
}

/* -- NEW PRICING STYLES -- */
.pricing-card__image-wrap {
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    min-height: 200px;
}

.pricing-card__img {
    max-width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
}

/* -- CONVERSION TRIGGER -- */
.pricing-conversion-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 4rem auto;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 215, 0, 0.05);
    /* very subtle gold/yellow */
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 50px;
    max-width: fit-content;
}

.pricing-conversion-trigger .trigger-icon {
    font-size: 1.5rem;
}

.pricing-conversion-trigger p {
    font-size: 1.05rem;
    color: #FFF2C5;
    margin: 0;
    font-weight: 500;
}

/* -- PRICING BENEFITS -- */
.pricing-benefits-box {
    max-width: 800px;
    margin: 0 auto 5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 3.5rem;
    border-radius: 24px;
}

.pricing-benefits__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
    text-align: center;
}

.pricing-benefits__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.pricing-benefits__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 300;
}

.pricing-benefits__list li svg {
    color: #4CAF50;
    flex-shrink: 0;
}

.pricing-benefits__warning {
    padding-top: 2rem;
    border-top: 1px dashed var(--border);
    text-align: center;
}

.pricing-benefits__warning p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .pricing-benefits-box {
        padding: 2.5rem 1.5rem;
    }

    .pricing-conversion-trigger {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
    }
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color, #c8a2c8);
}

.faq-question .chevron {
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active .faq-question {
    color: var(--primary-color, #c8a2c8);
}

.faq-item.active .chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Large enough to fit content */
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted, #999);
    line-height: 1.6;
    font-size: 0.95rem;
}