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

:root {
    --blue-900: #0f2f1f;
    --blue-800: #14532d;
    --blue-700: #166534;
    --blue-600: #15803d;
    --blue-500: #16a34a;
    --blue-400: #22c55e;
    --blue-300: #86efac;
    --blue-100: #dcfce7;
    --blue-50: #f0fdf4;
    --teal-500: #22c55e;
    --teal-400: #4ade80;
    --teal-100: #dcfce7;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
    background: var(--blue-900);
    color: var(--blue-300);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
}
.announce-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    text-align: center;
}
.announce-sep {
    color: var(--blue-700);
    margin: 0 8px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.brand-icon { font-size: 24px; }
.brand-name {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--blue-800);
}
.brand-sub {
    font-size: 10px;
    color: var(--gray-400);
    font-weight: 600;
    align-self: flex-end;
    margin-bottom: 2px;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-600);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--blue-600); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--blue-600);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--blue-800);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: 0.3s;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 0 24px 20px;
    gap: 12px;
}
.mobile-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}
.nav-cta-mobile {
    background: var(--blue-600) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    text-align: center;
    border-bottom: none !important;
    margin-top: 8px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 50%, var(--teal-100) 100%);
    overflow: hidden;
    padding: 80px 0 60px;
}
.hero-bg-decor {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-100);
    color: var(--blue-700);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}
.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-heading {
    font-family: 'Merriweather', serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-gradient-text {
    background: linear-gradient(135deg, var(--blue-600), var(--teal-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 520px;
}
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.hero-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
}
.feat-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--blue-100);
    color: var(--blue-600);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.btn-main {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
    border: none;
    cursor: pointer;
}
.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.4);
    background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
}
.btn-ghost {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s;
}
.btn-ghost:hover { color: var(--blue-800); }
.hero-trust-row { display: flex; align-items: center; gap: 12px; }
.trust-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 600;
}
.trust-stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; }

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero-product-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 360px;
    border-radius: var(--radius-xl);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: transform 0.4s;
}
.hero-product-img:hover { transform: scale(1.03) rotate(-1deg); }
.hero-float-badge {
    position: absolute;
    z-index: 2;
    background: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}
.badge-top {
    top: 10px;
    right: -20px;
    animation: floatBadge 3s ease-in-out infinite;
}
.badge-bottom {
    bottom: 30px;
    left: -20px;
    animation: floatBadge 3s ease-in-out infinite 1.5s;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--blue-900);
    padding: 0;
}
.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--blue-300);
    margin-bottom: 4px;
}
.stat-label {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 600;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
}

/* ===== SECTION COMMON ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-badge {
    display: inline-block;
    background: var(--blue-100);
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-heading {
    font-family: 'Merriweather', serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 14px;
    line-height: 1.25;
}
.section-desc {
    color: var(--gray-500);
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== BENEFITS ===== */
.benefits { background: var(--gray-50); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-500), var(--teal-500));
    opacity: 0;
    transition: opacity 0.3s;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-200);
}
.benefit-card:hover::after { opacity: 1; }
.benefit-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--blue-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-icon { font-size: 32px; }
.benefit-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== HOW TO USE ===== */
.how-to-use { background: var(--white); }
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.step-block {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    padding: 24px;
}
.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--blue-600), var(--teal-500));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}
.step-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 8px;
}
.step-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}
.step-connector {
    width: 60px;
    height: 2px;
    background: var(--gray-200);
    margin-top: 50px;
    flex-shrink: 0;
}

/* ===== INGREDIENTS ===== */
.ingredients { background: var(--gray-50); }
.ingredients-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ingredients-info .section-heading { text-align: left; }
.ingredients-info .section-desc { margin: 0; text-align: left; }
.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ingredient-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}
.ingredient-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--blue-200);
}
.ing-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}
.ing-yellow { background: #f59e0b; }
.ing-orange { background: #f97316; }
.ing-red { background: #ef4444; }
.ing-green { background: #22c55e; }
.ing-blue { background: #3b82f6; }
.ing-purple { background: #8b5cf6; }
.ing-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2px;
}
.ing-info p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}
.ingredients-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.featured-card {
    border: 2px solid var(--blue-400);
    background: var(--blue-50);
}
.featured-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-600);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}
.testimonial-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--blue-100);
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
    color: var(--white);
    font-weight: 800;
    font-size: 18px;
}
.testimonial-name { font-weight: 800; font-size: 15px; color: var(--gray-800); }
.testimonial-loc { font-size: 12px; color: var(--gray-400); }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.verified-tag {
    margin-left: auto;
    background: var(--blue-100);
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}
.testimonial-text {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 12px;
}
.testimonial-date {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section { background: var(--gray-50); }
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}
.faq-left .section-heading { text-align: left; }
.faq-left .section-desc { margin: 0 0 32px; text-align: left; }
.faq-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.faq-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--blue-300); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-800);
    font-family: 'Inter', sans-serif;
    text-align: left;
    transition: background 0.2s;
    gap: 12px;
}
.faq-question:hover { background: var(--blue-50); }
.faq-icon {
    color: var(--blue-500);
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 24px;
}
.faq-answer.open {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-answer p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.8;
}
.faq-icon.rotated { transform: rotate(45deg); }

/* ===== ORDER SECTION ===== */
.order-section {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, #0e2952 100%);
    position: relative;
    overflow: hidden;
}
.order-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.order-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.order-heading {
    font-family: 'Merriweather', serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.25;
}
.price-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.price-old {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}
.price-current {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.price-current strong {
    color: var(--blue-300);
    font-size: 36px;
    font-weight: 900;
}
.price-savings {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
}
.order-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.order-benefits li {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ob-icon { font-size: 18px; }
.order-note {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    line-height: 1.6;
}

/* Order Form */
.order-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}
.form-heading {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 28px;
    text-align: center;
}
.field {
    margin-bottom: 20px;
}
.field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 6px;
}
.field input,
.field select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}
.field input:focus,
.field select:focus {
    border-color: var(--blue-400);
    background: var(--white);
}
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
    font-family: 'Inter', sans-serif;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.4);
    background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
}
.form-note {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    padding: 48px 24px 32px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-brand .brand-icon { font-size: 20px; }
.footer-brand .brand-name {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
}
.footer-brand .brand-sub {
    font-size: 10px;
    color: var(--gray-500);
    font-weight: 600;
}
.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-nav a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--blue-400); }
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 24px 0;
}
.footer-bottom p {
    color: var(--gray-600);
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ===== MODAL ===== */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}
.modal-backdrop.active { display: flex; }
.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    animation: modalSlide 0.4s ease;
}
@keyframes modalSlide {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-emoji { font-size: 56px; margin-bottom: 16px; }
.modal-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 12px;
}
.modal-content p {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-visual { order: -1; }
    .hero-product-img { max-width: 280px; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-features { align-items: center; }
    .hero-actions { justify-content: center; }
    .hero-trust-row { justify-content: center; }
    .hero-float-badge { display: none; }
    .ingredients-layout { grid-template-columns: 1fr; }
    .ingredients-info .section-heading,
    .ingredients-info .section-desc { text-align: center; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-left .section-heading,
    .faq-left .section-desc { text-align: center; }
    .faq-img { max-width: 400px; margin: 0 auto; display: block; }
    .order-layout { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .step-connector { display: none; }
    .steps-row { flex-direction: column; align-items: center; }
}

@media (max-width: 600px) {
    .announce-sep { display: none; }
    .announce-inner { flex-direction: column; gap: 4px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .section-container { padding: 60px 16px; }
    .stats-inner { gap: 16px; }
    .stat-divider { display: none; }
    .stat-number { font-size: 24px; }
    .order-form-card { padding: 28px 20px; }
    .footer-top { flex-direction: column; text-align: center; }
    .footer-nav { justify-content: center; }
}