/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
    background-image: 
        linear-gradient(rgba(30, 136, 229, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 136, 229, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    background: none;
}

.btn:focus {
    outline: 2px solid #1E88E5;
    outline-offset: 2px;
}

.btn-primary {
    background-color: #1E88E5;
    color: white;
}

.btn-primary:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.btn-secondary {
    background-color: #6B7280;
    color: white;
}

.btn-secondary:hover {
    background-color: #4B5563;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #1E88E5;
    color: #1E88E5;
    background-color: white;
}

.btn-outline:hover {
    background-color: #1E88E5;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #5a6c7d;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1E88E5;
    background-color: #e3f2fd;
}

/* Corporate Hero Section */
.hero-corporate {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-corporate h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-corporate h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Key Metrics */
.key-metrics {
    padding: 4rem 0;
    background: white;
}

.metrics-grid {
    display: grid;
    gap: 2rem;
}

.metric-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #1E88E5;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E88E5;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.metric-note {
    font-size: 0.8rem;
    color: #6B7280;
}

/* Navigation Cards */
.navigation-cards {
    padding: 4rem 0;
    background: #f8f9fa;
}

.nav-cards-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.nav-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.nav-card.customer {
    border-color: #27ae60;
}

.nav-card.investor {
    border-color: #1E88E5;
}

.nav-card.partner {
    border-color: #f39c12;
}

.nav-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.nav-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.nav-card p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.nav-card-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Value Proposition */
.value-proposition {
    padding: 4rem 0;
    background: white;
}

.value-content {
    text-align: center;
}

.value-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.value-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
}

/* Mini Banner */
.mini-banner {
    background: #1E88E5;
    color: white;
    padding: 1rem 0;
}

.banner-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Continue Section */
.continue-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.continue-content {
    max-width: 600px;
    margin: 0 auto;
}

.continue-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.continue-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* App Preview */
.app-preview {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.app-mockup {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.app-screenshot {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.app-screenshot:hover {
    transform: scale(1.05);
}

.app-features-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Services Page */
.services-main {
    padding: 4rem 0;
    background: white;
}

/* App Gallery */
.app-gallery {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-caption h4 {
    color: #1E88E5;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.gallery-caption p {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Technology Integration */
.technology-integration {
    padding: 4rem 0;
    background: white;
}

.tech-showcase {
    display: grid;
    gap: 3rem;
    align-items: center;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
}

.tech-content {
    text-align: left;
}

.tech-content h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.tech-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.tech-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tech-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1E88E5;
    font-weight: bold;
}

.tech-mockups {
    display: grid;
    gap: 2rem;
    justify-items: center;
}

.mockup-item {
    text-align: center;
}

.mockup-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.mockup-image:hover {
    transform: scale(1.05);
}

.mockup-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #1E88E5;
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.15);
    transform: translateY(-4px);
}

.service-card.emergency {
    border-color: #e74c3c;
}

.service-card.emergency:hover {
    border-color: #c0392b;
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.detail-toggle {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    color: #1E88E5;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.detail-toggle:hover {
    background: #1E88E5;
    color: white;
}

.service-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 1rem;
}

.service-detail.active {
    max-height: 500px;
}

.detail-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    margin-top: 1rem;
}

.detail-content h4 {
    color: #1E88E5;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.detail-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.detail-content li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.detail-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1E88E5;
}

/* Subscriptions Page */
.subscriptions-main {
    padding: 4rem 0;
    background: white;
}

.pricing-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-grid-section {
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: #1E88E5;
}

.pricing-card.featured {
    border-color: #1E88E5;
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.special {
    border-color: #e74c3c;
    border-width: 3px;
}

.pricing-header {
    background: #f8f9fa;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: white;
}

.pricing-card.special .pricing-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.pricing-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #2c3e50;
}

.pricing-card.featured .pricing-header h3,
.pricing-card.special .pricing-header h3 {
    color: white;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge {
    background: #6B7280;
    color: white;
}

.pricing-badge.popular {
    background: #27ae60;
    color: white;
}

.pricing-badge.limited {
    background: #e74c3c;
    color: white;
}

.pricing-price {
    padding: 2rem;
    text-align: center;
    background: white;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1E88E5;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1E88E5;
    margin-left: 0.25rem;
}

.price-period {
    font-size: 1rem;
    color: #6B7280;
    margin-left: 0.5rem;
}

.pricing-features {
    padding: 0 1.5rem 1.5rem;
}

.pricing-features ul {
    list-style: none;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.pricing-action {
    padding: 1.5rem;
    text-align: center;
    background: #f8f9fa;
}

.pricing-note {
    padding: 1rem 1.5rem;
    background: #e3f2fd;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

.pricing-note small {
    color: #6B7280;
    font-style: italic;
}

/* Comparison Table */
.comparison-table-section {
    margin-bottom: 4rem;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    text-align: center;
}

.comparison-header {
    background: #1E88E5;
    color: white;
    font-weight: 600;
}

.comparison-row {
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: #f8f9fa;
}

.check {
    color: #27ae60;
    font-size: 1.2rem;
    font-weight: bold;
}

.cross {
    color: #e74c3c;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Service Areas */
.service-areas-section {
    margin-bottom: 4rem;
}

.areas-map {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.areas-grid {
    display: grid;
    gap: 2rem;
}

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1E88E5;
}

.area-card h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.area-card p {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.area-card ul {
    list-style: none;
    margin: 0;
}

.area-card li {
    padding: 0.25rem 0;
    color: #5a6c7d;
    padding-left: 1rem;
    position: relative;
}

.area-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1E88E5;
}

/* Subscription FAQ */
.subscription-faq {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

/* Technical Note Section */
.technical-note-section {
    margin-bottom: 4rem;
}

.technical-note {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #1E88E5;
}

.technical-note h3 {
    color: #1E88E5;
    text-align: center;
    margin-bottom: 2rem;
}

.tech-info-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tech-info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.tech-info-item h4 {
    color: #1E88E5;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tech-info-item p {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.tech-note-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.tech-note-footer small {
    color: #6B7280;
    font-style: italic;
}

/* Model Page Styles */
.model-main {
    padding: 4rem 0;
    background: white;
}

/* Service Flow */
.service-flow {
    margin-bottom: 4rem;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1E88E5;
}

.step-number {
    background: #1E88E5;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1E88E5;
    margin-bottom: 0.75rem;
}

.package-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.package-option {
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #27ae60;
}

.technical-note {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid #1E88E5;
}

/* Packages & Pricing */
.packages-pricing {
    margin-bottom: 4rem;
}

.pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.pricing-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1E88E5;
}

.pricing-section h3 {
    color: #1E88E5;
    margin-bottom: 1.5rem;
}

.price-table {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 600;
    color: #2c3e50;
}

.price-value {
    font-weight: 700;
    color: #1E88E5;
}

.additional-energy {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.additional-energy h4 {
    color: #f39c12;
    margin-bottom: 1rem;
}

.energy-examples,
.energy-calculations {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.energy-example,
.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.pricing-rationale {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #27ae60;
    margin-top: 1rem;
}

.pricing-note {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid #f39c12;
}

/* Target Audience */
.target-audience {
    margin-bottom: 4rem;
}

.audience-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.audience-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #1E88E5;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.audience-card h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.audience-card p {
    text-align: left;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* Positioning */
.positioning {
    margin-bottom: 4rem;
    background: #f8f9fa;
    padding: 3rem 0;
}

.positioning-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.positioning-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.positioning-card.home {
    border-left: 4px solid #27ae60;
}

.positioning-card.station {
    border-left: 4px solid #f39c12;
}

.positioning-card.yolsarj {
    border-left: 4px solid #1E88E5;
    border-width: 4px;
}

.positioning-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.pos-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pos-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pos-row:last-child {
    border-bottom: none;
}

.pos-row.positive {
    background: #e8f5e8;
    padding: 0.5rem;
    border-radius: 4px;
}

.pos-row.negative {
    background: #ffeaea;
    padding: 0.5rem;
    border-radius: 4px;
}

.pos-label {
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.pos-value {
    color: #1E88E5;
    font-weight: 600;
    text-align: right;
    flex: 1;
}

.positioning-message {
    background: #1E88E5;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.positioning-message h3 {
    color: white;
    margin-bottom: 1rem;
}

.positioning-message p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Why People Want */
.why-people-want {
    margin-bottom: 4rem;
}

.reasons-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #1E88E5;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-4px);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.reason-card h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.reason-card p {
    color: #5a6c7d;
    margin: 0;
}

/* Muğla Example */
.mugla-example {
    margin-bottom: 4rem;
    background: #f8f9fa;
    padding: 3rem 0;
}

.operation-details {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.op-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1E88E5;
}

.op-section h3 {
    color: #1E88E5;
    margin-bottom: 0.75rem;
}

.service-duration {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.service-duration h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.duration-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.duration-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #27ae60;
}

.duration-label {
    font-weight: 600;
    color: #2c3e50;
}

.duration-value {
    font-weight: 700;
    color: #27ae60;
}

.daily-capacity {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
    border: 1px solid #1E88E5;
}

.daily-capacity h3 {
    color: #1E88E5;
    margin-bottom: 0.75rem;
}

/* Financial Scenarios */
.financial-scenarios {
    margin-bottom: 4rem;
}

.assumptions-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid #1E88E5;
}

.assumptions-summary h3 {
    color: #1E88E5;
    margin-bottom: 1.5rem;
}

.assumptions-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.assumption-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border-left: 3px solid #1E88E5;
}

.assumption-label {
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.assumption-value {
    color: #1E88E5;
    font-weight: 600;
    text-align: right;
    flex: 2;
}

.scenarios-table h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.scenario-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.scenario-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.scenario-card.negative {
    border-left: 4px solid #e74c3c;
}

.scenario-card.positive {
    border-left: 4px solid #27ae60;
}

.scenario-card.excellent {
    border-left: 4px solid #1E88E5;
}

.scenario-card h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.scenario-calc {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calc-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.calc-line:last-child {
    border-bottom: none;
}

.calc-line.payback {
    background: #e3f2fd;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    color: #1E88E5;
}

.additional-revenue {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

.additional-revenue h4 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.financial-warning {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #f39c12;
    margin-top: 1.5rem;
}

.financial-warning p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* Risks & Measures */
.risks-measures {
    margin-bottom: 4rem;
}

.risks-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.risk-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e74c3c;
}

.risk-card h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.risk-content p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.risk-content p:last-child {
    margin-bottom: 0;
}

/* Expandable Content */
.expand-toggle {
    background: #1E88E5;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    margin: 2rem 0;
    transition: background-color 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.expand-toggle:hover {
    background: #1565C0;
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.expandable-content.active {
    max-height: 1000px;
}

.expanded-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
    border: 2px solid #1E88E5;
}

.expanded-info h4 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.expanded-info ul {
    list-style: none;
    margin: 0;
}

.expanded-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.expanded-info li:last-child {
    border-bottom: none;
}

.expanded-info li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1E88E5;
    font-weight: bold;
}

/* Model FAQ */
.model-faq {
    background: #f8f9fa;
    padding: 3rem 0;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    color: white;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Global Examples */
.examples-main {
    padding: 4rem 0;
    background: white;
}

.examples-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.example-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.example-card:hover {
    border-color: #1E88E5;
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.15);
    transform: translateY(-4px);
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.example-header h3 {
    margin: 0;
    color: #2c3e50;
}

.example-tag {
    background: #1E88E5;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.info-toggle {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    color: #1E88E5;
    font-weight: 500;
    margin-top: 1rem;
}

.info-toggle:hover {
    background: #1E88E5;
    color: white;
}

.examples-summary {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.position-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #1E88E5;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1E88E5;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 600;
}

/* Fleet Operations */
.fleet-main {
    padding: 4rem 0;
    background: white;
}

.coverage-example {
    margin-bottom: 4rem;
}

.map-container {
    display: grid;
    gap: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.coverage-map {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    min-height: 300px;
    position: relative;
}

.map-visual {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border-radius: 8px;
    overflow: hidden;
}

.depot-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
}

.depot-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.coverage-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 3px dashed #1E88E5;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
}

.coverage-label {
    background: #1E88E5;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.coverage-points {
    position: relative;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.point-1 { bottom: 20px; right: 30px; }
.point-2 { bottom: 40px; left: 20px; }
.point-3 { top: 30px; left: 40px; }
.point-4 { top: 60px; right: 50px; }

.coverage-info h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.coverage-info ul {
    list-style: none;
}

.coverage-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.coverage-info li:last-child {
    border-bottom: none;
}

.fleet-details {
    margin-bottom: 4rem;
}

.fleet-grid {
    display: grid;
    gap: 2rem;
}

.fleet-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1E88E5;
}

.fleet-card h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.fleet-card ul {
    list-style: none;
}

.fleet-card li {
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.fleet-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1E88E5;
    font-weight: bold;
}

/* SLA Targets */
.sla-targets {
    margin-bottom: 4rem;
}

.sla-grid {
    display: grid;
    gap: 2rem;
}

.sla-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sla-card.city {
    border-left: 4px solid #27ae60;
}

.sla-card.suburban {
    border-left: 4px solid #f39c12;
}

.sla-card.highway {
    border-left: 4px solid #e74c3c;
}

.sla-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sla-time {
    font-size: 2rem;
    font-weight: 700;
    color: #1E88E5;
    margin: 1rem 0;
}

.sla-note {
    text-align: center;
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* City Distribution */
.city-distribution h2 {
    margin-bottom: 2rem;
}

.distribution-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.city-item {
    display: grid;
    grid-template-columns: 1fr auto 2fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.city-name {
    font-weight: 600;
    color: #2c3e50;
}

.vehicle-count {
    background: #1E88E5;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.coverage-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.coverage-fill {
    height: 100%;
    background: #1E88E5;
    border-radius: 4px;
}

/* Investor Page */
.investor-main {
    padding: 4rem 0;
    background: white;
}

.problem-solution {
    margin-bottom: 4rem;
}

.ps-grid {
    display: grid;
    gap: 2rem;
}

.ps-card {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.ps-card.problem {
    background: linear-gradient(135deg, #ffeaea 0%, #ffffff 100%);
    border-left: 4px solid #e74c3c;
}

.ps-card.solution {
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
    border-left: 4px solid #27ae60;
}

.ps-card h2 {
    margin-bottom: 1.5rem;
}

.ps-card ul {
    list-style: none;
}

.ps-card li {
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.ps-card.problem li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #e74c3c;
}

.ps-card.solution li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Market Analysis */
.market-analysis {
    margin-bottom: 4rem;
}

.market-grid {
    display: grid;
    gap: 2rem;
}

.market-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1E88E5;
}

.market-card h3 {
    color: #1E88E5;
    margin-bottom: 1.5rem;
}

.market-stats {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E88E5;
}

.stat-label {
    font-size: 0.9rem;
    color: #6B7280;
}

.target-breakdown {
    margin-top: 1rem;
}

.target-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.target-item:last-child {
    border-bottom: none;
}

.target-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid #1E88E5;
    margin-top: 1rem;
    background: white;
    border-radius: 6px;
    padding: 0.75rem;
}

/* Detailed Financials */
.detailed-financials {
    margin-bottom: 4rem;
}

/* Assumptions Card */
.assumptions-card {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #1E88E5;
    margin-bottom: 3rem;
}

.assumptions-card h3 {
    color: #1E88E5;
    text-align: center;
    margin-bottom: 1.5rem;
}

.assumptions-grid {
    display: grid;
    gap: 1rem;
}

.assumption-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border-left: 3px solid #1E88E5;
}

.assumption-label {
    font-weight: 600;
    color: #2c3e50;
}

.assumption-value {
    font-weight: 700;
    color: #1E88E5;
}

.financials-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.financial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.financial-card.revenue {
    border-left: 4px solid #27ae60;
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
}

.financial-card.expense {
    border-left: 4px solid #e74c3c;
    background: linear-gradient(135deg, #ffeaea 0%, #ffffff 100%);
}

.financial-card h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.revenue-breakdown,
.expense-breakdown {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.revenue-item,
.expense-category {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.revenue-item h4,
.expense-category h4 {
    color: #1E88E5;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.revenue-details,
.expense-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.revenue-line,
.expense-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.revenue-line:last-child,
.expense-line:last-child {
    border-bottom: none;
}

.revenue-line span:first-child,
.expense-line span:first-child {
    color: #2c3e50;
    font-weight: 500;
}

.revenue-line span:last-child,
.expense-line span:last-child {
    color: #1E88E5;
    font-weight: 600;
}

/* Unit Economics */
.unit-economics {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #1E88E5;
}

.unit-economics h3 {
    color: #1E88E5;
    text-align: center;
    margin-bottom: 2rem;
}

.unit-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.unit-header,
.unit-row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

.unit-header {
    background: #1E88E5;
    color: white;
    font-weight: 600;
}

.unit-row {
    border-bottom: 1px solid #eee;
}

.unit-row:last-child {
    border-bottom: none;
}

.unit-row.revenue {
    background: #e8f5e8;
}

.unit-row.cost {
    background: #ffeaea;
}

.unit-row.total-cost {
    background: #fff3cd;
    font-weight: 600;
}

.unit-row.profit {
    background: #d4edda;
    font-weight: 700;
    color: #155724;
}

/* Payback Scenarios */
.payback-scenarios {
    margin-bottom: 4rem;
}

.scenarios-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    text-align: center;
}

.table-header {
    background: #1E88E5;
    color: white;
    font-weight: 600;
}

.table-row {
    border-bottom: 1px solid #eee;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.negative {
    background: #fff3cd;
}

.table-row.positive {
    background: #d4edda;
}

.table-row.excellent {
    background: #cce5ff;
}

.chart-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Timeline */
.roadmap {
    margin-bottom: 4rem;
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1E88E5;
}

.timeline-year {
    background: #1E88E5;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: #1E88E5;
    margin-bottom: 0.5rem;
}

/* Risk Mitigation */
.risk-mitigation {
    margin-bottom: 4rem;
}

.risk-grid {
    display: grid;
    gap: 2rem;
}

.risk-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f39c12;
}

.risk-item h3 {
    color: #f39c12;
    margin-bottom: 1rem;
}

/* Exit Strategy */
.exit-strategy {
    margin-bottom: 4rem;
}

.exit-options {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.exit-option {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1E88E5;
}

.exit-option h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.exit-value {
    background: #1E88E5;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.exit-value h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Investor CTA */
.investor-cta {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Contact Page */
.contact-main {
    padding: 4rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    gap: 4rem;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E88E5;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-info-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-info {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: #1E88E5;
    margin-bottom: 0.5rem;
}

.info-content a {
    color: #1E88E5;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.service-areas {
    margin-bottom: 3rem;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.area-tag {
    background: #1E88E5;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.quick-links ul {
    list-style: none;
}

.quick-links li {
    padding: 0.5rem 0;
}

.quick-links a {
    color: #1E88E5;
    text-decoration: none;
}

.quick-links a:hover {
    text-decoration: underline;
}

/* FAQ */
.contact-faq {
    margin-top: 4rem;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    border: none;
    background: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 1.5rem;
    color: #1E88E5;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #5a6c7d;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: none;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content {
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6B7280;
    padding: 0.5rem;
}

.modal-close:hover {
    color: #e74c3c;
}

.modal h3 {
    color: #1E88E5;
    margin-bottom: 1.5rem;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-body a {
    color: #1E88E5;
    text-decoration: none;
}

.modal-body a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #95a5a6;
}

.footer-section a {
    color: #1E88E5;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-sources {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-sources h4 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

.sources-list p {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.sources-list a {
    color: #1E88E5;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
}

.legal-note {
    font-size: 0.8rem;
    color: #95a5a6;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .roadmap,
    .risk-mitigation,
    .exit-strategy,
    .investor-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12px;
    }
    
    .page-header {
        background: white;
        color: black;
        border-bottom: 2px solid #1E88E5;
        padding: 1rem 0;
    }
    
    .page-header h1 {
        color: #1E88E5;
        font-size: 1.5rem;
    }
    
    .page-header p {
        color: #2c3e50;
        font-size: 1rem;
    }
    
    .problem-solution,
    .market-analysis,
    .detailed-financials,
    .payback-scenarios {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    .assumptions-card {
        background: #f0f0f0 !important;
        border: 1px solid #1E88E5 !important;
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .ps-card,
    .market-card,
    .financial-card {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .chart-container {
        display: none;
    }
    
    h2 {
        color: #1E88E5;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        page-break-after: avoid;
    }
    
    h3 {
        color: #2c3e50;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    @page {
        margin: 1.5cm;
        size: A4;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .banner-items {
        justify-content: center;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tech-showcase {
        grid-template-columns: 1fr 1fr;
    }
    
    .tech-mockups {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-features-list {
        gap: 3rem;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sla-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .risk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .exit-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .map-container {
        grid-template-columns: 2fr 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .financials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .assumptions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .positioning-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .operation-details {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .risks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scenario-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .examples-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .fleet-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .risk-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .value-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card.featured {
        grid-column: 2;
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tech-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .assumptions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .operation-details {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .risks-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .roadmap-timeline {
        flex-direction: row;
    }
    
    .timeline-item {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-toggle.active .nav-toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .nav-toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .banner-items {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .app-features-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tech-mockups {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: repeat(5, 1fr);
        padding: 0.5rem;
        gap: 0.25rem;
        font-size: 0.8rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-year {
        margin-bottom: 1rem;
    }
}

/* 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;
    }
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 2px solid #1E88E5;
    outline-offset: 2px;
}