/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --success-color: #10b981;
    --background: #0f172a;
    --surface: #1e293b;
    --surface-light: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --accent: #3b82f6;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

/* Password Overlay */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.password-container {
    text-align: center;
    max-width: 500px;
    padding: 40px;
}

.logo-section {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    width: 240px;
    height: auto;
    margin-bottom: 20px;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-svg {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.tagline {
    font-size: 18px;
    color: var(--text-secondary);
    animation: logoFloat 3s ease-in-out infinite;
}

.password-form {
    background: var(--surface);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.password-form h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.password-form p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.password-form input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid var(--surface-light);
    border-radius: 10px;
    background: var(--background);
    color: var(--text-primary);
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.password-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.password-form button {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
    }
}

.password-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: none;
}

.error-message {
    color: #ef4444;
    margin-top: 15px;
    font-size: 14px;
}

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-light);
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0;
    height: auto;
    min-height: 64px;
    overflow: visible;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    height: auto;
    min-height: 40px;
    position: relative;
    z-index: 1000;
}

.nav-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 4px 0;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 200px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    width: auto;
    flex: 0 1 auto;
    max-width: none;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2px;
    overflow: visible;
    white-space: nowrap;
}

.nav-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 95px;
    min-width: 95px;
    max-width: 95px;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    background-color: transparent;
    border: 0 none;
    border-bottom: 3px solid transparent;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: clip;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.nav-links a:hover {
    color: #e2e8f0;
    background-color: rgba(59, 130, 246, 0.15);
    border-bottom-color: transparent;
}

.nav-links a:active,
.nav-links a:focus,
.nav-links a:visited {
    outline: 0 none;
    color: #94a3b8;
}

.nav-links a.active {
    color: #ffffff;
    font-weight: 600;
    background-color: rgba(96, 165, 250, 0.3);
    border-bottom: 3px solid #60a5fa;
}

/* Navigation CTA Button */
.nav-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    margin-left: auto;
    border: none;
    cursor: pointer;
}

.nav-cta-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
}

/* Navigation Sign Out Button */
.nav-signout-button {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.3);
    margin-left: auto;
    margin-right: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-signout-button:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-signout-button.visible {
    display: inline-flex;
}

/* Mobile CTA Link - hidden by default, shown in mobile menu */
.mobile-cta-link {
    display: none !important;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.cta-button.secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 4px;
    cursor: pointer;
    padding: 12px;
    margin: 0;
    position: relative;
    z-index: 10001;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: rgba(59, 130, 246, 0.3);
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0.2;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.98) 0%, rgba(118, 75, 162, 0.98) 100%);
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
    width: 280px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
    margin-bottom: 15px;
}

.stat-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(118, 75, 162, 0.98);
}

.stat:hover .stat-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

/* Value Proposition */
.value-prop {
    background: var(--surface);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--background);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--surface-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-2deg);
    }
    75% {
        transform: translateY(-5px) rotate(2deg);
    }
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Segments Section */
.segments-section {
    background: var(--background);
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.segment-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--surface-light);
}

.segment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.segment-header h3 {
    font-size: 24px;
    flex: 1;
}

.segment-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.segment-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.segment-stat {
    background: var(--background);
    padding: 20px;
    border-radius: 12px;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-desc {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

.segment-details h4 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: var(--text-primary);
}

.segment-details ul {
    list-style: none;
    padding: 0;
}

.segment-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}

.segment-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Calculator Section */
.calculator-section {
    background: var(--surface);
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--background);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--surface-light);
}

.calculator-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--surface-light);
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.calculator-content {
    display: none;
}

.calculator-content.active {
    display: block;
}

.calc-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.input-group input {
    padding: 12px 16px;
    font-size: 16px;
    background: var(--surface);
    border: 2px solid var(--surface-light);
    border-radius: 10px;
    color: var(--text-primary);
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.calc-results {
    background: var(--surface);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--accent);
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--surface-light);
}

.result-row:last-child {
    border-bottom: none;
}

.result-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.result-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.result-value.highlight {
    color: var(--accent);
    font-size: 28px;
}

.result-row.roi {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--accent);
}

/* Financials Section */
.financials-section {
    background: var(--background);
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.chart-container {
    background: var(--surface);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--surface-light);
}

.chart-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.financial-table {
    background: var(--surface);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--surface-light);
}

.financial-table h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead tr {
    background: var(--background);
}

th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--surface-light);
}

td {
    padding: 20px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--surface-light);
}

tr.divider td {
    padding-top: 30px;
}

tbody tr:hover {
    background: var(--background);
}

/* Unit Economics */
.unit-economics {
    background: var(--surface);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.metric-card {
    background: var(--background);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--surface-light);
    transition: transform 0.3s, border-color 0.3s;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.metric-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.metric-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.metric-benchmark {
    font-size: 14px;
    color: var(--text-muted);
}

.economics-table {
    background: var(--background);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--surface-light);
}

.economics-table h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.table-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

/* Investment Section */
.investment-section {
    background: var(--background);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.investment-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--surface-light);
}

.investment-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.investment-amount {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.investment-details h4 {
    font-size: 20px;
    margin: 25px 0 15px;
}

.investment-details ul {
    list-style: none;
    padding: 0;
}

.investment-details li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.investment-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.valuation {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin: 15px 0;
}

.year1-budget {
    background: var(--surface);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--surface-light);
}

.year1-budget h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.budget-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.budget-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: var(--background);
    border-radius: 10px;
}

.budget-category {
    font-size: 16px;
    color: var(--text-secondary);
}

.budget-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.budget-item.total {
    background: var(--surface-light);
    margin-top: 15px;
}

.budget-item.revenue {
    background: rgba(16, 185, 129, 0.1);
}

.budget-item.revenue .budget-amount {
    color: var(--success-color);
}

.budget-item.burn {
    background: rgba(239, 68, 68, 0.1);
}

.budget-item.burn .budget-amount {
    color: #ef4444;
}

.budget-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

/* Competitive Section */
.competitive-section {
    background: var(--surface);
}

/* Product Timeline Section */
.product-timeline-section {
    background: var(--surface);
}

.product-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.product-phase-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 16px;
    padding: 0;
    border: 2px solid var(--surface-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-phase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.product-phase-card.phase-1a {
    border-color: rgba(59, 130, 246, 0.4);
}

.product-phase-card.phase-1b {
    border-color: rgba(139, 92, 246, 0.4);
}

.product-phase-card.phase-1c {
    border-color: rgba(236, 72, 153, 0.4);
}

.product-phase-card.phase-2 {
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(16, 64, 48, 0.4) 100%);
}

.phase-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.phase-2-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.phase-timeline {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    padding: 20px 110px 20px 25px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--surface-light);
    min-height: 60px;
    box-sizing: border-box;
}

.product-phase-card.phase-2 .phase-timeline {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
}

.phase-header {
    padding: 25px 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 110px;
}

.phase-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    min-height: 52px;
}

.phase-bots {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.phase-details {
    padding: 0 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.phase-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
    border-left: 3px solid rgba(59, 130, 246, 0.5);
}

.product-phase-card.phase-1b .phase-detail-item {
    border-left-color: rgba(139, 92, 246, 0.5);
}

.product-phase-card.phase-1c .phase-detail-item {
    border-left-color: rgba(236, 72, 153, 0.5);
}

.product-phase-card.phase-2 .phase-detail-item {
    border-left-color: rgba(16, 185, 129, 0.5);
}

.phase-detail-item.highlight {
    background: rgba(16, 185, 129, 0.15);
    border-left-color: var(--success-color);
}

.detail-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.detail-value {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive Product Timeline */
@media (max-width: 1400px) {
    .product-timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-timeline-grid {
        grid-template-columns: 1fr;
    }
}

/* Competitive Grid - Fixed to 4 columns */
.competitive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.competitive-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    padding: 35px;
    border-radius: 16px;
    border: 2px solid var(--surface-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.competitive-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.competitive-card h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: var(--accent);
    font-weight: 600;
}

.positioning-competitors {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 15px;
    min-height: 32px;
}

.positioning-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.positioning-details p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

.positioning-details strong {
    color: var(--text-primary);
}

/* Responsive Competitive Grid */
@media (max-width: 1200px) {
    .competitive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .competitive-grid {
        grid-template-columns: 1fr;
    }
}

.validation-section {
    background: var(--background);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--surface-light);
}

.validation-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.validation-grid {
    display: grid;
    gap: 20px;
}

.validation-source {
    padding: 20px;
    background: var(--surface);
    border-radius: 10px;
    color: var(--text-secondary);
}

.validation-source strong {
    color: var(--text-primary);
}

/* Path Forward */
.path-forward {
    background: var(--background);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--secondary-color) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 200px;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    align-self: center;
}

.timeline-content {
    flex: 1;
    background: var(--surface);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--surface-light);
}

.timeline-metric {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--surface);
    padding: 30px 0;
    border-top: 1px solid var(--surface-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.footer-section h4 {
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.footer-section p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 13px;
}

.footer-section p a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 5px;
}

.footer-industry-grid a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
    padding: 4px 0;
}

.footer-industry-grid a:hover {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .nav-logo-img {
        width: 160px;
    }

    .nav-links {
        gap: 2px;
        max-width: 850px;
    }

    .nav-links a {
        font-size: 12px;
        width: 95px;
        min-width: 95px;
        max-width: 95px;
    }
}

@media (max-width: 950px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-cta-button {
        display: none !important;
    }

    .nav-signout-button {
        width: auto;
        margin: 10px 20px 0 20px;
        padding: 12px 20px;
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: calc(64px + 16px);
        right: 0;
        width: min(280px, 80vw);
        max-width: none;
        height: -webkit-calc(100vh - 80px);
        height: calc(100vh - 80px);
        background: rgba(15, 23, 42, 0.98);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
        padding: 30px 0;
        border-left: 1px solid var(--surface-light);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        will-change: transform;
        z-index: 999;
    }

    .nav-links.active {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .nav-links a {
        width: 100%;
        min-width: unset;
        max-width: unset;
        height: auto;
        min-height: 48px;
        max-height: unset;
        padding: 20px 30px;
        border-bottom: 1px solid var(--surface-light);
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        justify-content: flex-start;
    }

    .nav-links a:hover {
        background: var(--surface-light);
        padding-left: 40px;
    }

    .nav-links a.active {
        border-bottom: 1px solid var(--surface-light);
        border-left: 4px solid #60a5fa;
        padding-left: 26px;
    }

    .nav-links a.active:hover {
        padding-left: 36px;
    }

    .mobile-cta-link {
        display: flex !important;
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        color: white !important;
        font-weight: 700;
        margin: 20px 20px 10px 20px;
        border-radius: 8px;
        text-align: center;
        border: none;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .mobile-cta-link:hover {
        background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
        box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
        padding-left: 30px !important;
    }

    .nav-logo-img {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .navbar {
        padding: 15px 0;
    }

    .nav-links {
        top: calc(64px + 30px);
        height: -webkit-calc(100vh - 94px);
        height: calc(100vh - 94px);
    }

    .nav-logo-img {
        width: 120px;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .hero-stats {
        gap: 30px;
        flex-direction: column;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-tooltip {
        width: 240px;
        font-size: 13px;
        padding: 14px 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .value-card {
        padding: 30px;
    }

    .value-card h3 {
        font-size: 20px;
    }

    .value-card p {
        font-size: 15px;
    }

    .segments-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .segment-card {
        padding: 30px;
    }

    .segment-header {
        flex-direction: column;
        gap: 15px;
    }

    .segment-header h3 {
        font-size: 20px;
    }

    .segment-badge {
        align-self: flex-start;
    }

    .stat-value {
        font-size: 22px;
    }

    .calculator-container {
        padding: 25px;
    }

    .calculator-tabs {
        flex-direction: column;
        gap: 0;
    }

    .tab-btn {
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid var(--surface-light);
        border-left: 3px solid transparent;
    }

    .tab-btn.active {
        border-bottom-color: var(--surface-light);
        border-left-color: var(--accent);
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }

    .chart-container {
        padding: 20px;
    }

    .financial-table,
    .economics-table {
        padding: 25px;
        overflow-x: auto;
    }

    .financial-table h3,
    .economics-table h3 {
        font-size: 22px;
    }

    table {
        font-size: 14px;
    }

    th, td {
        padding: 12px 10px;
    }

    .metric-card {
        padding: 30px;
    }

    .metric-value {
        font-size: 36px;
    }

    .metric-label {
        font-size: 16px;
    }

    .investment-grid {
        grid-template-columns: 1fr;
    }

    .investment-card {
        padding: 30px;
    }

    .investment-card h3 {
        font-size: 22px;
    }

    .investment-amount {
        font-size: 36px;
    }

    .year1-budget {
        padding: 25px;
    }

    .year1-budget h3 {
        font-size: 22px;
    }

    .budget-item {
        padding: 15px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .budget-category {
        font-size: 14px;
    }

    .budget-amount {
        font-size: 18px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        padding-left: 60px;
    }

    .timeline-year {
        text-align: left;
        font-size: 20px;
    }

    .timeline-metric {
        font-size: 26px;
    }

    .timeline-content {
        padding: 20px;
    }

    .password-container {
        padding: 20px;
    }

    .logo-img {
        width: 180px;
    }

    .password-form {
        padding: 30px 20px;
    }

    .password-form h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .nav-logo-img {
        width: 100px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .segments-grid {
        grid-template-columns: 1fr;
    }

    .segment-stats {
        grid-template-columns: 1fr;
    }

    .calc-inputs {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

/* Evolution Section */
.evolution-section {
    background: var(--surface);
}

/* Opportunity Section Styling */
.opportunity-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.opportunity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.opportunity-section .container {
    position: relative;
    z-index: 1;
}

.opportunity-section .section-title {
    font-size: 48px;
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.opportunity-section .section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 60px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

/* Responsive Comparison Grid */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
}

.comparison-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--surface-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.3) 0%, rgba(148, 163, 184, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-card:hover::before {
    opacity: 1;
}

.comparison-card.before {
    border-color: rgba(239, 68, 68, 0.3);
}

.comparison-card.after {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(16, 64, 48, 0.3) 100%);
}

.comparison-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-card.before .comparison-label {
    color: rgba(239, 68, 68, 0.9);
}

.comparison-card.after .comparison-label {
    color: var(--success-color);
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--surface-light);
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-item .label {
    font-size: 14px;
    color: var(--text-secondary);
}

.comparison-item .value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.comparison-item .value.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-item .growth {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 600;
    margin-left: 10px;
}

.comparison-arrow {
    font-size: 48px;
    color: var(--accent);
    font-weight: 300;
    animation: arrowPulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(5px) scale(1.1);
        opacity: 1;
    }
}

.insight-box {
    background: var(--background);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.insight-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent);
}

.insight-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Solution Section */
.solution-section {
    background: var(--surface);
}

.solution-subsection-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 15px;
}

.solution-subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--success-color) 100%);
    border-radius: 2px;
}

.solution-metrics-section {
    margin: 60px 0 80px;
}

.solution-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.solution-metric-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid var(--surface-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-metric-card:hover::before {
    opacity: 1;
}

.solution-metric-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.solution-metric-card.highlight {
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(16, 64, 48, 0.4) 100%);
}

.solution-metric-card.highlight:hover {
    border-color: var(--success-color);
}

.solution-metric-icon {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.solution-metric-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.solution-metric-card.highlight .solution-metric-value {
    color: var(--success-color);
}

.solution-metric-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.solution-metric-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.solution-features-section {
    margin: 60px 0;
}

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-feature-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-radius: 16px;
    padding: 35px;
    border: 2px solid var(--surface-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.solution-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.solution-feature-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.solution-feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.solution-feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive adjustments for solution section */
@media (max-width: 1200px) {
    .solution-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solution-metrics-grid {
        grid-template-columns: 1fr;
    }

    .solution-features-grid {
        grid-template-columns: 1fr;
    }

    .solution-subsection-title {
        font-size: 24px;
    }
}

/* Market Section */
.market-section {
    background: var(--background);
}

/* Market Phases Grid */
.market-phases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0 80px;
    align-items: stretch;
}

.market-phase-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 20px;
    padding: 0;
    border: 2px solid var(--surface-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.market-phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.market-phase-card.phase-1 {
    border-color: rgba(59, 130, 246, 0.4);
}

.market-phase-card.phase-1:hover {
    border-color: rgba(59, 130, 246, 0.7);
}

.market-phase-card.phase-2 {
    border-color: rgba(16, 185, 129, 0.4);
}

.market-phase-card.phase-2:hover {
    border-color: rgba(16, 185, 129, 0.7);
}

.market-phase-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    padding: 30px 35px;
    border-bottom: 2px solid var(--surface-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.market-phase-card.phase-2 .market-phase-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
}

.market-phase-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.market-phase-timeline {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.market-phase-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.market-phase-tam {
    text-align: center;
    padding: 25px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
}

.market-phase-card.phase-2 .market-phase-tam {
    background: rgba(16, 185, 129, 0.1);
}

.tam-value {
    font-size: 52px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.market-phase-card.phase-2 .tam-value {
    color: var(--success-color);
}

.tam-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.market-phase-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.market-phase-card.phase-2 .breakdown-item {
    border-left-color: var(--success-color);
}

.breakdown-label {
    font-size: 15px;
    color: var(--text-secondary);
}

.breakdown-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.market-phase-strategy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-radius: 12px;
    text-align: center;
}

.strategy-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.strategy-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}

.market-phase-card.phase-2 .strategy-value {
    color: var(--success-color);
}

/* Market Breakdown Section */
.market-breakdown-section {
    margin: 80px 0 60px;
}

.market-breakdown-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.market-breakdown-item {
    background: var(--surface);
    border-radius: 12px;
    padding: 25px 30px;
    border: 1px solid var(--surface-light);
    transition: all 0.3s ease;
}

.market-breakdown-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.breakdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.breakdown-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.breakdown-tam {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.breakdown-bar {
    width: 100%;
    height: 12px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 6px;
    overflow: hidden;
}

.breakdown-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1s ease;
    position: relative;
}

.breakdown-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.breakdown-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
    font-style: italic;
}

/* Responsive Market Section */
@media (max-width: 968px) {
    .market-phases-grid {
        grid-template-columns: 1fr;
    }
}

.market-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.market-stat-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--surface-light);
    transition: transform 0.3s;
}

.market-stat-card:hover {
    transform: translateY(-5px);
}

.market-stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.market-stat-value {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.market-stat-label {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Segments Breakdown */
.segments-breakdown {
    background: var(--surface);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 80px;
}

.segments-breakdown h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.segment-bars {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.segment-bar {
    position: relative;
}

.segment-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.segment-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.segment-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.segment-bar-fill {
    height: 12px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    margin-bottom: 8px;
    animation: fillBar 1.5s ease-out;
}

@keyframes fillBar {
    from { width: 0%; }
}

.segment-bar-meta {
    font-size: 14px;
    color: var(--text-muted);
}

/* Market Drivers */
.market-drivers {
    margin-top: 60px;
}

.market-drivers h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.driver-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--surface-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

.driver-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.driver-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.driver-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.driver-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Business Model Section */
.model-section {
    background: var(--surface);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.channel-card {
    background: var(--background);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--surface-light);
    position: relative;
}

.channel-card.primary {
    border-color: var(--accent);
}

.channel-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.channel-card.secondary .channel-badge {
    background: var(--surface-light);
}

.channel-card h3 {
    font-size: 28px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.channel-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.detail-section ul {
    list-style: none;
    padding: 0;
}

.detail-section li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-secondary);
    font-size: 15px;
}

.detail-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.detail-section.multiplier {
    background: rgba(102, 126, 234, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--accent);
}

.multiplier-text {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.multiplier-formula {
    font-size: 18px;
    color: var(--accent);
    font-weight: 700;
}

/* Unit Economics */
.unit-economics {
    background: var(--background);
    border-radius: 20px;
    padding: 50px;
    margin-top: 60px;
}

.unit-economics h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

/* Pricing Suites Grid */
.pricing-suites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.pricing-suite-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    border: 2px solid var(--surface-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-suite-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.pricing-suite-card.highlight {
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(16, 64, 48, 0.4) 100%);
}

.pricing-suite-card.highlight:hover {
    border-color: var(--success-color);
}

.suite-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.suite-pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 10px 0;
}

.suite-price {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-suite-card.highlight .suite-price {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.suite-period {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    align-self: flex-end;
    padding-bottom: 8px;
}

.suite-fee {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 8px;
}

.pricing-suite-card.highlight .suite-fee {
    color: var(--success-color);
    background: rgba(16, 185, 129, 0.15);
}

.suite-acv {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsive Pricing Suites */
@media (max-width: 1200px) {
    .pricing-suites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pricing-suites-grid {
        grid-template-columns: 1fr;
    }
}

/* Value Pricing Grid - Fixed 4 columns */
.value-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.value-pricing-grid .driver-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 2px solid var(--surface-light);
    transition: all 0.3s ease;
}

.value-pricing-grid .driver-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

/* Responsive Value Pricing Grid */
@media (max-width: 1200px) {
    .value-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .value-pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Exceptional Metrics Section */
.metrics-exceptional-section {
    margin-top: 80px;
}

.exceptional-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.exceptional-metric-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 16px;
    padding: 30px;
    border: 2px solid var(--surface-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exceptional-metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--surface-light);
}

.metric-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.metric-header .metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-value-range {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.metric-value-range.secondary {
    font-size: 22px;
    color: var(--text-secondary);
    margin-top: -5px;
}

.metric-detail {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.metric-explanation {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 10px;
    border-top: 1px solid rgba(51, 65, 85, 0.5);
}

/* Responsive Exceptional Metrics */
@media (max-width: 1200px) {
    .exceptional-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .exceptional-metrics-grid {
        grid-template-columns: 1fr;
    }

    .metric-value-range {
        font-size: 24px;
    }

    .metric-value-range.secondary {
        font-size: 20px;
    }
}

/* Team Members Grid */
.team-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.team-member-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 20px;
    padding: 0;
    border: 2px solid var(--surface-light);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.team-member-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.team-member-photo img {
    max-width: 180px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-photo img {
    transform: scale(1.08);
}

.team-member-info {
    padding: 25px 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--surface-light);
}

.team-member-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.team-member-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.team-member-email {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.team-member-email:hover {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.25);
}

.team-member-details {
    padding: 25px 30px;
}

.team-member-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-member-details ul li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.team-member-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Team Members */
@media (max-width: 1200px) {
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-members-grid {
        grid-template-columns: 1fr;
    }

    .team-member-photo {
        height: 200px;
    }

    .team-member-photo img {
        max-width: 160px;
        max-height: 160px;
    }
}

.economics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.economics-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 2px solid var(--surface-light);
    transition: all 0.3s;
}

.economics-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.economics-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.economics-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.economics-value {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.economics-benchmark {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.economics-note {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 600;
}

/* Competitive Positioning */
.positioning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.positioning-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--surface-light);
}

.positioning-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.positioning-competitors {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
}

.positioning-details p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

/* White Space */
.white-space {
    background: var(--background);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid var(--accent);
}

.white-space h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--accent);
}

.white-space-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.white-space-diagram {
    position: relative;
    width: 100%;
    height: 400px;
    border: 2px solid var(--surface-light);
    border-radius: 10px;
}

.diagram-axis {
    position: absolute;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.diagram-axis.vertical {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.diagram-axis.horizontal-left {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.diagram-axis.horizontal-right {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.diagram-center {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.diagram-dot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.dot-label {
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.white-space-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.white-space-text ul {
    list-style: none;
    padding: 0;
}

.white-space-text li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-secondary);
    font-size: 15px;
}

.white-space-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

/* Investment Section Enhancements */
.funding-stage-header {
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
}

.funding-stage-header:first-of-type {
    margin-top: 0;
}

.funding-stage-header.series-a {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--surface-light);
}

.stage-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.stage-badge.seed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.stage-badge.series-a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.funding-stage-header h3 {
    font-size: 32px;
    color: var(--text-primary);
    margin: 0;
}

.investment-card.seed {
    border: 2px solid #10b981;
}

.seed-objectives {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.objective-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.objective-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.objective-text {
    flex: 1;
}

.objective-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 16px;
}

.objective-text p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.seed-success {
    margin-top: 30px;
    padding: 25px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid #10b981;
}

.seed-success h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.seed-success ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seed-success li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-secondary);
    font-size: 15px;
}

.seed-success li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.funds-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.fund-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--background);
    border-radius: 12px;
    border: 1px solid var(--surface-light);
}

.fund-category {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fund-icon {
    font-size: 24px;
}

.fund-label {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

.fund-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

/* Returns Table */
.returns-table {
    margin-top: 25px;
}

.returns-header,
.returns-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px;
    align-items: center;
}

.returns-header {
    background: var(--surface-light);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.returns-row {
    background: var(--background);
    border-radius: 10px;
    border: 1px solid var(--surface-light);
    margin-bottom: 8px;
}

.returns-row.base {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid var(--accent);
}

.return-value {
    font-weight: 700;
    color: var(--success-color);
}

.return-value.highlight {
    font-size: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.returns-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* Milestones */
.milestones {
    margin-top: 60px;
}

.milestones h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.milestone-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.milestone-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--secondary-color) 100%);
}

.milestone-item {
    display: flex;
    gap: 40px;
    position: relative;
}

.milestone-year {
    flex: 0 0 200px;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    text-align: right;
}

.milestone-content {
    flex: 1;
    background: var(--surface);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--surface-light);
}

.milestone-metric {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.milestone-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Win Section */
.why-win-section {
    background: var(--background);
}

.win-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.win-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--surface-light);
    position: relative;
    transition: all 0.3s;
}

.win-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.win-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.win-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    padding-right: 60px;
}

.win-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card,
.segment-card,
.metric-card,
.competitive-card,
.driver-card,
.win-card {
    animation: fadeIn 0.6s ease-out;
}

/* Appendix Section */
.appendix-section {
    background: var(--surface);
}

.appendix-intro {
    text-align: center;
    margin-bottom: 50px;
}

.appendix-intro p {
    font-size: 16px;
    color: var(--text-secondary);
}

.appendix-category {
    margin-bottom: 60px;
}

.appendix-category h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--accent);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--surface-light);
}

.source-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.source-item {
    display: flex;
    gap: 20px;
    background: var(--background);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--surface-light);
    transition: all 0.3s;
}

.source-item:hover {
    border-color: var(--accent);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.source-number {
    flex: 0 0 50px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.source-content {
    flex: 1;
}

.source-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.source-content p:first-child {
    font-size: 15px;
    color: var(--text-primary);
}

.source-detail {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.source-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 8px;
}

.source-link:hover {
    color: var(--secondary-color);
    gap: 8px;
}

/* Source Quality Note */
.appendix-note {
    background: var(--background);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 2px solid var(--surface-light);
}

.appendix-note h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.quality-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tier-item {
    background: var(--surface);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--surface-light);
}

.tier-item h4 {
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 700;
}

.tier-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.tier-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* Appendix Footer */
.appendix-footer {
    text-align: center;
    padding: 30px;
    background: var(--background);
    border-radius: 15px;
    border: 1px solid var(--surface-light);
}

.appendix-footer p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.appendix-footer p:last-child {
    margin-bottom: 0;
}

/* Appendix Data Sources Styling */
.appendix-section {
    margin-bottom: 80px;
    background: var(--background);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--surface-light);
}

.appendix-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.appendix-subsection {
    margin-bottom: 50px;
}

.appendix-subsection:last-child {
    margin-bottom: 0;
}

.appendix-subsection-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--success-color);
}

.appendix-reference-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid var(--surface-light);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.appendix-reference-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.reference-category {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.reference-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reference-list li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.reference-list li:last-child {
    margin-bottom: 0;
}

.reference-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 18px;
    font-weight: 700;
}

.reference-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.reference-list ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 12px;
}

.reference-list ul li {
    font-size: 14px;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.reference-list ul li::before {
    content: '•';
    color: var(--accent);
    font-size: 16px;
}

/* SVG Icon System */
.icon-svg {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.icon-svg svg {
    display: block;
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    shape-rendering: geometricPrecision;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Icon size variants */
.icon-svg.size-sm {
    width: 24px;
    height: 24px;
}

.icon-svg.size-md {
    width: 32px;
    height: 32px;
}

.icon-svg.size-lg {
    width: 48px;
    height: 48px;
}

/* Icon animations */
@-webkit-keyframes iconFloat {
    0%, 100% {
        -webkit-transform: translateY(0px) rotate(0deg);
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-8px) rotate(2deg);
        transform: translateY(-8px) rotate(2deg);
    }
}

@keyframes iconFloat {
    0%, 100% {
        -webkit-transform: translateY(0px) rotate(0deg);
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-8px) rotate(2deg);
        transform: translateY(-8px) rotate(2deg);
    }
}

@-webkit-keyframes iconPulse {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes iconPulse {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@-webkit-keyframes iconRotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes iconRotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes iconBounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    75% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
}

@keyframes iconBounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    75% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
}

@-webkit-keyframes iconGlow {
    0%, 100% {
        -webkit-filter: drop-shadow(0 0 0px rgba(59, 130, 246, 0));
        filter: drop-shadow(0 0 0px rgba(59, 130, 246, 0));
    }
    50% {
        -webkit-filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
        filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
    }
}

@keyframes iconGlow {
    0%, 100% {
        -webkit-filter: drop-shadow(0 0 0px rgba(59, 130, 246, 0));
        filter: drop-shadow(0 0 0px rgba(59, 130, 246, 0));
    }
    50% {
        -webkit-filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
        filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
    }
}

/* Icon hover effects */
.icon-hover-scale {
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.icon-hover-scale:hover .icon-svg {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.icon-float .icon-svg {
    -webkit-animation: iconFloat 3s ease-in-out infinite;
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-pulse .icon-svg {
    -webkit-animation: iconPulse 2s ease-in-out infinite;
    animation: iconPulse 2s ease-in-out infinite;
}

.icon-rotate .icon-svg {
    -webkit-animation: iconRotate 20s linear infinite;
    animation: iconRotate 20s linear infinite;
}

.icon-bounce .icon-svg {
    -webkit-animation: iconBounce 2s ease-in-out infinite;
    animation: iconBounce 2s ease-in-out infinite;
}

.icon-glow .icon-svg {
    -webkit-animation: iconGlow 2s ease-in-out infinite;
    animation: iconGlow 2s ease-in-out infinite;
}

/* Icon colors */
.icon-blue {
    color: #3b82f6;
}

.icon-blue-light {
    color: #60a5fa;
}

.icon-gray {
    color: #94a3b8;
}

.icon-green {
    color: #10b981;
}

.icon-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Market stat icons - larger and animated */
.market-stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.market-stat-card .icon-svg {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

/* Driver icons - medium size with hover */
.driver-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.driver-card .icon-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

/* Fund icons */
.fund-icon {
    font-size: 24px;
}

.fund-category .icon-svg {
    width: 28px;
    height: 28px;
}

/* Scrolling animation for icons */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Print Styles */
@media print {
    .navbar,
    .password-overlay {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* Responsive - Appendix */
@media (max-width: 768px) {
    .source-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .source-number {
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    .appendix-category h3 {
        font-size: 22px;
    }

    .quality-tiers {
        grid-template-columns: 1fr;
    }

    .appendix-note {
        padding: 25px;
    }
}

/* Force prevent any layout shift on navigation */
.nav-links a * {
    padding: 0 !important;
    margin: 0 !important;
}

.nav-links a::before,
.nav-links a::after {
    display: none !important;
}

/* Current State Grid - Financials Page */
.current-state-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Responsive Current State Grid */
@media (max-width: 1200px) {
    .current-state-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .current-state-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .current-state-grid {
        grid-template-columns: 1fr;
    }
}

.current-state-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.current-state-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.state-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 12px;
}

.current-state-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.current-state-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Investment Terms Grid */
.investment-terms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Responsive Investment Terms Grid */
@media (max-width: 1200px) {
    .investment-terms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .investment-terms-grid {
        grid-template-columns: 1fr;
    }
}

.terms-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.terms-card:hover {
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.terms-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.terms-value {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Funds Allocation Grid */
.funds-allocation-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.allocation-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.allocation-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.allocation-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 12px;
}

.allocation-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.allocation-amount {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.allocation-percent {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
}

/* Responsive Funds Allocation Grid */
@media (max-width: 1200px) {
    .funds-allocation-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .funds-allocation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .funds-allocation-grid {
        grid-template-columns: 1fr;
    }
}

/* Success Criteria Section */
.success-criteria-section {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.success-criteria-section h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 35px;
    color: var(--text-primary);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.criteria-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.criteria-item:hover {
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.criteria-value {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.criteria-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Responsive Layouts for Financials */
@media (max-width: 1200px) {
    .current-state-grid,
    .funds-allocation-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .investment-terms-grid,
    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .current-state-grid,
    .funds-allocation-grid,
    .investment-terms-grid,
    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .terms-value {
        font-size: 36px;
    }

    .allocation-amount {
        font-size: 28px;
    }

    .criteria-value {
        font-size: 32px;
    }
}

/* GTM Strategy - Phase Cards */
.gtm-phases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gtm-phase-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 20px;
    padding: 40px 35px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.gtm-phase-card.phase-2 {
    border-color: rgba(16, 185, 129, 0.3);
}

.gtm-phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.gtm-phase-card.phase-2:hover {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.phase-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phase-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.gtm-phase-card.phase-2 .phase-badge {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    color: var(--success-color);
}

.phase-header h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    color: var(--text-primary);
}

.phase-timeline {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 600;
}

.phase-metrics {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.phase-metric {
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.metric-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.metric-value.highlight {
    font-size: 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-detail {
    font-size: 14px;
    color: var(--text-secondary);
}

/* GTM Timeline Section */
.gtm-timeline-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.5) 100%);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.gtm-timeline-section h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 35px;
    color: var(--text-primary);
}

.timeline-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.timeline-card {
    flex: 1;
    max-width: 240px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
}

.timeline-card.milestone {
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.timeline-quarter {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-card.milestone .timeline-quarter {
    color: var(--success-color);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 120px;
}

.timeline-metric {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    white-space: nowrap;
    min-height: 28px;
}

.timeline-detail {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    min-height: 21px;
}

.timeline-arrow {
    font-size: 32px;
    color: var(--accent);
    font-weight: 300;
    flex-shrink: 0;
}

/* Phase Detail Grid */
.phase-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.detail-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 35px;
}

.detail-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-primary);
    text-align: center;
}

/* Segments Table */
.segments-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.segment-row {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.segment-row.primary {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.08);
}

.segment-row:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

.segment-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: block;
}

.segment-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.segment-details span {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 14px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 6px;
    white-space: nowrap;
}

/* Channels Breakdown */
.channels-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.channel-item {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.channel-percent {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.channel-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.channel-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.channel-item ul li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.channel-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Industries Section */
.industries-section {
    margin-top: 40px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
}

.industries-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-primary);
    text-align: center;
}

.industries-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-phase {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.industry-years {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.industry-list {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
}

/* BPO Overview Grid */
.bpo-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.bpo-overview-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.bpo-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
}

.bpo-overview-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bpo-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bpo-detail-item {
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bpo-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.bpo-value {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.6;
}

.bpo-value.highlight {
    font-size: 22px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bpo-pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-row.total {
    border: 2px solid rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.08);
    padding: 22px 20px;
}

.pricing-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.pricing-value {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 700;
}

.pricing-value.highlight {
    font-size: 24px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive GTM Layouts */
@media (max-width: 1200px) {
    .gtm-phases-grid,
    .phase-detail-grid,
    .bpo-overview-grid {
        grid-template-columns: 1fr;
    }

    .timeline-cards {
        flex-direction: column;
    }

    .timeline-arrow {
        transform: rotate(90deg);
    }

    .bpo-card-icon {
        width: 60px;
        height: 60px;
    }

    .economics-icon {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .gtm-phase-card {
        padding: 30px 25px;
    }

    .phase-header h3 {
        font-size: 24px;
    }

    .metric-value {
        font-size: 20px;
    }

    .metric-value.highlight {
        font-size: 24px;
    }

    .timeline-card {
        max-width: 100%;
    }

    .detail-section {
        padding: 25px;
    }

    .segment-details {
        flex-direction: column;
        gap: 10px;
    }

    .industry-phase {
        flex-wrap: wrap;
        gap: 15px;
    }

    .industry-icon {
        width: 45px;
        height: 45px;
    }

    .bpo-card-icon {
        width: 55px;
        height: 55px;
    }

    .economics-icon {
        width: 50px;
        height: 50px;
    }

    .bpo-overview-card {
        padding: 30px 25px;
    }
}

/* Gross Margin Cards - Pricing Page */
.gross-margin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gross-margin-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gross-margin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.margin-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.margin-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.margin-header h3 {
    font-size: 26px;
    margin: 0 0 10px 0;
    color: var(--text-primary);
}

.margin-note {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.margin-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.margin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.margin-row:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(3px);
}

.margin-row.total {
    border: 2px solid rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.08);
    padding: 22px 20px;
    margin-top: 10px;
}

.margin-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 600;
}

.margin-value {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.margin-value.highlight {
    font-size: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.margin-row.total .margin-value.highlight {
    font-size: 28px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Pricing Layouts */
@media (max-width: 1200px) {
    .gross-margin-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gross-margin-card {
        padding: 30px 25px;
    }

    .margin-header h3 {
        font-size: 22px;
    }

    .margin-icon {
        width: 60px;
        height: 60px;
    }

    .margin-value {
        font-size: 18px;
    }

    .margin-value.highlight {
        font-size: 20px;
    }

    .margin-row.total .margin-value.highlight {
        font-size: 24px;
    }
}

/* Team Expansion Grid */
.team-expansion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.expansion-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.expansion-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.expansion-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
}

.expansion-quarter {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expansion-headcount {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.expansion-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Acquirer Grid */
.acquirer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.acquirer-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.acquirer-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.acquirer-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.acquirer-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.acquirer-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* BPO Value Grid */
.bpo-value-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.bpo-value-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.bpo-value-card:hover {
    transform: translateY(-5px);
    border-color: var(--success-color);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
}

.bpo-value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.bpo-value-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.bpo-value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Exit Scenarios Grid */
.exit-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.exit-scenario-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.exit-scenario-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.exit-scenario-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.exit-scenario-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.exit-scenario-header h3 {
    font-size: 22px;
    margin: 0;
    color: var(--text-primary);
}

.exit-scenario-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.exit-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.exit-metric:last-child {
    border-bottom: none;
}

.exit-metric.highlight {
    padding: 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.metric-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-value.highlight {
    font-size: 28px;
    background: linear-gradient(135deg, var(--accent), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Win Card Enhancements */
.win-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.win-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.win-number {
    flex-shrink: 0;
}

/* Revenue Charts Grid */
.revenue-charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.revenue-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Revenue Advantage Cards */
.revenue-advantage-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.revenue-advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.revenue-advantage-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.advantage-metric {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 25px;
    color: var(--accent);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.revenue-advantage-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Runway Cards */
.runway-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.runway-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.runway-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.runway-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.runway-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.runway-timeline {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.runway-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Layouts for Team Page */
@media (max-width: 1400px) {
    .team-expansion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .acquirer-grid,
    .bpo-value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .acquirer-grid,
    .bpo-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .runway-card,
    .revenue-advantage-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .team-expansion-grid,
    .acquirer-grid,
    .bpo-value-grid,
    .exit-scenarios-grid,
    .runway-grid,
    .revenue-charts-grid,
    .revenue-advantages-grid {
        grid-template-columns: 1fr;
    }

    .expansion-icon,
    .acquirer-icon,
    .bpo-value-icon,
    .exit-scenario-icon,
    .runway-icon,
    .advantage-icon {
        width: 55px;
        height: 55px;
    }

    .expansion-headcount {
        font-size: 28px;
    }

    .exit-scenario-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .exit-scenario-header h3 {
        font-size: 20px;
    }

    .metric-label {
        font-size: 14px;
    }

    .metric-value {
        font-size: 18px;
    }

    .metric-value.highlight {
        font-size: 24px;
    }

    .win-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .win-icon {
        width: 55px;
        height: 55px;
    }

    .runway-card h4,
    .revenue-advantage-card h4 {
        font-size: 20px;
    }

    .runway-card p,
    .revenue-advantage-card p {
        font-size: 15px;
    }

    .advantage-metric {
        font-size: 20px;
        padding: 8px 16px;
    }

    /* Chart containers on mobile */
    canvas {
        max-height: 300px !important;
    }

    .revenue-charts-grid > div,
    .revenue-advantages-grid > div {
        padding: 30px 20px;
    }

    /* Better mobile spacing for chart sections */
    .revenue-charts-grid {
        gap: 30px;
        margin-top: 30px;
    }

    .revenue-advantages-grid {
        gap: 25px;
    }

    /* GTM and Financials chart containers on mobile */
    #phase1SegmentChart,
    #phase2BPOChart,
    #profitabilityChart {
        max-height: 280px !important;
    }

    /* Mobile font adjustments for chart sections */
    .section h3 {
        font-size: 22px !important;
    }

    /* Better mobile spacing for all chart container sections */
    section > div > div[style*="padding: 40px"] {
        padding: 25px 20px !important;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    canvas {
        max-height: 250px !important;
    }

    #phase1SegmentChart,
    #phase2BPOChart,
    #profitabilityChart {
        max-height: 220px !important;
    }

    .section-title {
        font-size: 26px !important;
    }

    .section-subtitle {
        font-size: 15px !important;
    }

    section > div > div[style*="padding: 40px"] {
        padding: 20px 15px !important;
    }
}

/* Safari-Specific Compatibility Fixes */
@supports (-webkit-hyphens:none) {
    /* Safari 10.1+ specific fixes */

    /* Ensure transforms work properly */
    .navbar,
    .nav-links,
    .nav-links a {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    /* Fix flexbox alignment in Safari */
    .nav-container {
        min-height: 40px;
    }

    /* Fix backdrop-filter fallback for older Safari */
    .navbar {
        background: rgba(15, 23, 42, 0.98);
    }

    /* Ensure grid layouts render correctly */
    [class*="-grid"] {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    /* Fix chart canvas rendering */
    canvas {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Fix SVG icon rendering */
    .icon-svg {
        display: inline-block;
        overflow: visible;
    }

    .icon-svg svg {
        display: block;
        overflow: visible;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Ensure icon colors work properly */
    .icon-blue,
    .icon-blue-light,
    .icon-gray,
    .icon-green,
    .icon-accent {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Fix icon animations in Safari */
    .icon-float,
    .icon-pulse,
    .icon-rotate,
    .icon-bounce,
    .icon-glow {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
}
