/* ========================================
   AwareHQ AI - Image-Driven Luxury Design
   Apple-Inspired Visual Experience
   ======================================== */

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-100: #f5f5f7;
    --color-gray-200: #e8e8ed;
    --color-gray-300: #d1d1d6;
    --color-gray-400: #c0c0c5;
    --color-gray-500: #aeaeb3;
    --color-gray-800: #1d1d1f;
    --color-gray-900: #0a0a0a;
    --color-accent: #C9A962;
    --color-accent-hover: #E2C878;
    --color-accent-dark: #A68B4B;
    --color-gold: #C9A962;
    --color-success: #30d158;
    --color-warning: #FFD60A;
    --color-danger: #ff453a;
    --color-info: #64D2FF;
    --color-surface: #1C1C1E;
    --color-surface-light: #2C2C2E;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family);
    font-size: 17px;
    line-height: 1.5;
    color: var(--color-gray-800);
    background: var(--color-black);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

/* ========================================
   Navigation - Floating Glass
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 24px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--color-white); }

.nav-cta {
    background: var(--color-white);
    color: var(--color-black) !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 500;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.9);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-white);
    border-radius: 1px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 24px;
    right: 24px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0;
}

.mobile-cta {
    background: var(--color-white);
    color: var(--color-black) !important;
    padding: 14px 24px;
    border-radius: 100px;
    text-align: center;
    font-weight: 500;
    margin-top: 8px;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

/* ========================================
   Hero - Full Screen Image
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========================================
   Section Visual - Split Image/Text
   ======================================== */

.section-visual {
    background: var(--color-white);
    overflow: hidden;
}

.section-visual.alt {
    background: var(--color-gray-100);
}

.section-visual.dark {
    background: var(--color-gray-900);
}

.section-visual.dark .visual-content {
    color: var(--color-white);
}

.section-visual.dark h2 {
    color: var(--color-white);
}

.section-visual.dark .visual-text {
    color: rgba(255, 255, 255, 0.7);
}

.section-visual.dark .visual-content {
    color: var(--color-white);
    padding: 120px 60px 120px 40px;
}

.visual-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}


.visual-image {
    position: relative;
    overflow: hidden;
}

.visual-image.dark {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 120px 60px;
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.visual-image:hover img {
    transform: scale(1.05);
}

.visual-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 120px 40px;
}

.eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-visual h2,
.showcase-header h2,
.steps-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--color-gray-800);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.visual-text {
    font-size: 19px;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* Priority List */
.priority-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.priority-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--color-gray-100);
    border-radius: 12px;
    font-size: 15px;
    color: var(--color-gray-800);
    transition: var(--transition);
}

.priority-item:hover {
    transform: translateX(8px);
}

.priority-item.vip { border-left: 4px solid var(--color-accent); }
.priority-item.high { border-left: 4px solid var(--color-success); }
.priority-item.low { border-left: 4px solid var(--color-gray-400); }

.priority-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.priority-item.vip .priority-badge {
    background: var(--color-accent);
    color: white;
}

.priority-item.high .priority-badge {
    background: var(--color-success);
    color: white;
}

.priority-item.low .priority-badge {
    background: var(--color-gray-400);
    color: white;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-value {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: var(--color-gray-500);
    margin-top: 8px;
}

/* VIP Assurance */
.vip-assurance {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 32px;
    padding: 16px 20px;
    background: rgba(48, 209, 88, 0.08);
    border: 1px solid rgba(48, 209, 88, 0.2);
    border-radius: 12px;
}

.assurance-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.assurance-text {
    font-size: 14px;
    color: var(--color-gray-800);
    line-height: 1.5;
}

.assurance-text strong {
    color: var(--color-success);
}

/* Alert List */
.alert-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-item.warning {
    background: rgba(255, 159, 10, 0.1);
    border-color: rgba(255, 159, 10, 0.3);
}

.alert-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 18px;
}

.alert-item.warning .alert-icon {
    background: var(--color-warning);
    color: var(--color-black);
}

.alert-title {
    display: block;
    font-weight: 500;
    color: var(--color-white);
    font-size: 15px;
}

.alert-desc {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Showcase Section - Large Image
   ======================================== */

.section-showcase {
    background: var(--color-gray-100);
    padding: 120px 24px;
}

.showcase-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.showcase-image {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.showcase-image img {
    width: 100%;
    max-width: 100px;
    height: auto;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 25%;
    right: 10%;
    flex-direction: column;
    text-align: center;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-badge {
    padding: 4px 10px;
    background: var(--color-accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-800);
}

.card-status {
    font-size: 12px;
    color: var(--color-gray-500);
}

.card-status.priority {
    color: var(--color-accent);
    font-weight: 600;
}

.card-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-success);
    line-height: 1;
}

.card-label {
    font-size: 12px;
    color: var(--color-gray-500);
}

.card-icon {
    font-size: 24px;
}

/* ========================================
   Full Width Image Section
   ======================================== */

.section-fullimage {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.section-fullimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fullimage-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.fullimage-content h2 {
    font-size: clamp(36px, 8vw, 80px);
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.1;
    padding: 0 24px;
}

/* ========================================
   Steps Section
   ======================================== */

.section-steps {
    background: var(--color-white);
    padding: 120px 24px;
}

.steps-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.steps-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 4/3;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.step:hover .step-image img {
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gray-800);
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: 8px;
}

.step p {
    font-size: 15px;
    color: var(--color-gray-500);
}

/* ========================================
   Roles Section
   ======================================== */

.section-roles {
    background: var(--color-gray-100);
    padding: 120px 24px;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.role-card {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.role-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.role-image {
    height: 240px;
    overflow: hidden;
}

.role-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.role-card:hover .role-image img {
    transform: scale(1.05);
}

.role-content {
    padding: 32px;
}

.role-content h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.role-content p {
    font-size: 21px;
    font-weight: 600;
    color: var(--color-gray-800);
    line-height: 1.4;
    margin-bottom: 16px;
}

.role-tagline {
    font-size: 15px;
    color: var(--color-gray-500);
    font-style: italic;
}

/* ========================================
   CTA Section - Full Image
   ======================================== */

.section-cta {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
    max-width: 600px;
}

.cta-content h2 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
}

.cta-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.3);
}

.cta-form .btn {
    flex-shrink: 0;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--color-black);
    padding: 60px 24px 40px;
    text-align: center;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    display: block;
    margin-bottom: 8px;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.footer-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 8px;
}

/* ========================================
   Animations
   ======================================== */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .visual-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .visual-image {
        height: auto;
        min-height: auto;
        padding: 0;
    }

    .visual-image.dark {
        justify-content: center;
        padding: 80px 24px;
    }

    .visual-content {
        padding: 80px 40px;
    }

    .mockup-whatsapp {
        margin: 0 auto;
    }

    .steps-visual {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .roles-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section-visual h2,
    .showcase-header h2,
    .steps-header h2 {
        font-size: 32px;
    }

    .visual-content {
        padding: 80px 24px;
    }

    .section-problem-combined .visual-content {
        padding: 60px 24px;
    }

    .problem-content-extended h2 {
        font-size: 28px;
    }

    .pain-list-inline ul {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .stat-value {
        font-size: 40px;
    }

    .section-showcase,
    .section-steps,
    .section-roles {
        padding: 80px 24px;
    }

    .section-fullimage {
        height: 60vh;
    }

    .fullimage-content h2 {
        font-size: 32px;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form input,
    .cta-form .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 10px 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 16px;
    }

    .visual-image {
        padding: 0;
    }

    .problem-stat {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .problem-stat-value {
        font-size: 24px;
    }

    .priority-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ========================================
   App Mockups - Dashboard, Bookings, Vehicles
   ======================================== */

/* App Mockup Container */
.app-mockup {
    background: var(--color-black);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.app-mockup-phone {
    background: var(--color-black);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), inset 0 0 0 3px var(--color-surface-light);
    max-width: 380px;
}

.app-mockup-phone .phone-notch {
    width: 120px;
    height: 28px;
    background: var(--color-black);
    border-radius: 20px;
    margin: 0 auto 16px;
}

.app-mockup-phone .phone-screen {
    background: var(--color-black);
    border-radius: 28px;
    overflow: hidden;
    min-height: 600px;
}

/* Dashboard Mockup */
.mockup-dashboard {
    padding: 20px;
}

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

.mockup-greeting {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
}

.mockup-greeting span {
    color: var(--color-accent);
}

.mockup-notification {
    width: 40px;
    height: 40px;
    background: var(--color-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mockup-notification::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--color-danger);
    border-radius: 50%;
}

.mockup-notification svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}

/* Stats Grid */
.mockup-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.mockup-stat-card {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.mockup-stat-icon.pending { background: rgba(255, 214, 10, 0.15); }
.mockup-stat-icon.active { background: rgba(100, 210, 255, 0.15); }
.mockup-stat-icon.overdue { background: rgba(255, 69, 58, 0.15); }
.mockup-stat-icon.issues { background: rgba(255, 159, 10, 0.15); }

.mockup-stat-content {
    flex: 1;
}

.mockup-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.mockup-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Revenue Card */
.mockup-revenue-card {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.mockup-revenue-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-revenue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mockup-revenue-item {
    text-align: center;
}

.mockup-revenue-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
}

.mockup-revenue-period {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

/* Fleet Status */
.mockup-fleet-status {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.mockup-fleet-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-fleet-row {
    display: flex;
    justify-content: space-between;
}

.mockup-fleet-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-fleet-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-fleet-dot.available { background: var(--color-success); }
.mockup-fleet-dot.rented { background: var(--color-info); }
.mockup-fleet-dot.maintenance { background: var(--color-warning); }

.mockup-fleet-count {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
}

.mockup-fleet-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* Alert Items */
.mockup-alerts {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 16px;
}

.mockup-alerts-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-alert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 8px;
}

.mockup-alert-item:last-child {
    margin-bottom: 0;
}

.mockup-alert-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mockup-alert-icon.warning {
    background: var(--color-warning);
    color: var(--color-black);
}

.mockup-alert-icon.danger {
    background: var(--color-danger);
    color: var(--color-white);
}

.mockup-alert-content {
    flex: 1;
}

.mockup-alert-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
}

.mockup-alert-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Bookings Mockup */
.mockup-bookings {
    padding: 20px;
}

.mockup-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-surface);
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.mockup-search-icon {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.mockup-search-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
}

.mockup-filter-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.mockup-filter-pill {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    background: var(--color-surface);
    color: rgba(255, 255, 255, 0.6);
}

.mockup-filter-pill.active {
    background: rgba(201, 169, 98, 0.15);
    color: var(--color-accent);
}

.mockup-booking-card {
    background: var(--color-surface);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
}

.mockup-booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-booking-id {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    font-family: monospace;
}

.mockup-booking-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.mockup-booking-status.pending {
    background: rgba(255, 214, 10, 0.15);
    color: var(--color-warning);
}

.mockup-booking-status.active {
    background: rgba(100, 210, 255, 0.15);
    color: var(--color-info);
}

.mockup-booking-status.confirmed {
    background: rgba(48, 209, 88, 0.15);
    color: var(--color-success);
}

.mockup-booking-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.mockup-booking-body {
    padding: 16px;
    display: flex;
    gap: 14px;
}

.mockup-booking-image {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-surface-light), var(--color-surface));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mockup-booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mockup-car-icon {
    font-size: 28px;
    opacity: 0.3;
}

.mockup-booking-info {
    flex: 1;
}

.mockup-booking-vehicle {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.mockup-booking-customer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.mockup-booking-dates {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.mockup-booking-duration {
    background: rgba(201, 169, 98, 0.15);
    color: var(--color-accent);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.mockup-booking-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-booking-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
}

.mockup-booking-price span {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.mockup-booking-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

/* Vehicles Mockup */
.mockup-vehicles {
    padding: 20px;
}

.mockup-vehicles-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mockup-vehicles-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
}

.mockup-vehicles-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.mockup-add-btn {
    background: var(--color-accent);
    color: var(--color-black);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mockup-vehicle-card {
    background: var(--color-surface);
    border-radius: 16px;
    overflow: hidden;
}

.mockup-vehicle-image {
    height: 95px;
    background: linear-gradient(135deg, var(--color-surface-light), var(--color-surface));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.mockup-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.mockup-vehicle-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    z-index: 10;
}

.mockup-vehicle-badge.available {
    background: rgba(48, 209, 88, 0.85);
    color: #fff;
}

.mockup-vehicle-badge.rented {
    background: rgba(100, 210, 255, 0.85);
    color: #000;
}

.mockup-vehicle-badge.maintenance {
    background: rgba(255, 214, 10, 0.85);
    color: #000;
}

.mockup-vehicle-icon {
    font-size: 40px;
    opacity: 0.2;
}

.mockup-vehicle-info {
    padding: 12px;
}

.mockup-vehicle-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.mockup-vehicle-year {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.mockup-vehicle-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent);
}

.mockup-vehicle-price span {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

/* Desktop App Mockup */
.app-mockup-desktop {
    background: var(--color-surface);
    border-radius: 12px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.desktop-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--color-black);
}

.desktop-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.desktop-btn.close { background: #ff5f57; }
.desktop-btn.minimize { background: #febc2e; }
.desktop-btn.maximize { background: #28c840; }

.desktop-content {
    display: flex;
    min-height: 500px;
}

.desktop-sidebar {
    width: 220px;
    background: var(--color-black);
    padding: 20px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.desktop-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
    padding: 0 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.desktop-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: var(--transition);
}

.desktop-nav-item.active {
    background: rgba(201, 169, 98, 0.1);
    color: var(--color-accent);
}

.desktop-nav-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.desktop-main {
    flex: 1;
    padding: 24px;
    background: var(--color-black);
}

/* Tab Bar Mockup */
.mockup-tabbar {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 24px;
    margin: 16px 8px 8px;
    backdrop-filter: blur(20px);
}

.mockup-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 12px;
}

.mockup-tab.active {
    background: rgba(201, 169, 98, 0.1);
}

.mockup-tab-icon {
    font-size: 20px;
    opacity: 0.5;
}

.mockup-tab.active .mockup-tab-icon {
    opacity: 1;
    color: var(--color-accent);
}

.mockup-tab-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.mockup-tab.active .mockup-tab-label {
    color: var(--color-accent);
}

/* WhatsApp Chat Mockup */
.mockup-whatsapp {
    background: #0b141a;
    border-radius: 24px;
    overflow: hidden;
    max-width: 380px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.whatsapp-header {
    background: #1f2c34;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-back {
    color: #00a884;
    font-size: 20px;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 14px;
}

.whatsapp-avatar-img {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px;
    max-width: 36px;
    min-height: 36px;
    max-height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.whatsapp-contact {
    flex: 1;
}

.whatsapp-name {
    font-size: 16px;
    font-weight: 500;
    color: #e9edef;
}

.whatsapp-status {
    font-size: 12px;
    color: #8696a0;
}

.whatsapp-actions {
    display: flex;
    gap: 16px;
    color: #aebac1;
    font-size: 18px;
}

.whatsapp-chat {
    padding: 16px;
    min-height: 400px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L35 15L45 17L38 25L40 35L30 30L20 35L22 25L15 17L25 15L30 5Z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whatsapp-message {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.whatsapp-message.incoming {
    background: #1f2c34;
    color: #e9edef;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.whatsapp-message.outgoing {
    background: #005c4b;
    color: #e9edef;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.whatsapp-message.ai {
    background: linear-gradient(135deg, #005c4b, #00735c);
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.whatsapp-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(201, 169, 98, 0.2);
    color: var(--color-accent);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 6px;
}

.whatsapp-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    margin-top: 4px;
}

.whatsapp-time.ai-time {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.whatsapp-time .checkmark {
    color: #53bdeb;
}

.whatsapp-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: #1f2c34;
    border-radius: 8px;
    align-self: flex-start;
    max-width: 80px;
}

.whatsapp-typing span {
    width: 8px;
    height: 8px;
    background: #8696a0;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.whatsapp-typing span:nth-child(1) { animation-delay: 0s; }
.whatsapp-typing span:nth-child(2) { animation-delay: 0.2s; }
.whatsapp-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

.whatsapp-input {
    background: #1f2c34;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-input-field {
    flex: 1;
    background: #2a3942;
    border-radius: 20px;
    padding: 10px 16px;
    color: #e9edef;
    font-size: 14px;
    border: none;
}

.whatsapp-send {
    width: 40px;
    height: 40px;
    background: #00a884;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.whatsapp-emoji {
    color: #8696a0;
    font-size: 24px;
}

/* Car preview in WhatsApp */
.whatsapp-car-preview {
    background: #1a2730;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 8px;
}

.whatsapp-car-preview img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.whatsapp-car-details {
    padding: 10px;
}

.whatsapp-car-name {
    font-weight: 600;
    color: #e9edef;
    font-size: 14px;
}

.whatsapp-car-price {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 15px;
    margin-top: 4px;
}

.whatsapp-car-specs {
    color: #8696a0;
    font-size: 12px;
    margin-top: 4px;
}

/* Customer Profile Mockup */
.mockup-customer-profile {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 20px;
    max-width: 340px;
}

.customer-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.customer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.customer-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.customer-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.customer-vip-badge {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: #000;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-left: auto;
}

.lead-score-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
}

.lead-score-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.lead-score-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lead-score-value {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lead-score-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
}

.lead-score-temp {
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.lead-score-temp.hot {
    background: rgba(255, 69, 58, 0.2);
    color: #ff453a;
}

.lead-score-temp.warm {
    background: rgba(255, 159, 10, 0.2);
    color: #ff9f0a;
}

.lead-score-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.lead-score-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-warning), var(--color-danger));
}

.customer-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.signal-tag {
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.customer-history {
    margin-bottom: 16px;
}

.history-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 8px;
}

.history-item:last-child {
    margin-bottom: 0;
}

.history-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.history-icon.booking { background: rgba(48, 209, 88, 0.15); }
.history-icon.view { background: rgba(100, 210, 255, 0.15); }
.history-icon.inquiry { background: rgba(201, 169, 98, 0.15); }

.history-content {
    flex: 1;
}

.history-text {
    font-size: 13px;
    color: var(--color-white);
    font-weight: 500;
}

.history-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.customer-preferences {
    display: flex;
    gap: 8px;
}

.pref-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.pref-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
}

.pref-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

/* Fleet Analytics Mockup */
.mockup-fleet-analytics {
    background: var(--color-black);
    border-radius: 20px;
    padding: 24px;
    max-width: 100%;
}

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

.analytics-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
}

.analytics-period {
    background: var(--color-surface);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.analytics-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.kpi-card {
    background: var(--color-surface);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
}

.kpi-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.kpi-value.gold { color: var(--color-accent); }
.kpi-value.green { color: var(--color-success); }
.kpi-value.blue { color: var(--color-info); }

.kpi-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

.kpi-change {
    font-size: 11px;
    margin-top: 4px;
}

.kpi-change.up { color: var(--color-success); }
.kpi-change.down { color: var(--color-danger); }

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.analytics-chart {
    background: var(--color-surface);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
}

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

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.chart-legend {
    display: flex;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.revenue { background: var(--color-accent); }
.legend-dot.bookings { background: var(--color-info); }

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    padding-top: 10px;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.chart-bar {
    width: 24px;
    border-radius: 4px 4px 0 0;
    background: var(--color-accent);
}

.chart-bar.secondary {
    background: var(--color-info);
    opacity: 0.6;
    width: 16px;
}

.chart-bar-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.vehicle-performance {
    background: var(--color-surface);
    border-radius: 14px;
    padding: 16px;
}

.perf-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}

.perf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.perf-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.perf-rank {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.perf-rank.gold { background: rgba(201, 169, 98, 0.2); color: var(--color-accent); }
.perf-rank.silver { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.7); }
.perf-rank.bronze { background: rgba(183, 110, 121, 0.2); color: #B76E79; }

.perf-car-img {
    width: 50px;
    height: 35px;
    border-radius: 6px;
    object-fit: cover;
}

.perf-car-info {
    flex: 1;
}

.perf-car-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
}

.perf-car-stats {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.perf-revenue {
    text-align: right;
}

.perf-revenue-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent);
}

.perf-revenue-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

/* Conversion Recovery Mockup */
.mockup-recovery-flow {
    max-width: 360px;
}

.recovery-timeline {
    position: relative;
    padding-left: 24px;
}

.recovery-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-warning), var(--color-success));
}

.recovery-step {
    position: relative;
    margin-bottom: 20px;
}

.recovery-step:last-child {
    margin-bottom: 0;
}

.recovery-dot {
    position: absolute;
    left: -24px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 3px solid var(--color-warning);
}

.recovery-step.success .recovery-dot {
    border-color: var(--color-success);
    background: var(--color-success);
}

.recovery-card {
    background: var(--color-surface);
    border-radius: 14px;
    padding: 14px;
}

.recovery-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}

.recovery-action {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.recovery-message {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.recovery-message .highlight {
    color: var(--color-accent);
    font-weight: 600;
}

.recovery-result {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(48, 209, 88, 0.1);
    border-radius: 8px;
    font-size: 12px;
    color: var(--color-success);
    font-weight: 500;
}

.recovery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.recovery-stat {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.recovery-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-accent);
}

.recovery-stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Before/After Comparison */
.section-comparison {
    background: var(--color-white);
    padding: 120px 24px;
}

.comparison-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.comparison-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--color-gray-800);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.comparison-card {
    background: var(--color-gray-100);
    border-radius: 24px;
    padding: 32px;
    position: relative;
}

.comparison-card.before {
    background: #1d1d1f;
    color: white;
}

.comparison-card.after {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.05));
    border: 2px solid var(--color-accent);
}

.comparison-label {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.comparison-card.before .comparison-label {
    background: rgba(255, 69, 58, 0.2);
    color: #ff453a;
}

.comparison-card.after .comparison-label {
    background: rgba(48, 209, 88, 0.2);
    color: #30d158;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-list li,
.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.comparison-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    margin-top: 2px;
}

.comparison-card.before .comparison-icon {
    background: rgba(255, 69, 58, 0.2);
    color: #ff453a;
}

.comparison-card.after .comparison-icon {
    background: rgba(48, 209, 88, 0.2);
    color: #30d158;
}

.comparison-card.before li,
.comparison-card.before .comparison-item {
    color: rgba(255, 255, 255, 0.8);
}

.comparison-card.after li,
.comparison-card.after .comparison-item {
    color: var(--color-gray-800);
}

.comparison-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}

.comparison-card.before h3 {
    color: var(--color-white);
}

.comparison-card.after h3 {
    color: var(--color-gray-800);
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-accent);
    padding-top: 100px;
}

.comparison-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.after .comparison-stat {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.comparison-stat-value {
    font-size: 36px;
    font-weight: 700;
}

.comparison-card.before .comparison-stat-value {
    color: #ff453a;
}

.comparison-card.after .comparison-stat-value {
    color: var(--color-accent);
}

.comparison-stat-label {
    font-size: 14px;
    opacity: 0.7;
}

/* FAQ Section */
.section-faq,
.faq-section {
    background: var(--color-gray-100);
    padding: 120px 24px;
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.faq-header h2 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-gray-800);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 18px;
    color: var(--color-gray-500);
}

.faq-grid,
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

details.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
}

details.faq-item[open] {
    border-color: var(--color-accent);
}

.faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-gray-800);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

details.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* Urgency Section */
.section-urgency,
.urgency-section {
    background: linear-gradient(135deg, #1d1d1f 0%, #0a0a0a 100%);
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-urgency::before,
.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
}

.urgency-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.urgency-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 69, 58, 0.15);
    border: 1px solid rgba(255, 69, 58, 0.3);
    color: #ff6b6b;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.urgency-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.urgency-title span {
    color: var(--color-accent);
}

.urgency-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.urgency-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
}

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

.urgency-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
}

.urgency-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Trust Badge */
.trust-badge,
.trust-signal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    margin-top: 24px;
}

.trust-badge-icon,
.trust-flag {
    font-size: 20px;
}

.trust-badge-text,
.trust-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.trust-badge-text strong {
    color: var(--color-accent);
}

/* Problem Stats */
.problem-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.problem-stat {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: start;
    gap: 30px;
}

.problem-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #ff453a;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    line-height: 1;
}

.problem-stat-label {
    font-size: 15px;
    color: var(--color-gray-500);
    line-height: 1.5;
    max-width: 320px;
}

/* Problem Story Section - Light Theme */
.section-problem-story {
    background: var(--color-white);
    padding: 120px 24px;
}

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

.problem-hook {
    text-align: center;
    margin-bottom: 60px;
}

.problem-hook .eyebrow {
    color: var(--color-danger);
}

.problem-hook h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    color: var(--color-gray-800);
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: -0.03em;
}

.problem-subhead {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-gray-800);
    margin-top: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-body {
    font-size: 16px;
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Two Column Layout */
.problem-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Left: Reality Card with Image */
.problem-reality {
    position: relative;
}

.reality-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}

.reality-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reality-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    padding: 40px 24px 24px;
}

.reality-numbers {
    display: flex;
    gap: 24px;
}

.reality-number {
    flex: 1;
}

.number-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.reality-number.loss .number-value {
    color: #ff6961;
}

.number-label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

/* Right: Chaos Section */
.problem-chaos {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chaos-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.chaos-stat {
    background: #f5f5f7;
    border: 1px solid #e5e5e7;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
}

.chaos-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-danger);
    margin-bottom: 8px;
}

.chaos-label {
    font-size: 13px;
    color: var(--color-gray-500);
    line-height: 1.4;
}

.chaos-quote {
    background: #f5f5f7;
    border-left: 4px solid var(--color-accent);
    border-radius: 0 24px 24px 0;
    padding: 24px;
    flex: 1;
}

.chaos-quote p {
    font-size: 16px;
    color: var(--color-gray-800);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* Pain Section */
.problem-pain-section {
    margin-bottom: 60px;
}

.problem-pain-section h3 {
    font-size: 20px;
    color: var(--color-gray-800);
    text-align: center;
    margin-bottom: 24px;
}

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

.pain-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f5f5f7;
    border: 1px solid #e5e5e7;
    border-radius: 12px;
    font-size: 14px;
    color: var(--color-gray-800);
    transition: all 0.2s ease;
}

.pain-card:hover {
    background: #ebebed;
    border-color: #d5d5d7;
}

.pain-card span {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 69, 58, 0.1);
    color: var(--color-danger);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Bottom Line */
.problem-bottom-line {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bottom-line-text {
    font-size: 28px;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 16px;
    padding: 32px;
    background: #fef2f2;
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 16px;
}

.bottom-line-subtext {
    font-size: 18px;
    color: #6b7280;
}

.problem-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.problem-tag {
    padding: 10px 20px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

/* Ecosystem Section */
.section-ecosystem {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    padding: 120px 24px;
}

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

.ecosystem-header {
    text-align: center;
    margin-bottom: 80px;
}

.ecosystem-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.ecosystem-subtitle {
    font-size: 18px;
    color: var(--color-gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.ecosystem-item {
    text-align: center;
}

.ecosystem-phone {
    margin-bottom: 24px;
}

.phone-frame {
    background: #1c1c1e;
    border-radius: 40px;
    padding: 12px;
    width: 260px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.phone-frame .phone-notch {
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    margin: 0 auto 12px;
}

.phone-frame .phone-screen {
    background: #000;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
}

/* Customer App Mockup */
.app-mockup-customer {
    padding: 16px;
}

.app-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.app-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
}

.app-user-icon {
    font-size: 20px;
}

.app-booking-card {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), rgba(201, 169, 98, 0.1));
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    text-align: left;
}

.app-booking-status {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.app-booking-status.confirmed {
    color: var(--color-success);
}

.app-booking-car {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.app-booking-dates {
    font-size: 13px;
    color: var(--color-gray-400);
    margin-bottom: 8px;
}

.app-booking-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
}

.app-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.app-action {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--color-gray-300);
    text-align: left;
}

.app-browse-section {
    text-align: left;
}

.app-browse-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.app-car-thumbnails {
    display: flex;
    gap: 8px;
}

.app-car-thumb {
    width: 60px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

/* Admin App Mockup */
.app-mockup-admin {
    padding: 16px;
}

.app-header-bar.admin {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    margin: -16px -16px 16px -16px;
    padding: 16px;
    border-bottom: none;
}

.app-header-bar.admin .app-logo {
    color: #000;
    font-size: 16px;
}

.app-notification-badge {
    background: #ff453a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

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

.admin-stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.admin-stat-label {
    font-size: 11px;
    color: var(--color-gray-500);
}

.admin-alert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    text-align: left;
}

.admin-alert-icon {
    font-size: 18px;
}

.admin-alert-text {
    display: flex;
    flex-direction: column;
}

.admin-alert-text strong {
    font-size: 13px;
    color: #fff;
}

.admin-alert-text span {
    font-size: 11px;
    color: var(--color-gray-500);
}

.admin-quick-actions {
    display: flex;
    justify-content: space-around;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.admin-action {
    font-size: 20px;
    opacity: 0.7;
}

/* Dashboard Mockup */
.ecosystem-item.dashboard-item {
    grid-column: span 1;
}

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

.dashboard-frame {
    background: #1c1c1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.dashboard-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #2c2c2e;
}

.toolbar-dots {
    display: flex;
    gap: 6px;
}

.toolbar-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3c3c3e;
}

.toolbar-dots span:first-child { background: #ff5f57; }
.toolbar-dots span:nth-child(2) { background: #febc2e; }
.toolbar-dots span:last-child { background: #28c840; }

.toolbar-title {
    font-size: 12px;
    color: var(--color-gray-400);
}

.dashboard-content {
    display: flex;
    min-height: 280px;
}

.dashboard-sidebar {
    width: 140px;
    background: #000;
    padding: 16px 12px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.sidebar-item {
    font-size: 12px;
    color: var(--color-gray-500);
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 4px;
    cursor: pointer;
}

.sidebar-item.active {
    background: rgba(201, 169, 98, 0.2);
    color: var(--color-accent);
}

.dashboard-main {
    flex: 1;
    padding: 16px;
    background: #111;
}

.dashboard-metrics {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.dashboard-metric {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
}

.metric-label {
    font-size: 10px;
    color: var(--color-gray-500);
}

.dashboard-chart-placeholder {
    height: 120px;
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.1) 0%, transparent 100%);
    border-radius: 8px;
    position: relative;
}

.dashboard-chart-placeholder::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent) 60%, transparent 60%);
}

/* Ecosystem Labels */
.ecosystem-label h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.ecosystem-label p {
    font-size: 14px;
    color: var(--color-gray-400);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .problem-columns {
        grid-template-columns: 1fr;
    }

    .reality-card {
        min-height: 300px;
    }

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

@media (max-width: 768px) {
    .section-problem-story {
        padding: 80px 24px;
    }

    .problem-hook h2 {
        font-size: 28px;
    }

    .chaos-stats {
        grid-template-columns: 1fr;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .bottom-line-text {
        font-size: 20px;
        padding: 24px;
    }

    .bottom-line-subtext {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .problem-hook h2 {
        font-size: 24px;
    }

    .number-value {
        font-size: 24px;
    }

    .chaos-value {
        font-size: 28px;
    }

    .bottom-line-text {
        font-size: 18px;
    }
}

/* Revenue Leak Calculator */
.section-calculator {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    padding: 100px 24px;
}

.calculator-container {
    max-width: 1100px;
    margin: 0 auto;
}

.calculator-header {
    text-align: center;
    margin-bottom: 60px;
}

.calculator-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.calculator-intro {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Leak Funnel */
.leak-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.funnel-step {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.funnel-bar-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.funnel-bar {
    width: 100%;
    height: 52px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 14px;
}

.funnel-bar.start {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.funnel-bar.leak {
    background: rgba(255, 69, 58, 0.1);
    border: 1px solid rgba(255, 69, 58, 0.3);
}

.funnel-bar.success {
    background: rgba(48, 209, 88, 0.15);
    border: 1px solid rgba(48, 209, 88, 0.4);
}

.funnel-num {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    min-width: 60px;
}

.funnel-bar.success .funnel-num {
    color: #30d158;
}

.funnel-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.funnel-bar.success .funnel-text {
    color: rgba(48, 209, 88, 0.9);
}

/* Leak info below bar */
.funnel-leak-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 0 0 0;
    flex-wrap: wrap;
}

.leak-reason {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.leak-percent {
    font-size: 14px;
    font-weight: 700;
    color: #ff6b5a;
    background: rgba(255, 69, 58, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
}

.leak-amount {
    font-size: 16px;
    font-weight: 700;
    color: #ff453a;
}

/* Leak Summary */
.leak-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.leak-headline {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: #ff453a;
    margin-bottom: 32px;
    line-height: 1.15;
}

.leak-stats {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    font-variant-numeric: tabular-nums;
}

.stat-row.highlight {
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 69, 58, 0.3);
    border-bottom: none;
}

.stat-row:has(+ .stat-row.highlight) {
    border-bottom: none;
}

.stat-row.highlight .stat-label {
    font-weight: 600;
    color: var(--color-white);
}

.stat-value.big {
    font-size: 28px;
    font-weight: 800;
    color: #ff453a;
}

.leak-punchline {
    margin-top: 28px;
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.leak-source {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

/* Industry Benchmark Comparison */
.section-benchmark {
    background: var(--color-white);
    padding: 120px 24px;
}

.benchmark-container {
    max-width: 1100px;
    margin: 0 auto;
}

.benchmark-header {
    text-align: center;
    margin-bottom: 60px;
}

.benchmark-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-gray-800);
    letter-spacing: -0.03em;
}

.benchmark-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
}

.benchmark-card {
    border-radius: 24px;
    padding: 32px;
}

.benchmark-card.industry {
    background: #f5f5f7;
    border: 1px solid #e5e5e7;
}

.benchmark-card.aware {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.05));
    border: 2px solid var(--color-accent);
    position: relative;
    overflow: hidden;
}

.benchmark-card.aware::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.2) 0%, transparent 70%);
}

.benchmark-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.benchmark-card.industry .benchmark-label {
    color: var(--color-gray-500);
}

.benchmark-card.aware .benchmark-label {
    color: var(--color-accent);
}

.benchmark-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gray-400);
    padding-top: 80px;
}

.benchmark-metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benchmark-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benchmark-value {
    font-size: 28px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.benchmark-value.bad {
    color: #ff453a;
}

.benchmark-value.good {
    color: #30d158;
}

.benchmark-desc {
    font-size: 14px;
    color: var(--color-gray-500);
}

.benchmark-improvement {
    display: inline-block;
    margin-top: 4px;
    padding: 4px 10px;
    background: rgba(48, 209, 88, 0.15);
    color: #30d158;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    width: fit-content;
}

.benchmark-source {
    text-align: center;
    margin-top: 48px;
    font-size: 13px;
    color: var(--color-gray-400);
}

/* AI Automated Engagement Section */
.section-engagement {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.section-engagement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.engagement-container {
    max-width: 900px;
    margin: 0 auto;
}

.engagement-header {
    text-align: center;
    margin-bottom: 80px;
}

.engagement-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.engagement-intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline */
.engagement-timeline {
    position: relative;
    padding-left: 120px;
}

.timeline-line {
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        rgba(201, 169, 98, 0.5) 0%,
        rgba(201, 169, 98, 0.2) 50%,
        rgba(201, 169, 98, 0.5) 100%);
}

.engagement-event {
    position: relative;
    margin-bottom: 40px;
}

.engagement-event:last-child {
    margin-bottom: 0;
}

.event-time {
    position: absolute;
    left: -120px;
    top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 80px;
}

.event-clock {
    font-size: 20px;
}

.event-time span:last-child {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.event-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.event-trigger {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.event-action {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.ai-badge,
.sara-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid var(--color-accent);
}

.event-message {
    flex: 1;
    font-size: 15px;
    color: var(--color-white);
    line-height: 1.6;
    font-style: italic;
    padding: 16px;
    background: rgba(201, 169, 98, 0.08);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 12px 12px 0;
}

.event-result {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.event-result.success {
    color: #30d158;
}

/* Engagement Stats */
.engagement-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.engagement-stat-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.engagement-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Mockups */
@media (max-width: 1024px) {
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .leak-headline {
        font-size: 32px;
    }

    .stat-value.big {
        font-size: 24px;
    }

    .benchmark-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benchmark-vs {
        padding: 0;
        font-size: 20px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Funnel full-width at 600px */
@media (max-width: 600px) {
    .funnel-bar-wrapper {
        width: 100% !important;
    }

    .funnel-bar {
        justify-content: flex-start;
    }

    .funnel-leak-info {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mockup-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mockup-vehicle-grid {
        grid-template-columns: 1fr;
    }

    .desktop-sidebar {
        display: none;
    }

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

    /* Fleet analytics mobile */
    .mockup-fleet-analytics {
        padding: 16px;
    }

    .analytics-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .analytics-title {
        font-size: 18px;
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .chart-legend {
        flex-wrap: wrap;
    }

    .chart-bars {
        height: 100px;
    }

    .chart-bar {
        width: 18px;
    }

    .chart-bar.secondary {
        width: 12px;
    }

    .kpi-value {
        font-size: 20px;
    }

    .kpi-card {
        padding: 12px;
    }

    .analytics-grid {
        grid-template-columns: 1fr;
    }

    .perf-item {
        flex-wrap: wrap;
    }

    .perf-car-info {
        flex: 1;
        min-width: 120px;
    }

    .perf-revenue {
        margin-left: auto;
    }

    .section-comparison,
    .section-faq,
    .section-urgency,
    .urgency-section,
    .section-calculator,
    .section-benchmark,
    .section-engagement {
        padding: 80px 24px;
    }

    .urgency-stats {
        flex-direction: column;
        gap: 24px;
    }

    /* Engagement responsive */
    .engagement-timeline {
        padding-left: 0;
    }

    .timeline-line {
        display: none;
    }

    .event-time {
        position: static;
        flex-direction: row;
        width: auto;
        margin-bottom: 12px;
    }

    .event-card::before {
        display: none;
    }

    .engagement-stats {
        flex-direction: column;
        gap: 32px;
    }

    .engagement-stat-value {
        font-size: 36px;
    }

    .problem-stat {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .problem-stat-value {
        font-size: 28px;
    }

    .problem-stat-label {
        max-width: none;
    }
}

@media (max-width: 480px) {
    /* Prevent horizontal scroll on small screens */
    body {
        overflow-x: hidden;
    }

    .app-mockup-phone {
        max-width: 100%;
    }

    .mockup-revenue-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mockup-revenue-item {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mockup-whatsapp {
        max-width: 100%;
        margin: 0 auto;
    }

    .whatsapp-chat {
        min-height: auto;
        padding: 12px;
    }

    /* Fleet analytics small screens */
    .analytics-kpis {
        grid-template-columns: 1fr;
    }

    .chart-bars {
        height: 80px;
    }

    .chart-bar {
        width: 14px;
    }

    .chart-bar.secondary {
        width: 10px;
    }

    /* The Math Section Mobile */
    .section-calculator {
        padding: 60px 16px;
    }

    .calculator-header {
        margin-bottom: 32px;
    }

    .funnel-step {
        margin-bottom: 14px;
    }

    .funnel-bar {
        height: auto;
        min-height: 48px;
        padding: 10px 14px;
    }

    .funnel-num {
        font-size: 24px;
        min-width: 40px;
    }

    .funnel-text {
        font-size: 12px;
        white-space: normal;
        line-height: 1.3;
    }

    .funnel-leak-info {
        padding: 8px 0 0 0;
        gap: 8px;
        justify-content: center;
        text-align: center;
    }

    .leak-reason {
        font-size: 11px;
    }

    .leak-percent {
        font-size: 11px;
        padding: 3px 8px;
    }

    .leak-amount {
        font-size: 13px;
    }

    .leak-headline {
        font-size: 26px;
    }

    .leak-stats {
        padding: 16px;
    }

    .stat-row {
        padding: 10px 0;
        flex-wrap: wrap;
        gap: 4px;
    }

    .stat-label {
        font-size: 13px;
    }

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

    .stat-value.big {
        font-size: 20px;
    }

    .leak-punchline {
        font-size: 14px;
    }

    .leak-source {
        font-size: 10px;
    }

    /* Real-Time Intelligence - Desktop mockup fixes */
    .app-mockup-desktop {
        max-width: 100%;
        overflow: hidden;
    }

    .desktop-content {
        min-height: 400px;
    }

    .desktop-main {
        padding: 12px;
    }

    .mockup-stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mockup-stat-card {
        padding: 12px;
    }

    .mockup-stat-value {
        font-size: 20px;
    }

    .mockup-vehicle-grid {
        gap: 8px;
    }

    .mockup-vehicle-card {
        padding: 10px;
    }

    .mockup-vehicle-image {
        height: 130px;
    }

    /* Section headings */
    .section-showcase h2 {
        font-size: 28px;
    }

    .calculator-header h2 {
        font-size: 28px;
    }

    .calculator-intro {
        font-size: 14px;
    }

    .funnel-bar {
        height: 38px;
        width: 100% !important;
    }

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

    .funnel-label {
        font-size: 11px;
    }

    .loss-number {
        font-size: 14px;
    }

    .leak-row.total .leak-value {
        font-size: 20px;
    }

    /* Prevent horizontal scroll */
    .section-calculator,
    .section-showcase {
        overflow-x: hidden;
    }
}

/* ========================================
   Owner Problem Section
   ======================================== */

.section-owner-problem {
    padding: 120px 24px;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.owner-problem-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-owner-problem h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 48px;
    line-height: 1.2;
}

.owner-reality {
    text-align: left;
}

.reality-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.reality-stat {
    background: rgba(201, 169, 98, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.reality-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #C9A962;
    margin-bottom: 8px;
}

.reality-label {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.owner-quote {
    background: var(--color-surface);
    border-left: 4px solid #C9A962;
    border-radius: 0 16px 16px 0;
    padding: 32px;
    margin-bottom: 40px;
}

.quote-text {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* Response Problem Stats */
.response-problem {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.response-stat {
    background: rgba(255, 69, 58, 0.08);
    border: 1px solid rgba(255, 69, 58, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.response-value {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.response-value.bad {
    color: #ff453a;
}

.response-label {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.owner-pain {
    margin-bottom: 40px;
}

.owner-pain h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
}

.pain-questions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 69, 58, 0.05);
    border: 1px solid rgba(255, 69, 58, 0.15);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.pain-item:hover {
    background: rgba(255, 69, 58, 0.1);
    border-color: rgba(255, 69, 58, 0.3);
}

.pain-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 69, 58, 0.2);
    color: #ff453a;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.pain-item span:last-child {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.owner-bottom-line {
    font-size: 24px;
    font-weight: 600;
    color: #ff453a;
    text-align: center;
    margin-bottom: 16px;
    padding: 24px;
    background: rgba(255, 69, 58, 0.08);
    border-radius: 16px;
}

.owner-conclusion {
    font-size: 16px;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
}

/* Mobile responsiveness for owner problem section */
@media (max-width: 768px) {
    .section-owner-problem {
        padding: 80px 24px;
    }

    .section-owner-problem h2 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .reality-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reality-value {
        font-size: 28px;
    }

    .owner-quote {
        padding: 24px;
    }

    .quote-text {
        font-size: 16px;
    }

    .response-problem {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .response-value {
        font-size: 32px;
    }

    .pain-questions {
        grid-template-columns: 1fr;
    }

    .owner-bottom-line {
        font-size: 18px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-owner-problem h2 {
        font-size: 28px;
    }

    .reality-stat {
        padding: 20px;
    }

    .reality-value {
        font-size: 24px;
    }

    .response-stat {
        padding: 20px;
    }

    .response-value {
        font-size: 28px;
    }

    .pain-item {
        padding: 14px 16px;
    }

    .pain-item span:last-child {
        font-size: 13px;
    }
}

/* Ecosystem Section Responsive */
@media (max-width: 1024px) {
    .section-ecosystem {
        padding: 80px 24px;
    }

    .ecosystem-header {
        margin-bottom: 60px;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .ecosystem-item:last-child {
        grid-column: 1 / -1;
    }

    .dashboard-frame {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .dashboard-content {
        min-height: 240px;
    }

    .dashboard-sidebar {
        width: 100px;
        padding: 12px 8px;
    }

    .sidebar-item {
        font-size: 11px;
        padding: 8px 6px;
    }
}

@media (max-width: 768px) {
    .section-ecosystem {
        padding: 60px 16px;
    }

    .ecosystem-header {
        margin-bottom: 40px;
    }

    .ecosystem-subtitle {
        font-size: 16px;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ecosystem-item:last-child {
        grid-column: auto;
    }

    .phone-frame {
        width: 240px;
    }

    .phone-frame .phone-screen {
        min-height: 380px;
    }

    .dashboard-frame {
        width: 100%;
        border-radius: 12px;
    }

    .dashboard-content {
        min-height: 200px;
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .sidebar-item {
        font-size: 11px;
        padding: 6px 10px;
    }

    .sidebar-item.active {
        background: rgba(201, 169, 98, 0.2);
        border-radius: 6px;
    }

    .dashboard-main {
        padding: 12px;
    }

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

    .metric-card {
        padding: 10px;
    }

    .metric-value {
        font-size: 18px;
    }

    .metric-label {
        font-size: 9px;
    }

    .dashboard-chart-placeholder {
        height: 60px;
        margin-top: 8px;
    }

    .ecosystem-label {
        font-size: 14px;
    }

    .ecosystem-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .section-ecosystem {
        padding: 50px 12px;
    }

    .ecosystem-header h2 {
        font-size: 28px;
    }

    .ecosystem-subtitle {
        font-size: 14px;
    }

    .phone-frame {
        width: 220px;
        padding: 10px;
        border-radius: 32px;
    }

    .phone-frame .phone-notch {
        width: 80px;
        height: 24px;
    }

    .phone-frame .phone-screen {
        min-height: 340px;
        border-radius: 22px;
    }

    .app-booking-card {
        padding: 12px;
    }

    .booking-car-name {
        font-size: 14px;
    }

    .dashboard-content {
        min-height: 180px;
    }

    .dashboard-sidebar {
        padding: 8px;
        gap: 6px;
    }

    .sidebar-item {
        font-size: 10px;
        padding: 5px 8px;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .metric-card {
        padding: 8px;
    }

    .metric-value {
        font-size: 16px;
    }

    .metric-label {
        font-size: 8px;
    }

    .dashboard-chart-placeholder {
        height: 50px;
    }
}
