/* StartEd Advisors - Premium Design System */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Premium Color Palette - Monochrome + Accent */
    --primary-accent: #2563eb;
    --primary-accent-hover: #1d4ed8;
    
    /* Monochrome Scale */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Section Backgrounds - McKinsey Style */
    --section-white: #ffffff;
    --section-gray: #f8f9fa;
    --section-border: #e9ecef;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    --text-6xl: 4.5rem;
    
    /* Spacing Grid (8pt system) */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 2.5rem;
    --space-6: 3rem;
    --space-8: 4rem;
    --space-12: 6rem;
    --space-16: 8rem;
    
    /* Premium Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

.section-padding {
    padding: var(--space-12) 0;
}

/* Section Background Styles - McKinsey-inspired alternating pattern */
.bg-section-white {
    background-color: var(--section-white);
    border-bottom: 1px solid var(--section-border);
}

.bg-section-gray {
    background-color: var(--section-gray);
    border-bottom: 1px solid var(--section-border);
}

section {
    position: relative;
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto var(--space-8);
    line-height: 1.7;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Navigation */
.navbar {
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    padding: var(--space-2) 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900) !important;
}

.nav-link {
    font-weight: 500;
    font-size: var(--text-sm);
    color: var(--gray-700) !important;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--gray-900) !important;
}

/* Buttons - Premium Design */
.btn {
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: none;
    padding: var(--space-2) var(--space-4);
    letter-spacing: 0.01em;
}

.btn-primary {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-accent-hover);
    border-color: var(--primary-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    color: var(--primary-accent);
    border: 1px solid var(--gray-300);
    background-color: white;
}

.btn-outline-primary:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--primary-accent);
    transform: translateY(-1px);
}

/* Hero Section - Premium Split Layout */
.hero-section {
    background: #ffffff;
    padding-top: 80px;
    min-height: min(92vh, 760px);
    display: flex;
    align-items: center;
}

.hero-wrap {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--space-6);
    position: relative;
}

.hero-narrative {
    display: flex;
    align-items: center;
    padding: var(--space-8) var(--space-6) var(--space-8) 0;
}

.hero-proof {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-6);
}

.hero-space {
    position: relative;
}

.hero-inner {
    max-width: 620px;
    width: 100%;
}

.hero-eyebrow {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-headline {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 20px !important;
}

.hero-lead {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 16px !important;
}

.hero-subtext {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 32px !important;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

/* Horizontal Metrics Ribbon */
.metrics-ribbon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-50);
    border-radius: 8px;
    padding: var(--space-4) var(--space-3);
}

.metric-item {
    flex: 1;
    text-align: center;
}

.metric-value {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 11px;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
    margin: 0 var(--space-2);
}

/* Latest Exits */
.latest-exits {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-3);
}

.exits-header {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: var(--space-1);
}

.exits-grid {
    display: grid;
    gap: var(--space-2);
}

.exit-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: var(--space-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exit-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.exit-company {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
}

.exit-result {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 600;
    white-space: nowrap;
}

.market-stat {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    padding: var(--space-4);
    text-align: center;
    margin-top: var(--space-2);
}

.market-value {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.market-label {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.4;
    font-weight: 500;
}

/* Hero Responsive */
@media (max-width: 991px) {
    .hero-narrative {
        padding: var(--space-6) var(--space-4);
    }
    
    .hero-proof {
        padding: var(--space-4);
    }
    
    .hero-space {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-6);
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .hero-lead {
        font-size: 18px;
    }
    
    .metrics-ribbon {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .metric-divider {
        display: none;
    }
}

/* Priorities Bar */
.priorities-bar {
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
    color: white;
    padding: 2rem 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.priority-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.priority-card:last-child {
    border-right: none;
}

.priority-icon {
    font-size: 2rem;
    opacity: 0.9;
}

.priority-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.priority-content p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-promise {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '•';
    color: var(--primary-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--gray-50);
    border-radius: 8px;
    border-left: 4px solid var(--gray-600);
}

.service-result small {
    color: var(--gray-700);
    font-weight: 500;
}

/* Eddy Mockup */
.eddy-mockup {
    position: relative;
    overflow: hidden;
    max-height: 400px;
}

.dashboard-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 150px;
}

.kpi-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.kpi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.status-pill {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.status-green {
    background-color: #dcfce7;
    color: #166534;
}

.status-blue {
    background-color: #e2e8f0;
    color: #475569;
}

/* Outcome Cards */
.outcome-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.outcome-metric {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.before {
    color: var(--gray-500);
}

.after {
    color: var(--gray-700);
}

.outcome-description {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Stat Tiles */
.stat-tile {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.stat-tile h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Testimonial Carousel */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    margin: 0 1rem;
}

.testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--gray-900);
    display: block;
}

.testimonial-author span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Flywheel */
.flywheel-container {
    position: relative;
    height: 500px;
    max-width: 600px;
    margin: 0 auto;
}

.flywheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.flywheel-logo {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.flywheel-node {
    position: absolute;
    width: 180px;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.flywheel-node:hover {
    transform: scale(1.05);
    border-color: var(--primary-accent);
}

.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { top: 50%; right: 0; transform: translateY(-50%); }
.node-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.node-4 { top: 50%; left: 0; transform: translateY(-50%); }

.node-content {
    text-align: center;
}

.node-content i {
    font-size: 2rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.node-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.node-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary-accent);
    position: relative;
    transform: scale(1.05);
}

.pricing-card.featured {
    background: white !important;
    border: 2px solid var(--gray-600);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured::before {
    display: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.pricing-title {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.pricing-header .badge {
    position: absolute;
    top: -10px;
    right: -10px;
}

.pricing-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-body p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
}

.pricing-body li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-body li::before {
    content: '✓';
    color: var(--primary-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-accent) !important;
}

.social-links a {
    display: inline-block;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 1050;
    max-width: 400px;
}

/* Modal Customizations */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem 2rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem 2rem;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 0.2rem rgba(100, 116, 139, 0.25);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .priorities-bar {
        position: relative;
        top: 0;
    }
    
    .priority-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        justify-content: center;
        text-align: center;
    }
    
    .priority-card:last-child {
        border-bottom: none;
    }
    
    .flywheel-container {
        height: auto;
        position: static;
    }
    
    .flywheel-node {
        position: static;
        margin: 1rem auto;
        transform: none !important;
    }
    
    .flywheel-center {
        position: static;
        transform: none;
        margin: 2rem auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .dashboard-overlay {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .dashboard-overlay {
        flex-direction: column;
        align-items: center;
    }
    
    .kpi-card {
        min-width: auto;
        width: 200px;
    }
}

/* Access Control Styles */
.access-blur {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.5s ease;
}

.access-granted {
    filter: blur(0px);
    pointer-events: auto;
    user-select: auto;
}

#accessModal {
    z-index: 1060;
}

#accessModal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for keyboard navigation */
.btn:focus,
.nav-link:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background-color: #000;
        border-color: #000;
    }
    
    .text-primary {
        color: #000 !important;
    }
}


/* Case Study Cards */
.case-study-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.case-study-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.case-study-result {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.case-study-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: var(--gray-50);
}

.timeline-item.highlight {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    border: 1px solid var(--gray-300);
}

.timeline-item .year {
    font-weight: 700;
    color: var(--gray-800);
    min-width: 50px;
}

.case-study-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-points li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.case-study-points li::before {
    content: '✓';
    color: var(--gray-600);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.case-study-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-800);
    line-height: 1;
}

.stat-label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.stat-item small {
    color: var(--gray-500);
    font-size: 0.8rem;
}


/* Flywheel Visualization */
.flywheel-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-50), rgba(255, 255, 255, 0.8));
    border: 2px solid var(--gray-200);
}

.flywheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--gray-300);
}

.flywheel-center h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 0;
    line-height: 1;
}

.flywheel-center p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    font-weight: 600;
}

.flywheel-item {
    position: absolute;
    width: 200px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.flywheel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.flywheel-item[data-position="top"] {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.flywheel-item[data-position="right"] {
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

.flywheel-item[data-position="bottom"] {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.flywheel-item[data-position="left"] {
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
}

.flywheel-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.flywheel-icon i {
    font-size: 2rem;
    color: var(--gray-600);
}

.flywheel-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    text-align: center;
}

.flywheel-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 0.5rem;
}

.flywheel-content small {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-align: center;
    display: block;
    font-weight: 500;
}

.flywheel-arrow {
    display: none;
}

.flywheel-arrow::after {
    display: none;
}

.flywheel-description {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .flywheel-container {
        width: 100%;
        height: auto;
        border-radius: 0;
        background: none;
        border: none;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        position: static;
    }
    
    .flywheel-center {
        position: static;
        transform: none;
        margin: 0 auto 2rem;
    }
    
    .flywheel-item {
        position: static;
        transform: none;
        width: 100%;
        margin: 0;
    }
    
    .flywheel-arrow {
        display: none;
    }
}


/* Market Opportunity Stats */
.market-stat-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.market-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.market-stat-icon {
    margin-bottom: 1.5rem;
}

.market-stat-icon i {
    font-size: 3rem;
    color: var(--gray-600);
}

.market-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gray-800);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.market-stat-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 1rem;
    display: block;
}

.market-stat-description {
    color: var(--gray-600);
    line-height: 1.5;
    font-size: 1rem;
}

.market-insight {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    max-width: 900px;
    margin: 0 auto;
}

.market-insight h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.market-insight p {
    font-size: 1.2rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}


/* CTA Section Updates */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-buttons .btn {
    min-width: 250px;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}


/* Leadership Team */
.team-member-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.team-member-image {
    margin-bottom: 1.5rem;
}

.team-member-image i {
    font-size: 4rem;
    color: var(--gray-400);
}

.team-member-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.team-member-info h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member-description {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.4;
}

.team-member-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.team-member-highlights li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.team-member-highlights li::before {
    content: '✓';
    color: var(--gray-600);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.team-cta {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    max-width: 800px;
    margin: 0 auto;
}

.team-cta p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.6;
}


/* Platform Feature Cards */
.platform-feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.platform-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.platform-feature-card.primary {
    border-top: 4px solid #3B82F6;
}

.platform-feature-card.secondary {
    border-top: 4px solid #10B981;
}

.platform-feature-card.tertiary {
    border-top: 4px solid #F59E0B;
}

.platform-feature-card.quaternary {
    border-top: 4px solid #8B5CF6;
}

.platform-feature-card .feature-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.platform-feature-card .feature-icon i {
    font-size: 3rem;
    color: var(--gray-600);
}

.platform-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    text-align: center;
}

.platform-feature-card p {
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.feature-badge {
    background: linear-gradient(135deg, #3B82F6, #10B981);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    display: block;
}

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

.feature-highlights li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.feature-highlights li::before {
    content: '→';
    color: var(--gray-500);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.platform-cta {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.platform-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.platform-cta p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}


/* EDDY Dashboard Styles */
.eddy-dashboard-container {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-200);
}

/* Dashboard Top Bar */
.dashboard-topbar {
    background: white;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-800);
}

.dashboard-logo i {
    color: var(--primary);
    font-size: 1.5rem;
}

.dashboard-tabs {
    display: flex;
    gap: 0.5rem;
}

.dashboard-tabs .tab {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

.dashboard-tabs .tab.active {
    background: var(--primary);
    color: white;
    font-weight: 500;
}

.dashboard-tabs .tab:hover:not(.active) {
    background: var(--gray-100);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-name {
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Dashboard Main Content */
.dashboard-main {
    padding: 1.5rem;
    background: #f8f9fa;
}

/* Metrics Row */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--gray-200);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.metric-title {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.metric-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.metric-change {
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 6px;
}

.metric-change.positive {
    color: #10B981;
    background: #10B98120;
}

.metric-period {
    color: var(--gray-500);
}

/* IQ Modules Section */
.iq-modules-section {
    margin-bottom: 1.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.btn-view-all {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-view-all:hover {
    transform: translateX(3px);
}

.iq-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.iq-module-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.iq-module-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.iq-module-card.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, #667eea05 0%, #764ba205 100%);
}

.module-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.module-icon i {
    font-size: 1.5rem;
    color: var(--gray-600);
}

.iq-module-card.active .module-icon {
    background: var(--primary);
}

.iq-module-card.active .module-icon i {
    color: white;
}

.iq-module-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0 0 0.5rem;
}

.iq-module-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0 0 1rem;
    line-height: 1.4;
}

.module-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-400);
}

.status-indicator.active {
    background: #10B981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Dashboard Bottom Row */
.dashboard-bottom-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1rem;
}

.data-room-section,
.activity-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.last-sync {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.data-room-files {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.file-item:hover {
    background: var(--gray-50);
}

.file-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.file-icon.pdf {
    background: #EF444420;
    color: #EF4444;
}

.file-icon.excel {
    background: #10B98120;
    color: #10B981;
}

.file-icon.doc {
    background: #3B82F620;
    color: #3B82F6;
}

.file-info {
    flex: 1;
}

.file-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.file-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.file-actions {
    display: flex;
    gap: 1rem;
}

.file-actions i {
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.2s;
}

.file-actions i:hover {
    color: var(--primary);
}

/* Activity Section */
.activity-list {
    margin-top: 1rem;
}

.activity-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.activity-icon.success {
    background: #10B98120;
    color: #10B981;
}

.activity-icon.info {
    background: #3B82F620;
    color: #3B82F6;
}

.activity-icon.warning {
    background: #F5970020;
    color: #F59700;
}

.activity-info {
    flex: 1;
}

.activity-text {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.activity-time {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* IQ Modules List */
.iq-modules-list {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.iq-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.iq-feature:hover {
    background: var(--gray-50);
}

.iq-feature i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.iq-feature strong {
    font-size: 0.95rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.iq-feature span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* Responsive Design */
@media (max-width: 992px) {
    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .iq-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-bottom-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-tabs {
        display: none;
    }
    
    .metrics-row {
        grid-template-columns: 1fr;
    }
    
    .iq-modules-grid {
        grid-template-columns: 1fr;
    }
    
    .topbar-left {
        gap: 1rem;
    }
    
    .user-name {
        display: none;
    }
}


/* Fund Stats Cards */
.fund-stat-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.fund-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.fund-stat-icon {
    margin-bottom: 1rem;
}

.fund-stat-icon i {
    font-size: 2.5rem;
    color: var(--gray-600);
}

.fund-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-800);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fund-stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
}

.fund-description {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.fund-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


/* Event Cards */
.event-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.event-header {
    margin-bottom: 1.5rem;
}

.event-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

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

.event-highlights li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.event-highlights li:last-child {
    border-bottom: none;
}

.event-highlights li::before {
    content: '→';
    color: var(--gray-500);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.event-description {
    font-size: 1.2rem;
    color: var(--gray-700);
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== FAST CFO Foundation Styles ==================== */

/* FAST Main Headers */
.fast-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.fast-main-subtitle {
    font-size: 22px;
    color: var(--gray-700);
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 0;
}

/* FAST Intro Box */
.fast-intro-box {
    background: linear-gradient(135deg, var(--gray-50) 0%, #f8fafc 100%);
    border-left: 4px solid var(--primary-accent);
    border-radius: 8px;
    padding: var(--space-6);
}

.fast-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 0;
}

/* FAST Subsection Headers */
.fast-subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    letter-spacing: -0.01em;
}

.fast-subsection-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 0;
}

/* FAST Bottom Line Callout */
.fast-bottom-line {
    padding: var(--space-5) 0;
    position: relative;
}

.fast-bottom-line-text {
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-4);
}

.fast-bottom-line-text::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-accent);
    margin: 0 auto var(--space-5);
}

/* FAST Pricing Label */
.fast-pricing-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.02em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .fast-main-title {
        font-size: 36px;
    }
    
    .fast-main-subtitle {
        font-size: 18px;
    }
    
    .fast-intro-text {
        font-size: 16px;
    }
    
    .fast-subsection-title {
        font-size: 28px;
    }
    
    .fast-subsection-subtitle {
        font-size: 16px;
    }
    
    .fast-bottom-line-text {
        font-size: 18px;
    }
    
    .fast-pricing-label {
        font-size: 16px;
    }
}

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.foundation-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: var(--space-6);
    transition: all 0.3s ease;
}

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

.foundation-card-header {
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--gray-200);
}

.foundation-number {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary-accent);
    margin-bottom: var(--space-2);
}

.foundation-card-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.foundation-card-body p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-3);
}

.foundation-card-body p:last-child {
    margin-bottom: 0;
}

.foundation-card-body strong {
    color: var(--gray-900);
    font-weight: 500;
}

.foundation-why {
    color: var(--gray-600);
}

.foundation-proof {
    color: var(--primary-accent);
}

.foundation-proof strong {
    color: var(--primary-accent);
}

.foundation-cta-label {
    font-size: var(--text-lg);
    color: var(--gray-600);
    font-weight: 500;
}

/* ==================== FAST Services Cards ==================== */

/* FAST Services Intro */
.fast-services-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 0;
}

.fast-services-closing {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.service-insight-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: var(--space-6);
    transition: all 0.3s ease;
}

.service-insight-card:hover {
    border-color: var(--primary-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: var(--space-4);
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.service-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-accent);
    margin-bottom: var(--space-3);
    line-height: 1.4;
}

.service-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.service-result {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    padding-top: var(--space-3);
    border-top: 1px solid var(--gray-100);
    margin-bottom: 0;
}

.service-result strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Legacy styles for compatibility */
.service-outcome {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.service-delivery {
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.service-detail {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.services-note {
    font-size: var(--text-base);
    color: var(--gray-600);
    font-weight: 400;
}

@media (max-width: 768px) {
    .fast-services-intro,
    .fast-services-closing {
        font-size: 16px;
    }
    
    .service-name {
        font-size: 18px;
    }
    
    .service-tagline {
        font-size: 15px;
    }
    
    .service-description {
        font-size: 14px;
    }
}

/* ==================== FAST Capital Process Timeline ==================== */
.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-phase {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.timeline-phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.phase-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.phase-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.phase-duration {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.phase-steps {
    border-top: 2px solid var(--gray-200);
    padding-top: 1rem;
}

.phase-step {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.step-week {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
}

.step-task {
    font-weight: 600;
    color: var(--gray-800);
    margin: 0.25rem 0;
}

.step-outcome {
    font-size: 0.9rem;
    color: #0d6efd;
}

.timeline-arrow {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .process-timeline {
        flex-direction: column;
    }
    .timeline-arrow {
        transform: rotate(90deg);
    }
}

/* ==================== Smart Data Room Features ==================== */
.data-room-feature {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.data-room-feature:hover {
    transform: translateY(-5px);
}

.feature-icon-lg {
    transition: all 0.3s ease;
}

.data-room-feature:hover .feature-icon-lg i {
    transform: scale(1.1);
}

/* ==================== Enhanced Pricing Cards ==================== */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: #0d6efd;
    background: linear-gradient(135deg, #fff 0%, #e7f1ff 100%);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 1rem 0;
}

.price-detail {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.pricing-body ul {
    list-style: none;
    padding: 0;
}

.pricing-body ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: 700;
}

/* ==================== Utilities ==================== */
.delay-4 { transition-delay: 0.4s; }

/* Capital Timeline - Vertical Milestones */
.capital-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-milestone {
    display: flex;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.milestone-marker {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.milestone-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gray-900);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.milestone-line {
    width: 2px;
    flex-grow: 1;
    background: var(--gray-300);
    margin-top: var(--space-2);
}

.milestone-content {
    flex-grow: 1;
    padding-bottom: var(--space-4);
}

.milestone-weeks {
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: var(--space-1);
}

.milestone-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.milestone-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-2);
}

.milestone-deliverable {
    font-size: var(--text-sm);
    color: var(--primary-accent);
}

.milestone-deliverable strong {
    font-weight: 600;
}

.process-pricing {
    font-size: var(--text-lg);
    color: var(--gray-700);
    font-weight: 500;
}

/* Value Props Bar */
.value-props-bar {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: white;
    padding: var(--space-8) 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-prop-item {
    padding: var(--space-4) var(--space-3);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.value-prop-item:last-child {
    border-right: none;
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-4xl);
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: white;
}

.value-label {
    font-size: var(--text-sm);
    color: var(--gray-400);
    font-weight: 400;
}

/* Credibility Section */
.credibility-section {
    background: white;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.credibility-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.credibility-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 400;
}

.credibility-stat-card {
    background: linear-gradient(135deg, var(--primary-accent) 0%, #1e40af 100%);
    border-radius: 16px;
    padding: var(--space-6);
    text-align: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.credibility-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.3);
}

.credibility-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.credibility-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.credibility-highlight-card {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: var(--space-6);
    height: 100%;
    transition: all 0.3s ease;
}

.credibility-highlight-card:hover {
    border-color: var(--primary-accent);
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.credibility-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.credibility-icon i {
    font-size: 32px;
    color: white;
}

.credibility-highlight-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.credibility-highlight-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .credibility-title {
        font-size: 36px;
    }
    
    .credibility-subtitle {
        font-size: 18px;
    }
    
    .credibility-stat-number {
        font-size: 56px;
    }
    
    .credibility-stat-label {
        font-size: 14px;
    }
}

/* ===================================
   Market Problem Section Styles
   =================================== */

.challenge-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: var(--space-6);
    height: 100%;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    border-color: var(--primary-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.challenge-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.challenge-icon i {
    font-size: 36px;
    color: white;
}

.challenge-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.challenge-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.solution-callout {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1e293b 100%);
    border-radius: 16px;
    padding: var(--space-8);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.solution-headline {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em;
}

.solution-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .challenge-icon {
        width: 64px;
        height: 64px;
    }
    
    .challenge-icon i {
        font-size: 28px;
    }
    
    .challenge-title {
        font-size: 18px;
    }
    
    .solution-headline {
        font-size: 24px;
    }
    
    .solution-text {
        font-size: 16px;
    }
}

/* ===================================
   About Us Page Styles
   =================================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(to bottom, var(--gray-50) 0%, #ffffff 100%);
    padding: calc(80px + var(--space-12)) 0 var(--space-12);
    text-align: center;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-5xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-lead {
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: var(--space-4);
    line-height: 1.4;
}

.about-hero-text {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: var(--space-12) 0;
}

.team-section-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
}

.team-section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-6);
}

/* Team Card */
.team-card {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.team-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
}

.team-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    color: var(--gray-400);
    font-size: 4rem;
}

.team-card-content {
    padding: var(--space-4);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-member-name {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
    letter-spacing: -0.01em;
}

.team-member-title {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.team-member-bio {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* About CTA Section */
.about-cta-section {
    padding: var(--space-12) 0;
    background: linear-gradient(to bottom, #ffffff 0%, var(--gray-50) 100%);
}

.about-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

.about-cta-text {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-6);
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
    .about-hero {
        padding: calc(80px + var(--space-8)) 0 var(--space-8);
    }
    
    .about-hero-title {
        font-size: var(--text-4xl);
    }
    
    .about-hero-lead {
        font-size: var(--text-xl);
    }
    
    .team-section {
        padding: var(--space-8) 0;
    }
    
    .team-section-title {
        font-size: var(--text-3xl);
    }
    
    .about-cta-section {
        padding: var(--space-8) 0;
    }
    
    .about-cta-title {
        font-size: var(--text-3xl);
    }
}

/* Team Card Photo Styling */
.team-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Clickable Team Cards */
.team-card-clickable {
    cursor: pointer;
}

.team-card-clickable:hover {
    transform: translateY(-6px);
}

.team-card-cta {
    margin-top: var(--space-3);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.team-card-clickable:hover .team-card-cta {
    gap: var(--space-2);
}

.team-card-cta i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.team-card-clickable:hover .team-card-cta i {
    transform: translateX(4px);
}

/* Modal Styling */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-4) var(--space-5);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--gray-900);
}

.modal-body {
    padding: var(--space-5);
}

.modal-body p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.modal-body ul {
    margin-bottom: var(--space-3);
}

.modal-body li {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-1);
}

.team-modal-photo {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    margin-bottom: var(--space-3);
    box-shadow: var(--shadow-md);
}

.team-modal-title {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-body {
        padding: var(--space-4);
    }
    
    .team-modal-photo {
        max-width: 150px;
    }
}
