:root {
    --ink: #13231f;
    --muted: #5c6c66;
    --paper: #f6f8f5;
    --surface: #ffffff;
    --line: #dce4df;
    --green: #146b50;
    --green-dark: #0b4737;
    --lime: #b9df63;
    --amber: #f2b84b;
    --shadow: 0 16px 40px rgba(19, 35, 31, 0.12);
}

body.motor-theme-booking {
    --ink: #142629;
    --muted: #5c6c70;
    --paper: #f3f7f7;
    --line: #d8e3e4;
    --green: #0e7180;
    --green-dark: #084c56;
    --lime: #f2c451;
    --amber: #ee7563;
}

body.motor-theme-booking .segment-label { color: #b6493b; }
body.motor-theme-booking .icon-box { background: #e2f0f1; }
body.motor-theme-booking .demo { background: #0b3036; }
body.motor-theme-booking .final-cta { color: #fff; background: #d85f51; }
body.motor-theme-booking .final-cta .section-kicker { color: #ffe18d; }
body.motor-theme-booking .final-cta p { color: rgba(255, 255, 255, 0.78); }

body.motor-theme-education { --green: #315fa8; --green-dark: #1d4179; --lime: #f0c958; --amber: #e77754; --paper: #f3f6fa; }
body.motor-theme-retail { --green: #b23d35; --green-dark: #762821; --lime: #f0c94f; --amber: #2d8a68; --paper: #f8f5f2; }
body.motor-theme-construction { --green: #a65324; --green-dark: #653418; --lime: #f3c756; --amber: #287b79; --paper: #f7f5f1; }
body.motor-theme-property { --green: #16746f; --green-dark: #0b4946; --lime: #e8c76a; --amber: #b95e47; --paper: #f4f7f6; }
body.motor-theme-food { --green: #ba3f35; --green-dark: #70251f; --lime: #f2c94f; --amber: #23806a; --paper: #faf5f1; }
body.motor-theme-queue { --green: #286fa5; --green-dark: #194b72; --lime: #f0c75a; --amber: #d86553; --paper: #f2f6f8; }
body.motor-theme-documents { --green: #6650a4; --green-dark: #40316d; --lime: #73d4c2; --amber: #d69045; --paper: #f6f4f9; }
body.motor-theme-isp { --green: #087f83; --green-dark: #075054; --lime: #78d8c4; --amber: #e3a84a; --paper: #f2f7f7; }

body.motor-theme-education .segment-label,
body.motor-theme-retail .segment-label,
body.motor-theme-construction .segment-label,
body.motor-theme-property .segment-label,
body.motor-theme-food .segment-label,
body.motor-theme-queue .segment-label,
body.motor-theme-documents .segment-label,
body.motor-theme-isp .segment-label { color: var(--green); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Outfit", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(9, 28, 23, 0.78);
    backdrop-filter: blur(12px);
}
.header-inner, .section-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}
.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #10231d;
    background: var(--lime);
    border-radius: 6px;
}
.brand-name { font-size: 18px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.main-nav a:hover { color: #fff; }
.main-nav .nav-back {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
}
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 6px;
}
.nav-toggle svg { width: 22px; height: 22px; }

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    color: #fff;
    background-image: var(--hero-image);
    background-position: center 48%;
    background-size: cover;
}
.hero-overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 22, 18, 0.94) 0%, rgba(5, 22, 18, 0.75) 48%, rgba(5, 22, 18, 0.18) 100%);
}
.hero-content {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 150px 0 86px;
}
.eyebrow, .section-kicker, .segment-label {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}
.hero .eyebrow { color: var(--lime); }
.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: 0;
}
.hero-lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; height: 17px; flex: 0 0 auto; }
.button-primary { color: #10231d; background: var(--lime); }
.button-primary:hover { background: #caee79; }
.button-secondary { color: #fff; border-color: rgba(255, 255, 255, 0.55); background: rgba(6, 22, 18, 0.35); }
.button-outline { color: var(--green-dark); border-color: var(--line); background: #fff; }
.button-light { color: var(--green-dark); background: #fff; }
.hero-price {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}
.hero-price strong { color: #fff; font-size: 26px; }

.overview, .segments, .demo { padding: 92px 0; }
.overview { background: #fff; }
.overview-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
.overview h2, .section-heading h2, .demo h2, .final-cta h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: 0;
}
.overview-copy > p:last-child, .section-heading > p, .demo p, .final-cta p {
    color: var(--muted);
    font-size: 17px;
}
.benefit-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 38px; }
.benefit-item { display: grid; grid-template-columns: 46px 1fr; gap: 15px; }
.icon-box {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--green-dark);
    background: #e8f3ec;
    border-radius: 6px;
}
.icon-box svg { width: 23px; height: 23px; }
.benefit-item h3 { margin: 0 0 6px; font-size: 18px; }
.benefit-item p { margin: 0; color: var(--muted); font-size: 15px; }

.segments { background: var(--paper); }
.section-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 40px;
}
.section-heading > p { margin: 0; }
.segment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.segment-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(19, 35, 31, 0.06);
}
.segment-card > img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.segment-card-body { flex: 1; display: flex; flex-direction: column; padding: 24px; }
.segment-label { margin-bottom: 7px; color: #ad6a00; }
.segment-card h3 { margin: 0; font-size: 23px; line-height: 1.15; }
.segment-description { min-height: 72px; margin: 13px 0 16px; color: var(--muted); font-size: 15px; }
.segment-card ul { display: grid; gap: 8px; margin: 0 0 22px; padding: 0; list-style: none; }
.segment-card li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; color: #344640; font-size: 14px; }
.segment-card li svg { width: 17px; height: 17px; margin-top: 2px; color: var(--green); }
.segment-price { display: flex; align-items: baseline; gap: 5px; margin-top: auto; padding-top: 4px; }
.segment-price strong { font-size: 24px; }
.segment-price span { color: var(--muted); font-size: 13px; }
.segment-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.segment-actions--single { grid-template-columns: 1fr; }

.demo { color: #fff; background: #112a23; }
.demo-layout { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.demo h2 { max-width: 650px; }
.demo p { max-width: 700px; margin-bottom: 0; color: rgba(255, 255, 255, 0.72); }
.demo .section-kicker { color: var(--lime); }
.demo-access { min-width: 340px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 8px; }
.demo-access div { min-width: 0; padding: 18px; }
.demo-access div + div { border-left: 1px solid rgba(255, 255, 255, 0.2); }
.demo-access span, .demo-access strong { display: block; overflow-wrap: anywhere; }
.demo-access span { color: rgba(255, 255, 255, 0.58); font-size: 12px; text-transform: uppercase; }
.demo-access strong { margin-top: 5px; font-size: 15px; }

.final-cta { padding: 74px 0; background: var(--amber); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta .section-kicker { color: #664000; }
.final-cta p { max-width: 700px; margin-bottom: 0; color: #4f3d1b; }
.final-cta .button { flex: 0 0 auto; }
footer { padding: 28px 0; color: rgba(255, 255, 255, 0.65); background: #071b16; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; font-size: 13px; }

@media (max-width: 920px) {
    .hero { min-height: 660px; }
    .hero h1 { font-size: 50px; }
    .overview-grid, .section-heading { grid-template-columns: 1fr; gap: 34px; }
    .segment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .demo-layout { grid-template-columns: 1fr; gap: 34px; }
    .demo-access { min-width: 0; width: 100%; max-width: 520px; }
}

@media (max-width: 700px) {
    .header-inner, .section-inner, .hero-content { width: min(100% - 28px, 1180px); }
    .header-inner { min-height: 64px; }
    .nav-toggle { display: grid; }
    .main-nav {
        position: fixed;
        inset: 64px 0 auto;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 14px 18px;
        background: #0b251e;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 14px 8px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .main-nav .nav-back { margin-top: 10px; border: 1px solid rgba(255, 255, 255, 0.45); text-align: center; }
    .hero { min-height: 620px; background-position: 62% center; }
    .hero-overlay { background: linear-gradient(0deg, rgba(5, 22, 18, 0.97) 0%, rgba(5, 22, 18, 0.78) 62%, rgba(5, 22, 18, 0.3) 100%); }
    .hero-content { padding: 125px 0 55px; }
    .hero h1 { font-size: 40px; }
    .hero-lead { font-size: 17px; }
    .hero-actions { display: grid; }
    .hero-price { flex-wrap: wrap; }
    .overview, .segments, .demo { padding: 66px 0; }
    .overview h2, .section-heading h2, .demo h2, .final-cta h2 { font-size: 32px; }
    .benefit-list, .segment-grid { grid-template-columns: 1fr; }
    .segment-description { min-height: 0; }
    .final-cta-inner { align-items: stretch; flex-direction: column; }
    .footer-inner { flex-direction: column; }
}

@media (max-width: 420px) {
    .hero h1 { font-size: 36px; }
    .segment-card-body { padding: 20px; }
    .segment-actions { grid-template-columns: 1fr; }
    .demo-access { grid-template-columns: 1fr; }
    .demo-access div + div { border-top: 1px solid rgba(255, 255, 255, 0.2); border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
