:root {
    --bg: #f4f4f1;
    --surface: #ffffff;
    --ink: #0a0b0b;
    --muted: #5d625d;
    --soft: #e8e8e1;
    --dark: #070807;
    --dark-2: #111311;
    --accent: #bbff76;
    --accent-ink: #153400;
    --line: rgba(10, 11, 11, 0.12);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    --radius: 26px;
    --site-max: 1680px;
    --content-max: 1260px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background:
        linear-gradient(rgba(7, 8, 7, 0.5), rgba(7, 8, 7, 0.5)),
        url("desired-background.png") center top / cover fixed;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 16px max(22px, calc((100vw - var(--site-max)) / 2));
    background: rgba(7, 8, 7, 0.78);
    backdrop-filter: blur(14px);
}

.brand-logo,
.footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo img {
    display: block;
    width: min(210px, 58vw);
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

nav a {
    padding: 9px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

nav a:hover,
nav a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent);
    transform: translateY(-1px);
}

.menu-toggle {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.menu-toggle span {
    position: absolute;
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
}

.language-switch {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.language-switch a {
    min-width: 46px;
    padding: 7px 10px;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    font-size: 13px;
}

.language-switch a.active {
    background: var(--accent);
    color: var(--accent-ink);
}

.container {
    flex: 1 0 auto;
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 12px 34px 72px;
}

.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    align-items: end;
    gap: 28px;
    min-height: 680px;
    width: 100vw;
    margin-top: -12px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    border-radius: 0;
    padding: clamp(56px, 7.5vw, 92px) max(34px, calc((100vw - var(--content-max)) / 2)) clamp(36px, 5.25vw, 60px);
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.28) 44%, rgba(0, 0, 0, 0));
    /* To restore a hero-only image layer, use:
       background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.4) 44%, rgba(0, 0, 0, 0.08)), url("desired-background.png") center / cover;
    */
    box-shadow: none;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

.home-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(42px, 9vw, 112px);
    line-height: 0.92;
    letter-spacing: 0;
}

.home-hero h1 {
    color: var(--accent);
}

.success h1,
.page-hero h1,
.form-heading h1,
.admin-top h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1;
    letter-spacing: 0;
}

.success .button-link {
    margin-top: 24px;
}

.lead,
.page-hero p,
.form-heading p,
.success p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.contact-band,
.admin-top {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 30px;
}

button,
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    padding: 14px 23px;
    background: var(--accent);
    color: var(--accent-ink);
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

button:hover,
button:focus-visible,
.button-link:hover,
.button-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(187, 255, 118, 0.28);
}

.button-link.ghost,
.button-link.secondary {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.button-link.secondary {
    border-color: var(--line);
    background: var(--ink);
}

.hero-panel {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.hero-panel span,
.choice-card span,
.platform-photo-card span,
.vehicle-icon {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(187, 255, 118, 0.35);
    color: #174f2a;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: none;
}

.hero-panel span {
    background: rgba(187, 255, 118, 0.16);
    color: var(--accent);
}

.hero-panel strong {
    font-size: 27px;
    line-height: 1.1;
}

.hero-stats {
    display: grid;
    gap: 16px;
}

.hero-stats p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.hero-stats b,
.commission-lines {
    color: var(--accent);
}

.hero-stats b {
    display: block;
    font-size: 38px;
    line-height: 1;
}

.commission-lines {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: clamp(21px, 2.2vw, 34px);
    font-weight: 900;
    line-height: 1.05;
}

.dark-band {
    margin: 28px 0;
    padding: clamp(26px, 5vw, 52px);
    border-radius: 34px;
    background: rgba(7, 8, 7, 0.84);
    color: #fff;
}

.section-heading h2,
.info-panel h2,
.contact-band h2,
.info-bubble h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 5vw, 58px);
    line-height: 1;
}

.section-heading p {
    max-width: 740px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
}

.vehicle-section .section-heading h2 {
    color: var(--accent);
}

.feature-strip,
.choice-grid,
.platform-gallery,
.vehicle-grid,
.rental-info-grid,
.detail-grid {
    display: grid;
    gap: 18px;
}

.feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-strip article {
    min-height: 210px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: var(--dark-2);
}

.feature-strip span {
    color: var(--accent);
    font-weight: 900;
}

.feature-strip strong {
    display: block;
    margin: 30px 0 10px;
    font-size: 24px;
}

.feature-strip p,
.choice-card p,
.platform-photo-card p,
.vehicle-card p,
.vehicle-card li,
.feature-list li,
.step-list li,
.contact-band p,
.lead-small {
    color: var(--muted);
}

.choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 28px 0;
}

.choice-card,
.platform-photo-card,
.vehicle-card,
.info-panel,
.contact-band,
.form-card,
.table-wrap,
.detail-grid section,
.info-bubble {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.choice-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 270px;
    padding: clamp(22px, 4vw, 34px);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.choice-card:hover,
.choice-card:focus-visible {
    border-color: rgba(73, 122, 28, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(15, 70, 34, 0.16);
}

.choice-card h2 {
    margin: 16px 0 10px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1;
}

.card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: auto;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.choice-card:hover .card-action,
.choice-card:focus-visible .card-action {
    background: var(--accent);
    color: var(--accent-ink);
    transform: translateX(4px);
}

.platform-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.platform-photo-card {
    overflow: hidden;
}

.platform-photo-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.platform-photo-card div {
    padding: 18px;
}

.promo-story {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    align-items: center;
    gap: clamp(24px, 5vw, 58px);
    margin: 34px 0;
    padding: clamp(24px, 5vw, 52px);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.promo-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 62px);
    line-height: 0.98;
}

.promo-copy p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 18px;
}

.promo-points {
    display: grid;
    gap: 10px;
}

.promo-points span {
    display: block;
    padding: 13px 15px;
    border-radius: 18px;
    background: #f1f4ec;
    color: #1e2818;
    font-weight: 800;
}

.promo-image-stack {
    position: relative;
    min-height: 470px;
}

.promo-image-stack img,
.courier-promo-card img,
.signup-side-image img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.promo-main {
    height: 430px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.promo-floating {
    position: absolute;
    right: -12px;
    bottom: -4px;
    width: min(48%, 310px) !important;
    height: 250px;
    border: 8px solid #fff;
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.page-hero,
.success,
.form-heading,
.legal-page {
    padding: 44px 0 26px;
    color: #fff;
}

.page-hero p,
.form-heading p,
.success p,
.form-card p,
.privacy-note,
.legal-page p,
.legal-page li {
    color: var(--muted);
}

.page-hero p,
.form-heading p,
.success p {
    color: rgba(255, 255, 255, 0.84);
}

.legal-page {
    max-width: 880px;
    margin: 34px 0;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.legal-page h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 6vw, 66px);
    line-height: 1;
}

.legal-page h2 {
    margin: 30px 0 10px;
    font-size: 26px;
    line-height: 1.15;
}

.legal-updated {
    margin-top: 0;
}

.legal-warning {
    margin: 22px 0;
    padding: 16px 18px;
    border-radius: 18px;
    background: #10120f;
    color: #fff;
}

.form-shell {
    max-width: 1080px;
    margin: 0 auto;
}

.courier-promo-grid,
.signup-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 22px;
}

.courier-promo-card,
.signup-side-image {
    margin: 0;
}

.courier-promo-card {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.courier-promo-card img {
    height: 100%;
    min-height: 280px;
}

.signup-side-image {
    display: grid;
    gap: 18px;
}

.signup-side-image img {
    min-height: 260px;
    height: 100%;
    border-radius: var(--radius);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.11);
}

.info-bubble {
    margin: 0 0 22px;
    padding: 24px;
    background: rgba(16, 18, 15, 0.82);
    color: #fff;
}

.info-bubble p {
    margin: 0 0 12px;
    color: var(--accent);
    font-weight: 900;
}

.info-bubble ul,
.vehicle-card ul,
.feature-list,
.step-list {
    margin: 0;
    padding-left: 20px;
}

.info-bubble li + li,
.vehicle-card li + li,
.feature-list li + li,
.step-list li + li {
    margin-top: 8px;
}

.form-card {
    display: grid;
    gap: 16px;
    padding: clamp(22px, 4vw, 34px);
}

.form-card.compact {
    max-width: 460px;
    margin: 34px auto;
}

.gdpr-consent-box {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(23, 79, 42, 0.24);
    border-radius: 20px;
    background: rgba(187, 255, 118, 0.16);
    color: #17331f;
}

.gdpr-consent-box h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
}

.gdpr-consent-box p {
    margin: 0;
    color: #17331f;
    font-weight: 700;
}

.gdpr-consent-box ul {
    margin: 0;
    padding-left: 20px;
}

.gdpr-consent-box li + li {
    margin-top: 6px;
}

label,
fieldset {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 15px;
    background: #f9f9f6;
    color: var(--ink);
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(187, 255, 118, 0.68);
    border-color: #7ebf3a;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"],
.field-invalid {
    border-color: #c7351d;
    background: #fff7f4;
}

.field-error {
    display: block;
    color: #b22b18;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.field-error:empty {
    display: none;
}

textarea {
    resize: vertical;
}

fieldset {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
}

legend {
    padding: 0 8px;
    color: var(--muted);
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 700;
}

.check-field {
    display: grid;
    gap: 6px;
}

.check input {
    width: auto;
    margin-top: 5px;
}

.hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid #ffb8a8;
    border-radius: 18px;
    background: #fff0eb;
    color: #7d2618;
}

.vehicle-section {
    margin: 0 0 28px;
}

.vehicle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vehicle-card,
.info-panel,
.contact-band {
    padding: 24px;
}

.vehicle-card {
    display: grid;
    gap: 12px;
}

.vehicle-icon {
    box-shadow: 0 8px 18px rgba(23, 79, 42, 0.12);
}

.vehicle-card h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.1;
}

.vehicle-card strong {
    display: block;
    color: #315f00;
    font-size: 24px;
}

.rental-info-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    margin-bottom: 28px;
}

.contact-band {
    justify-content: space-between;
}

.admin-top {
    justify-content: space-between;
    margin: 28px 0 22px;
}

.admin-top h1 {
    color: #fff;
}

.admin-tabs {
    display: inline-flex;
    gap: 8px;
    margin: 0 0 18px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(7, 8, 7, 0.62);
    backdrop-filter: blur(12px);
}

.admin-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 900;
    text-decoration: none;
}

.admin-tabs a.active,
.admin-tabs a:hover,
.admin-tabs a:focus-visible {
    background: var(--accent);
    color: var(--accent-ink);
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.82);
}

.table-wrap table {
    min-width: 680px;
}

th,
td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: #343934;
    font-size: 14px;
}

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

.detail-grid section {
    overflow-x: auto;
    padding: 18px;
}

.detail-grid h2 {
    margin: 0 0 12px;
}

.login-shell {
    min-height: 55vh;
    display: grid;
    place-items: center;
}

.site-footer {
    flex-shrink: 0;
    background: var(--dark);
    color: #fff;
    padding: 42px 22px 24px;
    border-top: 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(180px, 280px) minmax(0, 1fr) auto;
    align-items: start;
    gap: 26px;
    max-width: var(--site-max);
    margin: 0 auto;
}

.footer-brand img {
    width: min(210px, 58vw);
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.footer-contact p,
.footer-copy {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-links {
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-copy {
    max-width: var(--site-max);
    margin: 24px auto 0;
    font-size: 13px;
}

@media (max-width: 860px) {
    body {
        background:
            radial-gradient(circle at 18% 8%, rgba(187, 255, 118, 0.2), transparent 30%),
            radial-gradient(circle at 88% 20%, rgba(45, 117, 170, 0.22), transparent 34%),
            linear-gradient(145deg, #080909 0%, #161a18 70%, #193427 88%, #1d3e54 100%);
    }

    .site-header {
        position: static;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding-top: 10px;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        padding: 11px 12px;
    }

    .site-nav .language-switch {
        width: fit-content;
    }

    .home-hero,
    .choice-grid,
    .platform-gallery,
    .feature-strip,
    .vehicle-grid,
    .rental-info-grid,
    .footer-inner,
    .promo-story,
    .courier-promo-grid,
    .signup-layout {
        grid-template-columns: 1fr;
    }

    .home-hero {
        min-height: auto;
        padding-top: 56px;
        background-position: 68% center;
        border-radius: 0;
    }

    .hero-panel {
        background: rgba(10, 11, 11, 0.72);
    }

    .contact-band,
    .admin-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 8px 14px 48px;
    }

    .site-header {
        padding: 14px;
    }

    .home-hero,
    .dark-band,
    .promo-story,
    .choice-card,
    .platform-photo-card,
    .form-card,
    .info-bubble {
        border-radius: 22px;
    }

    .home-hero {
        padding: 38px 20px 28px;
        border-radius: 0;
    }

    .promo-image-stack {
        min-height: 360px;
    }

    .promo-main {
        height: 330px;
    }

    .promo-floating {
        display: none !important;
    }

    .hero-actions .button-link {
        width: 100%;
    }

    th,
    td {
        padding: 11px;
    }
}

@media (min-width: 861px) {
    .container {
        font-size: 14px;
    }

    .home-hero {
        min-height: 560px;
        grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    }

    .hero-copy {
        max-width: 560px;
    }

    .home-hero h1 {
        font-size: clamp(32px, 6.75vw, 84px);
    }

    .success h1,
    .page-hero h1,
    .form-heading h1,
    .admin-top h1 {
        font-size: clamp(26px, 4.5vw, 51px);
    }

    .lead,
    .page-hero p,
    .form-heading p,
    .success p {
        max-width: 560px;
        font-size: clamp(14px, 1.5vw, 17px);
    }

    .section-heading h2,
    .info-panel h2,
    .contact-band h2,
    .info-bubble h2 {
        font-size: clamp(22px, 3.75vw, 44px);
    }

    .section-heading p,
    .promo-copy p {
        font-size: 14px;
    }

    .choice-card h2 {
        font-size: clamp(22px, 3vw, 35px);
    }

    .promo-copy h2 {
        font-size: clamp(24px, 3.75vw, 46px);
    }

    .commission-lines {
        font-size: clamp(16px, 1.65vw, 26px);
    }

    .hero-panel strong {
        font-size: 20px;
    }

    .hero-stats b {
        font-size: 29px;
    }

    .feature-strip strong,
    .vehicle-card strong,
    .vehicle-card h3 {
        font-size: 18px;
    }

    .legal-page h1 {
        font-size: clamp(26px, 4.5vw, 50px);
    }

    .legal-page h2 {
        font-size: 20px;
    }

    button,
    .button-link {
        min-height: 42px;
        padding: 10px 17px;
        font-size: 14px;
    }

    input,
    select,
    textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
}
