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

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



/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

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

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #1f2937;
}

.nav-link.active {
    color: #1d4ed8;
}

.nav-link .icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.nav-link .dropdown-arrow {
    width: 12px;
    height: 12px;
    stroke-width: 2;
    transition: transform 0.2s ease;
}

.nav-link:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.settings-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    cursor: pointer;
}

.settings-btn:hover {
    background: #f1f5f9;
    color: #1f2937;
}

.settings-btn .icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.settings-btn .dropdown-arrow {
    width: 12px;
    height: 12px;
    stroke-width: 2;
    transition: transform 0.2s ease;
}

.settings-btn:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
    margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 4px;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: #f8fafc;
    color: #1f2937;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }
}

.nav-link:hover {
    color: #1d4ed8;
}

.dropdown-arrow {
    font-size: 12px;
    opacity: 0.7;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 140px 2rem 80px;
    color: #1f2937;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.hero-highlight {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #ffffff;
    color: #1d4ed8;
}

.btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-primary-upload {
    background: white;
    color: #1d4ed8;
}

.btn-secondary-post {
    background: #1d4ed8;
    color: white;
    border: 1px solid white;
}

.btn-secondary-post:hover {
    color: #1d4ed8;
    background: white;
    transform: translateY(-1px);
}


.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #60d5f2;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Dashboard Section */
.dashboard-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

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

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dashboard-left {
    padding-right: 2rem;
}

.section-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    line-height: 1.1;
}

.text-highlight {
    color: #1d4ed8;
}

.section-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.section-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #1d4ed8;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: #1d4ed8;
    border: 1px solid #1d4ed8;
}

.btn-secondary:hover {
    background: #1d4ed8;
    color: white;
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 14px;
}

.dashboard-stats-grid {
    display: flex;
    gap: 1rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex: 1;
}

.stat-icon {
    font-size: 20px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.dashboard-title {
    display: flex;
    align-items: start;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    flex-direction: column;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.dashboard-status {
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
}

.dashboard-time {
    color: #64748b;
    font-size: 12px;
}

.dashboard-metrics {
    margin-bottom: 24px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.metric-value {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 4px;
}

.metric-value.green {
    color: #10b981;
}

.dashboard-chart {
    margin-bottom: 24px;
    height: 120px;
    background: #d3d7de;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-area {
    width: 100%;
    height: 100%;
    position: relative;
}

.chart-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot.green {
    background: #10b981;
}

.dot.blue {
    background: #3b82f6;
}

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

.dashboard-bottom {
    border-top: 1px solid #f1f5f9;
    padding: 16px 0;
    background-color: #d3d7de;
}

.bottom-stats {
    display: flex;
    justify-content: space-between;
}

.bottom-stat {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
}

.bottom-stat .stat-label {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.bottom-stat .stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
}

.bottom-stat .stat-change {
    font-size: 10px;
    font-weight: 600;
}

.bottom-stat .stat-change.positive {
    color: #10b981;
}

.bottom-stat .stat-change.negative {
    color: #ef4444;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.dashboard-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-stat {
    display: flex;
    flex-direction: column;
}

.stat-title {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

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

.stat-change {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.stat-change.positive {
    color: #10b981;
}

.chart-container {
    height: 200px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-bars {
    display: flex;
    gap: 0.5rem;
    height: 100%;
    align-items: end;
}

.chart-bar {
    width: 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 0.25rem;
    min-height: 1rem;
}

/* Innovations Section */
.innovations-section {
    padding: 6rem 2rem;
    background: white;
}

.innovations-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 4rem;
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.innovation-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.innovation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 20px; */
    font-size: 24px;
}
.card-icon-center-blockchain {
    display: flex;
    justify-content: center;
    align-items: center;
     background: linear-gradient(135deg, #fef3c7, #fbbf24);
    margin-bottom: 10px;
}

.card-icon-center-bias-aware {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #d1fae5, #34d399);
    margin-bottom: 10px;
}

.card-icon-center {
    display: flex;
    justify-content: center;
    align-items: center;
     background: linear-gradient(135deg, #dbeafe, #93c5fd);
    margin-bottom: 10px;
}

.card-icon.blockchain {

}

.card-icon.bias-aware {

}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
    line-height: 1.3;
}

.card-description {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 14px;
}

.card-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.machine-learning {
    background: #ddd6fe;
    color: #1d4ed8;
}

.card-badge.predictive {
    background: #e0f2fe;
    color: #0284c7;
}

.card-badge.verified {
    background: #fef3c7;
    color: #d97706;
}

.card-badge.diversity {
    background: #d1fae5;
    color: #059669;
}

.card-badge.fair {
    background: #dbeafe;
    color: #1d4ed8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}
.feature-item-blue {
    border-left: 4px solid #0284c7;
}
.feature-item-green {
    border-left: 4px solid #198754;
}
.feature-item-orange {
    border-left: 4px solid #fd7e14;
}
.feature-item-purple {
    border-left: 4px solid #0d6efd;
}

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

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border-left: 4px solid;
}

.feature-icon.blue {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: #0284c7;
    border-left-color: #0284c7;
}

.feature-icon.green {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
    border-left-color: #059669;
}

.feature-icon.yellow {
    background: linear-gradient(135deg, #fefce8, #fef3c7);
    color: #d97706;
    border-left-color: #d97706;
}

.feature-icon.purple {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
    border-left-color: #1d4ed8;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.feature-item p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Market Intelligence Section */
.market-intelligence {
    padding: 2rem 2rem 6rem;
    background: white;
    color: #1f2937;
}

.market-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 32px;
}

.market-left {
    padding-right: 40px;
}

.market-intelligence .section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
    line-height: 1.1;
}

.market-intelligence .section-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 40px;
    text-align: left;
}

.market-stats {
    display: flex;
    gap: 48px;
}

.market-stat {
    display: flex;
    flex-direction: column;
}

.market-stat .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
}

.market-stat .stat-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.volume-trends {
    background: transparent;
}

.trends-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.trends-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.trends-badge {
    background: #10b981;
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.chart-container {
    height: 180px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-bars {
    display: flex;
    gap: 20px;
    height: 100%;
    align-items: end;
}

.chart-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.chart-bar {
    width: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 8px;
    min-height: 40px;
    box-shadow: 0 4px 8px rgba(124, 58, 237, 0.3);
}

.chart-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.metric-box {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
}

.metric-icon-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.metric-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.metric-icon.purple {
    background: #ede9fe;
    color: #1d4ed8;
}

.metric-icon.yellow {
    background: #fef3c7;
    color: #d97706;
}

.metric-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.metric-title {
    font-weight: 600;
    font-size: 15px;
    color: #1f2937;
}

.metric-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.detail-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.detail-value {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

.detail-status {
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
}

.gender-bar {
    width: 100%;
    height: 4px;
    background: #f1f5f9;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.gender-fill {
    height: 100%;
    width: 52%;
    background: #10b981;
    border-radius: 2px;
}

.experience-indicators {
    display: flex;
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
    gap: 1px;
}

.exp-bar {
    flex: 1;
    height: 100%;
}

.exp-bar.junior {
    background: #10b981;
}

.exp-bar.mid {
    background: #3b82f6;
}

.exp-bar.senior {
    background: #1d4ed8;
}

.time-comparison {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.time-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.time-value.green {
    color: #10b981;
}

.time-value.purple {
    color: #1d4ed8;
}

.time-type {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 2px;
}

.performance-note {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f0fdf4;
    border-radius: 4px;
    border-left: 3px solid #10b981;
}

.perf-icon {
    font-size: 10px;
    color: #10b981;
    font-weight: bold;
}

.perf-text {
    font-size: 11px;
    color: #059669;
    font-weight: 500;
}

.trend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
    margin-bottom: 6px;
}

.trend-tag {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 42px;
    text-align: center;
}

.trend-tag.ai {
    background: #ddd6fe;
    color: #1d4ed8;
}

.trend-tag.cloud {
    background: #dcfce7;
    color: #059669;
}

.trend-tag.fintech {
    background: #fef3c7;
    color: #d97706;
}

.trend-tag.security {
    background: #dbeafe;
    color: #2563eb;
}

.trend-value {
    font-size: 12px;
    color: #1f2937;
    font-weight: 500;
}

.intelligence-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.stat-large .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #60d5f2;
    display: block;
}

.stat-large .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.market-trends {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

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

.trend-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.trend-period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.trend-charts {
    height: 200px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-bar-container {
    display: flex;
    gap: 1rem;
    height: 100%;
    align-items: end;
}

.chart-bar.large {
    width: 3rem;
    background: linear-gradient(to top, #60d5f2, #3b82f6);
    border-radius: 0.5rem;
    height: 85%;
}

.chart-bar.medium {
    width: 3rem;
    background: linear-gradient(to top, #34d399, #10b981);
    border-radius: 0.5rem;
    height: 65%;
}

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

.metric-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.metric-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon.diversity {
    background: linear-gradient(135deg, #f3e8ff, #ddd6fe);
}

.metric-icon.time {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.metric-icon.predictive {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.metric-title {
    font-weight: 600;
    font-size: 1rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.metric-value {
    font-weight: 600;
    color: #60d5f2;
}

/* CTA Section */
.cta-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    margin-bottom : 3rem;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.cta-content {
    text-align: left;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    min-width: 280px;
}

.cta-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: block;
}

.cta-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: #f8fafc;
    color: #64748b;
    padding: 3rem 2rem 2rem;
    border-top: 1px solid #e2e8f0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.footer-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #1d4ed8;
    color: white;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #1f2937;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #64748b;
    font-size: 13px;
}

.footer-badge {
    display: flex;
    align-items: center;
}

.security-badge {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Comprehensive Mobile Responsive Design */

/* Tablet Portrait - 1024px and below */
@media (max-width: 1024px) {
    .nav {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 120px 1.5rem 60px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .dashboard-grid {
        gap: 2rem;
    }

    .dashboard-left {
        padding-right: 1rem;
    }

    .innovations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .market-header {
        gap: 2rem;
    }

    .market-left {
        padding-right: 1rem;
    }

    .market-intelligence .section-title {
        font-size: 36px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chart-bars {
        gap: 15px;
    }

    .chart-bar {
        width: 50px;
    }

    .cta-container {
        gap: 2rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Landscape - 768px and below */
@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
        height: 60px;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .logo {
        font-size: 1.25rem;
    }
    .footer,
    .footer-content,
    .footer-brand {
        text-align: center !important;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Portrait - 480px and below */
@media (max-width: 480px) {
    .nav {
        height: 50px;
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 1.125rem;
    }

    .hero {
        padding: 80px 0.75rem 30px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }

    .section-container,
    .hero-container,
    .cta-container,
    .footer-container {
        padding: 0 0.75rem;
    }

    .dashboard-section,
    .innovations-section,
    .market-intelligence,
    .cta-section,
    .footer {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .cta-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .market-intelligence .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .innovation-card,
    .feature-item {
        padding: 1.25rem 0.75rem;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 13px;
    }

    .stat-card {
        padding: 0.875rem;
    }

    .stat-number {
        font-size: 16px;
    }

    .dashboard-mockup {
        padding: 0.875rem;
    }

    .metric-box {
        padding: 0.875rem;
    }

    .chart-bars {
        gap: 8px;
    }

    .chart-bar {
        width: 35px;
    }

    .market-stats {
        gap: 1.5rem;
    }

    .market-stat .stat-number {
        font-size: 28px;
    }

    .cta-stat {
        padding: 0.875rem;
    }

    .cta-number {
        font-size: 1.5rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Extra small devices - 320px and below */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }

    .innovation-card,
    .feature-item {
        padding: 1rem 0.5rem;
    }

    .dashboard-mockup {
        padding: 0.75rem;
    }

    .chart-bars {
        gap: 6px;
    }

    .chart-bar {
        width: 30px;
    }
}

/* Top banner styling */
.top-banner {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

/* Mobile menu implementation */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 999;
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links .nav-link {
    display: block;
    padding: 0.75rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.mobile-nav-links .nav-link:hover {
    background-color: #f1f5f9;
}

/* Top banner mobile responsiveness */
@media (max-width: 768px) {
    .top-banner {
        padding: 0.5rem 1rem;
    }

    .banner-content {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .top-banner {
        padding: 0.375rem 0.75rem;
    }

    .banner-content {
        font-size: 0.8rem;
    }

    .banner-text {
        display: none;
    }

    .banner-content::after {
        content: "Live now";
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.innovation-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.innovation-card:hover .card-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.footer-links a:focus {
    outline: 2px solid #1d4ed8;
    outline-offset: 2px;
}

/* Chart animations */
.chart-bar {
    transform-origin: bottom;
    animation: chartGrow 1s ease-out;
}

@keyframes chartGrow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

/* Responsive improvements for dashboard section */
@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .dashboard-left {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .dashboard-section {
    padding: 3rem 0.5rem;
  }
  .section-container {
    padding: 0;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .dashboard-left {
    padding-right: 0;
    margin-bottom: 1.5rem;
  }
  .dashboard-stats-grid {
    flex-direction: column;
    gap: 0.75rem;
  }
  .stat-card {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
  }
  .dashboard-mockup {
    padding: 1rem;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .dashboard-section {
    padding: 2rem 0.25rem;
  }
  .dashboard-grid {
    gap: 1rem;
  }
  .dashboard-mockup {
    padding: 0.5rem;
  }
  .dashboard-stats-grid {
    gap: 0.5rem;
  }
  .stat-card {
    padding: 0.5rem;
    font-size: 0.95rem;
  }
}

/* Responsive improvements for CTA section */
@media (max-width: 1024px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
  }
  .cta-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 2rem 0.5rem;
  }
  .cta-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }
  .cta-content {
    text-align: center;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .cta-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 1.5rem 0.25rem;
  }
  .cta-title {
    font-size: 1.25rem;
  }
  .cta-description {
    font-size: 0.95rem;
  }
  .cta-buttons {
    gap: 0.5rem;
  }
  .cta-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
  }
  .cta-stat {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 320px) {
  .cta-title {
    font-size: 1rem;
  }
  .cta-description {
    font-size: 0.8rem;
  }
  .cta-buttons {
    gap: 0.25rem;
  }
  .cta-stat {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero,
  .dashboard-section,
  .innovations-section,
  .market-intelligence,
  .cta-section,
  .footer {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .section-container,
  .hero-container,
  .cta-container,
  .footer-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .market-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .market-left, .market-right {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .market-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .trends-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .chart-container {
    justify-content: center;
  }
  .metric-box {
    margin: 0 auto 1rem auto;
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .market-header {
    gap: 1.25rem;
  }
  .market-intelligence .section-title {
    font-size: 1.5rem;
  }
  .market-intelligence .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  .market-stats {
    gap: 0.5rem;
  }
  .metric-box {
    max-width: 100%;
    padding: 0.75rem;
  }
  .trends-header h3 {
    font-size: 1rem;
  }
  .chart-label {
    font-size: 0.8rem;
  }
}
