/* StartEd Advisors Custom Styles */

:root {
    --primary-color: #64748b;
    --primary-hover: #475569;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --zinc-50: #fafafa;
    --zinc-100: #f4f4f5;
    --zinc-200: #e4e4e7;
    --zinc-300: #d4d4d8;
    --zinc-400: #a1a1aa;
    --zinc-500: #71717a;
    --zinc-600: #52525b;
    --zinc-700: #3f3f46;
    --zinc-800: #27272a;
    --zinc-900: #18181b;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--slate-700);
    background-color: #ffffff;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
}

/* 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(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--slate-700) !important;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    padding: 0.75rem 1.5rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(100, 116, 139, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--slate-100) 0%, var(--zinc-100) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23cbd5e1" fill-opacity="0.3"/></svg>') repeat;
    background-size: 50px 50px;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-ctas {
    margin-bottom: 3rem;
}

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

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

.exit-logos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.exit-item strong {
    color: var(--slate-900);
    font-weight: 600;
}

.exit-item span {
    color: var(--slate-600);
    font-size: 0.9rem;
}

.big-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--slate-800);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.market-label {
    font-size: 1.1rem;
    color: var(--slate-600);
    font-weight: 500;
}

/* Social Proof */
.social-proof {
    margin-top: 3rem;
}

.proof-tile {
    text-align: center;
    padding: 1rem;
}

.proof-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--slate-700);
    display: block;
}

.proof-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Priorities Bar */
.priorities-bar {
    background: linear-gradient(135deg, var(--slate-700) 0%, var(--slate-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(--slate-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-color);
    margin-bottom: 1rem;
}

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

.service-promise {
    color: var(--slate-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(--slate-700);
    position: relative;
    padding-left: 1.5rem;
}

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

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

.service-result small {
    color: var(--slate-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(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.kpi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-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(--slate-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(--slate-500);
}

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

.outcome-description {
    color: var(--slate-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(--slate-200);
}

.stat-tile h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-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(--slate-200);
    margin: 0 1rem;
}

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

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

.testimonial-author span {
    color: var(--slate-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(--slate-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(--slate-200);
    transition: all 0.3s ease;
}

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

.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(--slate-600);
    margin-bottom: 1rem;
}

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

.node-content p {
    font-size: 0.875rem;
    color: var(--slate-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(--slate-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-color);
    position: relative;
    transform: scale(1.05);
}

.pricing-card.featured {
    background: white !important;
    border: 2px solid var(--slate-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(--slate-900);
    margin-bottom: 0.5rem;
}

.pricing-title {
    font-size: 1.125rem;
    color: var(--slate-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(--slate-600);
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.cta-description {
    font-size: 1.25rem;
    opacity: 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-color) !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(--slate-200);
    padding: 1.5rem 2rem;
}

.modal-body {
    padding: 2rem;
}

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

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

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

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    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-color);
    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(--slate-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(--slate-900);
    margin-bottom: 0.5rem;
}

.case-study-result {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-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(--slate-50);
}

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

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

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

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

.case-study-points li::before {
    content: '✓';
    color: var(--slate-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(--slate-50);
    border-radius: 8px;
}

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

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

.stat-item small {
    color: var(--slate-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(--slate-50), rgba(255, 255, 255, 0.8));
    border: 2px solid var(--slate-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(--slate-300);
}

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

.flywheel-center p {
    font-size: 0.9rem;
    color: var(--slate-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(--slate-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(--slate-600);
}

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

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

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

.flywheel-arrow {
    position: absolute;
    width: 2px;
    background: var(--slate-400);
    transform-origin: center;
}

.flywheel-arrow::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid var(--slate-400);
}

.flywheel-description {
    font-size: 1.1rem;
    color: var(--slate-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(--slate-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(--slate-600);
}

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

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

.market-stat-description {
    color: var(--slate-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(--slate-200);
    max-width: 900px;
    margin: 0 auto;
}

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

.market-insight p {
    font-size: 1.2rem;
    color: var(--slate-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(--slate-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(--slate-400);
}

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

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

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

.team-member-description {
    font-size: 0.9rem;
    color: var(--slate-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(--slate-700);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.team-member-highlights li::before {
    content: '✓';
    color: var(--slate-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(--slate-200);
    max-width: 800px;
    margin: 0 auto;
}

.team-cta p {
    font-size: 1.1rem;
    color: var(--slate-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(--slate-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(--slate-600);
}

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

.platform-feature-card p {
    color: var(--slate-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(--slate-700);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.feature-highlights li::before {
    content: '→';
    color: var(--slate-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(--slate-200);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.platform-cta p {
    font-size: 1.1rem;
    color: var(--slate-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(--slate-200);
}

/* Dashboard Top Bar */
.dashboard-topbar {
    background: white;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--slate-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(--slate-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(--slate-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(--slate-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(--slate-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(--slate-200);
}

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

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

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--slate-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(--slate-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(--slate-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(--slate-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(--slate-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(--slate-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(--slate-800);
    margin: 0 0 0.5rem;
}

.iq-module-card p {
    font-size: 0.85rem;
    color: var(--slate-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(--slate-600);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--slate-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(--slate-200);
}

.last-sync {
    font-size: 0.85rem;
    color: var(--slate-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(--slate-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(--slate-800);
    margin-bottom: 0.25rem;
}

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

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

.file-actions i {
    color: var(--slate-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(--slate-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(--slate-700);
    margin-bottom: 0.25rem;
}

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

/* IQ Modules List */
.iq-modules-list {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--slate-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(--slate-50);
}

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

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

.iq-feature span {
    font-size: 0.8rem;
    color: var(--slate-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(--slate-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(--slate-600);
}

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

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

.fund-description {
    font-size: 1.1rem;
    color: var(--slate-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(--slate-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(--slate-800);
    margin-bottom: 0.5rem;
}

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

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

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

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

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