:root {
    /* Premium Dark Palette */
    --bg-dark: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    /* Glass-ready */
    --bg-card-hover: rgba(51, 65, 85, 0.8);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;

    /* Vibrant Accents */
    --accent-primary: #38bdf8;
    /* Sky Blue */
    --accent-glow: rgba(56, 189, 248, 0.5);
    --accent-secondary: #818cf8;
    /* Indigo */

    --success: #4ade80;
    --danger: #f87171;
    --border: rgba(148, 163, 184, 0.1);

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    --gradient-bg: radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(129, 140, 248, 0.08), transparent 25%);

    /* Glass Effect */
    --glass-bg: rgba(30, 41, 59, 0.65);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --backdrop-blur: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    background-image: var(--gradient-bg);
    background-attachment: fixed;
    /* Parallax-like feel */
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

/* --- Glassmorphism Utility --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 1rem;
}

/* Layout */
.app-container {
    display: flex;
    height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: rgba(15, 23, 42, 0.95);
    /* Slightly more opaque */
    backdrop-filter: blur(10px);
    border-right: var(--glass-border);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    flex-shrink: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links li {
    padding: 0.85rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
}

.nav-links li:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    transform: translateX(4px);
}

.nav-links li.active {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2.5rem;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.25rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
}

.btn-secondary {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    width: 100%;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(56, 189, 248, 0.1);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Input Fields */
.input-field {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    width: 100%;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.input-field:focus {
    border-color: var(--accent-primary);
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

/* Views & Animations */
.view {
    display: none;
    animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.view.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home / Hero */
.hero-section {
    padding: 4rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 55%;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.stat-item {
    text-align: right;
    margin-bottom: 2rem;
}

.stat-number {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    color: transparent;
    background: var(--gradient-brand);
    background-clip: text;
    -webkit-background-clip: text;
    line-height: 1;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

/* KPI Grid */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.kpi-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.kpi-card h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.kpi-card .value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.kpi-card.highlight {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(30, 41, 59, 0.7) 100%);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

/* Live Ticker */
.live-ticker-container {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
    border-left: 4px solid var(--accent-primary);
}

.ticker-label {
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--accent-primary);
    white-space: nowrap;
    letter-spacing: 2px;
}

.ticker-content {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    animation: ticker-slide 30s linear infinite;
}

@keyframes ticker-slide {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- Insights Section (New) --- */
.insights-section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.insight-card {
    padding: 1.5rem;
    border-left: 4px solid transparent;
}

.insight-card.danger {
    border-left-color: var(--danger);
    background: linear-gradient(90deg, rgba(248, 113, 113, 0.05) 0%, rgba(30, 41, 59, 0.6) 100%);
}

.insight-card.success {
    border-left-color: var(--success);
    background: linear-gradient(90deg, rgba(74, 222, 128, 0.05) 0%, rgba(30, 41, 59, 0.6) 100%);
}

.insight-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.insight-icon {
    font-size: 1.5rem;
}

.insight-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.insight-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Charts */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.chart-container {
    padding: 1.5rem;
    position: relative;
    height: 400px;
}

.chart-container.large {
    grid-column: span 2;
    height: 450px;
}

/* --- Data Table Styles (New) --- */
.data-table-container {
    padding: 0;
    /* Let table fill container */
    overflow: hidden;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-primary);
}

thead {
    background: rgba(15, 23, 42, 0.5);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(5px);
}

th {
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--accent-primary);
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.95rem;
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Custom Scrollbar for Table */
.data-table-container::-webkit-scrollbar {
    width: 8px;
}

.data-table-container::-webkit-scrollbar-track {
    background: transparent;
}

.data-table-container::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.data-table-container::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* --- Map View --- */
#map-container {
    height: 600px;
    width: 100%;
    margin-bottom: 2rem;
    z-index: 1;
    /* Ensure it stays under fixed headers if any */
}

/* Leaflet Dark Mode Overrides */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.leaflet-popup-content h3 {
    margin: 0 0 8px 0;
    color: var(--accent-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.map-popup .popup-stat {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.map-popup .popup-stat strong {
    color: var(--text-primary);
}

/* Pulsing Hotspots */
.pulse-marker {
    animation: marker-pulse 2s infinite ease-out;
}

@keyframes marker-pulse {
    0% {
        stroke-width: 2;
        stroke-opacity: 1;
    }

    100% {
        stroke-width: 15;
        stroke-opacity: 0;
    }
}

/* Custom Community Map Markers */
.community-marker {
    background: transparent;
    border: none;
}

.marker-blob {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 14px;
    animation: marker-bounce 0.5s ease infinite alternate;
}

@keyframes marker-bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-5px);
    }
}

/* Float Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.projection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Success State for Button */
.cta-button.success {
    background: var(--success) !important;
    pointer-events: none;
}

/* --- Premium Selection Cards --- */
.type-selector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.type-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.type-card .type-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.type-card span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.type-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.type-card.active {
    background: rgba(56, 189, 248, 0.1);
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.type-card.active span {
    color: var(--accent-primary);
}

.type-card.active .type-icon {
    transform: scale(1.2);
}

/* --- Compact Simulator Charts --- */
.card-chart {
    height: 80px;
    width: 100%;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.projection-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.projection-card .value {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.projection-card .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leaflet-container {
    font-family: 'Inter', sans-serif;
}

/* Simulator Expansion */
.simulation-container {
    padding: 2rem;
}

.simulator-controls {
    margin-bottom: 2.5rem;
}

.control-group label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

#sim-lanes-val,
#sim-budget-val {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

/* Animations */
.glass-panel {
    animation: fadeIn 0.8s ease-out backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-in>* {
    opacity: 0;
    animation: slideIn 0.5s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stagger-in>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-in>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-in>*:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-in>*:nth-child(4) {
    animation-delay: 0.4s;
}

input[type=range] {
    width: 100%;
    margin-top: 1.5rem;
    accent-color: var(--accent-primary);
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    appearance: none;
}

input[type=range]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-primary);
}

.projection-results {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.projection-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.projection-card.good .value {
    color: var(--success);
    text-shadow: 0 0 15px rgba(74, 222, 128, 0.3);
}

.projection-card.bad .value {
    color: var(--danger);
    text-shadow: 0 0 15px rgba(248, 113, 113, 0.3);
}

/* Gap Finder */
.gap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gap-card {
    padding: 1.5rem;
    border-left: 4px solid var(--danger);
    transition: all 0.3s ease;
}

.gap-card:hover {
    transform: translateY(-5px);
    border-left-width: 8px;
}

.gap-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.gap-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.gap-highlight {
    background: rgba(248, 113, 113, 0.1);
    color: var(--danger);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* AI Predictor */
.ai-container {
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.ai-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ai-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ai-result-panel {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem;
    border: 2px solid var(--accent-primary);
}

.risk-gauge {
    text-align: center;
    flex-shrink: 0;
}

.gauge-value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-primary);
}

.gauge-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.ai-advice {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Community Feedback */
.community-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
}

.report-form {
    padding: 2rem;
    height: fit-content;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.feedback-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 700px;
    overflow-y: auto;
    padding-right: 1rem;
}

.feedback-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feedback-card:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
}

.fb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.fb-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: var(--accent-primary);
    color: white;
}

.status-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
}

.status-pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-under-review {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.status-resolved {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.fb-loc {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.fb-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.fb-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
}

.upvote-btn {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: var(--accent-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.upvote-btn:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    .app-container {
        flex-direction: column;
        overflow-y: hidden;
    }

    .sidebar {
        width: 100%;
        height: 70px;
        padding: 0.5rem 1rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-right: none;
        border-bottom: var(--glass-border);
    }

    .nav-links {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        border-top: var(--glass-border);
        padding: 0;
        z-index: 100;
        display: flex;
        justify-content: space-around;
        height: 60px;
        align-items: center;
        backdrop-filter: blur(10px);
    }

    .nav-links li {
        margin: 0;
        border-radius: 0;
        background: transparent !important;
        box-shadow: none !important;
        font-size: 0.75rem;
        flex: 1;
        text-align: center;
        padding: 0.5rem 0;
        border: none;
    }

    .nav-links li.active {
        color: var(--accent-primary);
        border-top: 2px solid var(--accent-primary);
    }

    .main-content {
        padding: 1.5rem;
        padding-bottom: 80px;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .kpi-grid,
    .charts-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .chart-container.large {
        grid-column: span 1;
    }

    .projection-results {
        flex-direction: column;
    }
}