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

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #1F4E79;
    --primary-light: #2d6a9f;
    --primary-dark: #163a5c;
    --accent: #c0392b;
    --success: #27ae60;
    --text: #1a1a2e;
    --text-light: #666;
    --bg: #f5f7fa;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

/* Navigation */
.nav {
    background: var(--primary);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 18pt;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 10pt;
    padding: 10px 18px;
    border-radius: 6px;
    transition: background 0.3s;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255,255,255,0.2);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 36pt;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero p {
    font-size: 14pt;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-metric {
    text-align: center;
}

.hero-metric .value {
    font-size: 28pt;
    font-weight: 700;
}

.hero-metric .label {
    font-size: 10pt;
    opacity: 0.8;
}

/* Page Hero (smaller) */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 28pt;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-hero p {
    font-size: 12pt;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section Cards */
.section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section h2 {
    font-size: 18pt;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
}

.section h3 {
    font-size: 13pt;
    font-weight: 600;
    color: var(--primary);
    margin: 25px 0 12px 0;
}

/* Grid Layouts */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.four-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* Metric Cards */
.metric-card {
    background: var(--bg);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.metric-card .value {
    font-size: 22pt;
    font-weight: 700;
    color: var(--primary);
}

.metric-card .label {
    font-size: 9pt;
    color: var(--text-light);
    margin-top: 5px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 10pt;
}

th {
    background: var(--primary);
    color: white;
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid #e8e8e8;
}

tr:nth-child(even) {
    background: var(--bg);
}

tr:hover {
    background: #e8f4f8;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 25px 30px;
    border-radius: 8px;
    margin: 20px 0;
}

/* Thesis Box */
.thesis-box {
    background: #f0f7ff;
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.thesis-box ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.thesis-box li {
    margin: 8px 0;
}

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

.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 9pt;
    font-weight: 600;
}

.badge-primary {
    background: #e8f4f8;
    color: var(--primary);
}

.badge-hot {
    background: #ffe8e8;
    color: var(--accent);
}

.badge-success {
    background: #e8f8e8;
    color: var(--success);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 11pt;
}

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

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

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

.btn-white:hover {
    background: var(--bg);
}

/* Document Cards */
.doc-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
}

.doc-card:hover {
    background: #e8f4f8;
    transform: translateY(-2px);
}

.doc-card .icon {
    padding: 12px;
    border-radius: 8px;
    color: white;
}

.doc-card .icon.pdf {
    background: var(--accent);
}

.doc-card .icon.excel {
    background: var(--success);
}

.doc-card .info h4 {
    font-size: 11pt;
    font-weight: 600;
    margin-bottom: 3px;
}

.doc-card .info p {
    font-size: 9pt;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e0e0e0;
}

.timeline-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.timeline-item .year {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.timeline-item .desc {
    font-size: 9pt;
    color: var(--text-light);
    margin-top: 10px;
}

/* Contact Box */
.contact-box {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.contact-box h3 {
    font-size: 18pt;
    margin-bottom: 10px;
    color: white;
}

.contact-box p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.contact-box .email {
    font-size: 14pt;
    font-weight: 600;
}

.contact-box a {
    color: rgba(255,255,255,0.8);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    opacity: 0.8;
    font-size: 10pt;
    margin: 5px 0;
}

.footer a {
    color: rgba(255,255,255,0.8);
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 10pt;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .two-col, .three-col, .four-col {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        gap: 20px;
    }

    .hero-metric .value {
        font-size: 20pt;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .timeline {
        flex-direction: column;
        gap: 20px;
    }

    .timeline:before {
        display: none;
    }
}

@media print {
    body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .nav { position: relative; }
}

/* ==========================================
   ENHANCED VISUAL COMPONENTS - Modern Corporate
   ========================================== */

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-in-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* Enhanced Hero with Floating Metrics */
.hero-enhanced {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1a3a5c 100%);
    color: white;
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-enhanced::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-enhanced h1 {
    font-size: 42pt;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.hero-enhanced .subtitle {
    font-size: 16pt;
    opacity: 0.9;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.hero-enhanced .tagline {
    font-size: 12pt;
    opacity: 0.85;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

/* Floating Metric Cards in Hero */
.hero-metric-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
}

.hero-metric-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-metric-card .value {
    font-size: 24pt;
    font-weight: 700;
}

.hero-metric-card .label {
    font-size: 9pt;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Gradient Accent Cards */
.gradient-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(31,78,121,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gradient-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.gradient-card-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.gradient-card-primary h3,
.gradient-card-primary h4 {
    color: white;
}

/* Competitor Cards */
.competitor-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.competitor-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(31,78,121,0.05) 50%);
}

.competitor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.competitor-card.competitor-weak {
    border-left-color: #e74c3c;
}

.competitor-card.competitor-future {
    border-left-color: #f39c12;
}

.competitor-card.competitor-opportunity {
    border-left-color: #27ae60;
}

.competitor-card h4 {
    font-size: 14pt;
    color: var(--primary);
    margin-bottom: 10px;
}

.competitor-card .meta {
    font-size: 10pt;
    color: var(--text-light);
    margin-bottom: 15px;
}

.competitor-card ul {
    margin: 0;
    padding-left: 18px;
    font-size: 10pt;
}

.competitor-card li {
    margin: 6px 0;
}

/* Visual Timeline Component */
.competitive-timeline {
    position: relative;
    padding: 40px 0;
    margin: 30px 0;
}

.competitive-timeline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, #e0e0e0 50%);
    transform: translateY(-50%);
    border-radius: 2px;
}

.timeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-node {
    text-align: center;
    flex: 1;
    position: relative;
}

.timeline-node .node-marker {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-weight: 700;
    font-size: 12pt;
    box-shadow: 0 4px 15px rgba(31,78,121,0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.timeline-node:hover .node-marker {
    transform: scale(1.1);
}

.timeline-node.node-future .node-marker {
    background: #e0e0e0;
    color: var(--text-light);
    box-shadow: none;
}

.timeline-node.node-highlight .node-marker {
    background: var(--success);
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
}

.timeline-node .node-label {
    font-size: 10pt;
    color: var(--text);
    font-weight: 600;
}

.timeline-node .node-desc {
    font-size: 9pt;
    color: var(--text-light);
    margin-top: 5px;
}

/* Enhanced Tables with Sticky Headers */
.table-enhanced {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 10pt;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.table-enhanced thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.table-enhanced th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-align: left;
    padding: 14px 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 9pt;
    letter-spacing: 0.5px;
}

.table-enhanced td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.table-enhanced tr:nth-child(even) {
    background: #fafbfc;
}

.table-enhanced tr:hover td {
    background: #e8f4f8;
}

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

/* Gap Matrix Table */
.gap-matrix {
    width: 100%;
    border-collapse: collapse;
    font-size: 10pt;
    margin: 20px 0;
}

.gap-matrix th {
    background: var(--primary);
    color: white;
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
}

.gap-matrix th:first-child {
    text-align: left;
}

.gap-matrix td {
    padding: 12px 10px;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
}

.gap-matrix td:first-child {
    text-align: left;
    font-weight: 500;
}

.gap-matrix .gap-yes {
    color: var(--success);
    font-weight: 600;
}

.gap-matrix .gap-no {
    color: #ccc;
}

.gap-matrix .gap-opportunity {
    background: rgba(39,174,96,0.1);
    color: var(--success);
    font-weight: 700;
}

/* Risk Matrix */
.risk-matrix {
    width: 100%;
    border-collapse: collapse;
    font-size: 10pt;
    margin: 20px 0;
}

.risk-matrix th {
    background: var(--primary);
    color: white;
    padding: 12px 15px;
    text-align: left;
}

.risk-matrix td {
    padding: 12px 15px;
    border-bottom: 1px solid #e8e8e8;
    vertical-align: top;
}

.risk-matrix tr:hover {
    background: #f8f9fa;
}

.risk-level {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 9pt;
    font-weight: 600;
    text-transform: uppercase;
}

.risk-level.risk-high {
    background: #ffe8e8;
    color: #c0392b;
}

.risk-level.risk-medium {
    background: #fff4e5;
    color: #e67e22;
}

.risk-level.risk-low {
    background: #e8f8e8;
    color: #27ae60;
}

/* Tenant Prospect Cards */
.prospect-tier {
    margin-bottom: 25px;
}

.prospect-tier-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.tier-badge {
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10pt;
    font-weight: 600;
}

.tier-badge.tier-1 { background: #27ae60; }
.tier-badge.tier-2 { background: #f39c12; }
.tier-badge.tier-3 { background: #3498db; }

.prospect-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.prospect-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
}

.prospect-card:hover {
    background: #e8f4f8;
    transform: translateX(5px);
}

.prospect-card h5 {
    font-size: 11pt;
    color: var(--primary);
    margin-bottom: 5px;
}

.prospect-card p {
    font-size: 9pt;
    color: var(--text-light);
    margin: 0;
}

/* Data Visualization - Progress Bars */
.progress-stat {
    margin: 15px 0;
}

.progress-stat .stat-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.progress-stat .stat-label {
    font-size: 10pt;
    font-weight: 500;
}

.progress-stat .stat-value {
    font-size: 10pt;
    font-weight: 700;
    color: var(--primary);
}

.progress-bar {
    height: 10px;
    background: #e8e8e8;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 5px;
    transition: width 1s ease-out;
}

.progress-bar-fill.growth {
    background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
}

/* Demographic Growth Chart (CSS-only) */
.growth-chart {
    display: flex;
    align-items: flex-end;
    height: 200px;
    gap: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 20px 0;
}

.growth-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: height 1s ease-out;
    min-height: 20px;
}

.growth-bar .bar-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9pt;
    font-weight: 600;
    white-space: nowrap;
}

.growth-bar .bar-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10pt;
    font-weight: 700;
    color: var(--primary);
}

/* Call to Action Section Enhanced */
.cta-enhanced {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1a3a5c 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-enhanced::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.cta-enhanced h3 {
    font-size: 22pt;
    margin-bottom: 15px;
    position: relative;
    color: white;
}

.cta-enhanced p {
    font-size: 12pt;
    opacity: 0.9;
    margin-bottom: 25px;
    position: relative;
}

.cta-enhanced .btn {
    position: relative;
    z-index: 1;
}

/* Key Success Factors Box */
.success-factors {
    background: linear-gradient(135deg, #e8f8e8 0%, #f8fff8 100%);
    border: 2px solid #27ae60;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.success-factors h4 {
    color: #27ae60;
    font-size: 14pt;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-factors ul {
    margin: 0;
    padding-left: 20px;
}

.success-factors li {
    margin: 10px 0;
    font-size: 11pt;
}

/* Team/Contact Cards */
.team-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 15px 0;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28pt;
    font-weight: 700;
    flex-shrink: 0;
}

.team-info h4 {
    font-size: 14pt;
    color: var(--primary);
    margin-bottom: 3px;
}

.team-info .role {
    font-size: 10pt;
    color: var(--text-light);
    margin-bottom: 12px;
}

.team-info .contact-links {
    display: flex;
    gap: 15px;
}

.team-info .contact-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 10pt;
    display: flex;
    align-items: center;
    gap: 5px;
}

.team-info .contact-links a:hover {
    text-decoration: underline;
}

/* Window Opportunity Banner */
.opportunity-banner {
    background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.opportunity-banner .banner-text {
    flex: 1;
}

.opportunity-banner h4 {
    font-size: 14pt;
    margin-bottom: 5px;
}

.opportunity-banner p {
    font-size: 10pt;
    opacity: 0.9;
    margin: 0;
}

.opportunity-banner .banner-metric {
    background: rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
}

.opportunity-banner .banner-metric .value {
    font-size: 24pt;
    font-weight: 700;
}

.opportunity-banner .banner-metric .label {
    font-size: 9pt;
    opacity: 0.9;
}

/* Financial Projections Table */
.projections-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10pt;
    margin: 20px 0;
}

.projections-table th {
    background: var(--primary);
    color: white;
    padding: 12px 15px;
    text-align: center;
}

.projections-table th:first-child {
    text-align: left;
}

.projections-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
}

.projections-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.projections-table tr.scenario-base {
    background: #e8f4f8;
}

.projections-table tr.scenario-up {
    background: #e8f8e8;
}

.projections-table tr.scenario-down {
    background: #fff4e5;
}

/* Additional Responsive Breakpoints */
@media (max-width: 768px) {
    .hero-enhanced h1 {
        font-size: 28pt;
    }

    .hero-metric-cards {
        flex-direction: column;
        align-items: center;
    }

    .hero-metric-card {
        width: 100%;
        max-width: 280px;
    }

    .competitive-timeline::before {
        display: none;
    }

    .timeline-nodes {
        flex-direction: column;
        gap: 25px;
    }

    .team-card {
        flex-direction: column;
        text-align: center;
    }

    .team-avatar {
        margin: 0 auto;
    }

    .opportunity-banner {
        flex-direction: column;
        text-align: center;
    }

    .gap-matrix {
        font-size: 9pt;
    }

    .gap-matrix th,
    .gap-matrix td {
        padding: 8px 5px;
    }
}

@media (max-width: 480px) {
    .hero-enhanced {
        padding: 40px 15px;
    }

    .hero-enhanced h1 {
        font-size: 22pt;
    }

    .section {
        padding: 20px 15px;
    }

    .container {
        padding: 25px 15px;
    }

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