/* ================================================
   METABOLIC RESET PROTOCOL - ENHANCED DESIGN SYSTEM
   "Masculine Wellness - Biohacking Meets Discipline"
   Version 2.0 - November 2025
   ================================================ */

/* CSS Variables - Enhanced Masculine Design Tokens */
:root {
    /* PRIMARY PALETTE - Masculine Authority */
    --slate-dark: #1A2332;           /* Main backgrounds, headers */
    --charcoal: #2E3440;              /* Secondary backgrounds */
    --forest-deep: #1F3A2C;           /* Brand color, health, renewal */
    
    /* ACCENT PALETTE - Luxury & Action */
    --bronze: #B87333;                /* Premium CTAs, highlights */
    --steel-blue: #4A6FA5;            /* Data visualizations, trust */
    --burnt-sienna: #D46A43;          /* Warning, urgency */
    --sage: #6B8E75;                  /* Success states */
    --warm-sand: #E8DCC4;             /* Light areas, contrast */
    --electric-teal: #00A896;         /* Interactive elements */
    --deep-gold: #C9A55A;             /* Premium features */
    
    /* SEMANTIC COLORS */
    --color-danger: #D46A43;
    --color-warning: #E8A24E;
    --color-success: #6B8E75;
    --color-info: #4A6FA5;
    
    /* NEUTRALS */
    --gray-900: #1A2332;
    --gray-800: #2E3440;
    --gray-700: #3B4252;
    --gray-600: #4C566A;
    --gray-500: #697883;
    --gray-400: #8A97A3;
    --gray-300: #BCC5CE;
    --gray-200: #D8DEE9;
    --gray-100: #ECEFF4;
    --white: #FFFFFF;
    
    /* TEXT COLORS */
    --text-primary: #1A2332;
    --text-secondary: #4C566A;
    --text-muted: #697883;
    --text-inverse: #FFFFFF;
    
    /* BORDERS */
    --border-color: #D8DEE9;
    --border-color-dark: #4C566A;
    
    /* BACKGROUNDS */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F7FA;
    --bg-dark: #1A2332;
    --bg-gradient-dark: linear-gradient(135deg, #1A2332 0%, #2E3440 100%);
    --bg-gradient-bronze: linear-gradient(135deg, #B87333 0%, #C9A55A 100%);
    
    /* TYPOGRAPHY */
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Source Sans Pro', sans-serif;
    --font-data: 'Roboto Mono', monospace;
    
    /* FONT WEIGHTS */
    --weight-normal: 400;
    --weight-medium: 600;
    --weight-bold: 700;
    --weight-black: 900;
    
    /* SPACING SYSTEM (8px base) */
    --space-xs: 0.5rem;     /* 8px */
    --space-sm: 1rem;       /* 16px */
    --space-md: 1.5rem;     /* 24px */
    --space-lg: 2rem;       /* 32px */
    --space-xl: 3rem;       /* 48px */
    --space-2xl: 4rem;      /* 64px */
    --space-3xl: 6rem;      /* 96px */
    
    /* SHADOWS */
    --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 35, 50, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 35, 50, 0.16);
    --shadow-xl: 0 12px 48px rgba(26, 35, 50, 0.24);
    
    /* TRANSITIONS */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* BORDER RADIUS */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-round: 50%;
    --radius-pill: 100px;
}

/* ================================================
   RESET & BASE STYLES
   ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* FIX: Prevents content hiding behind sticky header */
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - Masculine & Bold */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: var(--weight-black);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

h1 { font-size: 4rem; font-weight: 900; }
h2 { font-size: 3rem; font-weight: 800; }
h3 { font-size: 2rem; font-weight: 700; }
h4 { font-size: 1.5rem; font-weight: 700; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1.125rem; font-weight: 600; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
}

p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

a {
    color: var(--bronze);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--deep-gold);
}

strong {
    font-weight: var(--weight-bold);
}

em {
    font-style: italic;
    color: var(--text-secondary);
}

/* ================================================
   LAYOUT UTILITIES
   ================================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

section {
    padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
    section {
        padding: var(--space-2xl) 0;
    }
}

/* ================================================
   NETWORK BAR
   ================================================ */

.network-bar {
    background: var(--slate-dark);
    color: var(--text-inverse);
    padding: var(--space-xs) 0;
    font-size: 0.875rem;
}

.network-bar .container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.network-label {
    font-weight: var(--weight-medium);
    opacity: 0.9;
}

.network-nav {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.network-link {
    color: var(--text-inverse);
    opacity: 0.85;
    transition: opacity var(--transition-fast);
    font-weight: var(--weight-medium);
}

.network-link:hover {
    opacity: 1;
    color: var(--deep-gold);
}

@media (max-width: 768px) {
    .network-bar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
}

/* ================================================
   MAIN HEADER - Enhanced with Two-Line Nav
   ================================================ */

.main-header {
    background: var(--bg-primary);
    border-bottom: 2px solid var(--bronze);
    padding: var(--space-xs) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

/* Ecosystem Logo with Hover Popup - Fixed Position */
.ecosystem-logo-container {
    position: fixed;
    left: 20px;
    top: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
}

.ecosystem-logo {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: var(--space-xs);
    box-shadow: var(--shadow-md);
}

.ecosystem-logo-container:hover .ecosystem-logo {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.ecosystem-popup {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: var(--space-sm);
    background: var(--slate-dark);
    color: var(--text-inverse);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1000;
}

.ecosystem-logo-container:hover .ecosystem-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ecosystem-popup-header {
    font-size: 0.875rem;
    font-weight: var(--weight-bold);
    color: var(--bronze);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ecosystem-popup-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.ecosystem-popup-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: var(--weight-medium);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.ecosystem-popup-link:hover {
    background: rgba(184, 115, 51, 0.2);
    color: var(--deep-gold);
    transform: translateX(4px);
}

.logo h1 {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin: 0;
    color: var(--slate-dark);
    font-weight: var(--weight-black);
}

.logo h1 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

.logo h1 a:hover {
    color: var(--bronze);
}

.tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bronze);
    font-weight: var(--weight-bold);
}

/* Navigation */
.main-nav {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.main-nav a {
    font-weight: var(--weight-bold);
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color var(--transition-base);
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--bronze);
}

@media (max-width: 1100px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm) var(--space-md);
    }

    .main-nav a {
        font-size: 0.85rem;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    transition: all var(--transition-base);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--slate-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

/* Hamburger Animation - Transform to X */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Enhanced Mobile Navigation - Touch-Optimized */
@media (max-width: 768px) {
    .main-header {
        padding: var(--space-sm) 0;
    }

    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-md);
        position: relative;
    }

    /* Mobile Logo - Smaller and repositioned */
    .ecosystem-logo-container {
        left: 10px;
        top: 63px;
    }

    .ecosystem-logo {
        height: 40px;
    }

    .ecosystem-popup {
        left: 0;
        right: auto;
        min-width: 220px;
    }

    .logo {
        flex: 1;
    }

    .logo h1 {
        font-size: 1.5rem;
        text-align: left;
    }

    .tagline {
        font-size: 0.65rem;
        text-align: left;
    }

    /* Show hamburger button on mobile */
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        align-self: flex-start;
        margin-top: -4px;
    }

    /* Mobile navigation */
    .main-nav {
        width: 100%;
        flex-direction: column;
        gap: var(--space-xs);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        order: 3;
    }

    /* Show menu when active */
    .main-nav.active {
        max-height: 400px;
        opacity: 1;
        padding-top: var(--space-sm);
    }

    .main-nav a {
        width: 100%;
        padding: var(--space-sm) var(--space-md);
        background: var(--bg-secondary);
        border-radius: var(--radius-md);
        font-size: 0.9rem;
        min-height: 44px; /* Touch target minimum */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: var(--space-xs);
        text-align: center;
        transition: all var(--transition-base);
        transform: translateX(-10px);
        opacity: 0;
    }

    /* Slide-in animation for menu items */
    .main-nav.active a {
        transform: translateX(0);
        opacity: 1;
    }

    .main-nav.active a:nth-child(1) { transition-delay: 0.05s; }
    .main-nav.active a:nth-child(2) { transition-delay: 0.1s; }
    .main-nav.active a:nth-child(3) { transition-delay: 0.15s; }
    .main-nav.active a:nth-child(4) { transition-delay: 0.2s; }
    .main-nav.active a:nth-child(5) { transition-delay: 0.25s; }

    .main-nav a:hover,
    .main-nav a:active {
        background: var(--bronze);
        color: var(--white);
        transform: translateX(4px);
    }

    .main-nav a span:nth-child(2)::before {
        content: " ";
    }
}

/* ================================================
   HERO SECTION - Image Background with Overlay
   ================================================ */

.hero {
    position: relative;
    min-height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-inverse);
    padding: var(--space-3xl) 0;
    overflow: hidden;
    background-image: url('/images/fasting-og.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    line-height: 1.05;
    font-weight: var(--weight-black);
    color: var(--text-inverse);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 1),
                 0 2px 10px rgba(0, 0, 0, 1),
                 0 1px 3px rgba(0, 0, 0, 1);
}

.hero-title .highlight {
    color: var(--deep-gold);
    position: relative;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 1);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 1),
                 0 2px 8px rgba(0, 0, 0, 1),
                 0 1px 3px rgba(0, 0, 0, 1);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-cta .btn {
    min-width: 240px;
    padding: 1rem 2rem;
}

/* Trust Signals with Popup Links */
.trust-signals {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    font-weight: var(--weight-medium);
    cursor: pointer;
    transition: transform var(--transition-base);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1),
                 0 1px 5px rgba(0, 0, 0, 1);
}

.trust-item:hover {
    transform: translateY(-2px);
    color: var(--deep-gold);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 1),
                 0 2px 8px rgba(201, 165, 90, 0.6),
                 0 1px 4px rgba(0, 0, 0, 1);
}

.trust-icon {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh; /* Full viewport height on mobile */
        padding: var(--space-2xl) 0;
        background-image: url('/images/fasting-og-portrait.jpg');
        background-position: top center;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .trust-signals {
        gap: var(--space-md);
    }
}

/* ================================================
   FIXED HERO IMAGE SECTION - REMOVED
   (Now integrated into main hero section)
   ================================================ */

/* ================================================
   BUTTONS - Enhanced Styling
   ================================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: var(--weight-bold);
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--bg-gradient-bronze);
    color: var(--slate-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #C9A55A 0%, #A68645 100%);
    color: var(--gray-900);
}

.btn-secondary {
    background: var(--bg-gradient-bronze);
    color: var(--slate-dark);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #C9A55A 0%, #A68645 100%);
    color: var(--gray-900);
}

.btn-challenge {
    background: var(--bg-gradient-bronze);
    color: var(--slate-dark);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: var(--weight-bold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.btn-challenge:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #C9A55A 0%, #A68645 100%);
    color: var(--gray-900);
}

/* ================================================
   WARNING BANNER - Themed
   ================================================ */

.warning-banner {
    background: linear-gradient(135deg, #E8A24E 0%, #D46A43 100%);
    border-top: 3px solid var(--burnt-sienna);
    border-bottom: 3px solid var(--burnt-sienna);
    padding: var(--space-md) 0;
}

.warning-content {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.warning-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    color: var(--slate-dark);
}

.warning-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-dark);
    font-weight: var(--weight-medium);
}

/* ================================================
   "THIS IS NOT A DIET" SECTION - NEW
   ================================================ */

.not-a-diet {
    background: var(--bg-gradient-dark);
    color: var(--text-inverse);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.not-a-diet::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(184, 115, 51, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.bold-statement {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bold-statement h2 {
    font-size: 4rem;
    font-weight: var(--weight-black);
    margin-bottom: 2rem;
    color: var(--text-inverse);
    letter-spacing: -0.03em;
}

.bold-statement .lead {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: var(--weight-medium);
    opacity: 0.95;
}

.stark-truth {
    border-left: 4px solid var(--bronze);
    padding-left: 2rem;
    margin: 3rem 0;
    text-align: left;
}

.stark-truth p:first-child {
    font-size: 2rem;
    font-weight: var(--weight-bold);
}

.stark-truth p:nth-child(2) {
    font-size: 1.4rem;
    opacity: 0.9;
}

.stark-truth p:last-child {
    font-size: 2.5rem;
    font-weight: var(--weight-black);
    letter-spacing: 0.1em;
    color: var(--bronze);
    margin-bottom: 0;
}

.challenge {
    text-align: center;
    margin: 4rem 0;
}

.challenge p {
    font-size: 1.5rem;
    line-height: 1.6;
}

.question {
    font-size: 2.5rem;
    font-weight: var(--weight-black);
    color: var(--deep-gold);
    margin: 2rem 0;
    letter-spacing: -0.02em;
}

.sub-question {
    font-size: 1.4rem;
    font-style: italic;
    opacity: 0.85;
}

.sub-question em {
    color: var(--deep-gold);
    font-style: italic;
}

.cta-challenge {
    text-align: center;
    margin-top: 4rem;
}

.disclaimer-small {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .not-a-diet {
        padding: 4rem 0;
    }
    
    .bold-statement h2 {
        font-size: 2.5rem;
    }
    
    .bold-statement .lead {
        font-size: 1.3rem;
    }
    
    .stark-truth p:first-child {
        font-size: 1.5rem;
    }
    
    .stark-truth p:last-child {
        font-size: 1.8rem;
    }
}

/* ================================================
   FOUNDER'S STORY - Enhanced Emotional
   ================================================ */

.founder-story {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bronze);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(184, 115, 51, 0.1);
    border-radius: var(--radius-pill);
}

.section-intro {
    font-size: 1.35rem;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: var(--weight-medium);
}

.story-grid {
    display: grid;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.story-phase {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    position: relative;
    border-left: 5px solid var(--forest-deep);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    margin-top: var(--space-lg);
}

.story-phase:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.story-phase.phase-critical {
    background: linear-gradient(135deg, #FFF3CD 0%, #FFE8B3 100%);
    border-left-color: var(--burnt-sienna);
}

.phase-marker {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    background: var(--forest-deep);
    color: var(--text-inverse);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: var(--weight-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-xl);
}

.phase-critical .phase-marker {
    background: var(--burnt-sienna);
    color: var(--text-inverse);
}

.story-phase h3 {
    margin-top: calc(var(--space-2xl) + var(--space-md));
    color: var(--slate-dark);
    font-size: 1.75rem;
    font-weight: var(--weight-black);
}

.story-phase p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-quote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    padding: var(--space-md) var(--space-lg);
    border-left: 4px solid var(--bronze);
    background: rgba(184, 115, 51, 0.05);
    margin: var(--space-md) 0;
    border-radius: var(--radius-md);
}

.insight-box,
.results-box {
    background: var(--bg-secondary);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 5px solid var(--steel-blue);
    margin: var(--space-md) 0;
}

.results-box {
    border-left-color: var(--sage);
}

.protocol-list,
.integration-list {
    list-style: none;
    padding-left: 0;
}

.protocol-list li {
    padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
    position: relative;
    font-size: 1.05rem;
}

.protocol-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--bronze);
    font-weight: var(--weight-bold);
    font-size: 1.25rem;
}

.integration-list li {
    padding: var(--space-xs) 0;
    font-size: 1.05rem;
}

/* ================================================
   SCIENCE SECTION - Enhanced Timeline
   ================================================ */

.science-section {
    background: var(--bg-primary);
}

.timeline {
    position: relative;
    padding-left: calc(var(--space-xl) + var(--space-lg));
    max-width: 1000px;
    margin: 0 auto;
}

/* Main vertical timeline line */
.timeline:before {
    content: '';
    position: absolute;
    left: -130px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--bronze) 0%, var(--deep-gold) 100%);
    border-radius: var(--radius-pill);
    box-shadow: 0 0 10px rgba(184, 115, 51, 0.3);
}

/* Timeline notches/markers - ruler style */
.timeline:after {
    content: '';
    position: absolute;
    left: -130px;
    top: 0;
    bottom: 0;
    width: 25px;
    background-image:
        /* Large notch every 60px (1 hour) */
        repeating-linear-gradient(
            to bottom,
            var(--bronze) 0px,
            var(--bronze) 2px,
            transparent 2px,
            transparent 60px
        ),
        /* Medium notch every 30px (30 minutes) */
        repeating-linear-gradient(
            to bottom,
            var(--deep-gold) 0px,
            var(--deep-gold) 1.5px,
            transparent 1.5px,
            transparent 30px
        ),
        /* Small notch every 15px (15 minutes) */
        repeating-linear-gradient(
            to bottom,
            rgba(201, 165, 90, 0.5) 0px,
            rgba(201, 165, 90, 0.5) 1px,
            transparent 1px,
            transparent 15px
        );
    background-size:
        25px 100%,
        18px 100%,
        12px 100%;
    background-position:
        left top,
        left top,
        left top;
    background-repeat: repeat-y;
    pointer-events: none;
    z-index: 1;
}

/* Weight loss labels on timeline (desktop only) */
@media (min-width: 769px) {
    /* 0 Kg label at the start */
    .timeline-item:first-child::before {
        content: '0 Kg';
        position: absolute;
        left: -180px;
        top: -15px;
        font-size: 0.75rem;
        font-weight: var(--weight-bold);
        color: var(--bronze);
        background: var(--bg-primary);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        white-space: nowrap;
    }

    /* Additional weight labels using data attributes on timeline items */
    .timeline-item:nth-child(1)::after {
        content: '0.5 Kg';
        position: absolute;
        left: -180px;
        top: 405px;
        font-size: 0.75rem;
        font-weight: var(--weight-bold);
        color: var(--bronze);
        background: var(--bg-primary);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        white-space: nowrap;
    }

    .timeline-item:nth-child(2)::after {
        content: '1 Kg';
        position: absolute;
        left: -180px;
        top: 427.5px;
        font-size: 0.75rem;
        font-weight: var(--weight-bold);
        color: var(--bronze);
        background: var(--bg-primary);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        white-space: nowrap;
    }

    .timeline-item:nth-child(3)::after {
        content: '3 Kg';
        position: absolute;
        left: -180px;
        top: 1050px;
        font-size: 0.75rem;
        font-weight: var(--weight-bold);
        color: var(--bronze);
        background: var(--bg-primary);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        white-space: nowrap;
    }

    .timeline-item:nth-child(4)::after {
        content: '7 Kg';
        position: absolute;
        left: -180px;
        top: 570px;
        font-size: 0.75rem;
        font-weight: var(--weight-bold);
        color: var(--burnt-sienna);
        background: var(--bg-primary);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        white-space: nowrap;
    }

    .timeline-item:last-child::after {
        content: 'Danger Zone';
        position: absolute;
        left: -175px;
        bottom: 0;
        font-size: 0.75rem;
        font-weight: var(--weight-black);
        color: var(--burnt-sienna);
        background: rgba(210, 77, 51, 0.1);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        white-space: nowrap;
        border: 1px solid var(--burnt-sienna);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    transition: all var(--transition-base);
}

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-lg);
    border-left-width: 6px;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -130px;
    top: 0;
    width: 120px;
    height: 50px;
    background: var(--bg-gradient-bronze);
    color: var(--slate-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0.5rem;
    border-radius: var(--radius-md);
    font-weight: var(--weight-black);
    font-size: 0.95rem;
    z-index: 1;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
}

.timeline-critical .timeline-marker {
    background: linear-gradient(135deg, var(--burnt-sienna) 0%, #E8A24E 100%);
    color: var(--text-inverse);
}

.timeline-content {
    background: var(--bg-secondary);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--bronze);
    transition: all var(--transition-base);
}

.timeline-critical .timeline-content {
    border-left-color: var(--burnt-sienna);
}

.timeline-content h3 {
    margin-top: 0;
    color: var(--slate-dark);
    font-size: 1.75rem;
    font-weight: var(--weight-black);
}

.timeline-content p {
    margin-bottom: var(--space-sm);
    font-size: 1.05rem;
    line-height: 1.8;
}

.timeline-experience {
    font-weight: var(--weight-bold);
    color: var(--forest-deep);
    padding: var(--space-sm) var(--space-md);
    background: rgba(31, 58, 44, 0.1);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    border-left: 3px solid var(--sage);
}

.timeline-experience.danger-zone {
    background: linear-gradient(135deg, #FFF3CD 0%, #FFE8B3 100%);
    color: var(--slate-dark);
    border-left-color: var(--burnt-sienna);
}

.survival-tactics {
    background: var(--bg-primary);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    border: 2px solid var(--steel-blue);
}

.survival-tactics strong {
    color: var(--steel-blue);
    display: block;
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.survival-tactics ul {
    margin-top: var(--space-sm);
    margin-bottom: 0;
    padding-left: var(--space-lg);
}

.survival-tactics li {
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.timeline-benefits {
    font-style: italic;
    color: var(--sage);
    font-weight: var(--weight-medium);
}

/* Mobile Timeline Styles */
@media (max-width: 768px) {
    .timeline {
        padding-left: 30px; /* Minimal space for timeline and Kg markers */
    }

    /* Squeeze timeline ruler to left edge - all the way to screen edge */
    .timeline:before {
        left: calc(-1 * var(--space-md));
        width: 4px;
    }

    .timeline:after {
        left: calc(-1 * var(--space-md));
        width: 20px;
        background-size: 20px 100%, 14px 100%, 10px 100%;
        background-position: left top, left top, left top;
    }

    /* Make content boxes bigger by using available space */
    .timeline-content {
        margin-left: 0;
        padding: var(--space-md) !important;
    }

    /* Position markers above boxes, to the right */
    .timeline-marker {
        position: static;
        display: inline-flex;
        margin-bottom: var(--space-sm);
        width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        height: auto;
        flex-direction: row; /* Icons to right of text on mobile */
        gap: 0.5rem;
    }

    /* Show Kg markers on mobile in minimal space */
    .timeline-item:first-child::before {
        content: '0 Kg';
        position: absolute;
        left: -52px;
        top: -15px;
        font-size: 0.6rem;
        font-weight: var(--weight-bold);
        color: var(--bronze);
        background: transparent;
        padding: 0;
        white-space: nowrap;
    }

    .timeline-item:nth-child(1)::after {
        content: '0.5 Kg';
        position: absolute;
        left: -52px;
        top: 405px;
        font-size: 0.6rem;
        font-weight: var(--weight-bold);
        color: var(--bronze);
        background: transparent;
        padding: 0;
        white-space: nowrap;
    }

    .timeline-item:nth-child(2)::after {
        content: '1 Kg';
        position: absolute;
        left: -52px;
        top: 427.5px;
        font-size: 0.6rem;
        font-weight: var(--weight-bold);
        color: var(--bronze);
        background: transparent;
        padding: 0;
        white-space: nowrap;
    }

    .timeline-item:nth-child(3)::after {
        content: '3 Kg';
        position: absolute;
        left: -52px;
        top: 1050px;
        font-size: 0.6rem;
        font-weight: var(--weight-bold);
        color: var(--bronze);
        background: transparent;
        padding: 0;
        white-space: nowrap;
    }

    .timeline-item:nth-child(4)::after {
        content: '7 Kg';
        position: absolute;
        left: -52px;
        top: 570px;
        font-size: 0.6rem;
        font-weight: var(--weight-bold);
        color: var(--burnt-sienna);
        background: transparent;
        padding: 0;
        white-space: nowrap;
    }
}

/* ================================================
   CTA BOX
   ================================================ */

.cta-box {
    background: var(--bg-gradient-dark);
    color: var(--text-inverse);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    color: var(--text-inverse);
    margin-bottom: var(--space-sm);
    font-size: 2rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

/* ================================================
   SHOPPING CART WIDGET - NEW
   ================================================ */

.cart-widget {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .cart-widget {
        top: 63px; /* Move up 2px on mobile */
    }
}

.cart-toggle {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient-bronze);
    color: var(--slate-dark);
    border: none;
    border-radius: var(--radius-round);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform var(--transition-base);
}

.cart-toggle:hover {
    transform: scale(1.1);
}

.cart-icon {
    font-size: 1.25rem;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--burnt-sienna);
    color: var(--text-inverse);
    width: 24px;
    height: 24px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: var(--weight-black);
    border: 2px solid white;
}

.cart-panel {
    position: absolute;
    top: 70px;
    right: 0;
    width: 360px;
    max-height: 500px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.cart-panel.active {
    display: flex;
}

.cart-panel h3 {
    padding: var(--space-md) var(--space-lg);
    background: var(--slate-dark);
    color: var(--text-inverse);
    margin: 0;
    font-size: 1.25rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-md);
}

.cart-item {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: var(--weight-bold);
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.cart-item-price {
    color: var(--bronze);
    font-weight: var(--weight-bold);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: var(--space-xs);
    transition: color var(--transition-fast);
}

.cart-item-remove:hover {
    color: var(--burnt-sienna);
}

.cart-total {
    padding: var(--space-md) var(--space-lg);
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: var(--weight-black);
}

.total-amount {
    color: var(--bronze);
}

.btn-checkout {
    margin: var(--space-md) var(--space-lg);
    width: calc(100% - var(--space-lg) * 2);
    background: var(--bg-gradient-bronze);
    color: var(--slate-dark);
    padding: var(--space-md);
    text-align: center;
    border-radius: var(--radius-md);
    font-weight: var(--weight-black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.btn-checkout:hover {
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .cart-panel {
        width: calc(100vw - 40px);
        right: -20px;
    }
}

/* ================================================
   PRODUCT CARD - NEW
   ================================================ */

.product-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: border-color var(--transition-base);
    border: 2px solid var(--border-color);
    overflow: visible;
}

.product-card:hover {
    border-color: var(--bronze);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    cursor: pointer;
    display: block;
    background: transparent;
}

.product-card img:hover {
    transform: scale(1.5);
    z-index: 10;
    position: relative;
    box-shadow: var(--shadow-xl);
    background: white;
    border-radius: var(--radius-md);
}

.product-info h4 {
    color: var(--slate-dark);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    font-weight: var(--weight-black);
}

.product-benefits {
    font-size: 0.9rem;
    color: var(--sage);
    margin-bottom: var(--space-md);
    font-weight: var(--weight-medium);
}

.product-dosage {
    background: var(--bg-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    border-left: 3px solid var(--steel-blue);
}

.product-dosage strong {
    color: var(--steel-blue);
    display: block;
    margin-bottom: var(--space-xs);
}

.product-dosage .calculation {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.price-main {
    font-size: 2rem;
    font-weight: var(--weight-black);
    color: var(--bronze);
}

.price-serving {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-add-cart {
    width: 100%;
    background: var(--forest-deep);
    color: var(--text-inverse);
    padding: var(--space-sm);
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--weight-bold);
    cursor: pointer;
    margin-bottom: var(--space-sm);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-add-cart:hover {
    background: var(--slate-dark);
    transform: translateY(-2px);
}

.btn-view-amazon {
    width: 100%;
    background: var(--bg-gradient-bronze);
    color: var(--slate-dark);
    padding: var(--space-sm);
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-view-amazon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ================================================
   ECOSYSTEM SECTION - Redesigned
   ================================================ */

.ecosystem-section {
    background: var(--bg-gradient-dark);
    color: var(--text-inverse);
}

.ecosystem-section h2 {
    color: var(--text-inverse);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.ecosystem-section .section-intro {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.integration-primary {
    background: var(--bg-primary);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}

.integration-icon {
    width: 120px;
    height: 120px;
    background: var(--bg-gradient-bronze);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    flex-shrink: 0;
}

.integration-content {
    flex: 1;
}

.integration-content h3 {
    color: var(--slate-dark);
    margin-bottom: var(--space-sm);
    font-size: 1.75rem;
}

.integration-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: var(--space-md);
}

.integration-secondary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.integration-item {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sage);
    transition: all var(--transition-base);
}

.integration-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.integration-item h4 {
    font-size: 1.15rem;
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-inverse);
}

.integration-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: var(--space-sm);
}

.integration-item a {
    color: var(--deep-gold);
    font-size: 0.9rem;
    font-weight: var(--weight-medium);
}

@media (max-width: 968px) {
    .integration-primary {
        flex-direction: column;
        text-align: center;
    }
    
    .integration-secondary {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   FOOTER - Enhanced
   ================================================ */

.main-footer {
    background: var(--slate-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col h4 {
    color: var(--text-inverse);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    font-weight: var(--weight-black);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--space-sm);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base);
    font-weight: var(--weight-medium);
}

.footer-col a:hover {
    color: var(--deep-gold);
}

.footer-disclaimer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.disclaimer-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--bronze);
}

.disclaimer-card h4 {
    color: var(--text-inverse);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    font-weight: var(--weight-bold);
}

.disclaimer-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.link-more {
    color: var(--deep-gold);
    font-weight: var(--weight-medium);
    font-size: 0.9rem;
}

.link-more:hover {
    color: var(--bronze);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 968px) {
    .footer-disclaimer-links {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   TESTIMONIALS SECTION - NEW
   ================================================ */

.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
    font-size: 2.5rem;
}

.testimonial-grid {
    column-count: 3;
    column-gap: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    break-inside: avoid;
    background: var(--bg-primary);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--sage);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    border: 3px solid var(--bronze);
}

.testimonial-header div {
    flex: 1;
}

.testimonial-header strong {
    display: block;
    font-size: 1.1rem;
    color: var(--slate-dark);
    font-weight: var(--weight-black);
}

.testimonial-header span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    color: var(--sage);
    font-weight: var(--weight-bold);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(107, 142, 117, 0.1);
    border-radius: var(--radius-pill);
}

@media (max-width: 968px) {
    .testimonial-grid {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .testimonial-grid {
        column-count: 1;
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.hidden {
    display: none;
}

/* ================================================
   RESPONSIVE ADJUSTMENTS
   ================================================ */

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ================================================
   COOKIE CONSENT BANNER
   ================================================ */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--slate-dark);
    color: var(--text-inverse);
    padding: 1.5rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text strong {
    font-size: 1.125rem;
    font-weight: var(--weight-bold);
    display: block;
    margin-bottom: 0.5rem;
    color: var(--bronze);
}

.cookie-consent-text p {
    font-size: 0.95rem;
    margin: 0.5rem 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-policy-link {
    color: var(--bronze);
    text-decoration: underline;
    font-weight: var(--weight-medium);
    transition: color var(--transition-fast);
}

.cookie-policy-link:hover {
    color: var(--deep-gold);
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--weight-bold);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cookie-btn i {
    font-size: 1rem;
}

.cookie-btn-accept {
    background: var(--bg-gradient-bronze);
    color: var(--slate-dark);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(184, 115, 51, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-inverse);
    border: 2px solid var(--gray-600);
}

.cookie-btn-decline:hover {
    background: var(--gray-800);
    border-color: var(--gray-500);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================
   COMPREHENSIVE MOBILE & RESPONSIVE FIXES
   ================================================ */

/* Bundle Section - Stack on Mobile */
@media (max-width: 768px) {
    .bundle-section div[style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .bundle-section div[style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }
}

/* Phase Markers - Move to Left/Top */
@media (max-width: 768px) {
    .phase-marker {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: 0 !important;
        display: inline-block;
        margin-bottom: var(--space-sm);
    }

    .story-phase {
        padding: var(--space-md) !important;
    }

    .story-phase h3 {
        font-size: 1.4rem !important;
        margin-top: var(--space-sm) !important;
    }

    .story-phase p {
        font-size: 0.95rem !important;
    }
}

/* Timeline visual enhancements handled by main :before and :after pseudo-elements */

/* Timeline - Mobile Content Adjustments */
@media (max-width: 768px) {
    .timeline-marker {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: auto !important;
        height: auto !important;
        display: inline-block;
        margin-bottom: var(--space-sm);
        padding: var(--space-xs) var(--space-md);
    }

    .timeline-content h3 {
        font-size: 1.3rem !important;
    }

    .timeline-content p {
        font-size: 0.9rem !important;
        margin-bottom: var(--space-sm) !important;
    }

    .survival-tactics {
        padding: var(--space-sm) !important;
        margin: var(--space-sm) 0 !important;
    }

    .survival-tactics ul {
        padding-left: var(--space-md) !important;
    }

    .survival-tactics li {
        font-size: 0.85rem !important;
        margin-bottom: var(--space-xs) !important;
    }

    .timeline-item {
        margin-bottom: var(--space-lg) !important;
        padding-bottom: var(--space-md) !important;
    }
}

/* Reduce Excessive Padding/Margins on Mobile */
@media (max-width: 768px) {
    .insight-box,
    .results-box,
    .cta-box,
    div[style*="padding: 1.5rem"],
    div[style*="padding: 2rem"] {
        padding: var(--space-sm) var(--space-md) !important;
    }

    div[style*="margin-bottom: 2rem"],
    div[style*="margin-bottom: 3rem"] {
        margin-bottom: var(--space-md) !important;
    }

    div[style*="gap: 3rem"] {
        gap: var(--space-md) !important;
    }

    /* Bundle section specific */
    .bundle-section h3 {
        font-size: 1.4rem !important;
    }

    .bundle-section h4 {
        font-size: 1.1rem !important;
    }

    .bundle-section div[style*="display: flex"][style*="gap: 1rem"] {
        gap: var(--space-sm) !important;
    }

    .bundle-section div[style*="padding: 1rem"] {
        padding: var(--space-xs) var(--space-sm) !important;
    }
}

/* Amazon Buttons - Unified Styling */
.btn[href*="amazon"],
a[href*="amazon"].btn {
    background: var(--bg-gradient-bronze);
    color: var(--slate-dark);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.btn[href*="amazon"]:hover,
a[href*="amazon"].btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #C9A55A 0%, #A68645 100%);
    color: var(--gray-900);
}

/* Facebook Button - White with Blue Outline, Blue Gradient on Hover */
.btn[href*="facebook"],
a[href*="facebook"].btn,
.btn-facebook {
    background: white;
    color: #1877F2;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid #1877F2;
}

.btn[href*="facebook"]:hover,
a[href*="facebook"].btn:hover,
.btn-facebook:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #1877F2 0%, #165DBD 100%);
    color: white;
    border-color: transparent;
}
