/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1rem); }

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

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

/* Glass Effect */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.navbar-brand {
    text-decoration: none;
}

.brand-icon {
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

.brand-text h1 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text small {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.75rem;
}

.nav-link {
    color: #6b7280 !important;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.nav-link:hover {
    color: #dc143c !important;
    background: rgba(220, 20, 60, 0.05);
}

.nav-link.active {
    color: white !important;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
}

.nav-link i {
    font-size: 0.75rem;
}

.nav-link span {
    display: none;
}

/* Main Content */
.main-content {
    margin-top: 70px;
}

.section {
    display: none;
    min-height: calc(100vh - 70px);
    padding: 1rem 0;
}

.section.active {
    display: block;
}

.section-title {
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #dc143c 0%, #b91c1c 100%);
    z-index: -2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-title {
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 400px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: #fbbf24;
    font-size: 1.25rem;
}

.stat-number {
    font-weight: 900;
    color: #fbbf24;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.stat-label {
    font-weight: 600;
    display: block;
    color: white;
    font-size: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
}

.btn-warning {
    background: #fbbf24;
    color: #1f2937;
}

.btn-warning:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    color: #1f2937;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: #dc143c;
    transform: translateY(-2px);
}

/* Benefits Preview */
.benefits-preview {
    background: #f9fafb;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid #dc143c;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fee2e2, #fef3c7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #dc143c;
    font-size: 1.5rem;
}

.benefit-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.benefit-metric {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 10px;
}

.metric-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #dc143c;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

/* Problem Cards */
.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 1.5rem;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.problem-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.problem-card.critical .problem-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.problem-card.high .problem-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.problem-card.medium .problem-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.severity-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.severity-badge.critical {
    background: #fee2e2;
    color: #dc2626;
}

.severity-badge.high {
    background: #fef3c7;
    color: #d97706;
}

.severity-badge.medium {
    background: #d1fae5;
    color: #059669;
}

.problem-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.problem-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.problem-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.problem-stats .stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

/* Impact Summary */
.impact-summary {
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    padding: 2rem;
    border-radius: 16px;
    color: white;
}

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

.impact-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Solution Demo */
.solution-demo {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 3rem;
}

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

.demo-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.demo-controls {
    display: flex;
    gap: 0.5rem;
}

.demo-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.demo-btn:hover {
    border-color: #dc143c;
    color: #dc143c;
}

.demo-btn.active {
    background: #dc143c;
    border-color: #dc143c;
    color: white;
}

.demo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.map-container {
    position: relative;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    height: 400px;
    overflow: hidden;
}

.interactive-map {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.route-info {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.route-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.route-info p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Payment Simulator */
.phone-mockup {
    width: 240px;
    height: 420px;
    background: #1f2937;
    border-radius: 25px;
    padding: 15px;
    position: relative;
    margin: 0 auto;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #374151;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 18px;
    overflow: hidden;
}

.payment-interface {
    padding: 1.5rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.wallet-header h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.wallet-header i {
    color: #3b82f6;
    font-size: 1.125rem;
}

.balance-display {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.balance-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.balance-amount {
    font-size: 1.125rem;
    font-weight: 700;
}

.trip-details {
    flex: 1;
    margin-bottom: 1.5rem;
}

.trip-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.75rem;
}

.trip-item:last-child {
    border-bottom: none;
    font-weight: 600;
}

.fare-amount {
    font-weight: 600;
    color: #dc143c;
}

.pay-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.pay-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid #dc143c;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.feature-list i {
    color: #10b981;
    font-size: 0.75rem;
}

/* Technology Section */
.tech-tabs .nav-pills {
    background: #f9fafb;
    padding: 0.5rem;
    border-radius: 12px;
}

.tech-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    color: #6b7280;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
}

.tech-tabs .nav-link:hover {
    color: #dc143c;
    background: rgba(220, 20, 60, 0.05);
}

.tech-tabs .nav-link.active {
    color: white;
    background: #dc143c;
}

.tech-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

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

.tech-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tech-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.tech-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Financial Section */
.kpi-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
}

.kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.kpi-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: white;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
}

.kpi-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.kpi-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.current-value,
.projected-value {
    text-align: center;
    flex: 1;
}

.current-value .label,
.projected-value .label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    font-weight: 600;
}

.current-value .value {
    font-size: 1rem;
    font-weight: 700;
    color: #6b7280;
}

.projected-value .value {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.growth-indicator {
    background: #d1fae5;
    color: #059669;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Chart Container */
.chart-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.chart-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.chart-controls {
    display: flex;
    gap: 0.5rem;
}

.chart-control {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.chart-control:hover {
    border-color: #dc143c;
    color: #dc143c;
}

.chart-control.active {
    background: #dc143c;
    border-color: #dc143c;
    color: white;
}

.chart-canvas {
    height: 300px;
    margin-bottom: 1rem;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.legend-color {
    width: 16px;
    height: 4px;
    border-radius: 2px;
}

.legend-color.current {
    background: #dc2626;
}

.legend-color.projected {
    background: #10b981;
}

/* Breakdown Sections */
.breakdown-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    height: 100%;
}

.breakdown-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.revenue-pie-chart {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.revenue-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.revenue-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
}

.revenue-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.revenue-color.fare {
    background: #dc2626;
}

.revenue-color.advertising {
    background: #f59e0b;
}

.revenue-color.data {
    background: #3b82f6;
}

.revenue-color.partnership {
    background: #10b981;
}

.revenue-label {
    flex: 1;
    font-size: 0.875rem;
    color: #374151;
}

.revenue-amount {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

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

.cost-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cost-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.cost-fill {
    height: 100%;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    border-radius: 3px;
    transition: width 1s ease;
    width: 0%;
}

.cost-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.cost-label {
    color: #374151;
}

.cost-percentage {
    font-weight: 600;
    color: #6b7280;
}

.cost-amount {
    font-weight: 600;
    color: #1f2937;
}

/* Roadmap Styles */
.roadmap-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-timeline {
    position: relative;
    padding: 2rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3b82f6, #10b981, #f59e0b);
    transform: translateX(-50%);
    border-radius: 2px;
}

.roadmap-phase {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.roadmap-phase:nth-child(even) {
    flex-direction: row-reverse;
}

.phase-marker {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.phase-marker.phase-1 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.phase-marker.phase-2 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.phase-marker.phase-3 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

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

.phase-number {
    font-size: 1.25rem;
    font-weight: 900;
}

.phase-content {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.phase-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.roadmap-phase:nth-child(odd) .phase-content::before {
    left: -30px;
    border-right-color: white;
}

.roadmap-phase:nth-child(even) .phase-content::before {
    right: -30px;
    border-left-color: white;
}

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

.phase-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
}

.phase-duration,
.phase-budget {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f9fafb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
}

.phase-description p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.phase-milestones h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

.milestone-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #dc143c;
}

.milestone-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.milestone-content h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.milestone-content p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.milestone-timeline {
    font-size: 0.75rem;
    color: #dc143c;
    font-weight: 600;
    background: rgba(220, 20, 60, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
}

.phase-metrics h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

.metric-card {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: #dc143c;
    transform: translateY(-2px);
}

.metric-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 900;
    color: #dc143c;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

/* Investment Summary */
.investment-summary {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.investment-breakdown h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
}

.breakdown-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.breakdown-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.breakdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breakdown-label {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.breakdown-amount {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.breakdown-bar {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.breakdown-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1.5s ease;
}

.total-investment {
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.total-investment::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.investment-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.total-investment h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.investment-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.investment-timeline {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.roi-projection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.roi-label {
    font-size: 1rem;
    font-weight: 600;
}

.roi-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fbbf24;
}

/* Tusimbudde Fund Styles */
.fund-overview {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.fund-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.fund-stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.fund-stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
}

.fund-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fbbf24;
    font-size: 1.5rem;
}

.fund-content h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.fund-content p {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    margin: 0;
}

/* Benefits Navigation */
.benefits-navigation .nav-pills {
    background: #f9fafb;
    padding: 0.75rem;
    border-radius: 16px;
    border: none;
}

.benefits-navigation .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    color: #6b7280;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.benefits-navigation .nav-link:hover {
    color: #dc143c;
    background: rgba(220, 20, 60, 0.05);
    transform: translateY(-2px);
}

.benefits-navigation .nav-link.active {
    color: white;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.benefit-tab-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
    transition: all 0.3s ease;
}

.benefits-navigation .nav-link.active .benefit-tab-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Benefit Cards */
.benefit-section {
    padding: 2rem 0;
}

.benefit-card.premium {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #dc143c;
}

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

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-icon.healthcare {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.benefit-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    flex: 1;
    margin-left: 1rem;
}

.innovation-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.benefit-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
}

.benefit-features i {
    color: #10b981;
    font-size: 0.875rem;
}

.benefit-value {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.value-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #dc143c;
    margin-bottom: 0.5rem;
}

.value-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

/* Retirement Calculator */
.retirement-calculator {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.retirement-calculator h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
}

.calculator-inputs {
    margin-bottom: 2rem;
}

.calculator-inputs .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.calculator-inputs .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.calculator-inputs .form-control:focus {
    border-color: #dc143c;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.calculator-results {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 16px;
}

.result-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.result-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 900;
    color: #dc143c;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

/* Pension Features */
.pension-features {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.pension-features h5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #dc143c;
}

.feature-item i {
    color: #dc143c;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.feature-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Emergency Cards */
.emergency-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #dc143c;
}

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

.emergency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.emergency-card h5 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.emergency-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #dc143c;
    margin-bottom: 1rem;
}

.emergency-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.emergency-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.emergency-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.emergency-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
}

/* Innovation Cards */
.innovation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.innovation-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
}

.innovation-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.innovation-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #dc143c;
}

.innovation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.innovation-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.innovation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.innovation-card h5 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.innovation-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.innovation-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-tag {
    background: linear-gradient(135deg, #fee2e2, #fef3c7);
    color: #dc143c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(220, 20, 60, 0.2);
}

/* Fund Performance Charts */
.fund-performance {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.fund-performance h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
}

.chart-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.chart-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

/* Training Academy Styles */
.academy-overview {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.academy-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.academy-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.academy-stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
}

.academy-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fbbf24;
    font-size: 1.5rem;
}

.academy-stat .stat-content h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.academy-stat .stat-content p {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    margin: 0;
}

/* Course Categories */
.course-categories .nav-pills {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 20px;
    border: none;
}

.course-categories .nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    color: #6b7280;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
    text-align: left;
    flex: 1;
}

.course-categories .nav-link:hover {
    color: #dc143c;
    background: rgba(220, 20, 60, 0.05);
    transform: translateY(-2px);
}

.course-categories .nav-link.active {
    color: white;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.course-categories .nav-link.active .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.category-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.category-title {
    font-size: 1.125rem;
    font-weight: 700;
}

.category-count {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Course Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.course-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-card.featured {
    border: 2px solid #dc143c;
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.course-image {
    height: 120px;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.course-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.course-content {
    padding: 2rem;
}

.course-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.course-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.course-meta i {
    color: #dc143c;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #e5e7eb;
}

/* Certification Levels */
.certification-levels {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.level-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.level-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.level-card.bronze {
    border-color: #cd7f32;
}

.level-card.bronze:hover {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.level-card.silver {
    border-color: #c0c0c0;
}

.level-card.silver:hover {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.level-card.gold {
    border-color: #ffd700;
}

.level-card.gold:hover {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
}

.level-card.platinum {
    border-color: #e5e4e2;
}

.level-card.platinum:hover {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.level-card.master {
    border-color: #dc143c;
}

.level-card.master:hover {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.level-card.instructor {
    border-color: #1f2937;
}

.level-card.instructor:hover {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.level-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #dc143c;
    background: rgba(220, 20, 60, 0.1);
}

.level-card h5 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.level-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.level-requirements {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.level-requirements span {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    flex: 1;
    text-align: center;
}

/* Learning Features */
.learning-features {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.learning-features h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
}

.feature-highlight {
    background: #f9fafb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-highlight:hover {
    transform: translateY(-4px);
    border-color: #dc143c;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-highlight .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-highlight h5 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-highlight p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer .brand-icon {
    background: linear-gradient(135deg, #dc143c, #b91c1c);
    padding: 0.75rem;
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
}

.footer .brand-text h3 {
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0;
}

.footer .brand-text p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

.footer h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

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

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

.footer ul li a {
    color: #d1d5db;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer ul li a:hover {
    color: #dc143c;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #dc143c;
    color: white;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.contact-item i {
    color: #dc143c;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-link span {
        display: inline;
    }
    
    .nav-link {
        padding: 0.5rem 1rem !important;
    }
    
    .brand-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .brand-text h1 {
        font-size: 1.5rem;
    }
    
    .brand-text small {
        font-size: 0.875rem;
    }
}

@media (min-width: 992px) {
    .container {
        padding: 0 2rem;
    }
    
    .demo-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .demo-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .chart-controls {
        justify-content: center;
    }
    
    .roadmap-timeline::before {
        left: 30px;
    }
    
    .roadmap-phase {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .phase-marker {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
    }
    
    .phase-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .phase-number {
        font-size: 0.875rem;
    }
    
    .phase-content::before {
        left: -15px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .course-categories .nav-pills {
        flex-direction: column;
    }
    
    .course-categories .nav-link {
        justify-content: center;
        text-align: center;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .main-content {
        margin-top: 60px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 350px;
        padding: 12px;
    }
    
    .payment-interface {
        padding: 1rem 0.75rem;
    }
    
    .balance-display {
        padding: 0.75rem;
    }
    
    .balance-amount {
        font-size: 1rem;
    }
    
    .kpi-values {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .problem-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .chart-legend {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .milestone-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-navigation .nav-pills {
        flex-direction: column;
    }
    
    .benefits-navigation .nav-link {
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .demo-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .demo-controls {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .demo-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .phase-content {
        padding: 1.5rem;
    }
    
    .milestone-item {
        padding: 1rem;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .level-requirements {
        flex-direction: column;
    }
}

/* Loading States */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f4f6;
    border-top: 2px solid #dc143c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus States */
.btn:focus,
.nav-link:focus,
.demo-btn:focus,
.chart-control:focus {
    outline: 2px solid #dc143c;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    .section {
        display: block !important;
        page-break-inside: avoid;
    }
}