:root {
    --bg: #0c1220;
    --card: #121a2b;
    --muted: #0f1729;
    --text: #e8edf7;
    --accent: #25c4c4;
    --accent-2: #f2b441;
    --danger: #e65a5a;
    --radius: 14px;
    --shadow: 0 20px 50px rgba(0,0,0,0.35);
    --font: 'Manrope', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: var(--font);
    background: radial-gradient(circle at 20% 20%, rgba(37,196,196,0.08), transparent 35%), var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    position: sticky;
    top: 0;
    background: rgba(12,18,32,0.9);
    backdrop-filter: blur(12px);
    z-index: 10;
}
.logo { font-weight: 700; letter-spacing: 0.5px; }
.site-header nav a { margin-left: 16px; color: var(--text); }
.site-header nav .cta { padding: 8px 14px; border: 1px solid var(--accent); border-radius: 10px; }

main { padding: 32px 24px 64px; max-width: 1100px; margin: 0 auto; }

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 24px 32px;
    align-items: center;
    padding: 32px 0 12px;
}
.hero-content h1 { font-size: clamp(28px, 4vw, 42px); margin: 8px 0; }
.hero-content .lede { color: #c9d3e9; max-width: 640px; }
.hero-card {
    background: linear-gradient(150deg, rgba(37,196,196,0.15), rgba(242,180,65,0.1));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}
.eyebrow { text-transform: uppercase; font-size: 12px; letter-spacing: 1.2px; color: var(--accent-2); }
.chips { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: rgba(255,255,255,0.06); padding: 8px 12px; border-radius: 999px; font-size: 13px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin: 14px 0; }
.hero-visual { display: flex; justify-content: center; }
.vehicle-photo {
    margin: 0;
    background: linear-gradient(160deg, rgba(37,196,196,0.12), rgba(242,180,65,0.08));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 540px;
    width: 100%;
    aspect-ratio: 4 / 3;
}
.vehicle-illustration {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(37,196,196,0.2), transparent 40%), linear-gradient(180deg, #0c1a2c 0%, #0a1422 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.vehicle-illustration svg {
    width: 100%;
    height: 100%;
}
.vehicle-photo figcaption {
    padding: 10px 14px;
    color: #c4cde0;
    font-size: 13px;
    background: rgba(0,0,0,0.28);
}

.section { margin: 42px 0; }
.section.muted { background: var(--muted); padding: 28px; border-radius: var(--radius); }
.section-header h2 { margin: 0 0 4px; }
.section-header p { margin: 0 0 16px; color: #c4cde0; }

.card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

form { display: grid; gap: 14px; }
form.form-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.form-grid .field.full,
.form-grid .field.wide,
.form-grid textarea { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; }
.field.half { width: 100%; }

input, select, textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 15px;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); }

/* Choices.js dark theme overrides for readability */
.choices { color: var(--text); }
.choices__inner {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    color: var(--text) !important;
    min-height: 44px;
}
.is-open .choices__inner { border-color: var(--accent) !important; }
.choices__list--dropdown, .choices__list[aria-expanded] {
    background: #0f1729 !important;
    border: 1px solid rgba(255,255,255,0.16) !important;
    color: var(--text) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.choices__list--dropdown .choices__item { color: var(--text) !important; }
.choices__item--selectable.is-highlighted {
    background: rgba(37,196,196,0.18) !important;
    color: #e8edf7 !important;
}
.choices__placeholder { color: #9fb1d3 !important; opacity: 1 !important; }
.choices__input { background: transparent !important; color: var(--text) !important; }
.choices__item--disabled { color: #7084a8 !important; }
.choices[data-type*=\"select-one\"] .choices__inner::after {
    border-color: #9fb1d3 transparent transparent !important;
}
.choices[data-type*=\"select-one\"].is-open .choices__inner::after {
    border-color: transparent transparent #9fb1d3 !important;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}
.btn.primary { background: var(--accent); color: #042b2b; }
.btn.ghost { border: 1px solid rgba(255,255,255,0.2); color: var(--text); background: transparent; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }

.quote-result {
    background: rgba(255,255,255,0.04);
    padding: 12px;
    border-radius: 10px;
}
.hidden { display: none; }

.pillars { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 12px; padding: 0; list-style: none; }
.pillar { background: rgba(255,255,255,0.04); padding: 14px; border-radius: 10px; text-align: center; }

.site-footer {
    padding: 20px 24px 28px;
    background: rgba(12,18,32,0.9);
    color: #c4cde0;
    text-align: center;
}

.page { max-width: 900px; margin: 32px auto; padding: 0 12px 48px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 18px; }
.blog-card { background: var(--card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); overflow: hidden; }
.blog-hero { height: 160px; background-size: cover; background-position: center; }
.blog-hero.full { height: 260px; margin-bottom: 12px; border-radius: var(--radius); }
.blog-card h2 { margin: 12px; }
.blog-card p { margin: 0 12px 12px; color: #c4cde0; }
.text-link { color: var(--accent); font-weight: 700; }

@media (max-width: 700px) {
    .site-header { flex-direction: column; gap: 8px; position: static; }
    .site-header nav { display: flex; flex-wrap: wrap; justify-content: center; }
}
