/* ================================
   METABOLIC RESTORE - MAIN STYLES
   Professional, High-Converting Design
   ================================ */

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Calm, Healing, Expertise, Trust */
    --primary-navy: #0B3954;        /* Deep navy - expertise & trust (WCAG AAA) */
    --secondary-teal: #087E8B;      /* Medical teal - calm & professional */
    --accent-sage: #6B9080;         /* Healing sage - natural & calming */
    --warm-terracotta: #C1666B;     /* Warm accent - approachable & human */
    --light-mint: #E8F3F1;          /* Soft mint background - calm & fresh */
    --cream: #F8F9FA;               /* Warm white - soft & inviting */
    --charcoal: #2C3E50;            /* Deep charcoal text - readable & strong */
    --medium-gray: #64748B;         /* Medium gray - secondary text */
    --light-gray: #E2E8F0;          /* Light gray - borders & dividers */
    --pure-white: #FFFFFF;          /* Pure white - clean spaces */
    --success-green: #10B981;       /* Success indicators */
    --gradient-calm: linear-gradient(135deg, #0B3954 0%, #087E8B 100%);
    --gradient-warm: linear-gradient(135deg, #6B9080 0%, #087E8B 100%);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

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

/* Import Blog Styles */
@import url('blog-styles.css');

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--pure-white);
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 28px;
}

p {
    margin-bottom: 16px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-teal);
    color: var(--pure-white);
}

.btn-primary:hover {
    background-color: #066A75;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 126, 139, 0.35);
}

.btn-primary-inverse {
    background-color: var(--pure-white);
    color: var(--secondary-teal);
}

.btn-primary-inverse:hover {
    background-color: var(--light-mint);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
    background-color: var(--primary-navy);
    color: var(--pure-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-teal);
    border: 2px solid var(--secondary-teal);
}

.btn-outline:hover {
    background-color: var(--secondary-teal);
    color: var(--pure-white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 20px;
}

.btn-small {
    padding: 10px 24px;
    font-size: 16px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 12px rgba(11, 57, 84, 0.08);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(11, 57, 84, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: 1px;
}

.logo img {
    height: 75px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Fallback text if image doesn't load */
.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: 1px;
}

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

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover {
    color: var(--secondary-teal);
}

/* Client Login Link - Special Styling */
.client-login-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid var(--secondary-teal);
    border-radius: 6px;
    font-weight: 600;
    color: var(--secondary-teal) !important;
    transition: all 0.3s ease;
}

.client-login-link i {
    font-size: 16px;
}

.client-login-link:hover {
    background-color: var(--secondary-teal);
    color: var(--pure-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 126, 139, 0.25);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-navy);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--pure-white);
    padding: 24px;
    box-shadow: 0 8px 24px rgba(11, 57, 84, 0.12);
    z-index: 999;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--charcoal);
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu .client-login-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border: 2px solid var(--secondary-teal);
    border-radius: 8px;
    font-weight: 600;
    color: var(--secondary-teal) !important;
    background: rgba(8, 126, 139, 0.05);
    justify-content: center;
    border-bottom: 2px solid var(--secondary-teal);
}

.mobile-menu .client-login-link i {
    font-size: 18px;
}

/* CTA Button styling in navigation */
.nav-links .cta-btn {
    color: var(--pure-white) !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links .cta-btn i {
    font-size: 14px;
}

/* Mobile Menu CTA Button */
.mobile-menu .cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px !important;
    border-bottom: none !important;
    color: var(--pure-white) !important;
}

.mobile-menu .cta-btn i {
    font-size: 16px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    padding-top: 120px;
    overflow: hidden;
    /* Brand-Aligned: Calm Authority Gradient with Subtle Organic Shapes */
    background: 
        linear-gradient(135deg, 
            #D4EBE5 0%,           /* Mint Highlight - top left */
            #F5F0E8 35%,          /* Warm Sand - center left */
            #FFFFFF 50%,          /* Pure White - center */
            #F5F0E8 65%,          /* Warm Sand - center right */
            rgba(143, 169, 152, 0.15) 100%  /* Soft Sage tint - bottom right */
        );
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
}

.molecular-pattern {
    width: 100%;
    height: 100%;
    /* Sophisticated molecular pattern - brand aligned */
    background-image: 
        /* Large organic shapes */
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(13, 124, 127, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 600px 800px at 80% 70%, rgba(143, 169, 152, 0.06) 0%, transparent 50%),
        /* Molecular dots - subtle */
        radial-gradient(circle 2px at 25% 25%, rgba(13, 124, 127, 0.15) 0%, transparent 100%),
        radial-gradient(circle 2px at 75% 75%, rgba(143, 169, 152, 0.12) 0%, transparent 100%),
        radial-gradient(circle 1.5px at 50% 50%, rgba(13, 124, 127, 0.08) 0%, transparent 100%),
        radial-gradient(circle 1px at 30% 70%, rgba(143, 169, 152, 0.1) 0%, transparent 100%),
        radial-gradient(circle 1px at 70% 30%, rgba(13, 124, 127, 0.1) 0%, transparent 100%);
    background-size: 
        100% 100%,
        100% 100%,
        200px 200px,
        250px 250px,
        150px 150px,
        180px 180px,
        220px 220px;
    background-position: 
        0 0,
        0 0,
        0 0,
        40px 40px,
        80px 80px,
        120px 20px,
        60px 100px;
    opacity: 0.5;
    animation: molecularFloat 30s ease-in-out infinite;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(13, 124, 127, 0.08);
}

.hero-headline {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

.hero-headline .highlight {
    color: var(--secondary-teal);
    display: block;
    margin-top: 8px;
}

.hero-subheadline {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--medium-gray);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-size: 18px;
    background-color: var(--pure-white);
    padding: 16px 20px;
    border-radius: 8px;
    border: 2px solid var(--light-gray);
    transition: var(--transition-smooth);
    color: var(--charcoal);
}

.checklist-item:hover {
    border-color: var(--accent-sage);
    box-shadow: 0 4px 12px rgba(107, 144, 128, 0.15);
    transform: translateY(-2px);
}

.checklist-item i {
    color: var(--secondary-teal);
    font-size: 20px;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-indicators {
    font-size: 16px;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-weight: 500;
}

.separator {
    color: var(--light-gray);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--medium-gray);
    border-radius: 20px;
    position: relative;
    opacity: 0.6;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--secondary-teal);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(10px); }
}

/* Subtle molecular float animation */
@keyframes molecularFloat {
    0%, 100% { 
        background-position: 
            0 0,
            0 0,
            0 0,
            40px 40px,
            80px 80px,
            120px 20px,
            60px 100px;
    }
    50% { 
        background-position: 
            0 0,
            0 0,
            10px 10px,
            50px 30px,
            70px 90px,
            130px 30px,
            50px 90px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-in 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-in 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease-in 0.6s both;
}

.fade-in-delay-4 {
    animation: fadeIn 0.8s ease-in 0.8s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-headline {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-navy);
}

.section-subheadline {
    font-size: 20px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-disclaimer {
    margin-top: 16px;
    font-size: 16px;
    color: var(--medium-gray);
}

/* ===== PROBLEM MIRROR SECTION ===== */
.problem-section {
    padding: var(--section-padding) 0;
    background-color: var(--light-mint);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.problem-card {
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(11, 57, 84, 0.08);
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(11, 57, 84, 0.12);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.problem-icon i {
    font-size: 32px;
    color: var(--secondary-teal);
}

.solution-icon {
    background-color: rgba(107, 144, 128, 0.15);
}

.solution-icon i {
    color: var(--accent-sage);
}

.problem-content h3 {
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.problem-text {
    margin-bottom: 16px;
    line-height: 1.8;
}

.problem-text.highlight-text {
    background-color: var(--light-mint);
    padding: 16px;
    border-radius: 8px;
    font-style: italic;
}

.problem-text.final {
    margin-bottom: 0;
}

.problem-text.emphasis {
    font-weight: 600;
    color: var(--primary-navy);
}

.problem-text.cta-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-sage);
}

.insight-list {
    margin: 24px 0;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.insight-item i {
    color: var(--accent-sage);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: var(--section-padding) 0;
    background-color: var(--pure-white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 60px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--pure-white);
    box-shadow: 0 4px 24px rgba(11, 57, 84, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--gradient-calm);
}

.comparison-table th {
    padding: 24px;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    color: var(--pure-white);
}

.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 18px;
}

.comparison-table tbody tr:hover {
    background-color: var(--light-mint);
}

.comparison-table .highlight-cell {
    font-weight: 600;
    color: var(--secondary-teal);
}

.comparison-table .old-way {
    width: 40%;
}

.comparison-table .new-way {
    width: 60%;
}

/* ===== PILLARS SECTION ===== */
.pillars-section {
    margin-top: 80px;
}

.pillars-headline {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary-navy);
}

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

.pillar-card {
    background-color: var(--cream);
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(11, 57, 84, 0.12);
    border-color: var(--accent-sage);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar-icon i {
    font-size: 36px;
    color: var(--pure-white);
}

.sleep-icon {
    background: linear-gradient(135deg, #0B3954 0%, #087E8B 100%);
}

.stress-icon {
    background: linear-gradient(135deg, #6B9080 0%, #087E8B 100%);
}

.mood-icon {
    background: linear-gradient(135deg, #C1666B 0%, #A05256 100%);
}

.pain-icon {
    background: linear-gradient(135deg, #6B9080 0%, #4A6B5C 100%);
}

.pillar-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-navy);
}

.pillar-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: var(--section-padding) 0;
    background-color: var(--light-blue);
}

.timeline {
    max-width: 900px;
    margin: 60px auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--sage-green), var(--deep-blue));
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.timeline-content {
    background-color: var(--pure-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(11, 57, 84, 0.08);
    flex: 1;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    border-color: var(--accent-sage);
    box-shadow: 0 6px 28px rgba(11, 57, 84, 0.12);
}

.timeline-badge {
    display: inline-block;
    background-color: var(--accent-sage);
    color: var(--pure-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.timeline-list {
    list-style: none;
    margin-bottom: 20px;
}

.timeline-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 17px;
}

.timeline-list i {
    color: var(--success-green);
    margin-top: 4px;
    flex-shrink: 0;
}

.timeline-outcome {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-teal);
    padding: 16px;
    background-color: var(--light-mint);
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
}

/* ===== PRICING BOX ===== */
.pricing-box {
    background: var(--gradient-calm);
    color: var(--pure-white);
    padding: 50px;
    border-radius: 16px;
    max-width: 700px;
    margin: 60px auto;
    text-align: center;
    box-shadow: 0 8px 32px rgba(8, 126, 139, 0.3);
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.pricing-amount {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.pricing-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.pricing-includes {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-includes p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-includes ul {
    list-style: none;
}

.pricing-includes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 17px;
}

.pricing-includes i {
    color: var(--accent-sage);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background-color: var(--pure-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: var(--light-mint);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(11, 57, 84, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(11, 57, 84, 0.15);
    border-color: var(--accent-sage);
}

.testimonial-icon {
    font-size: 32px;
    color: var(--secondary-teal);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-author {
    border-top: 2px solid rgba(26, 54, 93, 0.1);
    padding-top: 20px;
}

.author-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.author-title {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 12px;
}

.testimonial-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pure-white);
}

.sleep-badge {
    background-color: #0B3954;
}

.mood-badge {
    background-color: #6B9080;
}

.pain-badge {
    background-color: #C1666B;
}

.testimonials-disclaimer {
    text-align: center;
    font-size: 14px;
    color: var(--medium-gray);
    margin-top: 40px;
    font-style: italic;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, rgba(232, 243, 241, 0.5) 0%, var(--cream) 100%);
}

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

.about-image {
    position: relative;
}

.founder-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(11, 57, 84, 0.15);
    border: 3px solid var(--pure-white);
    display: block;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--cream) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(11, 57, 84, 0.1);
    border: 3px solid var(--pure-white);
}

.image-placeholder i {
    font-size: 80px;
    color: var(--secondary-teal);
    opacity: 0.3;
}

.image-placeholder p {
    font-size: 16px;
    color: var(--medium-gray);
    margin: 0;
}

.credentials-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: var(--pure-white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(11, 57, 84, 0.06);
}

.credential-item i {
    color: var(--accent-sage);
    font-size: 18px;
}

.credential-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
}

.about-content .section-headline {
    text-align: left;
    margin-bottom: 32px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text .emphasis-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-teal);
    border-left: 4px solid var(--accent-sage);
    padding-left: 20px;
    margin: 32px 0;
}

.signature {
    margin-top: 32px;
}

.signature strong {
    font-size: 22px;
    color: var(--primary-navy);
}

.founder-title {
    font-size: 16px;
    color: var(--medium-gray);
}

.about-cta {
    margin-top: 32px;
}

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

.faq-grid {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background-color: var(--cream);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 4px 24px rgba(11, 57, 84, 0.08);
    border-color: var(--accent-sage);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    background-color: var(--cream);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(232, 243, 241, 0.8);
}

.faq-question h3 {
    font-size: 20px;
    color: var(--primary-navy);
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 20px;
    color: var(--secondary-teal);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: var(--pure-white);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 32px 24px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--charcoal);
}

.faq-answer ul {
    list-style: none;
    padding-left: 48px;
}

.faq-answer li {
    margin-bottom: 12px;
    position: relative;
}

.faq-answer li::before {
    content: '→';
    position: absolute;
    left: -24px;
    color: var(--accent-sage);
    font-weight: 700;
}

.faq-answer strong {
    color: var(--secondary-teal);
}

.cta-text {
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: 24px;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-calm);
    color: var(--pure-white);
    text-align: center;
}

.final-cta-headline {
    font-size: 48px;
    margin-bottom: 24px;
}

.final-cta-subheadline {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.final-cta-buttons {
    margin-bottom: 32px;
}

.final-cta-contact {
    font-size: 18px;
}

.final-cta-contact a {
    color: var(--light-mint);
    text-decoration: underline;
    font-weight: 600;
}

.final-cta-contact a:hover {
    color: var(--pure-white);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--charcoal);
    color: var(--pure-white);
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--pure-white);
}

.footer-brand img {
    height: 65px;
    width: auto;
    margin-bottom: 12px;
    display: block;
    object-fit: contain;
}

.footer-brand p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-sage);
}

/* Footer Social Media */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-social-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-teal);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(8, 126, 139, 0.3);
}

.social-links a i {
    line-height: 1;
}

/* Client Login in Footer */
.client-login-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.client-login-footer i {
    font-size: 15px;
}

.client-login-footer:hover {
    background: var(--accent-sage);
    color: var(--pure-white) !important;
    border-color: var(--accent-sage);
    transform: translateY(-2px);
}

.footer-disclaimer {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--pure-white);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and below */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    .hero-headline {
        font-size: 48px;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Logo responsive sizing */
    .logo img {
        height: 60px;
    }
    
    .footer-brand img {
        height: 55px;
    }
    
    /* Mobile hero optimization */
    .hero {
        background-attachment: scroll;
        background-position: center center;
    }
    
    .hero-headline {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .hero-checklist {
        grid-template-columns: 1fr;
    }
    
    .checklist-item {
        font-size: 16px;
        padding: 10px 14px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 18px;
        width: 100%;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 16px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 16px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .timeline-item {
        gap: 24px;
    }
    
    .pricing-box {
        padding: 32px 24px;
    }
    
    .pricing-amount {
        font-size: 48px;
    }
    
    .final-cta-headline {
        font-size: 36px;
    }
    
    .final-cta-subheadline {
        font-size: 18px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-social {
        align-items: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .section-headline {
        font-size: 28px;
    }
    
    .problem-card,
    .pillar-card,
    .testimonial-card,
    .timeline-content {
        padding: 24px;
    }
    
    .btn {
        font-size: 16px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .mobile-menu,
    .scroll-indicator,
    .btn,
    .final-cta-section {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
