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

:root {
    --primary-color: #0066cc;
    --secondary-color: #00a0dc;
    --accent-color: #ff6b00;
    --success-color: #00b388;
    --warning-color: #ffa500;
    --danger-color: #e63946;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--card-bg);
    box-shadow: none;
}

/* Header Styles */
header {
    background: #1a237e;
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 4px solid #0066cc;
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: none;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.tagline {
    font-size: 1rem;
    opacity: 0.85;
    font-style: normal;
    font-weight: 300;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    overflow-x: auto;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tab-button {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    background: transparent;
    color: #495057;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:hover {
    background: #e9ecef;
    color: #1a237e;
}

.tab-button.active {
    background: #ffffff;
    color: #1a237e;
    border-bottom: 3px solid #0066cc;
}

.tab-button.active::after {
    display: none;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    background: #ffffff;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

.stat-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

/* Content Section */
.content-section {
    padding: 3rem;
}

.content-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.content-section h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* Highlight Box */
.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 2px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--primary-color);
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.driver-list {
    list-style: none;
    padding-left: 0;
}

.driver-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.driver-list li:last-child {
    border-bottom: none;
}

.driver-list strong {
    color: var(--primary-color);
}

/* Market Share */
.market-share {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.vendor-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 2px;
    border-left: 4px solid var(--primary-color);
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.vendor-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateX(3px);
}

.vendor-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.share-bar {
    height: 30px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.vendor-card p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 4px solid var(--primary-color);
}

.timeline-marker.current {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.2);
}

.timeline-content {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 2px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Opportunities Grid */
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.opportunity-card {
    background: #ffffff;
    border-radius: 2px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    border-top: 3px solid;
    transition: all 0.3s ease;
}

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

.opportunity-card.high-potential {
    border-top-color: var(--success-color);
}

.opportunity-card.medium-potential {
    border-top-color: var(--primary-color);
}

.opportunity-card.emerging {
    border-top-color: var(--warning-color);
}

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

.opportunity-header h4 {
    font-size: 1.3rem;
    margin: 0;
}

.risk-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.risk-badge.low-risk {
    background: #d4edda;
    color: #155724;
}

.risk-badge.medium-risk {
    background: #fff3cd;
    color: #856404;
}

.opportunity-card ul {
    list-style: none;
    padding-left: 0;
}

.opportunity-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.opportunity-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Threats Container */
.threats-container {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.threat-item {
    display: flex;
    gap: 1.5rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 2px;
    border-left: 4px solid var(--danger-color);
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--danger-color);
    box-shadow: none;
    transition: all 0.3s ease;
}

.threat-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.threat-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.threat-content h4 {
    color: var(--danger-color);
    margin-bottom: 0.5rem;
}

.threat-content p {
    color: var(--text-secondary);
}

/* Conclusion Box */
.conclusion-box {
    background: #1a237e;
    color: white;
    padding: 2.5rem;
    border-radius: 2px;
    margin: 3rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-left: 4px solid #0066cc;
}

.conclusion-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.conclusion-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.recommendation {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.recommendation strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.recommendation ul {
    list-style: none;
    padding-left: 0;
}

.recommendation li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Placeholder Content */
.placeholder-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.coming-soon {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    border: 2px dashed #ced4da;
}

.coming-soon h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.coming-soon ul {
    list-style: none;
    padding-left: 0;
}

.coming-soon li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.coming-soon li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background: #1a237e;
    color: #e0e0e0;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 4px solid #0066cc;
}

.footer-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .tab-button {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 40px;
    }
}

/* Competitive Landscape Styles */
.market-share-visual {
    margin: 3rem 0;
}

.chart-container {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    margin: 1.5rem 0;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-bar {
    position: relative;
    height: 50px;
    background: linear-gradient(90deg, var(--color) 0%, var(--color) var(--percentage), #f8f9fa var(--percentage));
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.bar-label {
    font-weight: 600;
    color: #ffffff;
    min-width: 120px;
}

.bar-value {
    margin-left: auto;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.chart-source {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    text-align: right;
    margin-top: 1rem;
}

.vendor-profile {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #0066cc;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 2px;
}

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

.vendor-header h4 {
    font-size: 1.5rem;
    margin: 0;
    color: #1a237e;
}

.market-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.market-badge.leader {
    background: #ffd700;
    color: #1a237e;
}

.market-badge.strong {
    background: #e3f2fd;
    color: #1565c0;
}

.market-badge.competitive {
    background: #e8f5e9;
    color: #2e7d32;
}

.market-badge.specialist {
    background: #f3e5f5;
    color: #7b1fa2;
}

.vendor-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vendor-info p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.vendor-info a {
    color: #0066cc;
    text-decoration: none;
}

.vendor-info a:hover {
    text-decoration: underline;
}

.vendor-strengths h5 {
    color: #1a237e;
    margin: 1rem 0 0.5rem;
}

.vendor-strengths ul {
    list-style: none;
    padding-left: 0;
}

.vendor-strengths li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.vendor-strengths li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b388;
    font-weight: bold;
}

.startup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.startup-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.startup-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.startup-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.startup-card h4 {
    color: #1a237e;
    margin: 0.5rem 0;
}

.startup-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.startup-focus {
    color: #0066cc;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.startup-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 1rem 0;
}

.startup-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
}

.startup-link:hover {
    text-decoration: underline;
}

.geopolitical-analysis {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.geo-factor {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 2px;
}

.geo-factor h4 {
    color: #1a237e;
    margin-top: 0;
}

.risk-indicator {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 1rem;
    text-transform: uppercase;
}

.risk-indicator.high {
    background: #ffebee;
    color: #c62828;
}

.risk-indicator.medium {
    background: #fff3e0;
    color: #e65100;
}

.risk-indicator.low {
    background: #e8f5e9;
    color: #2e7d32;
}

.ma-trends {
    margin: 3rem 0;
}

.timeline-ma {
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 3px solid #0066cc;
}

.ma-item {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 2px;
    position: relative;
}

.ma-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 1.25rem;
    width: 15px;
    height: 15px;
    background: #0066cc;
    border: 3px solid #ffffff;
    border-radius: 50%;
}

.ma-year {
    display: inline-block;
    background: #1a237e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ma-outlook {
    background: #e3f2fd;
    padding: 1.5rem;
    border-left: 4px solid #0066cc;
    margin-top: 2rem;
    border-radius: 2px;
}

/* Technology Trends Styles */
.tech-evolution {
    margin: 3rem 0;
}

.standards-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.standard-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.standard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00a0dc);
}

.standard-card h4 {
    color: #1a237e;
    margin-top: 0;
    font-size: 1.3rem;
}

.standard-status {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.standard-status.current {
    background: #e8f5e9;
    color: #2e7d32;
}

.standard-status.emerging {
    background: #e3f2fd;
    color: #1565c0;
}

.standard-status.future {
    background: #f3e5f5;
    color: #7b1fa2;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.spec-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-list li:last-child {
    border-bottom: none;
}

.standard-focus {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.feature-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #0066cc;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 2px;
}

.feature-box h4 {
    color: #1a237e;
    margin-top: 0;
}

.feature-box ul {
    margin: 1rem 0;
}

.data-point {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.wifi8-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.wifi8-feature {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 2px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.wifi8-feature h4 {
    color: #1a237e;
    margin: 0.5rem 0;
}

.projection-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.projection-milestone {
    background: #f8f9fa;
    padding: 1rem;
    border-left: 3px solid #0066cc;
    border-radius: 2px;
}

.projection-milestone strong {
    color: #1a237e;
    display: block;
    margin-bottom: 0.5rem;
}

.spectrum-bands {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.band {
    padding: 1.5rem;
    border-radius: 4px;
    border: 2px solid;
}

.band-24 {
    background: #e3f2fd;
    border-color: #1976d2;
}

.band-5 {
    background: #e8f5e9;
    border-color: #388e3c;
}

.band-6 {
    background: #fff3e0;
    border-color: #f57c00;
}

.band strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.band-status {
    display: inline-block;
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0,0,0,0.1);
    border-radius: 12px;
    margin-top: 0.5rem;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.region-status {
    padding: 1.5rem;
    border-radius: 2px;
    border: 2px solid;
}

.region-status.approved {
    background: #e8f5e9;
    border-color: #2e7d32;
}

.region-status.partial {
    background: #fff3e0;
    border-color: #f57c00;
}

.region-status.pending {
    background: #e3f2fd;
    border-color: #1565c0;
}

.region-status.blocked {
    background: #ffebee;
    border-color: #c62828;
}

.region-status h5 {
    margin-top: 0;
    font-size: 1.1rem;
}

.regulatory-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2rem;
}

.afc-explainer {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #0066cc;
    margin: 2rem 0;
    border-radius: 2px;
}

.ai-applications {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.ai-app {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 2px;
    position: relative;
}

.maturity-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.maturity-badge.production {
    background: #e8f5e9;
    color: #2e7d32;
}

.maturity-badge.emerging {
    background: #e3f2fd;
    color: #1565c0;
}

.maturity-badge.pilot {
    background: #fff3e0;
    color: #e65100;
}

.hype-vs-reality {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 2px;
}

.reality-check {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #ffffff;
    border-radius: 4px;
}

.hype-claim {
    color: #e65100;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.reality-assessment {
    color: var(--text-primary);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.innovation-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 2px;
}

.innovation-item h4 {
    color: #1a237e;
    margin-top: 0;
}

.innovation-source {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.innovation-source a {
    color: #0066cc;
    text-decoration: none;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #ffffff;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.comparison-table th {
    background: #1a237e;
    color: white;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table .winner {
    background: #e8f5e9;
    font-weight: 600;
    color: #2e7d32;
}

.halow-market {
    background: #e3f2fd;
    padding: 2rem;
    border-left: 4px solid #0066cc;
    margin: 2rem 0;
    border-radius: 2px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Print Styles */
@media print {
    body {
        background: white;
    }

    .tab-navigation {
        display: none;
    }

    .tab-content {
        display: block !important;
        page-break-before: always;
    }

    .tab-content:first-of-type {
        page-break-before: avoid;
    }
}

/* Market Segments Styles */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.segment-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 2px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.segment-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.segment-card.consumer { border-left-color: #1a237e; }
.segment-card.iot { border-left-color: #00b388; }
.segment-card.enterprise { border-left-color: #0066cc; }
.segment-card.automotive { border-left-color: #ff9800; }
.segment-card.arvr { border-left-color: #9c27b0; }
.segment-card.industrial { border-left-color: #607d8b; }

.segment-card h4 {
    color: #1a237e;
    margin-top: 0;
    font-size: 1.3rem;
}

.segment-stats {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

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

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
}

.stat-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.segment-deepdive {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 2px;
}

.analysis-section {
    margin: 1.5rem 0;
}

.analysis-section h4 {
    color: #1a237e;
    margin-bottom: 1rem;
}

.key-players-segment {
    background: #e3f2fd;
    padding: 1rem 1.5rem;
    border-left: 4px solid #0066cc;
    margin-top: 1.5rem;
    border-radius: 2px;
}

.growth-chart {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    margin: 2rem 0;
}

.chart-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.year-marker {
    text-align: center;
}

.year-marker .year {
    display: block;
    font-weight: 600;
    color: #1a237e;
    font-size: 1.1rem;
}

.year-marker .value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00b388;
    margin-top: 0.5rem;
}

.growth-arrow {
    font-size: 1.5rem;
    color: #00b388;
    font-weight: 700;
}

.chart-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.subsegment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.subsegment {
    background: #ffffff;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

.drivers-inhibitors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.drivers, .inhibitors {
    background: #ffffff;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

.drivers {
    border-left: 4px solid #00b388;
}

.inhibitors {
    border-left: 4px solid #ff6b00;
}

.drivers h4, .inhibitors h4 {
    margin-top: 0;
}

.enterprise-cycle {
    margin: 2rem 0;
}

.cycle-desc {
    color: var(--text-secondary);
    margin: 1rem 0;
}

.cycle-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.cycle-phase {
    padding: 1.5rem;
    border-radius: 2px;
    text-align: center;
}

.cycle-phase.past {
    background: #e0e0e0;
    color: #757575;
}

.cycle-phase.current {
    background: #00b388;
    color: white;
}

.cycle-phase.future {
    background: #0066cc;
    color: white;
}

.cycle-phase strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.forecast-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.forecast-table th,
.forecast-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.forecast-table th {
    background: #1a237e;
    color: white;
    font-weight: 600;
}

.forecast-table tbody tr:hover {
    background: #f8f9fa;
}

.table-source {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    text-align: right;
    margin-top: 0.5rem;
}

.automotive-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.auto-stat {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

.auto-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
}

.auto-stat-label {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.automotive-uses {
    margin: 2rem 0;
}

.use-cases {
    list-style: none;
    padding: 0;
}

.use-cases li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.use-cases li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.investment-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.matrix-quadrant {
    padding: 1.5rem;
    border-radius: 2px;
    border: 2px solid;
    position: relative;
}

.matrix-quadrant h4 {
    margin-top: 0;
    font-size: 1.2rem;
}

.matrix-quadrant.high-growth-high-value {
    background: #e8f5e9;
    border-color: #00b388;
}

.matrix-quadrant.stable-high-value {
    background: #e3f2fd;
    border-color: #0066cc;
}

.matrix-quadrant.mature-high-volume {
    background: #fff3e0;
    border-color: #ff9800;
}

.matrix-quadrant.emerging-high-potential {
    background: #f3e5f5;
    border-color: #9c27b0;
}

.recommendation-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.recommendation-badge.best {
    background: #00b388;
    color: white;
}

.recommendation-badge.strong {
    background: #0066cc;
    color: white;
}

.recommendation-badge.moderate {
    background: #ff9800;
    color: white;
}

.recommendation-badge.watch {
    background: #9c27b0;
    color: white;
}

/* Investment Opportunities Styles */
.priority-investment {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 2px;
    border: 2px solid;
}

.priority-investment.tier-1 {
    background: #e8f5e9;
    border-color: #00b388;
}

.priority-investment.tier-2 {
    background: #e3f2fd;
    border-color: #0066cc;
}

.priority-investment.tier-3 {
    background: #fff3e0;
    border-color: #ff9800;
}

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

.investment-header h4 {
    margin: 0;
    color: #1a237e;
    font-size: 1.5rem;
}

.risk-score {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.risk-score.low {
    background: #c8e6c9;
    color: #1b5e20;
}

.risk-score.medium {
    background: #ffe0b2;
    color: #e65100;
}

.investment-target {
    background: #ffffff;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 2px;
    border: 1px solid #e0e0e0;
}

.investment-target h5 {
    color: #1a237e;
    font-size: 1.2rem;
    margin-top: 0;
}

.target-details {
    display: grid;
    gap: 1rem;
}

.target-rationale,
.target-companies,
.target-financials {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 2px;
}

.caution-item {
    background: #fff3e0;
    border-left: 4px solid #ff6b00;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 2px;
}

.caution-item h4 {
    color: #e65100;
    margin-top: 0;
}

.outlook-summary {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    margin: 2rem 0;
}

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

.outlook-metric strong {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
}

.development-list {
    margin: 1rem 0;
}

.development-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.strategy-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 1rem 0;
}

.strategy-list {
    margin: 1rem 0;
}

.strategy-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.strategy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.scenario {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 2px;
    border-left: 4px solid;
}

.scenario.scenario-a { border-left-color: #00b388; }
.scenario.scenario-b { border-left-color: #e63946; }
.scenario.scenario-c { border-left-color: #0066cc; }
.scenario.scenario-d { border-left-color: #ff9800; }

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

.scenario-header h5 {
    margin: 0;
    color: #1a237e;
}

.scenario-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.scenario-badge.optimistic { background: #c8e6c9; color: #1b5e20; }
.scenario-badge.pessimistic { background: #ffcdd2; color: #b71c1c; }
.scenario-badge.transformative { background: #bbdefb; color: #0d47a1; }
.scenario-badge.disruptive { background: #ffe0b2; color: #e65100; }

.inflection-timeline {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.inflection-event {
    background: #f8f9fa;
    padding: 1rem;
    border-left: 3px solid #0066cc;
    border-radius: 2px;
}

.inflection-event strong {
    color: #1a237e;
    display: block;
    margin-bottom: 0.5rem;
}

.portfolio-allocation {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.allocation-tier {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 2px;
}

.allocation-tier h5 {
    color: #1a237e;
    margin-top: 0;
}

.rec-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.rec-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid;
}

.rec-item.primary { border-left-color: #00b388; }
.rec-item.secondary { border-left-color: #0066cc; }
.rec-item.tertiary { border-left-color: #ff9800; }

.rec-item h4 {
    color: #1a237e;
    margin-top: 0;
}

.rec-action {
    background: #f8f9fa;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 2px;
    font-style: italic;
}

.risk-mitigation,
.success-metrics {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    margin: 2rem 0;
}

.risk-mitigation h4,
.success-metrics h4 {
    color: #1a237e;
    margin-top: 0;
}

/* Threats & Risks Styles */
.threat-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.threat-table th,
.threat-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.threat-table th {
    background: #1a237e;
    color: white;
    font-weight: 600;
}

.threat-table tbody tr:hover {
    background: #f8f9fa;
}

.prob-badge,
.impact-badge,
.risk-level {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.prob-badge.low,
.impact-badge.low {
    background: #c8e6c9;
    color: #1b5e20;
}

.prob-badge.medium,
.impact-badge.medium {
    background: #ffe0b2;
    color: #e65100;
}

.prob-badge.high,
.impact-badge.high {
    background: #ffcdd2;
    color: #b71c1c;
}

.impact-badge.critical {
    background: #b71c1c;
    color: white;
}

.risk-level.low { background: #c8e6c9; color: #1b5e20; }
.risk-level.medium { background: #ffe0b2; color: #e65100; }
.risk-level.high { background: #ffcdd2; color: #b71c1c; }
.risk-level.critical { background: #b71c1c; color: white; }

.threat-detail {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    margin: 2rem 0;
    border-radius: 2px;
    overflow: hidden;
}

.threat-detail-header {
    background: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.threat-detail-header h4 {
    margin: 0;
    color: #1a237e;
}

.severity-badge {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.severity-badge.critical {
    background: #b71c1c;
    color: white;
}

.severity-badge.high {
    background: #ff6b00;
    color: white;
}

.severity-badge.medium {
    background: #ff9800;
    color: white;
}

.threat-content-detail {
    padding: 2rem;
}

.threat-description,
.threat-evidence,
.threat-impact,
.threat-mitigation {
    margin: 1.5rem 0;
}

.threat-description h5,
.threat-evidence h5,
.threat-impact h5,
.threat-mitigation h5 {
    color: #1a237e;
    margin-bottom: 0.75rem;
}

.threat-assessment {
    background: #e3f2fd;
    padding: 1rem;
    border-left: 4px solid #0066cc;
    margin-top: 1rem;
    border-radius: 2px;
}

.risk-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.framework-pillar {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 2px;
}

.framework-pillar h4 {
    color: #1a237e;
    margin-top: 0;
}

.threat-conclusion {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    margin: 3rem 0;
}

.threat-conclusion h3 {
    color: #1a237e;
    margin-top: 0;
}

.action-items {
    background: #e3f2fd;
    padding: 1.5rem;
    border-left: 4px solid #0066cc;
    margin-top: 2rem;
    border-radius: 2px;
}

.action-items h4 {
    color: #1a237e;
    margin-top: 0;
}

.action-items ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.action-items li {
    padding: 0.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vendor-details {
        grid-template-columns: 1fr;
    }

    .standards-comparison {
        grid-template-columns: 1fr;
    }

    .chart-bar {
        height: 60px;
    }

    .bar-label {
        min-width: 80px;
        font-size: 0.9rem;
    }

    .segments-grid {
        grid-template-columns: 1fr;
    }

    .drivers-inhibitors {
        grid-template-columns: 1fr;
    }

    .outlook-summary {
        flex-direction: column;
        gap: 1rem;
    }

    .chart-line {
        flex-direction: column;
    }
}