/* ===== CSS Variables ===== */
:root {
    /* Primary - Deep Green/Teal (masculine, health-focused) */
    --primary: #2D7A4F;
    --primary-deep: #1B5E3A;
    --primary-mid: #3D9963;
    --primary-light: #5BB87D;
    --primary-pale: #E8F5EE;

    /* Accent - Red (urgency, passion, CTA) */
    --accent: #DC3545;
    --accent-dark: #B52A37;
    --accent-light: #E8616E;
    --accent-pale: #FDE8EA;

    /* Gold */
    --gold: #B8860B;
    --gold-light: #D4A017;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #F8FAF9;
    --gray-50: #F2F5F3;
    --gray-100: #E0E7E3;
    --gray-200: #C5D0C9;
    --gray-300: #7E9189;
    --text-primary: #1A2E23;
    --text-mid: #3D5347;
    --text-light: #516B60;

    /* Gradients */
    --gradient-cta: linear-gradient(135deg, #DC3545 0%, #E8616E 100%);
    --gradient-primary: linear-gradient(135deg, #2D7A4F 0%, #3D9963 100%);
    --gradient-hero: linear-gradient(170deg, #E8F5EE 0%, #F8FAF9 40%, #FFFFFF 100%);
    --gradient-dark: linear-gradient(135deg, #1B5E3A 0%, #2D7A4F 100%);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.1);
    --shadow-xl: 0 16px 50px rgba(0,0,0,.12);
    --shadow-cta: 0 4px 20px rgba(220, 53, 69, .3);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.25;
    font-weight: 800;
    overflow-wrap: break-word;
    word-break: break-word;
}

p {
    overflow-wrap: break-word;
}

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

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

/* Touch target minimum 44px */
button, a, input, select, textarea {
    min-height: 0;
}

/* Table overflow container */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
}

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

.text-accent {
    color: var(--accent);
}

/* ===== Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-scale {
    opacity: 0;
    transform: scale(.9);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ===== Promo Bar ===== */
.promo-bar {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: .85rem;
    position: relative;
    overflow: hidden;
    z-index: 10;
}
.promo-bar__inner {
    position: relative;
}
.promo-bar__shimmer {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 150%; }
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 100;
    transition: box-shadow .3s ease;
}
.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.header__logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-deep);
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header__logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Desktop nav */
.header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header__link {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-mid);
    transition: color .2s;
    white-space: nowrap;
}
.header__link:hover {
    color: var(--primary);
}

/* Hidden on desktop */
.header__btn--mobile { display: none !important; }
.header__nav-logo { display: none; }

/* Hamburger — hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 300;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
    pointer-events: none;
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-cta);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: .92rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: var(--shadow-cta);
    animation: pulse-cta 2.5s infinite;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 53, 69, .4);
}
@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 4px 20px rgba(220, 53, 69, .3); }
    50% { box-shadow: 0 4px 30px rgba(220, 53, 69, .5); }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    background: var(--gradient-hero);
    padding: 60px 0 80px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .3;
}
.hero__orb--1 {
    width: 400px; height: 400px;
    background: var(--primary-light);
    top: -100px; right: -100px;
    animation: auraMorph 10s ease-in-out infinite;
}
.hero__orb--2 {
    width: 300px; height: 300px;
    background: var(--accent-light);
    bottom: -80px; left: -80px;
    animation: auraMorph 8s ease-in-out infinite reverse;
}
@keyframes auraMorph {
    0%, 100% { border-radius: 50%; transform: scale(1); }
    50% { border-radius: 40% 60% 55% 45%; transform: scale(1.05); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-pale);
    color: var(--primary-deep);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero__title {
    font-size: 2.8rem;
    color: var(--primary-deep);
    margin-bottom: 12px;
    letter-spacing: -.03em;
}
.hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-mid);
    margin-bottom: 28px;
    font-weight: 500;
}
.hero__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.hero__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.5;
}
.hero__feature-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.hero__cta {
    font-size: 1.05rem;
    padding: 16px 36px;
}

/* Hero Product Showcase */
.hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Showcase container === */
.hero-showcase {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Morphing aura background === */
.hero-aura {
    position: absolute;
    width: 340px;
    height: 340px;
    z-index: 0;
    border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%;
    background: linear-gradient(
        135deg,
        rgba(45, 122, 79, .18) 0%,
        rgba(91, 184, 125, .14) 40%,
        rgba(220, 53, 69, .08) 70%,
        rgba(61, 153, 99, .16) 100%
    );
    filter: blur(30px);
    animation: heroAuraMorph 10s ease-in-out infinite;
}

@keyframes heroAuraMorph {
    0%   { border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%; transform: rotate(0deg) scale(1); }
    25%  { border-radius: 55% 45% 48% 52% / 44% 56% 50% 50%; transform: rotate(3deg) scale(1.04); }
    50%  { border-radius: 48% 52% 42% 58% / 56% 44% 52% 48%; transform: rotate(-2deg) scale(1.02); }
    75%  { border-radius: 52% 48% 56% 44% / 48% 52% 44% 56%; transform: rotate(4deg) scale(1.06); }
    100% { border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%; transform: rotate(0deg) scale(1); }
}

/* === Rotating conic ring === */
.hero-ring {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(45, 122, 79, .12) 15%,
        transparent 30%,
        rgba(220, 53, 69, .08) 45%,
        transparent 60%,
        rgba(91, 184, 125, .1) 75%,
        transparent 90%
    );
    animation: heroRingRotate 16s linear infinite;
    z-index: 1;
}

@keyframes heroRingRotate {
    to { transform: rotate(360deg); }
}

/* === Pulsing scan rings === */
.hero-scan {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(45, 122, 79, .08);
    z-index: 1;
    animation: heroScanPulse 6s ease-out infinite;
}
.hero-scan--1 { width: 220px; height: 220px; }
.hero-scan--2 { width: 300px; height: 300px; animation-delay: 1.5s; }
.hero-scan--3 { width: 380px; height: 380px; animation-delay: 3s; }

@keyframes heroScanPulse {
    0%   { opacity: 0; transform: scale(.85); border-color: rgba(45, 122, 79, .15); }
    30%  { opacity: .6; border-color: rgba(45, 122, 79, .1); }
    100% { opacity: 0; transform: scale(1.08); border-color: rgba(45, 122, 79, .03); }
}

/* === Glow breathing === */
.hero-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(45, 122, 79, .12) 0%,
        rgba(61, 153, 99, .06) 40%,
        transparent 70%
    );
    z-index: 0;
    animation: heroGlowBreathe 4s ease-in-out infinite;
}

@keyframes heroGlowBreathe {
    0%, 100% { opacity: .7; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.12); }
}

/* === Platform shadow === */
.hero-platform {
    position: absolute;
    bottom: 8%;
    width: 55%;
    height: 16px;
    background: radial-gradient(ellipse, rgba(27, 94, 58, .1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* === Absorption flash === */
.hero-flash {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 122, 79, .2) 0%, transparent 70%);
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    animation: heroAbsorbFlash 7s ease-in-out infinite;
}
.hero-flash--1 { animation-delay: 0s; }
.hero-flash--2 { animation-delay: 1.75s; }
.hero-flash--3 { animation-delay: 3.5s; }

@keyframes heroAbsorbFlash {
    0%, 52% { opacity: 0; transform: scale(.5); }
    60%     { opacity: 1; transform: scale(1.3); }
    72%     { opacity: 0; transform: scale(1.5); }
    73%, 100% { opacity: 0; }
}

/* === Floating ingredient orbs === */
.hero-ingredient {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
    pointer-events: none;
    opacity: 0;
    animation: heroOrbAbsorb 7s ease-in-out infinite;
}
.hero-ingredient__emoji {
    font-size: 1rem;
}
.hero-ingredient__name {
    white-space: nowrap;
}

/* Individual orb positions & trajectories toward product center */
.hero-ingredient--1 {
    top: 0;
    left: -8%;
    --tx: 140px;
    --ty: 160px;
    animation-delay: 0s;
}
.hero-ingredient--2 {
    top: 0;
    right: -8%;
    --tx: -140px;
    --ty: 160px;
    animation-delay: 1.75s;
}
.hero-ingredient--3 {
    bottom: 12%;
    left: -10%;
    --tx: 150px;
    --ty: -80px;
    animation-delay: 3.5s;
}
.hero-ingredient--4 {
    bottom: 12%;
    right: -8%;
    --tx: -150px;
    --ty: -80px;
    animation-delay: 5.25s;
}

@keyframes heroOrbAbsorb {
    0%        { opacity: 0; transform: translate(0, 0) scale(.5); }
    10%       { opacity: 1; transform: translate(0, 0) scale(1); }
    15%       { opacity: 1; transform: translate(0, -4px) scale(1.04); }
    20%       { opacity: 1; transform: translate(0, 0) scale(1); }
    60%       { opacity: .7; transform: translate(var(--tx), var(--ty)) scale(.35); }
    72%       { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(.05); }
    73%, 100% { opacity: 0; transform: translate(0, 0) scale(0); }
}

/* === Product image (centered, on top) === */
.hero-showcase__product {
    position: relative;
    z-index: 4;
    animation: heroProductFloat 5s ease-in-out infinite;
}
.hero-showcase__product img {
    max-height: 380px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .15));
}

@keyframes heroProductFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* === Badge === */
.hero__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
    z-index: 6;
    animation: badgePop 2s infinite;
    box-shadow: 0 4px 15px rgba(220, 53, 69, .3);
}
@keyframes badgePop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* === Price + CTA action group === */
.hero__action {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hero__price-box {
    display: flex;
    gap: 20px;
    padding: 14px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}
.hero__price-old, .hero__price-new {
    text-align: center;
}
.hero__price-label {
    display: block;
    font-size: .68rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 2px;
}
.hero__price-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}
.hero__price-value--old {
    font-size: 1.15rem;
    color: var(--text-light);
    text-decoration: line-through;
}
.hero__price-value--new {
    font-size: 1.6rem;
    color: var(--accent);
}

/* ===== Trust Bar ===== */
.trust-bar {
    background: var(--primary-deep);
    padding: 40px 0;
    color: var(--white);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.trust-item {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 2px;
}
.trust-item__number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
}
.trust-item__suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
}
.trust-item__label {
    width: 100%;
    font-size: .85rem;
    opacity: .85;
    margin-top: 4px;
}

/* ===== Sections ===== */
.section {
    padding: 72px 0;
}
.section__title {
    font-size: 1.85rem;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.section__subtitle {
    text-align: center;
    color: var(--text-mid);
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: .95rem;
}

/* Section backgrounds */
.section--symptoms { background: var(--off-white); }
.section--benefits { background: var(--white); }
.section--timeline { background: linear-gradient(170deg, var(--primary-pale), var(--off-white)); }
.section--ingredients { background: var(--white); }
.section--expert { background: var(--off-white); }
.section--howto { background: var(--white); }
.section--mid-cta { background: var(--gradient-dark); color: var(--white); padding: 56px 0; }
.section--testimonials { background: var(--off-white); }
.section--faq { background: var(--white); }
.section--order { background: linear-gradient(170deg, var(--primary-pale) 0%, var(--white) 100%); padding: 80px 0; }
.section--steps { background: var(--off-white); }

/* ===== About ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 48px;
}
.about__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.about__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}
.about__expert-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: var(--radius-md);
}
.about__expert-name {
    font-weight: 700;
    font-size: .95rem;
}
.about__expert-title {
    font-size: .8rem;
    color: var(--text-light);
}
.about__content h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--primary-deep);
}
.about__content p {
    color: var(--text-mid);
    margin-bottom: 16px;
}
.about__highlight {
    background: var(--primary-pale);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 24px;
}
.about__highlight-icon {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}
.about__highlight p {
    margin: 0;
    font-size: .92rem;
}

/* ===== Symptoms ===== */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.symptom-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 28px;
    position: relative;
    transition: transform .3s, box-shadow .3s;
}
.symptom-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.symptom-card__number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
}
.symptom-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.symptom-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.symptom-card__desc {
    font-size: .85rem;
    color: var(--text-light);
}

.symptoms-result {
    text-align: center;
    margin-top: 40px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--accent-pale);
}
.symptoms-result p {
    color: var(--text-mid);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Benefits ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.benefit-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform .4s ease;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.benefit-card:hover::before {
    transform: scaleX(1);
}
.benefit-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--white);
}
.benefit-card__icon--1 { background: linear-gradient(135deg, #DC3545, #E8616E); }
.benefit-card__icon--2 { background: linear-gradient(135deg, #B8860B, #D4A017); }
.benefit-card__icon--3 { background: linear-gradient(135deg, #2D7A4F, #5BB87D); }
.benefit-card__icon--4 { background: linear-gradient(135deg, #2A6CB5, #5A9ADE); }
.benefit-card__icon--5 { background: linear-gradient(135deg, #7D3C98, #A569BD); }
.benefit-card__icon--6 { background: linear-gradient(135deg, #C0601A, #E67E22); }
.benefit-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.benefit-card__desc {
    font-size: .88rem;
    color: var(--text-mid);
    margin-bottom: 16px;
}
.benefit-card__bar {
    position: relative;
}
.benefit-card__bar-fill {
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.benefit-card__bar span {
    font-size: .75rem;
    color: var(--text-light);
    margin-top: 4px;
    display: block;
}

/* ===== Timeline ===== */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}
.timeline-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.timeline-card__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.timeline-card__badge--red { background: var(--accent); }
.timeline-card__badge--yellow { background: #B8860B; }
.timeline-card__badge--green { background: var(--primary); }
.timeline-card__content h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.timeline-card__content p {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.timeline-connector {
    display: none; /* Hidden on desktop, shown as horizontal line below cards */
}

/* ===== Ingredients ===== */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ingredient-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 28px;
    position: relative;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}
.ingredient-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.ingredient-card__number {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 28px;
    height: 28px;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
}
.ingredient-card__icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}
.ingredient-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-deep);
}
.ingredient-card__desc {
    font-size: .85rem;
    color: var(--text-mid);
    margin-bottom: 16px;
}
.ingredient-card__bar {
    height: 4px;
    background: var(--gray-100);
    border-radius: 2px;
    overflow: hidden;
}
.ingredient-card__bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* ===== Expert Card ===== */
.expert-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}
.expert-card__image {
    flex-shrink: 0;
}
.expert-card__image img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-pale);
}
.expert-card__content h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.expert-card__name {
    font-weight: 700;
    color: var(--primary);
    font-size: .95rem;
}
.expert-card__role {
    font-size: .82rem;
    color: var(--text-light);
    margin-bottom: 20px;
}
.expert-card__tips {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.expert-tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--off-white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
}
.expert-tip__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.expert-tip p {
    font-size: .9rem;
    color: var(--text-mid);
}

/* ===== How To ===== */
.howto-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
}
.howto-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 260px;
}
.howto-step__number {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.howto-step__content h4 {
    font-size: .95rem;
    margin-bottom: 6px;
}
.howto-step__content p {
    font-size: .82rem;
    color: var(--text-light);
}
.howto-connector {
    width: 60px;
    height: 2px;
    background: var(--gray-200);
    flex-shrink: 0;
}

/* ===== Mid CTA ===== */
.mid-cta {
    text-align: center;
}
.mid-cta h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--white);
}
.mid-cta__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.mid-cta__price-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mid-cta__label {
    font-size: .9rem;
    opacity: .85;
}
.mid-cta__date {
    font-weight: 700;
    color: var(--white);
}
.mid-cta__badge {
    background: var(--accent);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 700;
}
.mid-cta__countdown {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mid-cta__countdown-label {
    font-size: .85rem;
    opacity: .85;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}
.countdown__item {
    background: rgba(255,255,255,.15);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    min-width: 36px;
    text-align: center;
}
.countdown__num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}
.countdown__sep {
    font-weight: 700;
    font-size: 1.1rem;
    opacity: .7;
}

/* ===== Testimonials ===== */
.testimonials-summary {
    max-width: 400px;
    margin: 0 auto 40px;
    text-align: center;
}
.testimonials-summary__stars {
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 4px;
}
.testimonials-summary__count {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}
.testimonials-summary__bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rating-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
}
.rating-bar__label {
    width: 32px;
    color: var(--text-light);
    text-align: right;
}
.rating-bar__track {
    flex: 1;
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}
.rating-bar__fill {
    height: 100%;
    background: var(--gold);
    border-radius: 4px;
    width: 0;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.rating-bar__pct {
    width: 32px;
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: transform .3s;
}
.testimonial-card--featured {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 1px var(--primary-light), var(--shadow-md);
}
.testimonial-card:hover {
    transform: translateY(-4px);
}
.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
}
.testimonial-card__info {
    flex: 1;
}
.testimonial-card__name {
    font-weight: 700;
    font-size: .9rem;
}
.testimonial-card__stars {
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: 2px;
}
.testimonial-card__date {
    font-size: .75rem;
    color: var(--text-light);
}
.testimonial-card__text {
    font-size: .88rem;
    color: var(--text-mid);
    margin-bottom: 14px;
    line-height: 1.6;
}
.testimonial-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonial-card__badge {
    font-size: .75rem;
    color: var(--primary);
    background: var(--primary-pale);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
}
.testimonial-card__likes {
    font-size: .82rem;
    color: var(--text-light);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 720px;
    margin: 40px auto 0;
}
.faq-item {
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .3s;
}
.faq-item:hover, .faq-item.open {
    border-color: var(--primary-light);
}
.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: inherit;
}
.faq-item__arrow {
    flex-shrink: 0;
    transition: transform .3s;
    color: var(--text-light);
}
.faq-item.open .faq-item__arrow {
    transform: rotate(180deg);
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 20px;
}
.faq-item.open .faq-item__answer {
    max-height: 300px;
    padding: 0 20px 18px;
}
.faq-item__answer p {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ===== Order Section ===== */
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.order__info h2 {
    font-size: 1.6rem;
    margin-bottom: 28px;
}
.order__checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.order__checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .92rem;
    color: var(--text-mid);
}
.order__checklist li svg {
    flex-shrink: 0;
}
.order__guarantee {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--primary-pale);
    padding: 16px 20px;
    border-radius: var(--radius-md);
}
.order__guarantee-icon {
    flex-shrink: 0;
}
.order__guarantee p {
    font-size: .88rem;
    color: var(--text-mid);
    font-weight: 500;
}

/* Order Form Card */
.order__form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-light);
}
.order__form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.order__form-date {
    display: flex;
    flex-direction: column;
}
.order__form-date span {
    font-size: .82rem;
    color: var(--text-light);
}
.order__form-date strong {
    font-size: 1rem;
    color: var(--accent);
}
.order__form-discount {
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: .9rem;
}
.order__form-prices {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}
.order__form-price-old {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 600;
}
.order__form-price-new {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}
.order__form-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: .82rem;
    color: var(--text-mid);
}
.order__form-countdown .countdown__item {
    background: var(--primary-pale);
    color: var(--primary-deep);
}

/* Form Inputs */
.order__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.order__form-field {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    transition: border-color .3s;
    background: var(--white);
}
.order__form-field:focus-within {
    border-color: var(--primary);
}
.order__form-field svg {
    flex-shrink: 0;
    color: var(--text-light);
}
.order__form-field input {
    flex: 1;
    border: none;
    outline: none;
    font-size: .92rem;
    font-family: inherit;
    color: var(--text-primary);
    background: transparent;
}
.order__form-field input::placeholder {
    color: var(--gray-300);
}
.order__form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

/* Form Meta */
.order__form-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: .8rem;
    color: var(--text-light);
}
.order__form-live {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.live-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: livePulse 2s infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.8); }
}
.order__form-stock {
    color: var(--accent);
    font-weight: 600;
}
.order__form-secure {
    font-size: .78rem;
    color: var(--text-light);
}

/* ===== Steps ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.step-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 28px 20px;
    position: relative;
}
.step-card__number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto 14px;
}
.step-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.step-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.step-card__desc {
    font-size: .82rem;
    color: var(--text-light);
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-deep);
    color: rgba(255,255,255,.8);
    padding: 56px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer__logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    display: block;
    transition: opacity .2s;
}
.footer__logo:hover {
    opacity: .85;
}
.footer__tagline {
    font-size: .85rem;
    opacity: .75;
    line-height: 1.6;
}
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__links h4 {
    color: var(--white);
    font-size: .9rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.footer__links a {
    font-size: .85rem;
    color: rgba(255,255,255,.65);
    transition: color .2s;
}
.footer__links a:hover {
    color: var(--white);
}
.footer__contact {
    font-size: .85rem;
    opacity: .75;
}
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 24px 0;
    text-align: center;
}
.footer__disclaimer {
    font-size: .75rem;
    opacity: .5;
    max-width: 680px;
    margin: 0 auto 12px;
    line-height: 1.6;
}
.footer__copy {
    font-size: .75rem;
    opacity: .45;
}

/* ===== Sticky Mobile CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    transform: translateY(100%);
    transition: transform .3s ease;
    display: none;
}
.sticky-cta.visible {
    transform: translateY(0);
}
.sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
}
.sticky-cta__info strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    color: var(--accent);
}
.sticky-cta__old {
    font-size: .85rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 8px;
}
.sticky-cta__btn {
    padding: 10px 24px;
    font-size: .9rem;
}

/* ===== Live Notification ===== */
.live-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 14px 18px;
    z-index: 95;
    transform: translateX(-120%);
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    max-width: 320px;
    border: 1px solid var(--gray-100);
}
.live-notification.visible {
    transform: translateX(0);
}
.live-notification__inner {
    display: flex;
    align-items: center;
    gap: 12px;
}
.live-notification__icon {
    font-size: 1.3rem;
}
.live-notification__text {
    flex: 1;
    font-size: .82rem;
    color: var(--text-mid);
}
.live-notification__text strong {
    display: block;
    color: var(--text-primary);
    font-size: .88rem;
}
.live-notification__close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
}

/* ===== Responsive ===== */
/* ===========================================================
   RESPONSIVE — TABLET (max 1024px)
   =========================================================== */
@media (max-width: 1024px) {
    .hero__inner { gap: 32px; }

    /* Hero showcase */
    .hero-showcase { width: 420px; height: 420px; }
    .hero-aura { width: 290px; height: 290px; }
    .hero-ring { width: 330px; height: 330px; }
    .hero-scan--1 { width: 190px; height: 190px; }
    .hero-scan--2 { width: 260px; height: 260px; }
    .hero-scan--3 { width: 330px; height: 330px; }
    .hero-glow { width: 220px; height: 220px; }
    .hero-showcase__product img { max-height: 330px; }

    .about-grid { gap: 32px; }
    .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ===========================================================
   RESPONSIVE — MOBILE (max 768px)
   =========================================================== */
@media (max-width: 768px) {
    .section { padding: 44px 0; }
    .section__title { font-size: 1.4rem; padding: 0 4px; }
    .section__subtitle { font-size: .88rem; margin-bottom: 32px; }

    /* --- Promo Bar --- */
    .promo-bar { font-size: .76rem; padding: 8px 16px; }
    .promo-bar__inner span { display: block; line-height: 1.4; }

    /* --- MOBILE HEADER & MENU --- */
    .header__inner { height: 54px; }
    .header__logo { font-size: 1rem; gap: 8px; }
    .header__logo-img { height: 26px; }

    /* Show hamburger */
    .hamburger { display: flex; }

    /* Hide desktop CTA */
    .header__btn--desktop { display: none !important; }

    /* Nav overlay */
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        z-index: 9990;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        padding: 80px 32px 40px;
        overflow-y: auto;
    }
    .header__nav.open {
        display: flex;
    }

    /* Hamburger above overlay */
    .hamburger { z-index: 9995; }

    /* Hide promo-bar when menu is open */
    body.modal-open .promo-bar { display: none; }

    /* Logo inside mobile nav */
    .header__nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 28px;
        font-family: 'Outfit', sans-serif;
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--primary-deep);
    }
    .header__nav-logo img {
        height: 36px;
        width: auto;
    }

    /* Nav links inside overlay */
    .header__nav .header__link {
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text-primary);
        padding: 16px 0;
        border-bottom: 1px solid var(--gray-100);
        width: 100%;
        text-align: center;
    }
    .header__nav .header__link:first-child {
        border-top: 1px solid var(--gray-100);
    }

    /* Show mobile CTA in menu */
    .header__nav .header__btn--mobile {
        display: inline-flex !important;
        margin-top: 24px;
        width: 100%;
        justify-content: center;
        animation: none;
        font-size: .92rem;
        padding: 15px 24px;
    }

    /* --- Hero --- */
    .hero { padding: 28px 0 40px; overflow: hidden; }
    .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .hero__pill { font-size: .75rem; }
    .hero__title { font-size: 1.75rem; }
    .hero__subtitle { font-size: .92rem; margin-bottom: 16px; }
    .hero__features {
        text-align: left;
        gap: 8px;
        margin-bottom: 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero__features li { font-size: .86rem; line-height: 1.45; }
    .hero__action {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero__price-box { gap: 16px; padding: 12px 20px; }
    .hero__price-value--old { font-size: 1rem; }
    .hero__price-value--new { font-size: 1.4rem; }
    .hero__cta {
        width: auto;
        max-width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: .9rem;
    }

    /* Hero showcase — scale to fit screen */
    .hero__image { overflow: hidden; }
    .hero-showcase {
        width: min(340px, 85vw);
        height: min(340px, 85vw);
        margin: 0 auto;
    }
    .hero-aura { width: 80%; height: 80%; }
    .hero-ring { width: 92%; height: 92%; }
    .hero-scan--1 { width: 55%; height: 55%; }
    .hero-scan--2 { width: 72%; height: 72%; }
    .hero-scan--3 { width: 88%; height: 88%; }
    .hero-glow { width: 65%; height: 65%; }
    .hero-showcase__product img { max-height: 260px; }
    .hero__orb { display: none; }
    .hero-ingredient { padding: 4px 10px; font-size: .68rem; }
    .hero-ingredient__emoji { font-size: .78rem; }
    .hero-ingredient--1 { left: -2%; top: 2%; --tx: 100px; --ty: 110px; }
    .hero-ingredient--2 { right: -2%; top: 2%; --tx: -100px; --ty: 110px; }
    .hero-ingredient--3 { left: -4%; bottom: 12%; --tx: 100px; --ty: -60px; }
    .hero-ingredient--4 { right: -2%; bottom: 12%; --tx: -100px; --ty: -60px; }
    .hero__badge { width: 44px; height: 44px; font-size: .7rem; top: 2px; right: 2px; }

    /* --- Trust Bar --- */
    .trust-bar { padding: 28px 0; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .trust-item__number, .trust-item__suffix { font-size: 1.6rem; }
    .trust-item__label { font-size: .78rem; }

    /* --- Content Grids --- */
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .about__image img { height: 260px; }
    .about__content h3 { font-size: 1.15rem; }
    .about__highlight { flex-direction: column; gap: 10px; }
    .symptoms-grid { grid-template-columns: 1fr; gap: 14px; }
    .symptom-card { padding: 20px; }
    .symptom-card__icon { font-size: 1.6rem; margin-bottom: 8px; }
    .symptom-card__title { font-size: .92rem; }
    .symptoms-result { padding: 24px 20px; }
    .symptoms-result p { font-size: .88rem; }
    .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
    .benefit-card { padding: 20px; }
    .benefit-card__icon { width: 44px; height: 44px; margin-bottom: 10px; }
    .benefit-card__title { font-size: .95rem; }
    .benefit-card__desc { font-size: .84rem; margin-bottom: 10px; }
    .timeline-grid { grid-template-columns: 1fr; gap: 14px; }
    .timeline-card { padding: 20px; }
    .timeline-card__badge { font-size: .72rem; padding: 5px 12px; margin-bottom: 12px; }
    .timeline-card__content h4 { font-size: .92rem; }
    .timeline-card__content p { font-size: .84rem; }
    .ingredients-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ingredient-card { padding: 18px; }
    .ingredient-card__icon { font-size: 1.8rem; margin-bottom: 8px; }
    .ingredient-card__title { font-size: .9rem; }
    .ingredient-card__desc { font-size: .8rem; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
    .testimonial-card { padding: 20px; }
    .testimonial-card__text { font-size: .84rem; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .step-card { padding: 20px 14px; }
    .step-card__number { width: 34px; height: 34px; font-size: .85rem; }
    .step-card__icon { font-size: 1.5rem; margin-bottom: 8px; }
    .step-card__title { font-size: .86rem; }

    /* --- Expert --- */
    .expert-card { flex-direction: column; align-items: center; text-align: center; padding: 24px; gap: 20px; }
    .expert-tip { text-align: left; }

    /* --- How To --- */
    .howto-grid { flex-direction: column; gap: 10px; }
    .howto-step__number { width: 44px; height: 44px; font-size: 1rem; }
    .howto-connector { width: 2px; height: 20px; }

    /* --- Mid CTA --- */
    .section--mid-cta { padding: 36px 0; }
    .mid-cta h2 { font-size: 1.15rem; margin-bottom: 16px; }
    .mid-cta__price { flex-direction: column; gap: 10px; }
    .mid-cta__price-box { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .mid-cta__label { font-size: .8rem; }
    .mid-cta__countdown { flex-direction: column; gap: 6px; }
    .mid-cta__countdown-label { font-size: .76rem; }

    /* --- Order Section --- */
    .section--order { padding: 44px 0; }
    .order-grid { grid-template-columns: 1fr; gap: 24px; }
    .order__info { text-align: center; }
    .order__info h2 { font-size: 1.25rem; }
    .order__checklist { align-items: flex-start; padding: 0 12px; }
    .order__checklist li { font-size: .85rem; }
    .order__guarantee { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
    .order__form-card { padding: 20px; }
    .order__form-prices { gap: 10px; }
    .order__form-price-old { font-size: 1rem; }
    .order__form-price-new { font-size: 1.6rem; }
    .order__form-countdown { flex-direction: column; gap: 6px; font-size: .76rem; }
    .order__form-field { padding: 10px 12px; min-height: 46px; }
    .order__form-field input { font-size: .88rem; min-height: 42px; }
    .order__form-submit { padding: 14px; font-size: .92rem; min-height: 48px; }
    .order__form-meta { font-size: .74rem; }

    /* --- Countdown --- */
    .countdown__item { padding: 5px 8px; min-width: 30px; }
    .countdown__num { font-size: .9rem; }
    .countdown__sep { font-size: .9rem; }

    /* --- FAQ --- */
    .faq-list { margin-top: 24px; }
    .faq-item__question { padding: 14px 16px; font-size: .88rem; min-height: 48px; }
    .faq-item__answer p { font-size: .84rem; }

    /* --- Footer mobile: compact --- */
    .footer { padding: 28px 0 0; }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
        text-align: left;
    }
    .footer__brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .footer__logo { font-size: .95rem; margin-bottom: 6px; }
    .footer__tagline {
        font-size: .75rem;
        line-height: 1.45;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer__links {
        gap: 3px;
    }
    .footer__links h4 {
        font-size: .76rem;
        margin-bottom: 3px;
        opacity: .6;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .footer__links a {
        font-size: .75rem;
        padding: 2px 0;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .footer__bottom {
        padding: 14px 12px;
        text-align: center;
    }
    .footer__disclaimer { font-size: .64rem; line-height: 1.4; }
    .footer__copy { font-size: .64rem; }

    /* --- Sticky CTA --- */
    .sticky-cta {
        display: block;
        padding: 10px 16px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }
    .sticky-cta__inner { gap: 12px; }
    .sticky-cta__info strong { font-size: 1.1rem; }
    .sticky-cta__btn { padding: 10px 20px; font-size: .84rem; }

    /* --- Live notification --- */
    .live-notification { bottom: 68px; left: 10px; right: 10px; max-width: none; padding: 10px 12px; }
    .live-notification__text { font-size: .76rem; }
    .live-notification__text strong { font-size: .8rem; }
    .live-notification__close { min-width: 34px; min-height: 34px; display: flex; align-items: center; justify-content: center; }

    /* --- Modal --- */
    .modal-card { padding: 28px 24px; }
    .modal-card h2 { font-size: 1.15rem; }
    .modal-phone-prefix { font-size: .85rem; padding: 0 10px; }

    /* --- Global mobile --- */
    .hero__title, .section__title, .order__info h2, .mid-cta h2 {
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
    }
    .section, .hero, .trust-bar { overflow: hidden; }
    .footer__bottom { padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px)); }
}

/* ===========================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   =========================================================== */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .section { padding: 36px 0; }
    .section__title { font-size: 1.25rem; }
    .section__subtitle { font-size: .84rem; margin-bottom: 24px; }

    /* Promo bar */
    .promo-bar { font-size: .7rem; padding: 7px 12px; }

    /* Header */
    .header__inner { height: 48px; }
    .header__logo { font-size: .9rem; gap: 6px; }
    .header__logo-img { height: 22px; }
    .header__nav .header__link { font-size: 1rem; padding: 13px 0; }
    .header__nav .header__btn--mobile { font-size: .85rem; padding: 12px 20px; }

    /* Hero */
    .hero { padding: 24px 0 36px; }
    .hero__pill { font-size: .7rem; padding: 4px 12px; margin-bottom: 14px; }
    .hero__title { font-size: 1.55rem; margin-bottom: 8px; }
    .hero__subtitle { font-size: .88rem; margin-bottom: 16px; }
    .hero__features { gap: 8px; margin-bottom: 20px; }
    .hero__features li { font-size: .82rem; gap: 8px; }
    .hero__feature-icon { width: 22px; height: 22px; }
    .hero__feature-icon svg { width: 18px; height: 18px; }
    .hero__cta { padding: 13px 24px; font-size: .92rem; }

    /* Hero showcase */
    .hero-showcase { width: min(300px, 80vw); height: min(300px, 80vw); }
    .hero-showcase__product img { max-height: 220px; }
    .hero-ingredient { padding: 5px 10px; font-size: .65rem; }
    .hero-ingredient__emoji { font-size: .72rem; }
    .hero__badge { width: 38px; height: 38px; font-size: .62rem; top: 0; right: 0; }

    /* Trust */
    .trust-bar { padding: 22px 0; }
    .trust-grid { gap: 12px; }
    .trust-item__number, .trust-item__suffix { font-size: 1.4rem; }
    .trust-item__label { font-size: .72rem; }

    /* Content sections */
    .symptom-card { padding: 16px; }
    .symptom-card__number { width: 24px; height: 24px; font-size: .68rem; top: 12px; right: 12px; }
    .symptom-card__icon { font-size: 1.4rem; }
    .symptom-card__title { font-size: .86rem; }
    .symptom-card__desc { font-size: .78rem; }
    .benefit-card { padding: 18px; }
    .benefit-card__icon { width: 42px; height: 42px; }
    .benefit-card__icon svg { width: 24px; height: 24px; }
    .benefit-card__title { font-size: .92rem; }
    .benefit-card__desc { font-size: .82rem; }
    .ingredients-grid { grid-template-columns: 1fr; }
    .ingredient-card { padding: 18px; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { padding: 20px 14px; }

    /* Expert */
    .expert-card { padding: 20px; gap: 18px; }
    .expert-tip { padding: 10px 14px; }
    .expert-tip p { font-size: .82rem; }

    /* Order */
    .order__info h2 { font-size: 1.15rem; }
    .order__form-card { padding: 18px; }
    .order__form-header { margin-bottom: 14px; }
    .order__form-discount { padding: 4px 10px; font-size: .78rem; }
    .order__form-prices { gap: 8px; margin-bottom: 14px; padding-bottom: 14px; }
    .order__form-price-old { font-size: .9rem; }
    .order__form-price-new { font-size: 1.4rem; }
    .order__form-countdown { margin-bottom: 18px; }
    .order__form-field { padding: 10px 12px; gap: 8px; }
    .order__form-submit { padding: 13px; font-size: .9rem; }

    /* Mid CTA */
    .section--mid-cta { padding: 32px 0; }
    .mid-cta h2 { font-size: 1.05rem; }
    .mid-cta__badge { font-size: .72rem; padding: 3px 10px; }

    /* FAQ */
    .faq-item__question { padding: 12px 14px; font-size: .84rem; }
    .faq-item.open .faq-item__answer { padding: 0 14px 14px; }
    .faq-item__answer p { font-size: .82rem; }

    /* Timeline */
    .timeline-card { padding: 18px; }
    .timeline-card__badge { font-size: .68rem; padding: 4px 10px; }

    /* Testimonials */
    .testimonial-card { padding: 16px; }
    .testimonial-card__avatar { width: 36px; height: 36px; font-size: .82rem; }
    .testimonial-card__name { font-size: .82rem; }
    .testimonial-card__text { font-size: .8rem; }
    .testimonial-card__badge { font-size: .7rem; }
    .testimonials-summary__stars { font-size: 1.2rem; }

    /* Footer */
    .footer__grid { gap: 22px; }
    .footer__links a { font-size: .78rem; }
    .footer__bottom { padding: 16px 12px; }

    /* Sticky CTA */
    .sticky-cta { padding: 8px 12px; }
    .sticky-cta__info strong { font-size: 1.05rem; }
    .sticky-cta__old { font-size: .78rem; }
    .sticky-cta__btn { padding: 9px 16px; font-size: .8rem; }

    /* Live notification */
    .live-notification { bottom: 64px; padding: 10px 12px; }
    .live-notification__icon { font-size: 1.1rem; }
    .live-notification__text { font-size: .72rem; }
    .live-notification__text strong { font-size: .78rem; }
}

/* ===========================================================
   RESPONSIVE — VERY SMALL (max 360px)
   =========================================================== */
@media (max-width: 360px) {
    .container { padding: 0 10px; }
    .header__logo span { font-size: .82rem; }
    .hero__title { font-size: 1.3rem; }
    .hero-showcase { width: min(260px, 75vw); height: min(260px, 75vw); }
    .hero-showcase__product img { max-height: 185px; }
    .trust-item__number, .trust-item__suffix { font-size: 1.2rem; }
    .order__form-card { padding: 14px; }
    .section__title { font-size: 1.08rem; }
    .mid-cta h2 { font-size: .92rem; }
    .modal-card { padding: 24px 16px; }
    .modal-card h2 { font-size: 1.05rem; }
}

/* ===========================================================
   ORDER MODAL
   =========================================================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.open {
    display: flex;
}
body.modal-open {
    overflow: hidden;
}
.modal-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalIn .3s ease;
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .2s;
}
.modal-close:hover {
    background: var(--off-white);
    color: var(--text-primary);
}
.modal-product {
    max-width: 100px;
    margin: 0 auto 16px;
    display: block;
}
.modal-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 6px;
    color: var(--text-primary);
}
.modal-card h2 span {
    color: var(--primary);
}
.modal-card > p {
    font-size: .85rem;
    color: var(--text-mid);
    text-align: center;
    margin-bottom: 24px;
}
.modal-form-group {
    margin-bottom: 16px;
}
.modal-form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.modal-form-group input {
    width: 100%;
    padding: 13px 16px;
    font-size: 16px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-family: inherit;
    transition: .2s;
    outline: none;
    color: var(--text-primary);
    background: var(--white);
}
.modal-form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 122, 79, .1);
}
.modal-form-group input::placeholder {
    color: var(--gray-300);
}
.modal-phone-input {
    display: flex;
    align-items: stretch;
}
.modal-phone-prefix {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
    background: var(--off-white);
    border: 2px solid var(--gray-100);
    white-space: nowrap;
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-weight: 700;
    font-size: .9rem;
    color: var(--text-mid);
}
.modal-phone-input input {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.modal-submit {
    width: 100%;
    min-height: 50px;
}
.modal-form-message {
    text-align: center;
    margin-top: 12px;
    font-size: .85rem;
    font-weight: 600;
}
.modal-form-message.error {
    color: var(--accent);
}
.modal-form-message.success {
    color: var(--primary);
}
.modal-badges {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}
.modal-badges span {
    font-size: .75rem;
    color: var(--text-light);
    font-weight: 600;
}
.modal-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
    animation: none;
}

@media (max-width: 480px) {
    .modal-card {
        padding: 28px 20px;
    }
    .modal-card h2 {
        font-size: 1.15rem;
    }
}
