/* ====================================
   ELITE INTELLIGENCE PLATFORM
   Premium Medical Luxury + Crystal Glass
   ==================================== */

/* CSS Variables */
:root {
    /* Colors - MEDICAL LUXURY PALETTE */
    --bg-primary: #FFFFFF;
    /* Pure White */
    --bg-secondary: #F4F4F5;
    /* Soft Gray */
    --bg-tertiary: #FFFFFF;

    /* Crystal Glass Effect */
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-hover: rgba(255, 255, 255, 0.85);
    --border-glass: rgba(255, 255, 255, 0.5);
    --border-glass-strong: rgba(255, 255, 255, 0.8);

    /* Brand Colors */
    --gold: #C5A059;
    /* Champagne Bronze - Luxury */
    --gold-light: #DFC894;
    --gold-dark: #96743A;
    --gold-glow: rgba(197, 160, 89, 0.25);

    --teal: #0F5156;
    /* Deep Emerald - Medical Trust */
    --teal-light: #2A7C82;
    --teal-dark: #073B3F;
    --teal-glow: rgba(15, 81, 86, 0.15);

    /* Functional Colors */
    --text-primary: #1C1C28;
    /* Charcoal Navy */
    --text-secondary: #4A4A5B;
    --text-tertiary: #8E8E9A;
    --text-muted: #C7C7CC;

    /* Status & Competitor Colors - Refined */
    --danger: #D32F2F;
    --warning: #F59E0B;
    --success: #10B981;

    --elite-gold: #C5A059;
    --medspa-pink: #D63384;
    --dental-blue: #2563EB;
    --wellness-green: #10B981;
    --corporate-cyan: #06B6D4;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    /* Luxury Headings */
    --font-body: 'Inter', sans-serif;
    /* Clean Tech/Medical */
    --font-accent: 'Outfit', sans-serif;
    /* Modern Numbers */

    /* Spacing */
    --section-padding: clamp(80px, 12vh, 160px);
    --container-max: 1320px;

    /* Effects */
    --blur-glass: blur(12px);
    --blur-heavy: blur(80px);
    --shadow-soft: 0 4px 24px -1px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 12px 32px -4px rgba(28, 28, 40, 0.04);
    --shadow-float: 0 24px 48px -8px rgba(197, 160, 89, 0.12);
    --inner-highlight: inset 0 0 0 1px rgba(255, 255, 255, 0.4);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Images & Media - Best Practice */
img,
video,
svg,
picture,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Touch Targets - Best Practice (44px minimum) */
a,
button,
input,
select,
textarea {
    min-height: 44px;
    min-width: 44px;
}

/* Focus Visible - Accessibility */
:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

/* Reduced Motion - Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Selection */
::selection {
    background: var(--gold-light);
    color: var(--teal-dark);
}

/* ====================================
   COMPONENT: GLASS CARD
   ==================================== */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-card), var(--inner-highlight);
}

/* ====================================
   NAVIGATION
   ==================================== */
.nav-glass {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-radius: 100px;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: var(--transition-medium);
}

.scrolled .nav-glass {
    top: 10px;
    width: 95%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 20px;
    color: var(--gold);
}

.brand-text {
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
}

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

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-premium {
    padding: 12px 28px;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--gold), #B08D45);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.4);
}

/* ====================================
   SECTIONS BASE
   ==================================== */
.section {
    min-height: 100vh;
    padding: var(--section-padding) 24px;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(48px, 8vw, 80px);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.1), transparent);
    border-radius: 100px;
    margin-bottom: 24px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light));
}

.section-tag::after {
    background: linear-gradient(90deg, var(--gold-light), transparent);
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--teal);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    font-weight: 300;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 140px;
    overflow: hidden;
}

/* Abstract Mesh Gradient Background */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #FFFFFF;
    z-index: 0;
}

.mesh-gradient {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background: #FFFFFF;
    filter: blur(60px);
    animation: meshFlow 20s ease-in-out infinite alternate;
}

@keyframes meshFlow {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1) rotate(2deg);
    }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(197, 160, 89, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 81, 86, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-radius: 100px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(15, 81, 86, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 32px;
}

.title-line {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 500;
    line-height: 1;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 60px;
    font-weight: 300;
}

.hero-subtitle strong {
    color: var(--teal);
    font-weight: 500;
}

/* Glass Stats - Flex wrap for auto-responsive */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(16px, 3vw, 24px);
    margin-bottom: 60px;
}

.stat-card {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-float);
    border-color: var(--gold-light);
}

.stat-number {
    font-family: var(--font-accent);
    font-size: 42px;
    font-weight: 700;
    color: var(--teal);
    display: inline-block;
}

.stat-suffix {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 600;
    color: var(--teal-light);
    display: inline-block;
    margin-left: 2px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 40px;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: var(--teal);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: 0 8px 30px rgba(15, 81, 86, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 81, 86, 0.35);
    background: var(--teal-dark);
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
}

/* ====================================
   MAP SECTION
   ==================================== */
.map-section {
    background: #fff;
}

/* Floating Map Container */
.map-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 24px;
    background: #fff;
    border-radius: 32px;
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.interactive-map {
    height: 640px;
    border-radius: 24px;
    overflow: hidden;
    /* Map styling handled by Leaflet but container needs structure */
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.map-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.map-legend {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 24px;
}

.legend-title {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.legend-group {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legend-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legend-group-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.legend-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.legend-marker.elite {
    background: var(--elite-gold);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.2);
}

.legend-marker.medspa {
    background: var(--medspa-pink);
}

.legend-marker.dental {
    background: var(--dental-blue);
}

.legend-marker.wellness {
    background: var(--wellness-green);
}

.legend-marker.corporate {
    background: var(--corporate-cyan);
}

.legend-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.legend-name {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.legend-tag {
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
    padding: 3px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legend-count {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 700;
    color: var(--teal);
    background: rgba(15, 81, 86, 0.08);
    padding: 4px 10px;
    border-radius: 8px;
}

/* Legend Cards (B2B targets in right panel) */
.legend-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.legend-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.lc-header i {
    font-size: 18px;
    color: var(--teal);
}

.lc-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 100px;
}

.lc-badge.b2b {
    background: rgba(15, 81, 86, 0.1);
    color: var(--teal);
}

.lc-badge.geo {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.lc-metric {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 4px;
}

.lc-metric span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.lc-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.lc-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lc-stats span {
    font-size: 11px;
    color: var(--text-tertiary);
    padding: 4px 8px;
    background: var(--bg-primary);
    border-radius: 6px;
}

.lc-stats span.highlight {
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-dark);
    font-weight: 600;
}

/* Enhanced Insight Cards */
.insight-card-enhanced {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--bg-secondary);
    border-radius: 20px;
    transition: var(--transition-medium);
}

.insight-card-enhanced:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-float);
    transform: translateY(-4px);
}

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

.insight-card-enhanced .insight-icon {
    font-size: 24px;
    background: var(--bg-primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.insight-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold-dark);
    background: rgba(197, 160, 89, 0.12);
    padding: 5px 10px;
    border-radius: 100px;
}

.insight-metric {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.metric-value {
    font-family: var(--font-accent);
    font-size: 42px;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.metric-unit {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.insight-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.insight-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--bg-primary);
    border-radius: 10px;
}

.breakdown-item.highlight {
    background: rgba(15, 81, 86, 0.08);
    border: 1px solid rgba(15, 81, 86, 0.15);
}

.breakdown-label {
    font-size: 12px;
    color: var(--text-tertiary);
}

.breakdown-value {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.breakdown-item.highlight .breakdown-value {
    color: var(--teal);
}

.insight-cta {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-dark);
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), rgba(197, 160, 89, 0.04));
    border-radius: 10px;
    text-align: center;
}

/* Compact Insight Grid for Map Section - Auto-responsive */
.map-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(12px, 2vw, 16px);
    margin-top: 24px;
}

.insight-compact {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition-medium);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.insight-compact:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.compact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.compact-icon {
    font-size: 24px;
}

.compact-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 100px;
}

.compact-badge.b2b {
    background: rgba(15, 81, 86, 0.1);
    color: var(--teal);
}

.compact-badge.demo {
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-dark);
}

.compact-badge.alert {
    background: rgba(211, 47, 47, 0.08);
    color: var(--danger);
}

.compact-badge.geo {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.compact-metric {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.compact-value {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.compact-unit {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.compact-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.compact-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compact-stat {
    font-size: 11px;
    color: var(--text-tertiary);
    padding: 6px 10px;
    background: var(--bg-primary);
    border-radius: 8px;
}

.compact-stat span {
    font-family: var(--font-accent);
    font-weight: 700;
    color: var(--text-primary);
}

.compact-stat.highlight {
    background: rgba(197, 160, 89, 0.08);
}

.compact-stat.highlight span {
    color: var(--gold);
}

/* Legacy insight-card (keep for compatibility) */
.insight-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--bg-secondary);
    border-radius: 20px;
    display: flex;
    gap: 20px;
    transition: var(--transition-medium);
}

.insight-card:hover {
    border-color: var(--gold-glow);
    box-shadow: var(--shadow-card);
}

.insight-icon {
    font-size: 24px;
    color: var(--gold);
    background: var(--bg-primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.insight-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.2;
}

.insight-detail {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* ====================================
   DASHBOARD SECTION
   ==================================== */
.competitive-section {
    background: #fff;
}

/* Charts Row - Auto-responsive */
.charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(16px, 3vw, 24px);
    max-width: var(--container-max);
    margin: 0 auto 48px;
}

.chart-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.chart-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-card-header h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--teal);
}

.chart-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--bg-secondary);
    color: var(--text-tertiary);
}

/* Competitors Grid - Auto-responsive */
.competitors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 3vw, 24px);
    max-width: var(--container-max);
    margin: 0 auto;
}

.competitor-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.competitor-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.dashboard-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.dashboard-card:hover {
    border-color: var(--gold-glow);
    transform: translateY(-4px);
}

.dashboard-card.large {
    grid-column: span 2;
}

.dashboard-card.membership-table {
    grid-column: span 4;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.card-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.card-badge {
    padding: 6px 12px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 11px;
    border-radius: 100px;
    font-weight: 600;
}

/* Competitor Spotlight Stylings */
.competitor-spotlight {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.competitor-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.competitor-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

/* Avatar Gradients - Standardized to Gold/Teal Palette */
.competitor-avatar {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    /* Default: Gold */
}

.competitor-avatar.aromas,
.competitor-avatar.south {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    /* Teal variant */
}

.competitor-info h4 {
    font-size: 16px;
    font-weight: 700;
}

.competitor-type {
    font-size: 12px;
    color: var(--text-tertiary);
}

.competitor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--bg-secondary);
    border-bottom: 1px solid var(--bg-secondary);
    margin-bottom: 20px;
}

.comp-stat .stat-value {
    display: block;
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.comp-stat .stat-key {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.weakness-tag {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: #FEF2F2;
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.tag-icon {
    color: var(--danger);
}


/* Membership Table */
.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    /* Row spacing */
}

.premium-table th {
    text-align: left;
    padding: 0 24px 16px;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-table td {
    padding: 20px 24px;
    background: #fff;
    border-top: 1px solid var(--bg-secondary);
    border-bottom: 1px solid var(--bg-secondary);
    font-size: 14px;
}

.premium-table td:first-child {
    border-left: 1px solid var(--bg-secondary);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.premium-table td:last-child {
    border-right: 1px solid var(--bg-secondary);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.highlight-row td {
    background: linear-gradient(90deg, #FAFAF9, #fff);
    border-color: var(--gold-glow);
}

.tier-badge.vip {
    padding: 6px 12px;
    background: var(--text-primary);
    color: var(--gold);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ====================================
   OPPORTUNITY SECTION
   ==================================== */
.opportunity-section {
    background: #fff;
    overflow: hidden;
}

/* Opportunity Metrics Row */
.opp-metrics-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto 40px;
}

.opp-metrics-row .data-card.featured {
    grid-row: span 1;
}

/* Opportunity Bottom Row (Visual + Power Hour) */
.opp-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: var(--container-max);
    margin: 0 auto;
    align-items: stretch;
}

.opp-bottom-row .opp-visual {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.opp-bottom-row .opp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.opp-bottom-row .power-hour-box {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ozempic-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-stage {
    display: flex;
    gap: 20px;
    position: relative;
    padding: 24px;
    margin-bottom: 0;
    background: #fff;
    border: 1px solid var(--bg-secondary);
    border-radius: 20px;
    margin-bottom: 16px;
    transition: var(--transition-medium);
}

.timeline-stage:hover {
    border-color: var(--gold-glow);
    box-shadow: var(--shadow-soft);
}

.timeline-stage.warning {
    border-left: 4px solid var(--warning);
}

.timeline-stage.danger {
    border-left: 4px solid var(--danger);
}

.timeline-stage.solution {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), rgba(197, 160, 89, 0.02));
    border: 2px solid var(--gold);
}

.timeline-connector {
    display: none;
    /* Hidden, we use margin instead */
}

.stage-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.timeline-stage.solution .stage-icon {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 0 0 6px rgba(197, 160, 89, 0.15);
}

.stage-content h4 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stage-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Opportunity Visual (Image) */
.opp-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-float);
}

.opp-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.opp-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    font-family: var(--font-display);
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.data-card {
    padding: 32px;
    background: var(--bg-primary);
    border-radius: 24px;
    margin-bottom: 16px;
    text-align: center;
}

.data-card.glow {
    background: var(--text-primary);
    /* Same as Total Mensual - Dark Charcoal */
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.data-card.glow .data-value {
    color: var(--gold);
    /* Gold value */
}

.data-card.glow .data-label {
    color: #fff;
}

.data-card.glow .data-breakdown {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.data-value {
    font-family: var(--font-accent);
    font-size: 56px;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 8px;
}

.data-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.power-hour-box {
    margin-top: 40px;
    padding: 40px;
    background: rgba(197, 160, 89, 0.08);
    /* Soft Gold */
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 24px;
}

.power-title {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}

.power-math {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px dashed rgba(197, 160, 89, 0.3);
    font-family: var(--font-accent);
}

.power-math .after {
    font-size: 32px;
    color: var(--gold);
}

/* ====================================
   CHAIR MATH SECTION
   ==================================== */
.chair-math-section {
    background: #fff;
}

.chair-comparison {
    display: flex;
    align-items: stretch;
    gap: 32px;
    max-width: var(--container-max);
    margin: 0 auto 48px;
}

.chair-model {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 32px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
}

.chair-model.traditional {
    opacity: 0.8;
}

.chair-model.stacked {
    border: 2px solid var(--teal);
    box-shadow:
        0 16px 32px rgba(15, 81, 86, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.model-header {
    margin-bottom: 24px;
}

.model-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.model-tag.old {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-tertiary);
}

.model-tag.new {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: #fff;
}

.model-header h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--teal);
    margin: 0;
}

.model-services {
    flex: 1;
    margin-bottom: 24px;
}

.service-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: var(--bg-primary);
}

.service-line.empty {
    background: transparent;
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

.service-line.stacked {
    background: rgba(15, 81, 86, 0.05);
    border-left: 3px solid var(--teal-light);
}

.service-line.stacked.highlight {
    background: rgba(197, 160, 89, 0.1);
    border-left-color: var(--gold);
}

.service-name {
    font-size: 14px;
    color: var(--text-secondary);
}

.service-price {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.service-line.stacked .service-price {
    color: var(--teal);
}

.service-line.stacked.highlight .service-price {
    color: var(--gold);
}

.model-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--text-primary);
    border-radius: 16px;
    margin-bottom: 16px;
    color: #fff;
}

.model-total span:first-child {
    font-size: 14px;
    opacity: 0.8;
}

.total-value {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 700;
}

.total-value.stacked {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.model-problem {
    font-size: 13px;
    color: var(--danger);
    background: rgba(211, 47, 47, 0.06);
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
}

.model-benefit {
    font-size: 13px;
    color: var(--teal);
    background: rgba(15, 81, 86, 0.06);
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

.chair-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
}

.arrow-icon {
    font-size: 48px;
    color: var(--teal);
}

.arrow-increase {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    padding: 8px 16px;
    border-radius: 100px;
}

.trend-banner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: #fff;
    box-shadow:
        0 20px 40px rgba(15, 81, 86, 0.25),
        0 8px 16px rgba(15, 81, 86, 0.15);
}

.trend-content h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
}

.trend-content p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

.trend-sources {
    font-size: 11px;
    opacity: 0.7;
    text-align: right;
    flex-shrink: 0;
}

/* ====================================
   BLUE OCEAN SECTION - PREMIUM
   ==================================== */
.blue-ocean-section {
    background: #fff;
}

.blue-ocean-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--container-max);
    margin: 0 auto 48px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 36px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

.insight-card.problem::before {
    background: linear-gradient(90deg, var(--danger), #dc2626);
}

.insight-card.gap::before {
    background: linear-gradient(90deg, var(--warning), #d97706);
}

.insight-card.solution::before {
    background: linear-gradient(90deg, var(--gold), var(--teal));
    opacity: 1;
}

.insight-card.solution {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), rgba(255, 255, 255, 0.95));
}

.insight-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, rgba(15, 81, 86, 0.08), rgba(15, 81, 86, 0.03));
    border-radius: 16px;
    margin-bottom: 20px;
}

.insight-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--teal);
}

.insight-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.insight-stat {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    text-align: center;
}

.stat-big {
    display: block;
    font-family: var(--font-accent);
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 13px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gap-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.gap-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.competitor-name {
    font-weight: 600;
    color: var(--teal);
    display: inline;
    margin-right: 6px;
}

.gap-conclusion {
    font-size: 15px;
    font-weight: 600;
    color: var(--teal);
    padding: 12px 16px;
    background: rgba(15, 81, 86, 0.06);
    border-radius: 12px;
}

.solution-protocol {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.protocol-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: all 0.3s ease;
}

.protocol-item:hover {
    background: rgba(197, 160, 89, 0.08);
    border-color: rgba(197, 160, 89, 0.3);
}

.protocol-num {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.uvp-banner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.12), rgba(15, 81, 86, 0.08));
    border: 2px solid var(--gold);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow:
        0 8px 24px rgba(197, 160, 89, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.uvp-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 12px;
}

.uvp-content p {
    font-size: 16px;
    color: var(--text-secondary);
}

.uvp-content strong {
    color: var(--gold);
    font-size: 20px;
}

/* ====================================
   ARQUITECTURA FACIAL SECTION
   ==================================== */
.facial-arch-section {
    background: var(--bg-primary);
}

.arch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--container-max);
    margin: 0 auto 48px;
}

.arch-problem,
.arch-solution,
.arch-competitors {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 32px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arch-problem:hover,
.arch-solution:hover,
.arch-competitors:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.arch-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.arch-problem h4,
.arch-competitors h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 16px;
}

.arch-problem p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.arch-solution {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), rgba(255, 255, 255, 0.95));
    border: 2px solid var(--gold);
    text-align: center;
    position: relative;
}

.arch-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arch-solution h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--teal);
    margin: 16px 0 24px;
}

.arch-combo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.combo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.combo-icon {
    font-size: 28px;
}

.combo-item span:last-child {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.combo-plus {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.arch-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-value {
    font-family: var(--font-accent);
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-savings {
    font-size: 14px;
    color: var(--gold-dark);
    font-weight: 600;
}

.cant-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cant-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(211, 47, 47, 0.04);
    border-radius: 12px;
    border-left: 3px solid var(--danger);
}

.cant-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.cant-reason {
    font-size: 12px;
    color: var(--danger);
    font-style: italic;
}

.elite-wins {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(15, 81, 86, 0.08);
    border-radius: 12px;
}

.wins-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
}

.elite-wins span:last-child {
    font-size: 15px;
    font-weight: 600;
    color: var(--teal);
}

.price-comparison-box {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.price-comparison-box h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--teal);
    text-align: center;
    margin-bottom: 24px;
}

.price-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.price-row.header {
    background: var(--teal);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.price-elite {
    font-weight: 700;
    color: var(--gold);
}

.price-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 16px;
    font-style: italic;
}

/* ====================================
   ENTRY PRODUCTS SECTION
   ==================================== */
.entry-products-section {
    background: #fff;
}

.entry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.entry-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 32px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.entry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
}

.entry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
}

.entry-card.premium::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.entry-card.therapeutic::before {
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.entry-card.holistic::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.entry-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    background: var(--bg-primary);
    color: var(--text-tertiary);
}

.entry-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.entry-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 16px;
}

.entry-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.entry-price .price-value {
    font-family: var(--font-accent);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.entry-price .price-compare {
    font-size: 13px;
    color: var(--text-tertiary);
}

.entry-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.entry-includes li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.entry-includes li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
}

.entry-psychology {
    font-size: 12px;
    color: var(--text-secondary);
    background: rgba(197, 160, 89, 0.08);
    padding: 14px 16px;
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

/* ====================================
   COMFORT MENU SECTION
   ==================================== */
.comfort-section {
    background: var(--bg-primary);
}

.comfort-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: var(--container-max);
    margin: 0 auto 40px;
}

.comfort-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-medium);
}

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

.comfort-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.comfort-item h5 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 6px;
}

.comfort-item p {
    font-size: 12px;
    color: var(--text-tertiary);
    margin: 0;
}

.comfort-impact {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(15, 81, 86, 0.05));
    border: 2px solid var(--gold);
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.impact-icon {
    font-size: 40px;
}

.impact-content h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 8px;
}

.impact-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* ====================================
   ARIZON INVESTMENT SECTION
   ==================================== */
.arizon-section {
    background: #fff;
}

.arizon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: var(--container-max);
    margin: 0 auto 32px;
}

.arizon-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-medium);
}

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

.arizon-item.highlight {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(255, 255, 255, 0.95));
    border: 2px solid var(--gold);
}

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

.arizon-details {
    flex: 1;
}

.arizon-details h5 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 4px;
}

.arizon-details p {
    font-size: 12px;
    color: var(--text-tertiary);
    margin: 0;
}

.arizon-price {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.arizon-total {
    max-width: 500px;
    margin: 0 auto 32px;
    padding: 28px 40px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow:
        0 16px 32px rgba(15, 81, 86, 0.25),
        0 8px 16px rgba(15, 81, 86, 0.15);
}

.total-label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.total-value {
    font-family: var(--font-accent);
    font-size: 40px;
    font-weight: 700;
    color: var(--gold-light);
}

.arizon-roi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(12px, 2vw, 20px);
    max-width: var(--container-max);
    margin: 0 auto;
}

.roi-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.roi-item.highlight {
    background: rgba(197, 160, 89, 0.2);
    border: 2px solid var(--gold);
}

.roi-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.roi-value {
    display: block;
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.roi-item.highlight .roi-value {
    color: var(--gold-light);
}

.roi-detail {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Implementation Timeline */
.implementation-timeline {
    max-width: var(--container-max);
    margin: 48px auto 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--teal);
    text-align: center;
    margin-bottom: 8px;
}

.timeline-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 32px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: clamp(12px, 2vw, 16px);
}

.timeline-month {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
}

.timeline-month:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--gold);
}

.month-header {
    margin-bottom: 16px;
}

.month-num {
    display: block;
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 4px;
}

.month-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
}

.month-strategies {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strategy-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(197, 160, 89, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

/* ====================================
   CORPORATE TARGETS SECTION - PREMIUM
   ==================================== */
.corporate-section {
    background: var(--bg-primary);
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto 48px;
}

.corp-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 28px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.corp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
}

.corp-card.viable::before {
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.corp-card.moderate::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.corp-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.corp-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.corp-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, rgba(15, 81, 86, 0.08), rgba(15, 81, 86, 0.03));
    border-radius: 14px;
    flex-shrink: 0;
}

.corp-header h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 4px;
    color: var(--teal);
}

.corp-address {
    font-size: 12px;
    color: var(--text-tertiary);
}

.corp-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.corp-metrics .metric {
    font-size: 15px;
    color: var(--text-secondary);
}

.corp-metrics .metric strong {
    color: var(--text-primary);
}

.viability {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 100px;
}

.viability.success {
    background: rgba(15, 81, 86, 0.1);
    color: var(--teal);
}

.viability.warning {
    background: rgba(197, 160, 89, 0.12);
    color: var(--gold-dark);
}

.geofencing-box {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 48px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 28px;
    text-align: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.geofencing-box h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 20px;
}

.geo-targets {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.geo-target {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(15, 81, 86, 0.2);
    transition: all 0.3s ease;
}

.geo-target:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 81, 86, 0.3);
}

.geo-note {
    font-size: 14px;
    color: var(--text-tertiary);
    margin: 0;
}

/* ====================================
   MEMBERSHIP SECTION - PREMIUM
   ==================================== */
.membership-section {
    background: #fff;
}

.membership-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
    align-items: stretch;
}

.membership-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 36px 32px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.membership-card.competitor {
    opacity: 0.85;
}

.membership-card.competitor:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.membership-card.elite {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(197, 160, 89, 0.05));
    border: 2px solid var(--gold);
    transform: scale(1.06);
    z-index: 2;
    box-shadow:
        0 20px 40px rgba(197, 160, 89, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.membership-card.elite:hover {
    transform: scale(1.08);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.membership-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--teal);
}

.mem-price {
    font-family: var(--font-accent);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1;
}

.mem-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-tertiary);
}

.mem-price.featured {
    background: linear-gradient(135deg, var(--gold), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.membership-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.membership-card li {
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.membership-card.elite li {
    color: var(--text-primary);
}

.mem-value {
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.12), rgba(197, 160, 89, 0.06));
    border-radius: 14px;
    font-weight: 600;
    color: var(--gold);
    font-size: 15px;
}

/* Membership Comparison Table */
.membership-table-wrapper {
    max-width: var(--container-max);
    margin: 0 auto 48px;
    overflow-x: auto;
    padding: 4px;
}

.membership-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.membership-table thead {
    background: var(--bg-secondary);
}

.membership-table th {
    padding: 20px 16px;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    text-align: left;
}

.membership-table td {
    padding: 20px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    vertical-align: middle;
}

.membership-table tbody tr:last-child td {
    border-bottom: none;
}

.membership-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.01);
}

/* Elite Row Highlight */
.membership-table tr.elite-row {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), rgba(197, 160, 89, 0.03));
}

.membership-table tr.elite-row td {
    color: var(--text-primary);
    font-weight: 500;
}

/* Clinic Badge */
.clinic-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
}

.clinic-badge.elite {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* Model Tags */
.model-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.model-tag.hybrid {
    background: linear-gradient(135deg, rgba(15, 81, 86, 0.12), rgba(15, 81, 86, 0.06));
    color: var(--teal);
}

.model-tag.bank,
.model-tag.discount,
.model-tag.credits,
.model-tag.concierge {
    background: rgba(156, 163, 175, 0.12);
    color: var(--text-secondary);
}

/* Price Cell */
.price-cell {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.price-cell.expensive {
    color: var(--text-tertiary);
}

/* Weakness Indicators */
.weakness-positive,
.weakness-negative {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 8px;
}

.weakness-positive {
    background: rgba(15, 81, 86, 0.08);
    color: var(--teal);
}

.weakness-positive i {
    color: var(--gold);
}

.weakness-negative {
    background: rgba(156, 163, 175, 0.08);
    color: var(--text-secondary);
}

.weakness-negative i {
    color: var(--gold-dark);
}

/* Elite Wins Box */
.elite-wins-box {
    max-width: 800px;
    margin: 0 auto 48px;
    background: linear-gradient(135deg, rgba(15, 81, 86, 0.06), rgba(15, 81, 86, 0.02));
    border: 1px solid rgba(15, 81, 86, 0.12);
    border-radius: 24px;
    padding: 32px;
}

.wins-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wins-header i {
    font-size: 28px;
    color: var(--gold);
}

.wins-header h4 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--teal);
    margin: 0;
}

.wins-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.win-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
}

.win-point i {
    color: var(--wellness-green);
    font-size: 20px;
    flex-shrink: 0;
}

.win-point span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.win-point strong {
    color: var(--text-primary);
}

/* Membership Proposal Card */
.membership-proposal {
    max-width: 480px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(197, 160, 89, 0.05));
    border: 2px solid var(--gold);
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
}

.proposal-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.membership-proposal h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--teal);
    margin-bottom: 16px;
}

.proposal-price {
    font-family: var(--font-accent);
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 32px;
}

.proposal-price span {
    font-size: 18px;
    font-weight: 400;
}

.proposal-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    text-align: left;
}

.feature-item i {
    font-size: 20px;
    color: var(--teal);
}

.feature-item span {
    font-size: 14px;
    color: var(--text-primary);
}

.proposal-value {
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.12), rgba(197, 160, 89, 0.06));
    border-radius: 14px;
    font-size: 15px;
    color: var(--text-secondary);
}

.proposal-value strong {
    color: var(--gold);
}

/* ====================================
   META 2026 REGULATIONS SECTION
   ==================================== */
.meta-regs-section {
    background: #fff;
}

.regs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 3vw, 24px);
    max-width: var(--container-max);
    margin: 0 auto 48px;
}

.reg-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 28px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.reg-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.reg-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, rgba(15, 81, 86, 0.08), rgba(15, 81, 86, 0.03));
    border-radius: 14px;
    margin-bottom: 16px;
}

.reg-content h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 8px;
}

.reg-status {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.reg-status.danger {
    background: rgba(211, 47, 47, 0.1);
    color: var(--danger);
}

.reg-status.warning {
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-dark);
}

.reg-status.success {
    background: rgba(15, 81, 86, 0.1);
    color: var(--teal);
}

.reg-status.info {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.reg-content p {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.reg-solution {
    margin-top: auto;
    padding: 12px 16px;
    background: rgba(15, 81, 86, 0.04);
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.reg-solution strong {
    color: var(--teal);
}

.speed-lead-box {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    color: #fff;
    box-shadow:
        0 20px 40px rgba(15, 81, 86, 0.25),
        0 8px 16px rgba(15, 81, 86, 0.15);
}

.speed-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.speed-content {
    flex: 1;
}

.speed-content h4 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
}

.speed-content p {
    font-size: 15px;
    opacity: 0.9;
    color: #fff;
}

.speed-stat {
    text-align: center;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.speed-number {
    display: block;
    font-family: var(--font-accent);
    font-size: 48px;
    font-weight: 700;
}

.speed-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ====================================
   CAMPAIGNS SECTION
   ==================================== */
.campaigns-section {
    background: #fff;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(16px, 3vw, 24px);
    max-width: var(--container-max);
    margin: 0 auto 48px;
}

.campaign-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 28px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.campaign-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.campaign-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border-radius: 100px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.campaign-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 8px;
}

.campaign-target {
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.campaign-copy {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    padding: 16px;
    background: rgba(15, 81, 86, 0.04);
    border-radius: 12px;
    border-left: 3px solid var(--teal);
    margin-bottom: 16px;
    flex: 1;
}

.campaign-tactics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.campaign-tactics span {
    font-size: 12px;
    padding: 6px 12px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 100px;
    color: var(--gold-dark);
}

.campaign-budget {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.budget-item {
    text-align: center;
}

.budget-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.budget-value {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 700;
    color: var(--teal);
}

.budget-item.highlight {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0.05));
    border-radius: 16px;
    padding: 16px;
    margin: -16px 0;
}

.budget-item.highlight .budget-value {
    background: linear-gradient(135deg, var(--gold), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
}

/* ====================================
   SERVICES GALLERY - BENTO GRID
   ==================================== */
.services-section {
    background: var(--bg-primary);
}

.services-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: minmax(250px, auto);
    gap: clamp(16px, 3vw, 24px);
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Bento Grid Item Positioning */
.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--bg-secondary);
}

/* Featured large item - spans 2 columns and 2 rows */
.gallery-item.featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* Wide items span 2 columns */
.gallery-item.wide {
    grid-column: span 2;
}

/* Hover Effects */
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

/* Modern Gradient Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 40%,
            rgba(28, 28, 40, 0.4) 70%,
            rgba(28, 28, 40, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

.gallery-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.15s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Service Tag Badge */
.service-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ====================================
   STRATEGIES SECTION
   ==================================== */
.strategies-section {
    background: #fff;
}

.strategies-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Tighter layout */
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.strategy-item:hover {
    transform: translateX(12px);
    box-shadow: var(--shadow-card);
}

.strategy-letter {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    flex-shrink: 0;
}

.strategy-item:hover .strategy-letter {
    background: var(--gold);
    color: #fff;
}

.strategy-content {
    flex: 1;
}

.strategy-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.strategy-header h4 {
    font-size: 18px;
}

.strategy-copy {
    margin-top: 12px;
    font-size: 13px;
    color: var(--teal);
    font-style: italic;
    background: rgba(15, 81, 86, 0.03);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

/* ====================================
   VALUE PROPOSITION (FORMULA)
   ==================================== */
.value-proposition {
    max-width: var(--container-max);
    margin: 0 auto 60px;
}

.formula-box {
    background: linear-gradient(135deg, #fff, var(--bg-secondary));
    border: 1px solid var(--gold-glow);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-float);
    position: relative;
    overflow: hidden;
}

.formula-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: radial-gradient(circle, var(--gold), transparent 80%);
}

.formula-box h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.formula-equation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.formula-part {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.formula-part small {
    display: block;
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 400;
    margin-top: 4px;
}

.formula-operator {
    font-size: 24px;
    color: var(--gold);
    font-family: var(--font-display);
}

.formula-equals {
    font-size: 24px;
    color: var(--teal);
    font-family: var(--font-display);
}

.formula-result {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

/* ====================================
   PROPOSAL / PRICING
   ==================================== */
.proposal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: clamp(24px, 4vw, 40px);
    max-width: var(--container-max);
    margin: 0 auto;
}

.investment-breakdown {
    grid-row: span 2;
    background: #fff;
    border-radius: 32px;
    padding: 48px;
    box-shadow: var(--shadow-card);
}

.invest-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    margin-bottom: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--bg-secondary);
    border-radius: 16px;
    transition: var(--transition-medium);
}

.invest-item:hover {
    border-color: var(--gold-glow);
    box-shadow: var(--shadow-soft);
}

.invest-item.featured {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05), rgba(197, 160, 89, 0.02));
    border-color: var(--gold-glow);
}

.invest-item.highlight {
    background: linear-gradient(135deg, rgba(15, 81, 86, 0.05), rgba(15, 81, 86, 0.02));
    border-color: rgba(15, 81, 86, 0.15);
}

.invest-icon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.invest-info {
    flex: 1;
}

.invest-name {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.invest-desc {
    display: block;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.invest-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.invest-features li {
    font-size: 13px;
    color: var(--teal);
    padding: 4px 0 4px 20px;
    position: relative;
}

.invest-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wellness-green);
    font-weight: 700;
}

.invest-info strong {
    display: block;
    font-size: 16px;
    color: var(--text-primary);
}

.invest-info span {
    font-size: 13px;
    color: var(--text-tertiary);
}

.invest-price {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    align-self: flex-start;
    padding-top: 4px;
}

.invest-total {
    margin-top: 32px;
    padding: 32px;
    background: var(--text-primary);
    border-radius: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-price {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--gold);
}

/* Cost Comparison - Gold/Teal Palette */
.cost-comparison {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05), rgba(197, 160, 89, 0.02));
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 16px;
}

.cost-comparison h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compare-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.compare-item:last-child {
    border-bottom: none;
}

.compare-role {
    font-size: 14px;
    color: var(--text-secondary);
}

.compare-cost {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
}

.compare-cost.crossed {
    color: var(--text-tertiary);
    text-decoration: line-through;
}

.compare-item.total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid rgba(197, 160, 89, 0.4);
    border-bottom: none;
}

.compare-item.total .compare-role {
    font-weight: 700;
    color: var(--gold);
}

.compare-cost.savings {
    font-size: 18px;
    color: var(--gold);
}

/* ====================================
   IMPLEMENTATION TIMELINE
   ==================================== */
.implementation-timeline {
    background: #fff;
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.implementation-timeline h3,
.roi-calculator h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--teal);
}

.timeline-phases {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phase-item {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: var(--transition-medium);
}

.phase-item:hover,
.phase-item.active {
    background: #fff;
    border-color: var(--gold);
    box-shadow: var(--shadow-soft);
}

.phase-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-dark);
    background: rgba(197, 160, 89, 0.15);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.phase-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ====================================
   ROI CALCULATOR
   ==================================== */
.roi-calculator {
    background: #fff;
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.calc-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.calc-field input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: 2px;
    outline: none;
}

.calc-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.2);
    transition: var(--transition-fast);
}

.calc-field input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calc-value {
    display: block;
    text-align: right;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 16px;
    color: var(--teal);
    margin-top: 8px;
}

.calc-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--bg-secondary);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
}

.result-item.highlight {
    background: rgba(16, 185, 129, 0.05);
}

.result-item.roi-highlight {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
    padding: 16px;
}

.result-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.roi-highlight .result-label {
    color: rgba(255, 255, 255, 0.8);
}

.result-value {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
}

.roi-highlight .result-value {
    font-size: 20px;
    color: var(--gold-light);
}


/* ====================================
   CTA & FOOTER
   ==================================== */
.cta-section {
    max-width: 1000px;
    margin: 80px auto 0;
}

.cta-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    text-align: left;
    padding: 48px;
    background: linear-gradient(135deg, #fff, var(--bg-secondary));
    border: 1px solid var(--gold-glow);
    border-radius: 32px;
    box-shadow: var(--shadow-float);
    position: relative;
    overflow: hidden;
    align-items: center;
}

.cta-founder {
    position: relative;
    width: 100%;
    max-width: 280px;
    flex-shrink: 0;
}

.founder-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.cta-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--teal);
}

.cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.btn-cta {
    padding: 16px 32px;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--transition-medium);
}

.btn-cta.primary {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.btn-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.4);
}

.btn-cta.secondary {
    background: transparent;
    border: 1px solid var(--border-glass-strong);
    color: var(--text-primary);
}

.btn-cta.secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-tertiary);
    background: var(--bg-secondary);
    padding: 6px 16px;
    border-radius: 100px;
}

.footer {
    padding: 80px 40px;
    background: #fff;
    border-top: 1px solid var(--bg-secondary);
    margin-top: 0;
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-copy {
    font-size: 12px;
    color: var(--text-tertiary);
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.leaflet-popup-tip {
    background: #fff;
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {

    .hero-stats,
    .dashboard-grid,
    .opportunity-grid,
    .proposal-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .map-container {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .section-title {
        font-size: 40px;
    }

    .dashboard-card.large,
    .dashboard-card.membership-table {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }
}

/* ===== 5-Month Strategy Timeline (Proposal Section) ===== */
.strategy-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: clamp(12px, 2vw, 16px);
    margin-top: 24px;
}

.timeline-intro {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
    text-align: center;
}

.strategy-month {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--bg-secondary);
    transition: var(--transition-medium);
}

.strategy-month:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.strategy-month.highlight {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0.02));
    border: 2px solid var(--gold);
}

.strategy-month-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bg-secondary);
}

.month-number {
    font-weight: 700;
    font-size: 18px;
    color: var(--brand-teal);
}

.month-theme {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.strategy-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strat-tag {
    background: var(--bg-secondary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    transition: var(--transition-fast);
}

.strat-tag:hover {
    background: var(--brand-teal);
    color: #fff;
}

.strategy-month.highlight .strat-tag {
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--gold);
}

.strategy-month.highlight .strat-tag:hover {
    background: var(--gold);
    color: #fff;
}

@media (max-width: 1200px) {
    .strategy-timeline-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .strategy-timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .strategy-timeline-grid {
        grid-template-columns: 1fr;
    }
}

/* Implementation Roadmap */
.implementation-roadmap {
    background: linear-gradient(135deg, rgba(15, 81, 86, 0.05), rgba(15, 81, 86, 0.02));
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(15, 81, 86, 0.1);
}

.implementation-roadmap h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.roadmap-intro {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 16px;
}

.roadmap-phase {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.roadmap-phase.setup {
    background: linear-gradient(135deg, rgba(15, 81, 86, 0.08), rgba(15, 81, 86, 0.02));
    border: 2px solid var(--teal);
}

.roadmap-phase.highlight {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.12), rgba(197, 160, 89, 0.04));
    border: 2px solid var(--gold);
}

.phase-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.phase-label {
    font-weight: 700;
    font-size: 16px;
    color: var(--teal);
}

.phase-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
}

.phase-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phase-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    padding: 8px 10px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.phase-item i {
    color: var(--teal);
    font-size: 16px;
}

.phase-item span:first-of-type {
    flex: 1;
}

.item-price {
    font-weight: 600;
    color: var(--teal);
}

.phase-item.optional {
    background: rgba(197, 160, 89, 0.08);
    border-color: rgba(197, 160, 89, 0.3);
}

.item-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--gold);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

.phase-note {
    margin-top: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.phase-note i {
    color: var(--gold);
    margin-top: 1px;
}

.phase-strategies {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strat-chip {
    background: var(--bg-secondary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    transition: var(--transition-fast);
}

.strat-chip:hover {
    background: var(--teal);
    color: #fff;
}

.strat-chip.gold {
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-dark);
}

.strat-chip.gold:hover {
    background: var(--gold);
    color: #fff;
}

@media (max-width: 1200px) {
    .roadmap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== NEW TIMELINE ROADMAP ===== */
.timeline-roadmap {
    background: linear-gradient(135deg, rgba(15, 81, 86, 0.06), rgba(15, 81, 86, 0.02));
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
}

.timeline-roadmap h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 32px;
}

.timeline-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 30px;
}

.timeline-track {
    position: absolute;
    top: 38px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    border-radius: 4px;
}

.timeline-phase {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-phase.setup {
    flex: 1.3;
}

.phase-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--teal);
    z-index: 2;
    margin-bottom: 16px;
    transition: var(--transition-medium);
}

.timeline-phase:hover .phase-dot {
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(15, 81, 86, 0.3);
}

.timeline-phase.setup .phase-dot {
    background: var(--teal);
    color: #fff;
    width: 48px;
    height: 48px;
    font-size: 18px;
}

.timeline-phase.premium .phase-dot {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: #fff;
    width: 48px;
    height: 48px;
}

.phase-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    width: 100%;
    transition: var(--transition-medium);
}

.timeline-phase:hover .phase-card {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.timeline-phase.setup .phase-card {
    border: 2px solid var(--teal);
}

.timeline-phase.premium .phase-card {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), #fff);
}

.phase-month {
    font-weight: 700;
    font-size: 14px;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-name {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.phase-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 6px 8px;
    background: var(--bg-secondary);
    border-radius: 6px;
}

.mini-item i {
    color: var(--teal);
    font-size: 12px;
}

.mini-item span {
    margin-left: auto;
    font-weight: 600;
    color: var(--teal);
}

.mini-item.optional {
    background: rgba(197, 160, 89, 0.1);
    border: 1px dashed var(--gold);
}

.phase-chips {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phase-chips span {
    font-size: 11px;
    padding: 6px 10px;
    background: var(--bg-secondary);
    border-radius: 6px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.phase-chips span:hover {
    background: var(--teal);
    color: #fff;
}

.phase-chips.gold span {
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.phase-chips.gold span:hover {
    background: var(--gold);
    color: #fff;
}

/* Investment Grid */
.investment-grid {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.investment-grid h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.invest-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.invest-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.invest-card.featured {
    background: linear-gradient(135deg, rgba(15, 81, 86, 0.08), rgba(15, 81, 86, 0.02));
    border: 1px solid rgba(15, 81, 86, 0.15);
}

.invest-card.optional {
    background: rgba(197, 160, 89, 0.06);
    border: 1px dashed var(--gold);
}

.invest-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.invest-header>i {
    font-size: 20px;
    color: var(--teal);
    margin-top: 2px;
}

.invest-header>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.invest-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.invest-sub {
    font-size: 11px;
    color: var(--text-secondary);
}

.optional-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--gold);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

.invest-amt {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 700;
    color: var(--teal);
}

.invest-total-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 12px;
    color: #fff;
}

.invest-total-bar span:first-child {
    font-size: 14px;
}

.total-amt {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .timeline-container {
        flex-wrap: wrap;
    }

    .timeline-phase {
        flex: 0 0 30%;
    }

    .timeline-track {
        display: none;
    }

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

@media (max-width: 768px) {
    .timeline-phase {
        flex: 0 0 48%;
    }

    .invest-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .timeline-phase {
        flex: 0 0 100%;
    }
}

/* Intelligence Reports Section - Premium Redesign */
.intelligence-reports.premium-dark {
    margin-top: 48px;
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0f2e30 0%, #051415 100%);
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reports-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.seal-container {
    margin-bottom: 24px;
}

.security-seal {
    height: 48px;
    opacity: 0.9;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.4));
}

.reports-header {
    position: relative;
    z-index: 2;
}

.reports-header h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.reports-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 32px;
}

.reports-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.report-file.glass {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 110px;
    padding: 16px 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.report-file.glass:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.report-file.glass i {
    font-size: 28px;
    color: #ef4444;
    /* Keep red for PDF recognition */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.report-file.glass span {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.reports-action {
    position: relative;
    z-index: 2;
}

.access-link.glow {
    font-size: 14px;
    font-weight: 600;
    color: #0f2e30;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    background: linear-gradient(90deg, #d4af37, #f9d976);
    /* Gold gradient */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.access-link.glow:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #000;
}

/* Chair Economics Section */
.chair-economics-section {
    background: #fff;
}

.economics-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.econ-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 32px 28px;
    min-width: 320px;
    max-width: 360px;
    flex: 1 1 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: var(--transition-medium);
}

.econ-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Icon Circle - Blue Ocean Style */
.econ-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #f1f5f9;
}

.econ-icon i {
    font-size: 24px;
    color: #64748b;
}

.econ-card.elite .econ-icon {
    background: rgba(15, 81, 86, 0.08);
}

.econ-card.elite .econ-icon i {
    color: var(--teal);
}

.econ-card.super-premium .econ-icon {
    background: rgba(212, 175, 55, 0.1);
}

.econ-card.super-premium .econ-icon i {
    color: var(--gold);
}

/* Card Titles - h4 style */
.econ-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.econ-card.elite h4 {
    color: var(--teal);
}

.econ-card.super-premium h4 {
    color: var(--gold-dark);
}

/* Left border for highlighted cards */
.econ-card.elite {
    border-left: 4px solid var(--teal);
}

.econ-card.super-premium {
    border-left: 4px solid var(--gold);
}

.econ-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.econ-card.traditional .econ-badge {
    background: #f3f4f6;
    color: var(--text-secondary);
}

.econ-card.elite .econ-badge {
    background: var(--teal);
    color: #fff;
}

.econ-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 24px;
    min-height: 45px;
    line-height: 1.3;
}

.service-stack {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    margin-bottom: 24px;
}

.stack-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.stack-item.base {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
    z-index: 1;
}

.stack-placeholder {
    height: 120px;
    border: 2px dashed rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-tertiary);
    font-style: italic;
}

.stack-item.overlay {
    background: linear-gradient(135deg, rgba(15, 81, 86, 0.04), rgba(15, 81, 86, 0.01));
    border: 1px solid rgba(15, 81, 86, 0.1);
    color: var(--teal);
}

.stack-item.overlay.layer-2 {
    background: linear-gradient(135deg, rgba(15, 81, 86, 0.08), rgba(15, 81, 86, 0.04));
}

.stack-item.overlay.layer-3 {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0.05));
    border-color: rgba(197, 160, 89, 0.3);
    color: var(--gold-dark);
}

.econ-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.econ-card.traditional .econ-footer {
    background: #52525b;
    color: #fff;
}

.econ-card.elite .econ-footer {
    background: var(--night);
    color: #fff;
}

.total-value {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-accent);
}

.econ-card.elite .total-value {
    color: var(--gold);
}

.econ-note {
    font-size: 12px;
    line-height: 1.4;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.econ-note.negative {
    background: #fef2f2;
    color: #ef4444;
}

.econ-note.positive {
    background: rgba(15, 81, 86, 0.06);
    color: var(--teal);
    font-weight: 500;
}

.econ-multiplier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--teal);
}

.econ-multiplier i {
    font-size: 32px;
}

.multiplier-badge {
    background: var(--teal);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .economics-grid {
        gap: 24px;
    }

    .econ-card {
        min-width: 300px;
        max-width: 350px;
    }

    .econ-multiplier {
        transform: rotate(90deg);
        margin: 16px 0;
    }

    .econ-multiplier span {
        transform: rotate(-90deg);
    }
}

@media (max-width: 900px) {
    .economics-grid {
        flex-direction: column;
        align-items: center;
    }

    .econ-card {
        width: 100%;
        max-width: 500px;
    }

    .econ-multiplier {
        transform: rotate(90deg);
        margin: 8px 0;
    }
}

/* Intelligence Reports - Inline Clean Design */
.intelligence-reports-inline {
    margin-top: 40px;
    padding-top: 32px;
}

.reports-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 81, 86, 0.2), transparent);
    margin-bottom: 32px;
}

.reports-section {
    text-align: center;
}

.reports-intro {
    margin-bottom: 24px;
}

.reports-intro i {
    font-size: 32px;
    color: var(--teal);
    display: block;
    margin-bottom: 12px;
}

.reports-intro h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.reports-intro p {
    font-size: 14px;
    color: var(--text-secondary);
}

.reports-files {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.file-item:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.file-item i {
    font-size: 16px;
    color: #e11d48;
}

.reports-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--teal);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.reports-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Chair Economics - Expanded */
.national-context {
    padding: 24px 32px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15, 81, 86, 0.1);
    margin-bottom: 40px;
}

.context-intro {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.context-intro i {
    font-size: 32px;
    color: var(--teal);
    flex-shrink: 0;
}

.context-intro p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.context-intro em {
    font-style: normal;
    color: var(--teal);
    font-weight: 600;
}

.econ-card.super-premium {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
    box-shadow: 0 12px 40px rgba(197, 160, 89, 0.2);
}

.econ-card.super-premium .econ-badge {
    background: var(--gold);
    color: var(--night);
}

.stack-item.overlay.layer-4 {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(197, 160, 89, 0.08));
    border-color: rgba(197, 160, 89, 0.4);
    color: var(--gold-dark);
}

.econ-footer.gold {
    background: linear-gradient(90deg, #d4af37, #f9d976);
    color: #1a1a1a;
}

.econ-footer.gold .total-value {
    color: #1a1a1a;
}

.econ-note.premium {
    background: rgba(197, 160, 89, 0.12);
    color: #8b6914;
    font-weight: 500;
    font-size: 11px;
}

.multiplier-badge.gold {
    background: var(--gold);
    color: var(--night);
}

.clinic-examples {
    margin-top: 48px;
    text-align: center;
}

.clinic-examples h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 32px;
}

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

.example-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-medium);
}

.example-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--teal);
}

.example-clinic {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.example-clinic i {
    font-size: 24px;
    color: var(--teal);
    margin-bottom: 8px;
}

.clinic-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    display: block;
}

.clinic-location {
    font-size: 12px;
    color: var(--text-tertiary);
    display: block;
    margin-top: 4px;
}

.example-item p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    font-style: italic;
}

@media (max-width: 1200px) {
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

/* Investment Total Bars */
.invest-comparison {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.invest-comparison h5 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.invest-comparison h5 i {
    font-size: 24px;
    color: var(--teal);
}

.invest-total-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: var(--night);
    color: #fff;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    transition: var(--transition-medium);
}

.invest-total-bar>span:first-child {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.plan-name {
    font-weight: 700;
    font-size: 16px;
    margin-right: 8px;
}

.invest-total-bar.base {
    background: linear-gradient(90deg, #d4af37, #e8c547);
    color: var(--night);
}

.invest-total-bar.base:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.invest-total-bar.base .bar-badge {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    color: var(--night);
}

.invest-total-bar.premium {
    background: linear-gradient(90deg, var(--teal), #0f6b70);
    color: #fff;
    box-shadow: 0 6px 20px rgba(15, 81, 86, 0.3);
    margin-bottom: 0;
}

.invest-total-bar.premium:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(15, 81, 86, 0.4);
}

.invest-total-bar .total-amt {
    font-size: 26px;
    font-family: var(--font-accent);
    font-weight: 700;
    white-space: nowrap;
}

.comparison-note {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(15, 81, 86, 0.05);
    border-left: 3px solid var(--teal);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CTA Section - Redesigned */
.cta-section {
    margin-top: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--teal) 0%, #0a3d40 100%);
    border-radius: 24px;
    text-align: center;
}

/* Light variant */
.cta-section.light {
    background: #fff;
    border: 1px solid rgba(15, 81, 86, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.cta-layout {
    display: flex;
    align-items: center;
    gap: 48px;
}

.cta-image {
    flex-shrink: 0;
}

.cta-founder {
    width: 280px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.cta-section.light .cta-header h2 {
    color: var(--teal);
}

.cta-section.light .cta-header p {
    color: var(--text-secondary);
}

.cta-section.light .btn-cta.secondary {
    color: var(--night);
    border-color: var(--night);
}

.cta-section.light .btn-cta.secondary:hover {
    background: var(--night);
    color: #fff;
}

.cta-section.light .cta-trust span {
    color: var(--text-secondary);
}

.cta-section.light .cta-trust i {
    color: var(--teal);
}

.cta-header h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
}

.cta-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-cta {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta.primary {
    background: var(--gold);
    color: var(--night);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-cta.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-trust i {
    color: var(--gold);
    font-size: 18px;
}

/* Intelligence Reports Section - Below CTA */
.intelligence-reports-inline {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.reports-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reports-intro {
    text-align: center;
    margin-bottom: 24px;
}

.reports-intro i {
    font-size: 32px;
    color: var(--teal);
    margin-bottom: 12px;
}

.reports-intro h4 {
    font-size: 18px;
    color: var(--night);
    margin-bottom: 8px;
}

.reports-intro p {
    font-size: 14px;
    color: var(--text-secondary);
}

.reports-files {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(15, 81, 86, 0.06);
    border: 1px solid rgba(15, 81, 86, 0.12);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.file-item:hover {
    background: rgba(15, 81, 86, 0.1);
    border-color: var(--teal);
}

.file-item i {
    color: var(--teal);
}

.reports-cta .btn-cta {
    background: var(--teal);
    color: #fff;
    border: none;
}

.reports-cta .btn-cta:hover {
    background: #0a3d40;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 24px;
    }

    .cta-header h2 {
        font-size: 28px;
    }

    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }

    .cta-layout {
        flex-direction: column;
        text-align: center;
    }

    .cta-founder {
        width: 200px;
    }

    .cta-section.light .cta-actions {
        justify-content: center;
    }

    .cta-section.light .cta-trust {
        justify-content: center;
    }
}

/* National Context - Centered */
.national-context {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.context-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: rgba(15, 81, 86, 0.04);
    border-radius: 16px;
    border-left: 4px solid var(--teal);
}

.context-intro i {
    font-size: 28px;
    color: var(--teal);
}

.context-intro p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0;
}

.context-intro strong {
    color: var(--teal);
}

.context-intro em {
    font-style: normal;
    font-weight: 600;
    color: var(--text-primary);
}

/* Footer links */
.footer a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--gold);
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bar badge - Optional indicator */
.bar-badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: 8px;
    vertical-align: middle;
}

.bar-badge.optional {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
    color: #fff;
}

.bar-badge.plan-label {
    font-weight: 700;
    font-size: 11px;
    padding: 4px 12px;
}

/* ====================================
   REPORTS DOWNLOAD SECTION - FULL TITLES
   ==================================== */
.reports-section-expanded {
    width: 100%;
}

.reports-files-full {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.file-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(15, 81, 86, 0.03));
    border: 1px solid rgba(15, 81, 86, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.file-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 81, 86, 0.12);
    border-color: var(--teal);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(15, 81, 86, 0.06));
}

.file-card>i {
    font-size: 40px;
    color: #e74c3c;
    flex-shrink: 0;
    margin-top: 4px;
}

.file-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.file-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--teal);
    margin: 0;
}

.file-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    padding: 8px 16px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 100px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.file-card:hover .file-action {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
}

.file-action i {
    font-size: 16px;
}

/* Reports Section Intro for expanded */
.reports-section-expanded .reports-intro {
    text-align: center;
    margin-bottom: 8px;
}

.reports-section-expanded .reports-intro i {
    font-size: 48px;
    color: var(--teal);
    margin-bottom: 16px;
}

.reports-section-expanded .reports-intro h4 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.reports-section-expanded .reports-intro p {
    font-size: 15px;
    color: var(--text-tertiary);
}

/* Responsive adjustments for file cards */
@media (max-width: 768px) {
    .file-card {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .file-card>i {
        font-size: 32px;
    }

    .file-title {
        font-size: 16px;
    }

    .file-action {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================
   RESPONSIVE MEDIA QUERIES
   ==================================== */

/* Large Desktop & Down (< 1200px) */
@media (max-width: 1199px) {
    .competitors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .timeline-container {
        gap: 16px;
    }

    .phase-card {
        padding: 16px;
    }
}

/* Tablet Landscape & Down (< 992px) */
@media (max-width: 991px) {
    :root {
        --section-padding: clamp(60px, 8vh, 100px);
    }

    /* Navigation */
    .nav-glass {
        width: 95%;
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

    /* Hero Section */
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .stat-card {
        min-width: 140px;
        padding: 16px 20px;
    }

    /* Map Section */
    .map-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .interactive-map {
        height: 450px;
    }

    .map-sidebar {
        order: 2;
    }

    /* Charts Row - auto-fit handles this now */

    /* Competitors - auto-fit handles this now */

    /* Campaigns - auto-fit handles this now */

    /* Services Gallery */
    .services-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Timeline Roadmap */
    .timeline-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .timeline-track {
        display: none;
    }

    .timeline-phase {
        width: calc(33% - 16px);
    }

    /* Strategies */
    .strategy-item {
        padding: 20px;
        gap: 16px;
    }

    /* CTA Layout */
    .cta-layout {
        flex-direction: column;
        text-align: center;
    }

    .cta-image {
        order: -1;
    }

    .cta-founder {
        max-width: 250px;
    }

    /* Speed Lead Box */
    .speed-lead-box {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }

    /* Investment Grid */
    .invest-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Membership Table */
    .membership-table-wrapper {
        overflow-x: auto;
    }

    .membership-table {
        min-width: 700px;
    }
}

/* Tablet Portrait & Down (< 768px) */
@media (max-width: 767px) {

    /* Section Headers */
    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    /* Hero */
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 100%;
        max-width: 280px;
    }

    .title-main {
        font-size: clamp(36px, 10vw, 56px);
    }

    /* Map */
    .interactive-map {
        height: 350px;
    }

    .map-legend {
        padding: 16px;
    }

    /* Charts */
    .charts-row {
        grid-template-columns: 1fr;
    }

    .charts-row .chart-card:last-child {
        grid-column: span 1;
    }

    /* Competitors */
    .competitors-grid {
        grid-template-columns: 1fr;
    }

    /* Regulations */
    .regs-grid {
        grid-template-columns: 1fr;
    }

    /* Campaigns */
    .campaigns-grid {
        grid-template-columns: 1fr;
    }

    /* Services Gallery */
    .services-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item.featured,
    .gallery-item.wide {
        grid-column: span 1;
    }

    /* Timeline */
    .timeline-phase {
        width: calc(50% - 12px);
    }

    .phase-card {
        padding: 14px;
    }

    .phase-chips span {
        font-size: 10px;
        padding: 4px 8px;
    }

    /* Strategies */
    .strategies-list {
        gap: 12px;
    }

    .strategy-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .strategy-letter {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .strat-tag {
        margin-top: 12px;
    }

    /* Investment */
    .invest-cards {
        grid-template-columns: 1fr;
    }

    .invest-total-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .bar-badge {
        margin: 4px;
    }

    /* Wins Box */
    .wins-content {
        grid-template-columns: 1fr;
    }

    /* Membership Proposal */
    .membership-proposal {
        padding: 28px;
    }

    .proposal-price {
        font-size: 40px;
    }

    /* Reports Section */
    .reports-section-expanded .reports-intro i {
        font-size: 36px;
    }

    .reports-section-expanded .reports-intro h4 {
        font-size: 20px;
    }
}

/* Mobile & Down (< 576px) */
@media (max-width: 575px) {

    /* General */
    .section {
        padding: 48px 16px;
    }

    /* Navigation */
    .nav-glass {
        top: 10px;
        padding: 10px 16px;
    }

    .nav-logo img {
        height: 28px;
    }

    /* Hero */
    .hero-section {
        padding-top: 100px;
    }

    .title-line {
        font-size: 18px;
    }

    .title-main {
        font-size: clamp(32px, 12vw, 44px);
    }

    .title-subtitle {
        font-size: clamp(20px, 5vw, 28px);
    }

    .stat-number {
        font-size: 32px;
    }

    /* Map */
    .interactive-map {
        height: 280px;
        border-radius: 16px;
    }

    .legend-cards {
        gap: 8px;
    }

    /* Timeline */
    .timeline-phase {
        width: 100%;
    }

    .timeline-roadmap h3 {
        font-size: 18px;
    }

    /* Cards General */
    .chart-card,
    .competitor-card,
    .campaign-card,
    .reg-card {
        padding: 16px;
        border-radius: 16px;
    }

    /* CTA */
    .cta-header h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .cta-trust {
        flex-direction: column;
        gap: 8px;
    }

    /* Formula Box */
    .formula-equation {
        flex-direction: column;
        gap: 12px;
    }

    .formula-operator,
    .formula-equals {
        font-size: 20px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

/* ====================================
   MOBILE UX ENHANCEMENTS
   ==================================== */

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(197, 160, 89, 0.4);
    transition: var(--transition-medium);
}

.floating-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(197, 160, 89, 0.5);
}

.floating-cta i {
    font-size: 18px;
}

@media (max-width: 991px) {
    .floating-cta {
        display: flex;
    }
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-medium);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 15px;
    }
}

/* Swipe Carousels on Mobile */
@media (max-width: 767px) {

    .competitors-grid,
    .campaigns-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 16px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .competitors-grid::-webkit-scrollbar,
    .campaigns-grid::-webkit-scrollbar {
        display: none;
    }

    .competitor-card,
    .campaign-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin-right: 16px;
    }

    .competitor-card:last-child,
    .campaign-card:last-child {
        margin-right: 0;
    }
}

/* Scroll Snapping on Mobile */
@media (max-width: 767px) {
    html {
        scroll-snap-type: y proximity;
    }

    .section {
        scroll-snap-align: start;
    }
}

/* Skeleton Loading Animation */
.skeleton {
    background: linear-gradient(90deg,
            var(--bg-secondary) 25%,
            #e8e8e8 50%,
            var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}