:root {
    --bg: #0c0c0c;
    --surface: #141414;
    --surface-2: #1c1c1c;
    --border: #262626;
    --text: #f0f0f0;
    --text-dim: #999;
    --accent: #ff6b2b;
    --accent-glow: rgba(255, 107, 43, 0.12);
    --green: #22c55e;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.nav-logo .top {
    color: var(--text);
}

.nav-logo .bot {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--accent) !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 28px;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 900px 700px at 15% 40%, rgba(255, 107, 43, 0.08), transparent),
        radial-gradient(ellipse 500px 400px at 85% 60%, rgba(255, 107, 43, 0.04), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 32px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-dim);
    max-width: 700px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    display: inline-block;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    background: var(--surface-2);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

.btn-primary-lg {
    padding: 18px 48px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    background: var(--accent);
    color: white;
    display: inline-block;
    transition: all 0.2s;
}

.btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 600px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-dim);
}

/* FEATURES SECTION */
.features {
    padding: 100px 40px;
    background: var(--surface);
}

.features h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.6;
}

.feature-card a {
    color: var(--accent);
    text-decoration: underline;
}

/* VEHICLES SECTION */
.vehicles {
    padding: 100px 40px;
}

.vehicles h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.vehicle-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s;
}

.vehicle-card:hover {
    transform: translateY(-4px);
}

.vehicle-img {
    height: 220px;
    width: 100%;
}

.vehicle-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    padding: 24px 24px 12px;
}

.vehicle-card > p {
    padding: 0 24px 20px;
    color: var(--text-dim);
    line-height: 1.6;
}

.vehicle-features {
    list-style: none;
    padding: 0 24px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vehicle-features li {
    font-size: 14px;
    color: var(--text-dim);
    padding-left: 20px;
    position: relative;
}

.vehicle-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.vehicle-card .btn-outline {
    margin: 0 24px 24px;
    display: block;
    text-align: center;
}

/* CTA BAND */
.cta-band {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--accent), #ff9f43);
    text-align: center;
}

.cta-band h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-band p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-band .btn-primary-lg {
    background: white;
    color: var(--accent);
}

/* CONTENT SECTIONS */
.content-section {
    padding: 100px 40px;
}

.content-section.alt {
    background: var(--surface);
}

.content-section h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.content-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    margin: 48px 0 16px;
}

.content-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    margin: 32px 0 12px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 20px;
    max-width: 800px;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-section li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.content-section a {
    color: var(--accent);
    text-decoration: underline;
}

/* FOOTER */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 80px 40px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.footer-logo .top {
    color: var(--text);
}

.footer-logo .bot {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-nap {
    font-size: 14px;
    line-height: 1.6;
}

.footer-nap strong {
    color: var(--text);
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-dim);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 14px;
    color: var(--text-dim);
}

.legal-notice {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-dim);
    font-style: italic;
}

/* FAQ PAGE */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.faq-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dim);
}

/* CONTACT FORM */
.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.contact-form button {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.map-embed {
    margin: 60px 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

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

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

    .container {
        padding: 0 20px;
    }

    .features,
    .vehicles,
    .content-section {
        padding: 60px 20px;
    }

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

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

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

    .contact-form {
        padding: 24px;
    }
}

/* ===== TIMELINE (How It Works) ===== */
.process-timeline { max-width: 800px; }
.timeline-step {
    display: flex; gap: 32px; margin-bottom: 48px;
    padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.timeline-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px; font-weight: 800; color: var(--accent);
    opacity: 0.2; line-height: 1; min-width: 80px;
}
.step-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.step-content p { color: var(--text-dim); line-height: 1.7; margin-bottom: 12px; }
.step-content p:last-child { margin-bottom: 0; }
.step-content a { color: var(--accent); }
.step-content a:hover { text-decoration: underline; }

/* ===== COMPARISON (How It Works) ===== */
.comparison-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    margin: 32px 0 48px;
}
.comparison-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 32px;
}
.comparison-card.highlight-card {
    border-color: var(--accent); background: var(--accent-glow);
}
.comparison-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px; font-weight: 600; margin-bottom: 20px;
}
.comparison-list { list-style: none; }
.comparison-list li {
    padding: 8px 0 8px 28px; position: relative;
    font-size: 14px; color: var(--text-dim); border-bottom: 1px solid rgba(255,255,255,0.03);
}
.comparison-list li:last-child { border-bottom: none; }
.comparison-list.con li::before { content: '✕'; position: absolute; left: 0; color: #ef4444; font-weight: 700; }
.comparison-list.pro li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; }
.faq-item {
    padding: 32px 0; border-bottom: 1px solid var(--border);
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px; font-weight: 600; margin-bottom: 12px;
    color: var(--text);
}
.faq-item p { color: var(--text-dim); line-height: 1.7; margin-bottom: 12px; }
.faq-item p:last-child { margin-bottom: 0; }
.faq-item a { color: var(--accent); }
.faq-item a:hover { text-decoration: underline; }
.faq-item .content-list { margin: 12px 0; padding-left: 20px; }
.faq-item .content-list li { color: var(--text-dim); margin-bottom: 8px; line-height: 1.6; }

/* ===== ABOUT FAMILY GRID ===== */
.family-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin: 32px 0 48px;
}
.family-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 28px; transition: all 0.3s;
    display: flex; flex-direction: column;
}
.family-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.family-icon { font-size: 32px; margin-bottom: 16px; }
.family-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.family-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; flex: 1; }
.family-link { font-size: 13px; color: var(--accent); font-weight: 600; margin-top: 16px; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px;
}
.contact-form-wrap h2 {
    font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 8px;
}
.application-form { margin-top: 8px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; margin-bottom: 6px; font-size: 13px;
    color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 14px;
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: 8px; color: var(--text); font-size: 15px;
    font-family: inherit; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--accent); background: rgba(255,107,43,0.03);
}
.form-group select { color-scheme: dark; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 24px;
}
.info-card h3 { font-size: 14px; color: var(--text-dim); margin-bottom: 8px; }
.info-value {
    font-family: 'Space Grotesk', sans-serif; font-size: 18px;
    font-weight: 600; color: var(--accent); display: block; margin-bottom: 6px;
}
.info-card p { font-size: 13px; color: var(--text-dim); line-height: 1.5; }

/* ===== MOBILE OVERRIDES FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .timeline-step { flex-direction: column; gap: 12px; }
    .step-number { font-size: 40px; min-width: auto; }
    .comparison-grid { grid-template-columns: 1fr; }
    .family-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
