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

html {
    scroll-behavior: smooth;
}

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

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

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

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

    .nav-links a {
        text-decoration: none;
        color: #4b5563;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: #2563eb;
        }

.cta-button {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 6rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

    .hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    background: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(255,255,255,0.3);
    }

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

    .btn-secondary:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.6);
    }

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 850px;
    margin: 0 auto;
}

/* Problem-Solution Grid */
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.problem-side {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid #ef4444;
}

.solution-side {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid #22c55e;
}

.problem-title, .solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.problem-title {
    color: #dc2626;
}

.solution-title {
    color: #16a34a;
}

.problem-item, .solution-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .problem-item:hover, .solution-item:hover {
        transform: translateY(-2px);
    }

.problem-icon, .solution-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.problem-content h4, .solution-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.problem-content p, .solution-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Methodology Section */
.methodology-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4rem 0;
    gap: 0.5rem;
}

.methodology-step {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

    .methodology-step:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.step-details {
    list-style: none;
    padding: 0;
}

    .step-details li {
        padding: 0.4rem 0;
        color: #4b5563;
        font-size: 0.85rem;
    }

.methodology-arrow {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
    margin: 0 0.5rem;
}

.methodology-benefits {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
    text-align: center;
}

    .methodology-benefits h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-5px);
    }

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

.benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Dashboard Previews Styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.dashboard-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .dashboard-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 50px rgba(0,0,0,0.15);
    }

.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .dashboard-header h3 {
        font-size: 1.3rem;
        font-weight: 600;
    }

.dashboard-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.dashboard-preview {
    padding: 1.5rem;
    min-height: 300px;
}

.mock-dashboard {
    width: 100%;
    height: 100%;
}

/* KPI Cards */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kpi-card {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
}

    .kpi-card.revenue {
        border-left-color: #374151;
    }

    .kpi-card.profit {
        border-left-color: #22c55e;
    }

    .kpi-card.ebitda {
        border-left-color: #f59e0b;
    }

    .kpi-card.customers {
        border-left-color: #6b7280;
    }

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

.kpi-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.kpi-change {
    font-size: 0.8rem;
    font-weight: 600;
}

    .kpi-change.positive {
        color: #22c55e;
    }

    .kpi-change.negative {
        color: #ef4444;
    }

/* Charts */
.charts-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.chart-container {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
}

.chart-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.mock-chart {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Target Progress Bars */
.target-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .target-item span:first-child {
        min-width: 60px;
        font-size: 0.8rem;
        color: #6b7280;
    }

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #22c55e;
    border-radius: 4px;
    transition: width 0.3s ease;
}

    .progress-fill.warning {
        background: #f59e0b;
    }

.progress-text {
    position: absolute;
    right: 8px;
    top: -20px;
    font-size: 0.7rem;
    color: #6b7280;
}

/* Profitability Styles */
.profitability-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.matrix-container {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
}

.matrix-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.profitability-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.matrix-cell {
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

    .matrix-cell.high-profit {
        background: #22c55e;
    }

    .matrix-cell.medium-profit {
        background: #f59e0b;
    }

    .matrix-cell.low-profit {
        background: #ef4444;
    }

.margin-analysis {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
}

.margin-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.margin-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.margin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.margin-label {
    font-size: 0.8rem;
    color: #6b7280;
}

.margin-value {
    font-weight: 600;
    font-size: 0.9rem;
}

    .margin-value.positive {
        color: #22c55e;
    }

    .margin-value.neutral {
        color: #f59e0b;
    }

/* Top Lists */
.top-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.top-list {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
}

.list-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.list-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.list-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: white;
    border-radius: 4px;
    font-size: 0.8rem;
}

.profit-value {
    font-weight: 600;
    color: #22c55e;
}

/* Sales Dashboard Styles */
.sales-kpis {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
}

.sales-gauge {
    text-align: center;
}

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

.gauge-circle {
    position: relative;
    display: inline-block;
}

.gauge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #22c55e;
}

.sales-metrics {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.sales-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.funnel-container, .regional-performance {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
}

.funnel-title, .region-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.sales-funnel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.funnel-stage {
    background: #667eea;
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-align: center;
    transition: width 0.3s ease;
}

.region-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.region-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .region-item span:first-child {
        min-width: 60px;
        font-size: 0.8rem;
        color: #6b7280;
    }

.region-bar {
    flex: 1;
    height: 20px;
    background: #e5e7eb;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
}

.region-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #667eea;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.region-bar span {
    font-size: 0.7rem;
    color: #374151;
    font-weight: 600;
    z-index: 1;
}

/* Cash Flow Dashboard Styles */
.cash-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cash-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.cash-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
}

    .cash-item.positive {
        border-left-color: #22c55e;
    }

    .cash-item.negative {
        border-left-color: #ef4444;
    }

    .cash-item.neutral {
        border-left-color: #6b7280;
    }

.cash-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.cash-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.cash-change {
    font-size: 0.8rem;
    font-weight: 600;
    color: #22c55e;
}

.cash-days {
    font-size: 0.8rem;
    color: #6b7280;
}

.cash-forecast {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
}

.forecast-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.forecast-chart {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cash-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.receivables, .payables {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
}

.detail-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.aging-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.aging-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border-left: 3px solid #22c55e;
}

    .aging-item.warning {
        border-left-color: #f59e0b;
    }

    .aging-item.danger {
        border-left-color: #ef4444;
    }

.aging-period {
    font-size: 0.8rem;
    color: #6b7280;
}

.aging-amount {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Dashboard Footer */
.dashboard-footer {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    display: flex;
    gap: 1rem;
    border-top: 1px solid #e5e7eb;
}

.preview-btn, .demo-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.preview-btn {
    background: #e5e7eb;
    color: #374151;
}

    .preview-btn:hover {
        background: #d1d5db;
        transform: translateY(-2px);
    }

.demo-btn {
    background: #667eea;
    color: white;
}

    .demo-btn:hover {
        background: #5a67d8;
        transform: translateY(-2px);
    }

/* Sectors Slider Styles */
.sectors-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.sectors-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.sector-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: #e5e7eb;
    color: #374151;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

    .sector-tab:hover {
        background: #d1d5db;
        transform: translateY(-2px);
    }

    .sector-tab.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    }

.sectors-content {
    position: relative;
    min-height: 400px;
    margin-bottom: 2rem;
}

.sector-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

    .sector-panel.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        position: relative;
    }

.sector-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-left: 5px solid #667eea;
}

.sector-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.sector-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.sector-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.sector-subtitle {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.sector-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    text-align: justify;
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

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

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

    .form-group label {
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        font-size: 0.9rem;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #374151;
        }

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    cursor: pointer;
    line-height: 1.4;
}

    .checkbox-label input[type="checkbox"] {
        margin: 0;
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }

.submit-btn {
    background: #374151;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .submit-btn:hover {
        background: #1f2937;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(55, 65, 81, 0.2);
    }

/* Demo CTA */
.demo-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.demo-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.demo-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.demo-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

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

    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .methodology-container {
        flex-direction: column;
        gap: 2rem;
    }

    .methodology-arrow {
        transform: rotate(90deg);
    }

    /* Dashboard Responsive */
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dashboard-preview {
        padding: 1rem;
    }

    .kpi-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .top-lists {
        grid-template-columns: 1fr;
    }

    .sales-visuals {
        grid-template-columns: 1fr;
    }

    .cash-details {
        grid-template-columns: 1fr;
    }

    .demo-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cash-overview {
        grid-template-columns: 1fr;
    }

    .cash-summary {
        grid-template-columns: 1fr;
    }

    /* Sectors Responsive */
    .sectors-nav {
        gap: 0.5rem;
    }

    .sector-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .sector-card {
        padding: 2rem;
    }

    .sector-header {
        flex-direction: column;
        text-align: center;
    }

    .sector-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

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

    .charts-row {
        grid-template-columns: 1fr;
    }

    .profitability-section {
        grid-template-columns: 1fr;
    }

    .sales-kpis {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
