/* =================================
   TenderGenie Website Styles
   ================================= */

/* Root Variables - Theme derived from TenderGenie logo */
:root {
    --primary-color: #FF6900;
    --primary-dark: #B63925;
    --primary-light: #FF8533;
    --secondary-color: #CA461B;
    --accent-color: #FF6900;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --text-light: #b2bec3;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #1e272e;
    --border-color: #dfe6e9;
    --success: #00b894;
    --warning: #fdcb6e;
    --error: #d63031;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-white:hover {
    background-color: var(--bg-secondary);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Small buttons variant (for nav actions like Login, Book Demo) */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.95rem;
    border-radius: 6px;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

/* Make the header full viewport width while keeping nav content centered */
.navbar {
    width: 100%;
    left: 0;
    right: 0;
}

.navbar .container {
    max-width: 100%; /* allow container to span full width inside navbar */
    padding-left: 20px;
    padding-right: 20px;
}

.navbar .nav-wrapper {
    width: 100%; /* allow nav-wrapper to span full width of navbar */
    max-width: none;
    margin: 0;
    align-items: center;
    padding: 0 20px; /* add horizontal padding so content isn't flush to the viewport edges */
    position: relative; /* allow absolutely positioned children like the mobile toggle */
}

/* Desktop-specific spacing: give space between logo and nav items */
@media (min-width: 769px) {
    .logo {
        margin-right: 24px;
    }
}

/* Position hamburger at the very right on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        position: absolute !important;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;
        margin-left: 0;
    }

    /* Prevent the hamburger from overlapping the nav-actions (Login / Book Demo) */
    .nav-actions {
        margin-right: 35px; /* leave space for the toggle button on the right */
    }

    /* Make navbar content span full viewport width on mobile and
       make the nav links stack vertically and fill the width */
    .navbar {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar .container {
        padding-left: 0;
        padding-right: 0;
    }

    .nav-wrapper {
        padding: 0 12px; /* small inner padding but let wrapper be full width */
    }

    /* hide by default and allow JS to toggle .active to show */
    .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        width: 100vw; /* ensure it stretches the full viewport width */
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0; /* vertical padding for stacked links */
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        z-index: 1050;
    }

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

    .nav-links li {
        width: 100%;
        padding: 0.3rem 12px; /* reduced from 0.5rem to make items more compact on mobile */
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.3rem 12px; /* reduced vertical padding for compact links on mobile */
    }
}

/* Let nav links take available space so logo sits left, links center, actions right */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1 1 auto;
    justify-content: flex-start;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
    display: none; /* Hide text when logo image is present */
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
}

.logo .trademark {
    font-size: 0.7rem;
    vertical-align: super;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Container for action buttons in the navbar (Login / Book Demo) */
.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-actions .btn {
    padding: 8px 14px;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.04) 0%, rgba(182, 57, 37, 0.02) 100%);
    color: var(--text-primary);
    padding: 3rem 0 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,105,0,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hero-text {
    max-width: 1000px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #B63925 0%, #FF6900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* Process Section */
.process-section {
    background: #fff;
    padding: 0 0 3rem 0;
}

.process-section .hero-banner-wrapper {
    width: 100%;
    background: transparent;
    padding: 0 0 2rem 0;
    position: relative;
}

/* Toast notifications (moved from inline JS) */
#tg-toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    pointer-events: none;
}

.tg-toast {
    min-width: 220px;
    max-width: 360px;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: opacity 240ms ease, transform 240ms ease;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: auto;
    font-weight: 500;
}

.tg-toast--success { background: var(--success, #28a745); }
.tg-toast--error { background: var(--error, #d9534f); }
.tg-toast--info { background: var(--primary, #007bff); }

/* Button spinner removed - spinner handled by button text only */

/* Accessibility helper: visually hidden but available to screen readers */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.process-section .hero-banner {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.process-section .section-description {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 100%;
    line-height: 1.7;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0 0 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FF6900 0%, #B63925 100%);
    border-radius: 2px;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #B63925 0%, #FF6900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Solution Section */
.solution-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 105, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(182, 57, 37, 0.03) 0%, transparent 50%);
}

.solution-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.solution-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.solution-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #B63925 0%, #FF6900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 1300px;
}

.solution-feature {
    background: white;
    padding: 2rem 1.75rem;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(182, 57, 37, 0.08);
    position: relative;
    overflow: hidden;
}

.solution-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B63925 0%, #FF6900 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-feature:hover::before {
    transform: scaleX(1);
}

.solution-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(182, 57, 37, 0.12);
    border-color: rgba(182, 57, 37, 0.15);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
    transition: transform 0.3s ease;
}

.solution-feature:hover .solution-icon {
    transform: scale(1.1);
}

.solution-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

.solution-feature p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.solution-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Problem Section */
.problem-section {
    padding: 3.5rem 0;
    background-color: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0.5rem 0 1.5rem 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.problem-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 2rem 1.75rem;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 105, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6900 0%, #B63925 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(255, 105, 0, 0.12);
    border-color: rgba(255, 105, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

.problem-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 3.5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    will-change: transform, box-shadow;
}

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

.feature-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(0, 102, 204, 0.03), white);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.feature-benefits {
    list-style: none;
    margin-top: 1rem;
}

.feature-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

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

.features-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Feature Detail Pages */
.features-detail-section {
    padding: 2rem 0 4rem 0;
}

.features-detail-section.secondary {
    background-color: var(--bg-secondary);
}

/* Two-Column Layout */
.features-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Feature Selector Capsules */
.feature-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.05) 0%, rgba(182, 57, 37, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 105, 0, 0.1);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Custom Scrollbar for Feature Selector */
.feature-selector::-webkit-scrollbar {
    width: 1px;
}

.feature-selector::-webkit-scrollbar-track {
    background: transparent;
}

.feature-selector::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF6900 0%, #B63925 100%);
    border-radius: 10px;
}

.feature-selector::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff7a1a 0%, #c94530 100%);
}

/* Firefox Scrollbar */
.feature-selector {
    scrollbar-width: thin;
    scrollbar-color: #FF6900 transparent;
}

.feature-capsule {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: left;
}

.feature-capsule:hover {
    border-color: #FF6900;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(182, 57, 37, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.15);
}

.feature-capsule.active {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    border-color: #FF6900;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

.feature-capsule.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 105, 0, 0.4);
}

.capsule-icon {
    font-size: 1.1rem;
    display: inline-block;
}

.capsule-text {
    font-weight: 600;
}

/* Feature Details Container */
.feature-details-container {
    margin-top: 0;
}

.feature-detail-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.feature-detail-grid.compact {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    animation: fadeInUp 0.3s ease;
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    will-change: opacity, transform;
}

.feature-detail-card.priority-high {
    border-top: 4px solid var(--primary-color);
}

.feature-detail-card.priority-moderate {
    border-top: 4px solid var(--secondary-color);
}

.feature-detail-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.08) 0%, rgba(182, 57, 37, 0.05) 100%);
    border-bottom: 2px solid rgba(255, 105, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-highlight {
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(182, 57, 37, 0.08) 100%);
    border-left: 4px solid #FF6900;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-highlight .highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-highlight p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
}

.feature-highlight strong {
    color: #FF6900;
}

.feature-detail-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.feature-detail-header h3 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--text-color);
}

.priority-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.priority-badge.high {
    background-color: var(--primary-color);
}

.priority-badge.moderate {
    background-color: var(--secondary-color);
}

.feature-detail-body {
    padding: 2rem;
    flex: 1;
}

.user-story,
.current-process,
.solution,
.value,
.critical-insight,
.important-note {
    margin-bottom: 1.5rem;
}

.user-story h4,
.current-process h4,
.solution h4,
.value h4,
.critical-insight h4,
.important-note h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.user-story p em {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
}

.critical-insight,
.important-note {
    background-color: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--warning);
}

.supported-formats,
.workflow-note,
.use-case-note,
.technical-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Value Proposition Section */
.value-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
}

.value-section .section-title,
.value-section .section-subtitle {
    color: white;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.metric-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem 1.75rem;
    border-radius: 16px;
    border-top: 4px solid transparent;
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%),
        linear-gradient(90deg, #FF6900 0%, #B63925 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6900 0%, #B63925 100%);
    border-radius: 16px 16px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(255, 105, 0, 0.25);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.metric-card:hover .metric-icon {
    filter: grayscale(0);
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #B63925 0%, #FF6900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.metric-number::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FF6900 0%, #B63925 100%);
    border-radius: 2px;
}

.metric-title {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1rem 0 0.75rem 0;
}

.metric-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Legacy value-grid styles (kept for backward compatibility) */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.value-card h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Different Section */
.different-section {
    padding: 3.5rem 0;
    background-color: var(--bg-secondary);
}

.different-content {
    max-width: 900px;
    margin: 0 auto;
}

.different-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.different-text .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.different-list {
    list-style: none;
}

.different-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.check-icon {
    font-size: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
}

.different-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.different-list p {
    color: var(--text-secondary);
    margin: 0;
}

/* Case Studies */
.case-studies-preview {
    padding: 3.5rem 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-study-industry {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.case-study-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.result {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
}

.result-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.case-studies-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Full Case Studies */
.case-study-full {
    padding: 4rem 0;
}

.case-study-full.alternate {
    background-color: var(--bg-secondary);
}

/* Case Studies Two-Column Layout */
.case-studies-section {
    padding: 3rem 0 6rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.case-studies-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

/* Left Column: Case Study Selector */
.case-study-selector {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar for case study selector */
.case-study-selector::-webkit-scrollbar {
    width: 1px;
}

.case-study-selector::-webkit-scrollbar-track {
    background: transparent;
}

.case-study-selector::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF6900 0%, #B63925 100%);
    border-radius: 2px;
}

.case-study-selector {
    scrollbar-width: thin;
    scrollbar-color: #FF6900 transparent;
}

/* Case Study Capsules */
.case-study-capsule {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.case-study-capsule:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 105, 0, 0.15);
    transform: translateX(5px);
}

.case-study-capsule.active {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    border-color: var(--primary-color);
    box-shadow: 0 6px 25px rgba(255, 105, 0, 0.3);
}

.case-study-capsule.active .capsule-content h3,
.case-study-capsule.active .capsule-content p,
.case-study-capsule.active .capsule-badge {
    color: white;
}

.capsule-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.case-study-capsule:hover .capsule-icon {
    transform: scale(1.1);
}

.capsule-content {
    flex: 1;
}

.capsule-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.capsule-content p {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.capsule-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 105, 0, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.case-study-capsule.active .capsule-badge {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Right Column: Case Study Details */
.case-study-details {
    position: relative;
}

.case-study-detail-card {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.case-study-detail-card.active {
    display: block;
}

.case-study-detail-card .case-study-card {
    min-height: calc(100vh - 200px);
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .case-studies-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-study-selector {
        position: relative;
        top: 0;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        padding-right: 0;
        padding-bottom: 0.5rem;
    }

    .case-study-capsule {
        min-width: 280px;
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .case-study-capsule:hover {
        transform: translateY(-5px);
    }

    .capsule-content h3 {
        font-size: 1rem;
    }

    .case-study-detail-card .case-study-card {
        padding: 2rem;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .case-study-capsule {
        min-width: 240px;
    }

    .capsule-icon {
        font-size: 2rem;
    }

    .case-study-detail-card .case-study-card {
        padding: 1.5rem;
    }
}

.case-study-header {
    text-align: center;
    margin-bottom: 3rem;
}

.industry-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-highlight {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.2);
}

.case-study-highlight .highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.case-study-highlight p {
    margin: 0;
    color: white;
    font-size: 1rem;
    line-height: 1.5;
}

.case-study-highlight strong {
    font-weight: 600;
}

.case-study-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.industry-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.case-study-section {
    margin-bottom: 2.5rem;
}

.case-study-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.challenge-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.case-study-full.alternate .challenge-item {
    background-color: white;
}

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

.challenge-item strong {
    color: var(--text-primary);
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
}

.case-study-full.alternate .solution-item {
    background-color: white;
}

.solution-item .check {
    color: var(--success);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

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

.impact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.impact-detail {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.impact-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Case Studies Summary */
.case-studies-summary {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
}

.case-studies-summary .section-title {
    color: white;
}

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

.summary-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

.summary-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.summary-stat p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.contact-info {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
    color: white;
    text-decoration: underline;
}

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

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section h3 .trademark {
    font-size: 0.6rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

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

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

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .hero-title { font-size: 2.8rem; }
    .page-hero h1 { font-size: 2.5rem; }
    
    .hero-image {
        max-width: 100%;
    }
    
    .features-grid,
    .feature-detail-grid.compact {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-title {
        font-size: 2.5rem;
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0.2rem;
        margin-top: 0.4rem;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-banner-wrapper {
        padding: 2rem 0 1.5rem 0;
    }
    
    .hero-content {
        padding: 2rem 0 3rem 0;
        gap: 0;
    }
    
    .hero-text {
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero-banner {
        max-width: 100%;
    }
    
    .features-grid,
    .feature-detail-grid.compact {
        grid-template-columns: 1fr;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
    }
    
    .feature-selector {
        position: static;
        max-height: none;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .feature-capsule {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
    
    .contact-grid,
    .quick-links {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .problem-grid,
    .solution-grid,
    .metrics-grid,
    .value-grid,
    .case-studies-grid,
    .challenge-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.3s ease-out;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 105, 0, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 105, 0, 0.15);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 105, 0, 0.1);
}

.contact-flag {
    /* container for flag image or emoji */
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 2.5rem;
}

.contact-flag img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.contact-card-header h3 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--text-color);
    font-weight: 700;
    line-height: 2.5rem;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 105, 0, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-detail:hover {
    background: rgba(255, 105, 0, 0.08);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
}

.contact-info p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.contact-info a:hover {
    color: #B63925;
    transform: translateX(3px);
}

.contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.quick-links-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.05) 0%, rgba(182, 57, 37, 0.05) 100%);
    border-radius: 16px;
}

.quick-links-section h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.quick-link-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
    display: block;
}

.quick-link-card:hover {
    border-color: #FF6900;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-link-card h4 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
}

.quick-link-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.required {
    color: #FF6900;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

.footer-badges {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ==========================================
   PRICING PAGE STYLES
   ========================================== */

/* Business Model Note */
.business-model-note {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.08) 0%, rgba(182, 57, 37, 0.08) 100%);
    border-left: 4px solid #FF6900;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.note-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.note-content h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.note-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.note-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.note-content ul li {
    padding: 0.75rem 0;
    color: #333;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 105, 0, 0.1);
}

.note-content ul li:last-child {
    border-bottom: none;
}

.note-content ul li strong {
    color: #FF6900;
    display: block;
    margin-bottom: 0.25rem;
}

.note-highlight {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white !important;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem !important;
    font-weight: 500;
}

/* Compact Pricing Comparison */
.compact-pricing {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.compact-plan-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.compact-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.compact-plan-card.popular {
    border: 2px solid #FF6900;
    position: relative;
}

.compact-plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 105, 0, 0.1);
}

.compact-plan-header h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
}

.compact-badge {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.15) 0%, rgba(182, 57, 37, 0.15) 100%);
    color: #B63925;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.compact-badge.popular-badge {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
}

.compact-plan-pricing {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.compact-base,
.compact-tender {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.compact-label {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compact-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.compact-amount small {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.compact-discount {
    display: inline-block;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(56, 142, 60, 0.15) 100%);
    color: #2e7d32;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.compact-plan-total {
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 105, 0, 0.1);
    text-align: center;
}

.compact-plan-total span {
    color: #666;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Revenue Illustration Section */
.revenue-illustration {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.02) 0%, rgba(182, 57, 37, 0.02) 100%);
}

.revenue-section {
    margin-bottom: 5rem;
}

.revenue-heading {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.revenue-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.revenue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.revenue-card.popular {
    border: 2px solid #FF6900;
    position: relative;
}

.revenue-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.revenue-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 105, 0, 0.1);
}

.revenue-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.revenue-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.revenue-label {
    color: #666;
    font-size: 0.95rem;
}

.revenue-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.revenue-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 2px solid rgba(255, 105, 0, 0.2);
    border-bottom: 2px solid rgba(255, 105, 0, 0.2);
}

.revenue-total .revenue-label {
    font-weight: 600;
    color: #333;
}

.revenue-amount {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.revenue-annual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.08) 0%, rgba(182, 57, 37, 0.08) 100%);
    border-radius: 8px;
}

.revenue-annual .revenue-label {
    font-weight: 600;
    color: #333;
}

/* Platform Revenue Potential */
.platform-revenue {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 3px solid rgba(255, 105, 0, 0.2);
}

.platform-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.platform-revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.platform-card.highlighted {
    border: 3px solid #FF6900;
    position: relative;
}

.platform-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.platform-scenario {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 105, 0, 0.1);
}

.scenario-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.scenario-desc {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.platform-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.platform-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.platform-item span:first-child {
    color: #666;
}

.platform-item span:last-child {
    font-weight: 700;
    color: #333;
}

/* Compact Platform Revenue Cards */
.platform-card-compact {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.platform-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.platform-card-compact.highlighted {
    border: 2px solid #FF6900;
}

.scenario-name-compact {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.scenario-desc-compact {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 105, 0, 0.1);
}

.revenue-split {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.split-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.9rem;
}

.split-item span:first-child {
    color: #666;
    font-weight: 500;
}

.split-item span:last-child {
    font-weight: 700;
    color: #2196F3;
}

.total-revenue-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(182, 57, 37, 0.1) 100%);
    border-radius: 8px;
    margin-top: 1rem;
}

.total-revenue-compact span:first-child {
    font-weight: 600;
    color: #333;
}

.amount-compact {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-subtotals {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(21, 101, 192, 0.05) 100%);
    border-radius: 8px;
    border-left: 3px solid #2196F3;
}

.subtotal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.subtotal-item span:first-child {
    color: #555;
    font-weight: 500;
}

.subtotal-item span:last-child {
    font-weight: 700;
    color: #2196F3;
}

.platform-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(182, 57, 37, 0.1) 100%);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.platform-total span:first-child {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.platform-amount {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-monthly {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.platform-monthly span:first-child {
    color: #666;
}

.platform-monthly span:last-child {
    font-weight: 700;
    color: #333;
}

.revenue-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-left: 4px solid #FFA500;
    border-radius: 8px;
}

.revenue-note p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.revenue-note strong {
    color: #333;
}

/* TAM Section */
.tam-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stage-section {
    margin-bottom: 5rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.stage-section.expansion {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.02) 0%, rgba(21, 101, 192, 0.02) 100%);
}

/* Modern Stage Header */
.modern-stage {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(255, 105, 0, 0.1);
}

.stage-header-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #FF6900, #B63925, transparent) 1;
}

.stage-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.25;
}

.stage-info {
    flex: 1;
}

.stage-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF6900;
    letter-spacing: 1.5px;
    margin-bottom: 0.3rem;
}

.stage-info h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0 0 0.3rem 0;
}

.stage-timeline {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Modern Market Cards */
.market-cards-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}

/* Stage 1 Table Layout */
.market-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.market-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.9rem;
}

.market-table thead {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
}

.market-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.market-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.market-table tbody tr:hover {
    background: rgba(255, 105, 0, 0.02);
}

.market-table tbody tr.total-row {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.08) 0%, rgba(182, 57, 37, 0.08) 100%);
    border-top: 2px solid #FF6900;
    border-bottom: 2px solid #FF6900;
    font-weight: 600;
}

.market-table tbody tr.total-row:hover {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.12) 0%, rgba(182, 57, 37, 0.12) 100%);
}

.market-table td {
    padding: 1rem;
    vertical-align: top;
}

.sector-cell {
    min-width: 220px;
}

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

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

.sector-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.sector-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sector-badge.industrial {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.sector-badge.gold {
    background: linear-gradient(135deg, #FFB300 0%, #F57C00 100%);
}

.companies-col {
    min-width: 140px;
}

.companies-cell {
    text-align: center;
}

.company-count {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.company-count.highlight {
    font-size: 2rem;
}

.company-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breakdown-col {
    min-width: 250px;
}

.breakdown-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
    align-items: flex-start;
}

.breakdown-item {
    font-size: 0.8rem;
    color: #555;
    padding: 0.2rem 0.5rem;
    line-height: 1.3;
    background: #f8f9fa;
    border-radius: 4px;
    white-space: nowrap;
}

.tam-col {
    min-width: 140px;
}

.tam-cell {
    text-align: center;
}

.tam-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    white-space: nowrap;
}

.tam-value.highlight {
    font-size: 1.75rem;
}

.market-card-modern {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.market-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6900, #B63925);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.market-card-modern:hover::before {
    opacity: 1;
}

.market-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 105, 0, 0.12);
    border-color: #FF6900;
}

.market-card-modern.highlight-card {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.03) 0%, rgba(182, 57, 37, 0.03) 100%);
    border: 2px solid rgba(255, 105, 0, 0.3);
}

.market-card-modern.highlight-card::before {
    opacity: 0.7;
}

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

.market-icon {
    font-size: 2.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.market-badge {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(21, 101, 192, 0.15) 100%);
    color: #1565C0;
    padding: 0.25rem 0.7rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.market-badge.gold {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 152, 0, 0.2) 100%);
    color: #F57C00;
}

.market-card-modern h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    line-height: 1.3;
}

.market-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.05) 0%, rgba(182, 57, 37, 0.05) 100%);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border-left: 3px solid #FF6900;
}

.market-stat.large {
    padding: 0.875rem;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin: 0;
}

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

.stat-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.market-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.15rem 0;
    font-size: 0.85rem;
    color: #555;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.detail-item:hover {
    color: #FF6900;
    transform: translateX(3px);
}

.detail-icon {
    font-size: 0.95rem;
    flex-shrink: 0;
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stage-badge {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stage 2 Expansion Modern Styles */
.expansion-stage {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.02) 0%, rgba(182, 57, 37, 0.02) 100%);
    border: 2px solid rgba(255, 105, 0, 0.1);
}

.expansion-stage .stage-number {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expansion-stage .stage-header-modern {
    border-image: linear-gradient(90deg, #FF6900, #B63925, transparent) 1;
}

.expansion-stage .stage-label {
    color: #FF6900;
}

/* Stage 2 Table Styles */
.market-table-wrapper.stage2 {
    border-radius: 10px;
}

.market-table.stage2-table thead {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
}

.market-table.stage2-table tbody tr:hover {
    background: rgba(255, 105, 0, 0.02);
}

.market-table.stage2-table .sector-badge {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
}

.market-table.stage2-table .sector-badge.stage2 {
    background: linear-gradient(135deg, #FF9A56 0%, #FF6900 100%);
}

.market-table.stage2-table .sector-badge.stage2-gold {
    background: linear-gradient(135deg, #D84A1B 0%, #B63925 100%);
}

.market-table.stage2-table .company-count {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.market-table.stage2-table .tam-value {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.market-table.stage2-table .breakdown-item {
    background: rgba(255, 105, 0, 0.08);
    color: #B63925;
}

.market-table.stage2-table tbody tr.total-row.stage2-total {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(182, 57, 37, 0.1) 100%);
    border-top: 2px solid #FF6900;
    border-bottom: 2px solid #FF6900;
}

.market-table.stage2-table tbody tr.total-row.stage2-total:hover {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.15) 0%, rgba(182, 57, 37, 0.15) 100%);
}

.market-table.stage2-table tbody tr.total-row.stage2-total .breakdown-item {
    background: rgba(255, 105, 0, 0.12);
}

/* Combined TAM Summary Section */
.combined-tam-section {
    margin: 3rem 0 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.03) 0%, rgba(182, 57, 37, 0.03) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 105, 0, 0.15);
}

.combined-title {
    text-align: center;
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.combined-icon {
    font-size: 2rem;
}

.combined-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.combined-stat-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.combined-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 105, 0, 0.12);
}

.combined-stat-card.highlight {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.05) 0%, rgba(182, 57, 37, 0.05) 100%);
    border-color: #FF6900;
}

.combined-stat-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.combined-stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.combined-stat-note {
    font-size: 0.8rem;
    color: #888;
}

/* Fund Raise & Utilization Section */
.fund-raise-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: #ffffff;
}

/* USD Section Styling */
.usd-section {
    background: #f8f9fa;
    border-top: 3px dashed #e0e0e0;
    position: relative;
}

.usd-section::before {
    content: "💵 USD VERSION";
    position: absolute;
    top: 1rem;
    right: 2rem;
    background: #4A90E2;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fund-raise-header {
    text-align: center;
    margin-bottom: 3rem;
}

.fund-raise-header .section-title {
    font-size: 2.25rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fund-raise-header .title-icon {
    font-size: 2.5rem;
}

.fund-raise-header .section-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Clean Modern Fund Card - No Gradients */
.clean-fund-card {
    max-width: 950px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

/* Simple Header Bar - Solid Background */
.fund-header-bar {
    background: linear-gradient(135deg, #FF6900 0%, #FF8534 100%);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-icon {
    font-size: 1.75rem;
}

.header-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.header-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-amount {
    font-size: 2.25rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
}

.header-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
}

.stat-icon {
    font-size: 1rem;
}

.stat-text {
    font-size: 0.8rem;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

/* Compact Fund Grid */
.compact-fund-grid {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.allocation-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

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

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-icon {
    font-size: 1.5rem;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}

.card-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
}

.card-percent {
    font-size: 1.1rem;
    font-weight: 800;
}

.card-amount {
    font-size: 1.25rem;
    font-weight: 900;
    color: #1a1a1a;
}

/* Progress Bars - Solid Colors */
.card-bar {
    height: 6px;
    border-radius: 3px;
    margin-bottom: 0.75rem;
    transition: width 1s ease-out;
}

.orange-bar {
    background: #FF6900;
}

.blue-bar {
    background: #4A90E2;
}

.green-bar {
    background: #4CAF50;
}

.purple-bar {
    background: #9C27B0;
}

/* Color-coded percentage text */
.orange-card .card-percent {
    color: #FF6900;
}

.blue-card .card-percent {
    color: #4A90E2;
}

.green-card .card-percent {
    color: #4CAF50;
}

.purple-card .card-percent {
    color: #9C27B0;
}

/* Border color on hover */
.orange-card:hover {
    border-color: #FF6900;
}

.blue-card:hover {
    border-color: #4A90E2;
}

.green-card:hover {
    border-color: #4CAF50;
}

.purple-card:hover {
    border-color: #9C27B0;
}

/* Breakdown tags */
.card-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.card-breakdown span {
    font-size: 0.7rem;
    color: #555;
    background: #f8f9fa;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fund-header-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .header-amount {
        font-size: 1.85rem;
    }
    
    .header-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .stat-divider {
        display: none;
    }
    
    .compact-fund-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.85rem;
    }
    
    .card-top {
        flex-wrap: wrap;
    }
    
    .card-values {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 0.5rem;
    }
}

/* Modern Compact Fund Card */
.modern-fund-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Fund Ask Banner */
.fund-ask-banner {
    background: #FF6900;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ask-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ask-icon-badge {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.ask-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.ask-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.ask-right {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-badge,
.breakeven-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 130px;
}

.timeline-icon,
.breakeven-icon {
    font-size: 0.9rem;
}

.timeline-text,
.breakeven-text {
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
}

/* Fund Allocation Grid */
.fund-allocation-grid {
    padding: 1.25rem;
    display: grid;
    gap: 0.85rem;
}

.fund-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fund-item:hover {
    background: white;
    border-color: #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.fund-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.fund-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fund-emoji {
    font-size: 1.3rem;
}

.fund-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
}

.fund-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fund-percentage {
    font-size: 1.1rem;
    font-weight: 800;
}

.fund-amount {
    font-size: 1.35rem;
    font-weight: 900;
    color: #1a1a1a;
}

/* Color Classes */
.primary-color {
    color: #FF6900;
}

.secondary-color {
    color: #4A90E2;
}

.tertiary-color {
    color: #4CAF50;
}

.quaternary-color {
    color: #9C27B0;
}

.primary-bg {
    background: linear-gradient(90deg, #FF6900 0%, #B63925 100%);
}

.secondary-bg {
    background: linear-gradient(90deg, #4A90E2 0%, #2196F3 100%);
}

.tertiary-bg {
    background: linear-gradient(90deg, #4CAF50 0%, #2E7D32 100%);
}

.quaternary-bg {
    background: linear-gradient(90deg, #9C27B0 0%, #7B1FA2 100%);
}

/* Progress Bar */
.fund-progress {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.fund-progress-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Fund Details */
.fund-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.detail-tag {
    font-size: 0.7rem;
    color: #555;
    background: white;
    padding: 0.3rem 0.65rem;
    border-radius: 7px;
    font-weight: 600;
    border: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fund-ask-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    
    .ask-amount {
        font-size: 1.75rem;
    }
    
    .ask-right {
        width: 100%;
        flex-direction: column;
    }
    
    .timeline-badge,
    .breakeven-badge {
        width: 100%;
        justify-content: center;
    }
    
    .fund-allocation-grid {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .fund-item {
        padding: 1rem;
    }
    
    .fund-item-header {
        flex-wrap: wrap;
    }
    
    .fund-right {
        width: 100%;
        justify-content: space-between;
        margin-top: 0.5rem;
    }
    
    .fund-percentage {
        font-size: 1.1rem;
    }
    
    .fund-amount {
        font-size: 1.25rem;
    }
}

/* Remove old compact util styles */

.fund-card-footer {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    padding: 1.5rem 2rem;
    border-top: 2px solid #e0e0e0;
}

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

.metric-compact {
    text-align: center;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.metric-value-compact {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4A90E2 0%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.35rem;
    line-height: 1.1;
}

.metric-label-compact {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
}

/* Remove old styles that are no longer needed */

/* Total Fund Ask */
.total-fund-ask {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.05) 0%, rgba(182, 57, 37, 0.05) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border: 3px solid #FF6900;
    box-shadow: 0 8px 30px rgba(255, 105, 0, 0.15);
}

.fund-ask-card {
    text-align: center;
    margin-bottom: 2rem;
}

.ask-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ask-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ask-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.ask-note {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.fund-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    max-width: 250px;
}

.timeline-item.highlight-single {
    max-width: 450px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(46, 125, 50, 0.05) 100%);
    border: 2px solid #4CAF50;
}

.timeline-goal {
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 700;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.timeline-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.timeline-badge.seed {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
}

.timeline-badge.series-a {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
}

.timeline-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.timeline-purpose {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.timeline-divider {
    font-size: 2rem;
    color: #FF6900;
    font-weight: 700;
}

/* Fund Utilization Grid */
.fund-utilization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.utilization-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid;
}

.utilization-card.primary {
    border-left-color: #FF6900;
}

.utilization-card.secondary {
    border-left-color: #4A90E2;
}

.utilization-card.tertiary {
    border-left-color: #4CAF50;
}

.utilization-card.quaternary {
    border-left-color: #9C27B0;
}

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

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

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.util-icon {
    font-size: 2rem;
}

.util-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.util-percentage {
    font-size: 1.75rem;
    font-weight: 800;
    color: #FF6900;
}

.util-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.util-breakdown {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.breakdown-row:last-child {
    border-bottom: none;
}

.breakdown-label {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.breakdown-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}

.util-impact {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.05) 0%, rgba(182, 57, 37, 0.05) 100%);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.util-impact strong {
    color: #FF6900;
    font-weight: 700;
}

/* Deployment Timeline */
.deployment-timeline {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-title {
    text-align: center;
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.timeline-icon {
    font-size: 2rem;
}

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

.phase-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    padding: 2rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.phase-card:hover {
    border-color: #FF6900;
    box-shadow: 0 6px 25px rgba(255, 105, 0, 0.1);
}

.phase-period {
    display: inline-block;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.phase-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.phase-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #FF6900;
    margin-bottom: 1.25rem;
}

.phase-activities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-activities li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.phase-activities li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Key Milestones */
.key-milestones {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.milestones-title {
    text-align: center;
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.milestones-icon {
    font-size: 2rem;
}

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

.milestone-stat {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.milestone-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4A90E2 0%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.stat-note {
    font-size: 0.85rem;
    color: #888;
}

/* Funds Summary */
.funds-summary {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(46, 125, 50, 0.05) 100%);
    border-radius: 12px;
    padding: 2.5rem;
    border: 2px solid rgba(76, 175, 80, 0.2);
}

.summary-title {
    text-align: center;
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 800;
}

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

.summary-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.summary-point:hover {
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.15);
    transform: translateX(5px);
}

.point-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.point-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.point-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Revenue Growth Chart Section */
.revenue-growth-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 105, 0, 0.1);
}

.growth-title {
    text-align: center;
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.growth-icon {
    font-size: 2rem;
}

.growth-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.financial-chart {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem 1.5rem 1.5rem;
    margin-bottom: 2rem;
}

.line-chart {
    width: 100%;
    height: auto;
    max-height: 500px;
    margin-bottom: 1.5rem;
}

.line-path {
    animation: drawLine 2s ease-in-out forwards;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.revenue-line {
    animation-delay: 0.3s;
}

.expense-line {
    animation-delay: 0.6s;
}

.pat-line {
    animation-delay: 0.9s;
}

.data-point {
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-in-out forwards;
    opacity: 0;
}

.data-point:nth-child(1) { animation-delay: 1.2s; }
.data-point:nth-child(2) { animation-delay: 1.3s; }
.data-point:nth-child(3) { animation-delay: 1.4s; }
.data-point:nth-child(4) { animation-delay: 1.5s; }
.data-point:nth-child(5) { animation-delay: 1.6s; }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.data-point:hover {
    r: 8;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.value-labels text {
    animation: fadeIn 0.5s ease-in-out forwards;
    opacity: 0;
}

.value-labels text:nth-child(1) { animation-delay: 1.7s; }
.value-labels text:nth-child(2) { animation-delay: 1.7s; }
.value-labels text:nth-child(3) { animation-delay: 1.8s; }
.value-labels text:nth-child(4) { animation-delay: 1.8s; }
.value-labels text:nth-child(5) { animation-delay: 1.9s; }
.value-labels text:nth-child(6) { animation-delay: 1.9s; }
.value-labels text:nth-child(7) { animation-delay: 2.0s; }
.value-labels text:nth-child(8) { animation-delay: 2.0s; }
.value-labels text:nth-child(9) { animation-delay: 2.1s; }
.value-labels text:nth-child(10) { animation-delay: 2.1s; }

.x-axis-labels text,
.y-axis-labels text {
    animation: fadeIn 0.5s ease-in-out forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.chart-years {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.chart-year {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.year-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
    text-align: center;
}

.chart-bars {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    height: 420px;
    margin-bottom: 0.75rem;
}

.bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.chart-bar {
    width: 100%;
    min-width: 40px;
    max-width: 60px;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.chart-bar .bar-value {
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.chart-bar.revenue {
    background: linear-gradient(180deg, #FF6900 0%, #B63925 100%);
}

.chart-bar.expense {
    background: linear-gradient(180deg, #64B5F6 0%, #1976D2 100%);
}

.chart-bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bar-label {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
    white-space: nowrap;
}

.bar-label.revenue-label {
    color: #B63925;
}

.bar-label.expense-label {
    color: #1976D2;
}

.pat-value {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 0.5rem;
}

.pat-value.positive {
    background: rgba(76, 175, 80, 0.15);
    color: #2E7D32;
}

.pat-value.negative {
    background: rgba(244, 67, 54, 0.15);
    color: #C62828;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
}

.legend-line {
    width: 30px;
    height: 3px;
    border-radius: 2px;
}

.legend-line.revenue {
    background: linear-gradient(90deg, #FF6900 0%, #B63925 100%);
}

.legend-line.expense {
    background: linear-gradient(90deg, #4A90E2 0%, #2196F3 100%);
}

.legend-line.pat {
    background: linear-gradient(90deg, #E53935 0%, #43A047 50%, #2E7D32 100%);
    background-size: 200% 100%;
}

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

.highlight-metric {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.03) 0%, rgba(182, 57, 37, 0.03) 100%);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(255, 105, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight-metric:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 105, 0, 0.12);
    border-color: #FF6900;
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.metric-note {
    font-size: 0.75rem;
    color: #888;
}

.expansion-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.expansion-category-card {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.expansion-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.12);
    border-color: #2196F3;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(33, 150, 243, 0.1);
}

.category-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.category-info h4 {
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.category-count {
    font-size: 0.7rem;
    color: #2196F3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sector-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sector-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #555;
    padding: 0.25rem 0;
    transition: all 0.2s ease;
    line-height: 1.3;
}

.sector-item:hover {
    color: #2196F3;
    transform: translateX(3px);
}

/* Expansion Summary Cards */
.expansion-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.summary-card {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.12);
}

.summary-card.highlight {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(21, 101, 192, 0.05) 100%);
    border-color: #2196F3;
}

.summary-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.summary-stat {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.summary-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stage-badge.stage-2 {
    background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
}

.stage-header h3 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin: 0;
}

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

.tam-stat-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.tam-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tam-stat-card.highlight {
    border: 2px solid #FF6900;
}

.tam-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.tam-stat-content {
    flex: 1;
}

.tam-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.tam-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.tam-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.market-segments {
    margin-top: 5rem;
}

.segment-heading {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.segment-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.segment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.segment-card.featured {
    border: 2px solid #FF6900;
}

.segment-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.segment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 105, 0, 0.1);
}

.segment-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.segment-percent {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.segment-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.segment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.segment-item span:first-child {
    color: #666;
    font-weight: 500;
}

.segment-value {
    font-weight: 700;
    color: #333;
}

.segment-value.revenue {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Compact Segment Cards */
.segment-heading-compact {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin: 2rem 0 1.5rem 0;
    text-align: center;
}

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

.segment-card-mini {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.segment-card-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.segment-card-mini.featured {
    border: 2px solid #FF6900;
}

.segment-badge-mini {
    position: absolute;
    top: -10px;
    right: 10px;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.segment-percent-mini {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.segment-title-mini {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.segment-value-mini {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.segment-revenue-mini {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Expansion Sectors */
.expansion-sectors {
    margin-top: 2rem;
}

.sector-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.sector-category h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(33, 150, 243, 0.2);
}

.sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sector-tag {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(21, 101, 192, 0.1) 100%);
    color: #1565C0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(33, 150, 243, 0.2);
    transition: all 0.3s ease;
}

.sector-tag:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2) 0%, rgba(21, 101, 192, 0.2) 100%);
    transform: translateY(-2px);
}

.stage2-projection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.projection-card {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.05) 0%, rgba(182, 57, 37, 0.05) 100%);
    border: 2px solid #FF6900;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.projection-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.projection-content {
    flex: 1;
}

.projection-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.projection-value {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.projection-note {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

.tam-assumptions {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(21, 101, 192, 0.05) 100%);
    border-left: 4px solid #2196F3;
    border-radius: 12px;
}

.tam-assumptions h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.tam-assumptions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tam-assumptions li {
    padding: 0.75rem 0;
    color: #333;
    line-height: 1.6;
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

.tam-assumptions li:last-child {
    border-bottom: none;
}

.tam-assumptions strong {
    color: #2196F3;
}

.investor-highlight {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(182, 57, 37, 0.1) 100%);
    border: 2px solid #FF6900;
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.highlight-content p {
    color: #333;
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.highlight-content p:last-child {
    margin-bottom: 0;
}

.highlight-content strong {
    color: #FF6900;
}

/* Pricing Overview Section */
.pricing-overview {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pricing-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.pricing-feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.pricing-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 105, 0, 0.15);
}

.pricing-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.pricing-feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 5rem 0;
    background: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-card.recommended {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(255, 105, 0, 0.2);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge.recommended-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.plan-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-amount {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f3f4f6;
    position: relative;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-secondary {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.savings-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.savings-badge.best-value {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(182, 57, 37, 0.1) 100%);
    color: var(--primary-color);
}

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

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-content strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.detail-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Billing Approach Section */
.billing-approach {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.03) 0%, rgba(182, 57, 37, 0.03) 100%);
}

.billing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.billing-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Comparison Table Section */
.pricing-comparison {
    padding: 5rem 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.comparison-table thead {
    background: linear-gradient(135deg, #FF6900 0%, #B63925 100%);
    color: white;
}

.comparison-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table th small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    color: var(--text-color);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 105, 0, 0.03);
}

.comparison-table .highlighted-row {
    background: rgba(255, 105, 0, 0.05);
}

.savings-cell {
    color: #059669;
    font-weight: 700;
}

/* FAQ Section */
.pricing-faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 105, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-model-note {
        flex-direction: column;
        padding: 1.5rem;
    }

    .note-icon {
        font-size: 2rem;
    }

    .note-content h3 {
        font-size: 1.25rem;
    }

    .stage-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.875rem;
    }

    .stage-number {
        font-size: 2.5rem;
    }

    .stage-info h3 {
        font-size: 1.25rem;
    }

    .market-cards-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .market-icon {
        font-size: 2rem;
    }

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

    .market-stat.large .stat-number {
        font-size: 1.75rem;
    }

    .market-card-modern {
        padding: 1rem;
    }

    .detail-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .expansion-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .expansion-category-card {
        padding: 1rem;
    }

    .category-icon {
        font-size: 1.75rem;
    }

    .expansion-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .summary-stat {
        font-size: 1.5rem;
    }

    /* Mobile Table View */
    .market-table-wrapper {
        margin: 1rem 0;
    }

    .market-table {
        font-size: 0.8rem;
    }

    .market-table th,
    .market-table td {
        padding: 0.75rem 0.5rem;
    }

    .sector-icon {
        font-size: 1.5rem;
    }

    .sector-name {
        font-size: 0.9rem;
    }

    .company-count {
        font-size: 1.5rem;
    }

    .company-count.highlight {
        font-size: 1.65rem;
    }

    .breakdown-item {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }

    .tam-value {
        font-size: 1.25rem;
    }

    .tam-value.highlight {
        font-size: 1.5rem;
    }

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

    .combined-title {
        font-size: 1.35rem;
    }

    .combined-stat-value {
        font-size: 1.75rem;
    }

    .revenue-growth-section {
        padding: 1.5rem;
    }

    .growth-title {
        font-size: 1.35rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .line-chart {
        max-height: 400px;
    }

    .value-labels text {
        font-size: 9px !important;
    }

    .x-axis-labels text,
    .y-axis-labels text {
        font-size: 10px !important;
    }

    .chart-legend {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .growth-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metric-value {
        font-size: 1.75rem;
    }

    /* Fund Raise Section Mobile */
    .fund-raise-section {
        margin: 2rem 0;
        padding: 2rem 0;
    }

    .fund-raise-header .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .fund-raise-header .title-icon {
        font-size: 2rem;
    }

    .fund-raise-header .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .single-fund-card {
        margin: 0 0.75rem;
        border-width: 2px;
    }

    .fund-card-header {
        padding: 1.25rem;
    }

    .fund-ask-section {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .ask-icon-large {
        font-size: 2.5rem;
    }

    .ask-amount-main {
        font-size: 2.25rem;
    }

    .ask-timeline {
        font-size: 0.85rem;
    }

    .fund-card-body {
        padding: 1.25rem;
    }

    .utilization-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .funds-allocation-table {
        font-size: 0.85rem;
    }

    .funds-allocation-table thead {
        display: none;
    }

    .funds-allocation-table tbody,
    .funds-allocation-table tr,
    .funds-allocation-table td {
        display: block;
        width: 100%;
    }

    .fund-row {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
        border-bottom: 2px solid #dee2e6;
    }

    .category-cell,
    .allocation-cell,
    .breakdown-cell {
        padding: 0.5rem 0;
    }

    .category-info {
        margin-bottom: 0.5rem;
    }

    .category-icon {
        font-size: 1.25rem;
    }

    .category-name {
        font-size: 0.95rem;
    }

    .progress-bar-wrapper {
        height: 20px;
    }

    .progress-label {
        font-size: 0.7rem;
    }

    .allocation-cell {
        text-align: left;
        margin-top: 0.5rem;
    }

    .allocation-amount {
        font-size: 1.35rem;
    }

    .breakdown-cell {
        margin-top: 0.5rem;
    }

    .breakdown-list {
        gap: 0.4rem;
    }

    .breakdown-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .fund-card-footer {
        padding: 1.25rem;
    }

    .footer-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .metric-compact {
        padding: 0.75rem;
    }

    .metric-value-compact {
        font-size: 1.5rem;
    }

    .metric-label-compact {
        font-size: 0.75rem;
    }

    .compact-plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .compact-amount {
        font-size: 1.75rem;
    }

    .stage-section {
        padding: 1.5rem;
    }

    .stage-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .stage-header h3 {
        font-size: 1.35rem;
    }

    .tam-overview,
    .segments-grid,
    .segments-grid-compact,
    .stage2-projection {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tam-icon,
    .highlight-icon,
    .projection-icon {
        font-size: 2rem;
    }

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

    .segment-percent,
    .segment-percent-mini {
        font-size: 1.75rem;
    }

    .projection-value {
        font-size: 1.75rem;
    }

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

    .investor-highlight {
        flex-direction: column;
        padding: 1.5rem;
    }

    .revenue-heading {
        font-size: 1.5rem;
    }

    .revenue-grid,
    .platform-revenue-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .revenue-amount {
        font-size: 1.25rem;
    }

    .platform-amount,
    .amount-compact {
        font-size: 1.25rem;
    }

    .scenario-name,
    .scenario-name-compact {
        font-size: 1.1rem;
    }

    .platform-badge,
    .revenue-badge {
        top: -10px;
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .pricing-intro h2 {
        font-size: 2rem;
    }

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

    .amount {
        font-size: 2.5rem;
    }

    .billing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
    }
}

/* Global TAM/SAM/SOM Section Styles */
.global-tam-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.global-tam-header {
    text-align: center;
    margin-bottom: 3rem;
}

.global-tam-header .section-title {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.global-tam-header .section-subtitle {
    font-size: 1.1rem;
    color: #7F8C8D;
    font-weight: 500;
}

/* Market Funnel Visualization */
.market-funnel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.funnel-stage {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-left: 5px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.funnel-stage:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.tam-stage {
    border-left-color: #3498DB;
    background: linear-gradient(135deg, #ffffff 0%, #EBF5FB 100%);
}

.sam-stage {
    border-left-color: #E67E22;
    background: linear-gradient(135deg, #ffffff 0%, #FEF5E7 100%);
}

.som-stage {
    border-left-color: #27AE60;
    background: linear-gradient(135deg, #ffffff 0%, #EAFAF1 100%);
}

.funnel-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.funnel-title {
    font-size: 1.8rem;
    color: #2C3E50;
    margin: 0;
    font-weight: 700;
}

.funnel-description {
    font-size: 1rem;
    color: #7F8C8D;
    margin: 0;
}

.funnel-values {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.value-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-box.highlighted {
    background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
    color: white;
}

.value-box.highlighted .currency-label,
.value-box.highlighted .value-note {
    color: rgba(255,255,255,0.9);
}

.currency-label {
    font-size: 0.85rem;
    color: #7F8C8D;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2C3E50;
    margin: 0.5rem 0;
}

.value-box.highlighted .value-amount {
    color: white;
}

.value-note {
    font-size: 0.9rem;
    color: #7F8C8D;
}

/* TAM Calculation Box */
.tam-calculation-box {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 2px solid #3498DB;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.15);
}

.calc-title {
    font-size: 1.1rem;
    color: #2C3E50;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calc-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.calc-row.highlight-row {
    background: rgba(52, 152, 219, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 0.5rem 0;
}

.calc-row.total-row {
    background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.calc-row.total-row .calc-label,
.calc-row.total-row .calc-value {
    color: white;
}

.calc-label {
    font-size: 0.9rem;
    color: #34495E;
    font-weight: 500;
}

.calc-value {
    font-size: 1rem;
    color: #2C3E50;
    font-weight: 700;
}

.calc-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #BDC3C7 50%, transparent 100%);
    margin: 1rem 0;
}

.calc-breakdown-mini {
    background: rgba(52, 152, 219, 0.05);
    padding: 0.75rem 1rem;
    border-left: 3px solid #3498DB;
    border-radius: 4px;
    margin: 0.5rem 0;
}

.calc-breakdown-mini div {
    font-size: 0.85rem;
    color: #34495E;
    margin: 0.25rem 0;
}

/* Sector Calculation Boxes */
.sector-calc {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1rem 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border-left: 4px solid #3498DB;
    transition: all 0.3s ease;
}

.sector-calc:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateX(5px);
}

.sector-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #ECF0F1;
}

.sector-icon {
    font-size: 1.8rem;
}

.sector-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C3E50;
}

.grand-total-box {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    border: 3px solid #3498DB;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.grand-total-box .calc-row.total-row {
    font-size: 1.1rem;
}

.funnel-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.breakdown-tag {
    background: white;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #34495E;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.breakdown-item-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.breakdown-item-compact .item-icon {
    font-size: 1.8rem;
}

.breakdown-item-compact .item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.breakdown-item-compact .item-details strong {
    font-size: 1rem;
    color: #2C3E50;
}

.breakdown-item-compact .item-details span {
    font-size: 0.85rem;
    color: #7F8C8D;
}

.market-scope {
    background: rgba(52, 152, 219, 0.08);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #34495E;
    line-height: 1.6;
    margin-top: 1rem;
}

.market-scope strong {
    color: #2C3E50;
}

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

.metric-card-small {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.metric-card-small .metric-label {
    font-size: 0.8rem;
    color: #7F8C8D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.metric-card-small .metric-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #27AE60;
    margin: 0.5rem 0;
}

.metric-card-small .metric-subtitle {
    font-size: 0.75rem;
    color: #95A5A6;
}

/* TAM/SAM/SOM Comparison Table */
.tam-sam-som-table {
    margin: 3rem 0;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.table-title {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.table-icon {
    font-size: 1.5rem;
}

.tam-sam-som-table .comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.tam-sam-som-table .comparison-table thead {
    background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
    color: white;
}

.tam-sam-som-table .comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tam-sam-som-table .comparison-table tbody tr {
    border-bottom: 1px solid #ECF0F1;
    transition: background-color 0.2s ease;
}

.tam-sam-som-table .comparison-table tbody tr:hover {
    background-color: #F8F9FA;
}

.tam-sam-som-table .comparison-table tbody tr.highlighted-row {
    background: linear-gradient(135deg, #EAFAF1 0%, #D5F4E6 100%);
}

.tam-sam-som-table .comparison-table tbody tr.highlighted-row:hover {
    background: linear-gradient(135deg, #D5F4E6 0%, #EAFAF1 100%);
}

.tam-sam-som-table .comparison-table td {
    padding: 1.5rem 1rem;
    vertical-align: top;
}

.metric-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metric-badge {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.tam-badge {
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
    color: white;
}

.sam-badge {
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    color: white;
}

.som-badge {
    background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
    color: white;
}

.metric-cell strong {
    font-size: 1rem;
    color: #2C3E50;
}

.definition-cell {
    font-size: 0.9rem;
    color: #7F8C8D;
    line-height: 1.6;
}

.value-cell {
    text-align: center;
}

.amount-large {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #2C3E50;
    margin-bottom: 0.25rem;
}

.amount-subtitle {
    display: block;
    font-size: 0.8rem;
    color: #95A5A6;
}

.coverage-cell {
    text-align: center;
}

.coverage-badge {
    background: #3498DB;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.coverage-note {
    font-size: 0.8rem;
    color: #7F8C8D;
}

/* Market Insights Grid */
.market-insights {
    margin: 3rem 0;
}

.insights-title {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.insights-icon {
    font-size: 1.5rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.insight-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    border-top: 4px solid #3498DB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.insight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.insight-number {
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
}

.insight-header h4 {
    font-size: 1.1rem;
    color: #2C3E50;
    margin: 0;
}

.insight-card p {
    font-size: 0.95rem;
    color: #7F8C8D;
    line-height: 1.7;
    margin: 0;
}

.insight-card p strong {
    color: #2C3E50;
    font-weight: 700;
}

/* Penetration Visual Funnel */
.penetration-visual {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-top: 3rem;
}

.visual-title {
    font-size: 1.5rem;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 2rem;
}

.funnel-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.funnel-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    font-weight: 800;
    font-size: 1rem;
    color: #2C3E50;
    min-width: 60px;
}

.bar-visual {
    background: linear-gradient(90deg, #3498DB 0%, #2980B9 100%);
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    position: relative;
    min-width: 200px;
    transition: width 0.5s ease;
}

.sam-bar .bar-visual {
    background: linear-gradient(90deg, #E67E22 0%, #D35400 100%);
}

.som-bar .bar-visual {
    background: linear-gradient(90deg, #27AE60 0%, #229954 100%);
}

.bar-amount {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.bar-percentage {
    font-size: 0.85rem;
    color: #7F8C8D;
    margin-left: 1rem;
}

/* Responsive Design for TAM/SAM/SOM */
@media (max-width: 768px) {
    .global-tam-header .section-title {
        font-size: 1.8rem;
    }

    .funnel-title {
        font-size: 1.4rem;
    }

    .value-amount {
        font-size: 2rem;
    }

    .som-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .tam-sam-som-table .comparison-table {
        font-size: 0.85rem;
    }

    .tam-sam-som-table .comparison-table th,
    .tam-sam-som-table .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

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

    .funnel-bar-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .bar-visual {
        width: 100% !important;
    }
}

/* Enhanced Funnel Diagram Styles */
.penetration-visual {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-top: 3rem;
}

.visual-title {
    font-size: 2rem;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.funnel-emoji {
    font-size: 2.5rem;
}

.funnel-subtitle {
    font-size: 1rem;
    color: #7F8C8D;
    font-weight: 500;
}

.funnel-diagram-container {
    max-width: 900px;
    margin: 2rem auto;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
}

.funnel-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.funnel-section {
    transition: opacity 0.3s ease;
}

.funnel-section:hover {
    opacity: 1 !important;
}

.arrow-connector line {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.details-box rect {
    transition: all 0.3s ease;
}

.details-box:hover rect {
    stroke-width: 3;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* Funnel Statistics Cards */
.funnel-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.funnel-stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border-top: 5px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tam-card {
    border-top-color: #3498DB;
    background: linear-gradient(135deg, #FFFFFF 0%, #EBF5FB 100%);
}

.sam-card {
    border-top-color: #E67E22;
    background: linear-gradient(135deg, #FFFFFF 0%, #FEF5E7 100%);
}

.som-card {
    border-top-color: #27AE60;
    background: linear-gradient(135deg, #FFFFFF 0%, #EAFAF1 100%);
}

.stat-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stat-card-header .stat-icon {
    font-size: 2rem;
}

.stat-card-header .stat-label {
    font-size: 1.5rem;
    font-weight: 900;
    color: #2C3E50;
    letter-spacing: 1px;
}

.stat-values {
    margin: 1.5rem 0;
}

.stat-value-primary {
    font-size: 2rem;
    font-weight: 900;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.stat-value-secondary {
    font-size: 1.3rem;
    font-weight: 700;
    color: #7F8C8D;
}

.stat-description {
    font-size: 0.95rem;
    color: #34495E;
    line-height: 1.6;
    margin: 1rem 0;
}

.stat-coverage {
    font-size: 0.85rem;
    color: #95A5A6;
    font-weight: 600;
    padding-top: 1rem;
    border-top: 2px solid #ECF0F1;
}

/* Conversion Metrics */
.conversion-metrics {
    background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.conversion-title {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.conversion-flow {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.conversion-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 200px;
    transition: all 0.3s ease;
}

.conversion-step:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.05);
}

.conversion-label {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.conversion-arrow {
    color: #3498DB;
    font-size: 2rem;
    font-weight: 900;
}

.conversion-rate {
    color: #27AE60;
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.conversion-note {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    text-align: center;
}

/* Responsive Funnel Diagram */
@media (max-width: 1024px) {
    .funnel-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .conversion-flow {
        flex-direction: column;
    }
    
    .conversion-step {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .visual-title {
        font-size: 1.5rem;
    }
    
    .funnel-emoji {
        font-size: 2rem;
    }
    
    .funnel-diagram-container {
        padding: 1rem;
    }
    
    .stat-value-primary {
        font-size: 1.5rem;
    }
    
    .stat-value-secondary {
        font-size: 1.1rem;
    }
    
    .conversion-title {
        font-size: 1.2rem;
    }
    
    .conversion-rate {
        font-size: 2rem;
    }
}
