/* =============================================
   EREXOL — Dutch Prostate Health Landing Page
   Clean, Modern, Outbrain-Compliant Design
   ============================================= */

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

:root {
    --primary: #1a56db;
    --primary-dark: #1240a8;
    --primary-light: #e8f0fe;
    --accent: #0ea5e9;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --mid: #64748b;
    --light: #94a3b8;
    --lighter: #e2e8f0;
    --lightest: #f8f9fc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1a56db 0%, #0ea5e9 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-main: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-family: var(--font-main);
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar .sep {
    opacity: 0.4;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--lighter);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    font-size: 24px;
    color: var(--primary);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 22px;
    color: var(--dark);
    letter-spacing: 2px;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.header-nav a {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-3);
    text-decoration: none;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--primary);
}

.header-cta {
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(26,86,219,0.35);
}

.header-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--white);
    top: 50%;
    left: 40%;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-checks {
    list-style: none;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 500;
}

.hero-disclaimer-note {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
    line-height: 1.5;
}

.check {
    width: 22px;
    height: 22px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(26,86,219,0.45);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(26,86,219,0.55);
}

.btn-primary.large {
    font-size: 18px;
    padding: 18px 40px;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stars {
    color: var(--warning);
    font-size: 18px;
    letter-spacing: 2px;
}

.hero-trust span {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 40px;
}

.product-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26,86,219,0.4) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.product-card {
    position: relative;
    z-index: 2;
}

.product-img {
    width: 280px;
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: float 4s ease-in-out infinite;
}

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

.product-badge-float {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 16px rgba(26,86,219,0.5);
}

.badge-number {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
}

.badge-label {
    font-size: 9px;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0.9;
}

.floating-stat {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: white;
    z-index: 3;
}

.floating-stat strong {
    display: block;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 24px;
    color: var(--accent);
    line-height: 1;
}

.floating-stat span {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1.3;
}

.stat-1 {
    top: 20px;
    left: -10px;
}

.stat-2 {
    bottom: 60px;
    right: -10px;
}

.hero-wave {
    margin-top: 60px;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-label {
    display: inline-block;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-label.light {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.15);
}

.section-title {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-title.light {
    color: var(--white);
}

.section-intro {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 48px;
}

/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem-section {
    background: var(--lightest);
    padding: 80px 0;
}

.problem-section .container {
    text-align: center;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    text-align: left;
}

.symptom-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    border: 1px solid var(--lighter);
    transition: transform 0.2s, box-shadow 0.2s;
}

.symptom-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.symptom-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.symptom-card h3 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
}

.symptom-card p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.6;
}

.problem-callout {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-md);
    padding: 24px 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.callout-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.callout-text {
    font-size: 15px;
    color: var(--dark-3);
    line-height: 1.6;
}

.callout-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* =============================================
   SOLUTION INTRO
   ============================================= */
.solution-intro {
    padding: 80px 0;
    background: var(--white);
}

.solution-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-text p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 16px;
}

.solution-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 32px;
    background: var(--lightest);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--lighter);
}

.stat-item {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 32px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 12px;
    color: var(--mid);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--lighter);
}

.solution-stat-note {
    font-size: 12px;
    color: var(--mid);
    margin-top: 10px;
    font-style: italic;
}

.solution-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.solution-img {
    width: 260px;
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.solution-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: white;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(16,185,129,0.4);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
    background: var(--lightest);
    padding: 80px 0;
}

.how-it-works .container {
    text-align: center;
}

.steps-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.step-line {
    position: absolute;
    left: 40px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0.3;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    gap: 24px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--lighter);
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 36px;
    color: var(--primary);
    opacity: 0.25;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
}

.step-icon {
    font-size: 36px;
    text-align: center;
}

/* =============================================
   INGREDIENTS
   ============================================= */
.ingredients-section {
    background: var(--white);
    padding: 80px 0;
}

.ingredients-section .container {
    text-align: center;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.ingredient-card {
    background: var(--white);
    border: 1px solid var(--lighter);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.2s;
}

.ingredient-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.ingredient-card:hover::before {
    opacity: 1;
}

.ingredient-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.ingredient-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.ingredient-number {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 28px;
    color: var(--lighter);
}

.ingredient-card h3 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 4px;
}

.ingredient-latin {
    font-style: italic;
    font-size: 12px;
    color: var(--light);
    margin-bottom: 12px;
}

.ingredient-card p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.6;
    margin-bottom: 14px;
}

.ingredient-benefit {
    display: inline-flex;
}

.ingredient-benefit span {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
    background: var(--lightest);
    padding: 80px 0;
}

.testimonials-section .container {
    text-align: center;
}

.testimonials-disclaimer {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
    text-align: left;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--lighter);
    position: relative;
    transition: box-shadow 0.2s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
    background: var(--gradient-dark);
    border-color: transparent;
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .author-info strong,
.testimonial-card.featured .author-info span {
    color: rgba(255,255,255,0.85);
}

.testimonial-card.featured .author-info strong {
    color: var(--white);
}

.testimonial-quote {
    font-size: 64px;
    line-height: 0.8;
    color: var(--primary);
    font-family: Georgia, serif;
    margin-bottom: 12px;
    opacity: 0.4;
}

.testimonial-card.featured .testimonial-quote {
    color: var(--accent);
    opacity: 0.6;
}

.testimonial-text {
    font-size: 15px;
    color: var(--dark-3);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info strong {
    display: block;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
}

.author-info span {
    font-size: 12px;
    color: var(--mid);
}

.testimonial-stars {
    color: var(--warning);
    font-size: 14px;
    letter-spacing: 1px;
}

/* =============================================
   ORDER SECTION
   ============================================= */
.order-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.order-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.order-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,86,219,0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.order-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.order-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.order-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ob-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-benefits li div strong {
    display: block;
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.order-benefits li div span {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

/* Order Form Card */
.order-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-xl);
}

.form-header {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--lighter);
    margin-bottom: 24px;
}

.form-product-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: var(--lightest);
    padding: 4px;
}

.form-product-info h3 {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 2px;
}

.form-product-info p {
    font-size: 13px;
    color: var(--mid);
    margin-bottom: 8px;
}

.form-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-old {
    font-size: 14px;
    color: var(--light);
    text-decoration: line-through;
}

.price-new {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 22px;
    color: var(--primary);
}

.price-badge {
    background: #fee2e2;
    color: #dc2626;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 50px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 13px;
    color: var(--dark-3);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--lighter);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}

.btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(26,86,219,0.4);
    margin-top: 4px;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26,86,219,0.5);
}

.form-disclaimer {
    font-size: 11px;
    color: var(--light);
    text-align: center;
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--primary);
    text-decoration: none;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--lighter);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--mid);
    font-weight: 600;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    background: var(--white);
    padding: 80px 0;
}

.faq-section .container {
    text-align: center;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--lighter);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-arrow {
    font-size: 12px;
    color: var(--mid);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
    background: var(--primary-light);
    padding: 80px 0;
    text-align: center;
}

.final-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.final-cta p {
    font-size: 16px;
    color: var(--mid);
    margin-bottom: 32px;
}

.final-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.final-trust span {
    font-size: 13px;
    color: var(--mid);
    font-weight: 600;
}

/* Footer styles are injected via footer.js */

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-checks {
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-visual {
        padding-bottom: 60px;
    }

    .stat-1 { left: 0; }
    .stat-2 { right: 0; }

    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .solution-img-wrap {
        margin-top: 20px;
    }

    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .order-inner {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .step {
        grid-template-columns: 60px 1fr 50px;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .topbar {
        font-size: 11px;
        gap: 6px;
    }

    .topbar .sep {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .symptoms-grid {
        grid-template-columns: 1fr;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    .solution-stats {
        flex-direction: column;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .steps-container {
        padding-left: 0;
    }

    .step-line {
        display: none;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-number {
        font-size: 24px;
        text-align: left;
    }

    .step-icon {
        display: none;
    }

    .order-form-card {
        padding: 24px 20px;
    }

    .trust-badges {
        gap: 10px;
    }

    .final-trust {
        gap: 12px;
    }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}