@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-Thin.ttf") format("truetype");
    font-style: normal;
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-ThinItalic.ttf") format("truetype");
    font-style: italic;
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-ExtraLight.ttf") format("truetype");
    font-style: normal;
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-ExtraLightItalic.ttf") format("truetype");
    font-style: italic;
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-Light.ttf") format("truetype");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-LightItalic.ttf") format("truetype");
    font-style: italic;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-Italic.ttf") format("truetype");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-MediumItalic.ttf") format("truetype");
    font-style: italic;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-SemiBoldItalic.ttf") format("truetype");
    font-style: italic;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-BoldItalic.ttf") format("truetype");
    font-style: italic;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-ExtraBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-ExtraBoldItalic.ttf") format("truetype");
    font-style: italic;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-Black.ttf") format("truetype");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/roboto/Roboto-BlackItalic.ttf") format("truetype");
    font-style: italic;
    font-weight: 900;
    font-display: swap;
}

:root {
    --purple: #6c3cff;
    --purple-dark: #4a20cc;
    --ink: #16131a;
    --cream: #f5f1e8;
    --paper: #fffdf9;
    --soft: #ece8df;
    --yellow: #f3ee69;
    --blue: #8ed8ff;
    --green: #a9e6b8;
    --error: #b42318;
    --success: #157347;
    --display: "Roboto", Arial, Helvetica, sans-serif;
    --sans: "Roboto", Arial, Helvetica, sans-serif;
    --shadow: 0 24px 60px rgba(22, 19, 26, 0.12);
    --site-width: 1460px;
    --site-pad: clamp(18px, 4vw, 64px);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--catalog-scroll-offset, 96px);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    height: auto;
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

.hidden {
    display: none !important;
}

::selection {
    background: var(--yellow);
    color: var(--ink);
}

:focus-visible {
    outline: 3px solid var(--purple);
    outline-offset: 4px;
}

.shell,
.site-shell {
    width: 100%;
    max-width: calc(var(--site-width) + 128px);
    margin-inline: auto;
    padding-inline: var(--site-pad);
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: none;
}

.section-spacing {
    padding-block: clamp(80px, 9vw, 150px);
}

.section {
    padding-block: clamp(80px, 9vw, 140px);
}

.section-kicker,
.eyebrow,
.kicker {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--purple);
}

.page-title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 4.75rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.88;
    text-transform: uppercase;
}

.page-title span {
    color: var(--purple);
}

.page-intro {
    line-height: 1.45;
}

.section-title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.4rem, 3.5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.section-title span {
    color: var(--purple);
}

.button,
.btn,
.button--primary,
.button--dark,
.button--light,
.button-primary,
.button-dark,
.button-yellow {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.35rem;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    line-height: 1.1;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.btn:hover,
.button--primary:hover,
.button--dark:hover,
.button--light:hover,
.button-primary:hover,
.button-dark:hover,
.button-yellow:hover {
    transform: translateY(-2px);
}

.button-primary,
.button--primary,
.btn-primary {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 10px 30px rgba(108, 60, 255, 0.23);
}

.button-primary:hover,
.button--primary:hover,
.btn-primary:hover {
    background: var(--purple-dark);
}

.button-dark,
.button--dark,
.btn-dark {
    background: var(--ink);
    color: #fff;
}

.button--light,
.btn-light {
    background: #fff;
    color: var(--ink);
}

.button-yellow {
    background: var(--yellow);
    color: var(--ink);
}

/* Header and navigation */
.site-header {
    position: fixed;
    z-index: 80;
    inset: 0 0 auto;
    padding: 18px 0;
    background: rgba(245, 241, 232, 0.82);
    box-shadow: 0 0 0 rgba(22, 19, 26, 0);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition:
        padding 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        -webkit-backdrop-filter 0.25s ease,
        backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(245, 241, 232, 0.86);
    box-shadow: 0 10px 30px rgba(22, 19, 26, 0.05);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.site-header.is-scrolled {
    padding-block: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-block;
    flex-shrink: 0;
    font-family: var(--display);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.12em;
    line-height: 1;
}

.logo__image {
    display: block;
    width: auto;
    max-width: none;
    height: 0.728em;
}

.logo-inverse {
    color: #fff;
}

.site-nav__actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
}

.account-link,
.menu-toggle {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(22, 19, 26, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.account-link {
    border-color: transparent;
    border-radius: 14px;
    background: var(--purple);
    color: #fff;
    box-shadow: 0 8px 22px rgba(108, 60, 255, 0.2);
}

.account-link:hover {
    background: var(--purple-dark);
    box-shadow: 0 10px 26px rgba(108, 60, 255, 0.28);
    transform: translateY(-2px);
}

.account-link:active {
    transform: translateY(0) scale(0.94);
}

.menu-toggle:hover {
    border-color: rgba(108, 60, 255, 0.42);
    background: #fff;
    transform: rotate(-5deg) scale(1.04);
}

.menu-toggle:active {
    transform: rotate(-2deg) scale(0.92);
}

.account-link svg,
.menu-toggle svg {
    display: block;
    width: 24px;
    height: 24px;
}

.mobile-menu {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    flex-direction: column;
    overflow: hidden;
    padding:
        max(24px, env(safe-area-inset-top))
        max(24px, env(safe-area-inset-right))
        max(18px, env(safe-area-inset-bottom))
        max(24px, env(safe-area-inset-left));
    background: linear-gradient(135deg, #7a46ff 0%, var(--purple) 48%, #5927e9 100%);
    color: #fff;
    clip-path: circle(0 at calc(100% - 48px) 48px);
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    visibility: hidden;
    transition:
        clip-path 0.62s cubic-bezier(0.76, 0, 0.24, 1),
        opacity 0.16s ease 0.42s,
        visibility 0s linear 0.62s;
    will-change: clip-path;
}

.mobile-menu::before {
    position: absolute;
    right: -20vw;
    bottom: -24vw;
    width: min(82vw, 760px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    aspect-ratio: 1;
    box-shadow:
        0 0 0 54px rgba(255, 255, 255, 0.035),
        0 0 0 108px rgba(255, 255, 255, 0.025);
    content: '';
    opacity: 0;
    pointer-events: none;
    transform: scale(0.68) rotate(-12deg);
    transition:
        opacity 0.2s ease,
        transform 0.42s cubic-bezier(0.55, 0, 1, 0.45);
}

.mobile-menu__content {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
    scrollbar-width: thin;
}

.mobile-menu__content::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu__content::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.mobile-menu.is-open {
    clip-path: circle(150vmax at calc(100% - 48px) 48px);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition:
        clip-path 0.78s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.12s ease,
        visibility 0s linear;
}

.mobile-menu.is-open::before {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition:
        opacity 0.35s ease 0.32s,
        transform 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.32s;
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translate3d(0, -18px, 0);
    transition:
        opacity 0.2s ease,
        transform 0.34s cubic-bezier(0.55, 0, 1, 0.45);
}

.mobile-menu.is-open .mobile-menu-top {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.3s ease 0.14s,
        transform 0.56s cubic-bezier(0.16, 1, 0.3, 1) 0.14s;
}

.mobile-menu-close {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mobile-menu-close:hover {
    transform: rotate(5deg);
}

.mobile-menu-close svg {
    width: 21px;
    height: 21px;
    transform: rotate(-90deg);
    transition: transform 0.4s cubic-bezier(0.55, 0, 1, 0.45);
}

.mobile-menu.is-open .mobile-menu-close svg {
    transform: rotate(0deg);
    transition: transform 0.64s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.mobile-menu-list {
    display: grid;
    justify-items: start;
    gap: 12px;
    margin-block: auto;
    font-family: var(--display);
    font-size: clamp(2.125rem, 11vw, 3.875rem);
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.mobile-menu-list a {
    overflow: hidden;
    font-weight: 600;
    transition: color 0.18s ease, transform 0.18s ease;
}

.mobile-menu-list a > span {
    --menu-enter-delay: 200ms;
    --menu-exit-delay: 0ms;
    display: block;
    opacity: 0;
    transform: translate3d(0, 0.72em, 0) rotate(1.5deg);
    transform-origin: left center;
    transition:
        opacity 0.2s ease var(--menu-exit-delay, 0ms),
        transform 0.36s cubic-bezier(0.55, 0, 1, 0.45) var(--menu-exit-delay, 0ms);
}

.mobile-menu-list a:nth-child(1) > span { --menu-enter-delay: 200ms; --menu-exit-delay: 125ms; }
.mobile-menu-list a:nth-child(2) > span { --menu-enter-delay: 255ms; --menu-exit-delay: 100ms; }
.mobile-menu-list a:nth-child(3) > span { --menu-enter-delay: 310ms; --menu-exit-delay: 75ms; }
.mobile-menu-list a:nth-child(4) > span { --menu-enter-delay: 365ms; --menu-exit-delay: 50ms; }
.mobile-menu-list a:nth-child(5) > span { --menu-enter-delay: 420ms; --menu-exit-delay: 25ms; }
.mobile-menu-list a:nth-child(6) > span { --menu-enter-delay: 475ms; --menu-exit-delay: 0ms; }
.mobile-menu-list a:nth-child(7) > span { --menu-enter-delay: 530ms; --menu-exit-delay: 0ms; }
.mobile-menu-list a:nth-child(8) > span { --menu-enter-delay: 585ms; --menu-exit-delay: 0ms; }

.mobile-menu.is-open .mobile-menu-list a > span {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
    transition:
        opacity 0.36s ease var(--menu-enter-delay, 200ms),
        transform 0.64s cubic-bezier(0.16, 1, 0.3, 1) var(--menu-enter-delay, 200ms);
}

.mobile-menu-list a:hover {
    color: var(--yellow);
    transform: translateX(6px);
}

.mobile-menu :focus-visible {
    outline-color: #fff;
}

.mobile-menu-close:focus-visible {
    outline: 0;
    box-shadow: inset 0 0 0 3px rgba(108, 60, 255, 0.42);
}

/* Home hero */
.home-hero {
    min-height: calc(100svh - 58px);
    padding-top: clamp(5.9rem, 7.2vw, 7.1rem) !important;
    padding-bottom: clamp(1.15rem, 2.6vw, 2.1rem) !important;
}

.home-hero__media {
    z-index: -3;
    overflow: hidden;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translateX(clamp(-480px, min(calc(25.7vw + 40px), calc(680px - 20.3vw)), 395px)) scale(1.03);
}

.home-hero__positioning {
    display: block;
    margin-bottom: clamp(1.1rem, 1.8vw, 1.7rem);
    font-family: var(--display);
    font-size: clamp(1.3rem, 2.7vw, 2.65rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.home-hero__positioning-primary {
    color: var(--ink);
}

.home-hero__positioning-secondary {
    color: var(--ink);
}

.home-hero__positioning-highlight {
    color: var(--purple);
}

.market-choice-card {
    position: relative;
    isolation: isolate;
    min-height: clamp(14.25rem, 18vw, 16rem);
    padding: clamp(1.5rem, 1.8vw, 2rem) !important;
    box-shadow: 0 0 0 rgba(22, 19, 26, 0);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.market-choice-card::after {
    position: absolute;
    z-index: -1;
    width: 190px;
    height: 190px;
    right: -75px;
    bottom: -90px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    content: "";
    transition: transform 0.3s ease;
}

.market-choice-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.market-choice-card:hover::after {
    transform: scale(1.2);
}

.market-choice-card--private {
    background: rgb(108 60 255 / 90%);
}

.market-choice-card--business {
    background: rgb(22 19 26 / 90%);
}

.market-choice-card__kicker {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    opacity: 0.75;
}

.market-choice-card__title {
    font-family: var(--display);
    font-size: clamp(2.2rem, 3.7vw, 3.55rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.9;
}

.market-choice-card__copy {
    font-size: 0.98rem;
    line-height: 1.33;
    opacity: 0.82;
}

.market-choice-card__cta {
    margin-top: 1.6rem !important;
    padding-top: 1rem !important;
}

.market-choice-card__arrow {
    transition: transform 0.2s ease;
}

.market-choice-card:hover .market-choice-card__arrow {
    transform: translate(5px, -5px);
}

.home-hero__note {
    opacity: 0.62;
}

/* Ticker */
.carsub-ticker {
    margin-inline: -10px;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    transform: rotate(-1deg);
}

.carsub-ticker__track {
    display: flex;
    width: max-content;
    padding-block: 15px;
    animation: ticker 24s linear infinite;
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
    will-change: transform;
}

.carsub-ticker__group {
    display: flex;
    flex: 0 0 auto;
    justify-content: space-around;
    width: max-content;
    min-width: calc(100vw + 20px);
}

.carsub-ticker__track span {
    flex: 0 0 auto;
    padding-inline: 22px;
    white-space: nowrap;
}

.carsub-ticker__track i {
    color: var(--purple);
    font-style: normal;
}

@keyframes ticker {
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .carsub-ticker__track {
        display: block;
        width: 100%;
        animation: none !important;
        will-change: auto;
    }

    .carsub-ticker__group {
        display: grid;
        flex: none;
        width: calc(100vw + 20px);
        max-width: none;
        min-width: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .carsub-ticker__group[aria-hidden="true"] {
        display: none;
    }

    .carsub-ticker__track span {
        min-width: 0;
        padding-inline: 8px;
        padding-block: 0.35rem;
        white-space: normal;
        text-align: center;
    }
}

@media (min-width: 700px) and (prefers-reduced-motion: reduce) {
    .carsub-ticker__group {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Finder */
.finder-section {
    background: var(--paper);
}

.market-switch {
    align-items: center;
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(108, 60, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
}

.market-switch__choice {
    cursor: pointer;
}

.market-switch__option {
    display: inline-flex;
    min-width: 110px;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    transition: background 0.2s ease, color 0.2s ease;
}

.market-switch__option[aria-current="true"],
.market-switch__choice input:checked + .market-switch__option {
    background: var(--purple);
    color: #fff;
}

.market-switch__choice input:focus-visible + .market-switch__option {
    box-shadow: 0 0 0 3px rgba(108, 60, 255, 0.28);
}

.finder-summary {
    background: var(--cream);
}

.finder-question {
    padding: 0 0 1.75rem;
    border-color: rgba(22, 19, 26, 0.16);
}

.finder-question--first {
    border-top: 0;
}

.finder-question__control {
    min-height: 3.875rem;
    margin-top: 1.25rem;
}

.finder-question__control .chip {
    min-height: 3.125rem;
    align-items: center;
}

.finder-range,
.catalog-filter__range {
    accent-color: var(--purple);
}

.offer-catalog {
    padding-top: clamp(104px, 9vw, 144px);
}

.catalog-filters__anchor {
    position: relative;
}

.catalog-filters__compact {
    display: none;
}

.js .catalog-filters.is-sticky {
    position: fixed;
    z-index: 70;
    top: var(--catalog-sticky-top, 82px);
    left: var(--catalog-sticky-left, 18px);
    width: var(--catalog-sticky-width, calc(100vw - 36px));
    overflow: hidden;
    padding: 0 !important;
    border: 1px solid rgba(22, 19, 26, 0.12);
    border-radius: 1.35rem;
    background: rgba(245, 241, 232, 0.94);
    box-shadow: 0 18px 50px rgba(22, 19, 26, 0.18);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    animation: catalog-filter-enter 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js .catalog-filters.is-sticky .catalog-filters__compact {
    display: grid;
}

.catalog-filters__compact {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
    min-height: 74px;
    padding: 10px 12px 10px 14px;
}

.catalog-filters__compact-icon {
    display: grid;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--purple);
    color: #fff;
    place-items: center;
}

.catalog-filters__compact-icon svg {
    width: 22px;
    height: 22px;
}

.catalog-filters__compact-copy {
    min-width: 0;
}

.catalog-filters__compact-copy > span {
    display: block;
    margin-bottom: 2px;
    color: rgba(22, 19, 26, 0.48);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalog-filters__compact-copy strong {
    display: block;
    overflow: hidden;
    font-size: clamp(0.78rem, 1.4vw, 0.95rem);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.catalog-filters__compact-count {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: rgba(22, 19, 26, 0.55);
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
}

.catalog-filters__compact-count strong {
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 900;
}

.catalog-filters__compact-toggle {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    transition: background 0.2s ease, transform 0.2s ease;
}

.catalog-filters__compact-toggle:hover {
    background: var(--purple);
}

.catalog-filters__compact-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.22s ease;
}

.catalog-filters.is-expanded .catalog-filters__compact-toggle svg {
    transform: rotate(180deg);
}

.js .catalog-filters.is-sticky .catalog-filters__body {
    max-height: 0;
    overflow: hidden;
    padding: 0 clamp(20px, 3vw, 32px);
    border-top: 0 solid rgba(22, 19, 26, 0.1);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
        max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.28s ease,
        border-width 0.28s ease,
        opacity 0.2s ease,
        visibility 0s linear 0.32s;
}

.js .catalog-filters.is-sticky.is-expanded .catalog-filters__body {
    max-height: calc(100dvh - var(--catalog-sticky-top, 82px) - 92px);
    overflow-y: auto;
    padding: clamp(20px, 3vw, 32px);
    border-top-width: 1px;
    opacity: 1;
    overscroll-behavior: contain;
    pointer-events: auto;
    visibility: visible;
    transition:
        max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.28s ease,
        border-width 0.28s ease,
        opacity 0.22s ease 0.04s,
        visibility 0s;
}

@keyframes catalog-filter-enter {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.catalog-filters__secondary,
.catalog-filters__footer {
    display: grid;
    gap: 1.75rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(22, 19, 26, 0.1);
}

.catalog-filters__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.75rem;
}

.catalog-filters__actions > * {
    flex: 1 1 auto;
    white-space: nowrap;
}

@media (min-width: 700px) {
    .catalog-filters__secondary,
    .catalog-filters__footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1180px) {
    .catalog-filters__secondary {
        grid-template-columns: minmax(170px, 0.62fr) minmax(170px, 0.62fr) minmax(350px, 1.35fr) minmax(190px, 0.75fr);
        align-items: end;
        gap: 1rem;
    }

    .catalog-filters__footer {
        grid-template-columns: minmax(410px, 1.55fr) minmax(200px, 0.85fr) auto;
        align-items: end;
        gap: 1rem;
    }

    .catalog-filters__actions {
        flex-wrap: nowrap;
    }
}

@media (max-width: 680px) {
    .offer-catalog {
        padding-top: 100px;
    }

    .js .offer-catalog {
        padding-top: 68px;
    }

    .catalog-filters__compact {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 66px;
        gap: 10px;
        padding: 9px 9px 9px 14px;
    }

    .catalog-filters__compact-icon,
    .catalog-filters__compact-count,
    .catalog-filters__compact-copy > span {
        display: none;
    }

    .catalog-filters__compact-toggle {
        min-height: 46px;
        padding-inline: 16px;
    }

    .js .catalog-filters.is-sticky.is-expanded .catalog-filters__body {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .js .catalog-filters.is-sticky {
        animation: none;
    }

    .js .catalog-filters.is-sticky .catalog-filters__body {
        transition: none;
    }
}

.finder-price-output {
    display: inline-flex;
    min-width: 92px;
    min-height: 3.125rem;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    text-align: center;
}

.chip {
    border-color: rgba(22, 19, 26, 0.2);
    background: transparent;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.finder-option input:checked + .chip,
.chip:hover {
    border-color: var(--purple);
    background: var(--purple);
    color: #fff;
}

.finder-option input:focus-visible + .chip {
    outline: 3px solid var(--purple);
    outline-offset: 3px;
}

/* Car cards */
.cars-section {
    background: var(--cream);
}

.vehicle-card__hit-area {
    position: absolute;
    z-index: 20;
    inset: 0;
    border-radius: inherit;
    cursor: pointer;
    outline: 3px solid transparent;
    outline-offset: -3px;
}

.vehicle-card__hit-area:focus-visible {
    outline-color: var(--purple);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.88);
}

.car-card {
    border: 1px solid rgba(22, 19, 26, 0.08);
    background: var(--paper);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.car-card:nth-child(2) {
    background: var(--blue);
}

.car-card:nth-child(3) {
    background: var(--yellow);
}

.car-card:hover,
.car-card:focus-within {
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.car-card__brand {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.11em;
}

.car-card__title {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.car-card__tag {
    background: rgba(255, 255, 255, 0.72);
}

.car-card__media {
    min-height: 210px;
}

.car-card__image,
.car-catalog-card .remote-car {
    width: 115%;
    max-width: none;
    margin-inline: -7.5%;
    mix-blend-mode: multiply;
    filter: contrast(1.03);
    object-fit: contain;
}

.car-card__price strong {
    font-family: var(--display);
    font-size: 2.1rem;
    letter-spacing: -0.06em;
    line-height: 1;
}

.car-card__link {
    flex-shrink: 0;
    background: var(--ink);
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.car-card:hover .car-card__link,
.car-card:focus-within .car-card__link {
    background: var(--purple);
    transform: rotate(-35deg);
}

/* Editorial */
.editorial-section {
    background: var(--purple);
    color: #fff;
}

.editorial-section__stage {
    --editorial-balance-offset: clamp(1.75rem, 2.2vw, 2.75rem);
    min-height: clamp(48rem, 43.375vw, 68.75rem);
}

.editorial-section__word {
    position: absolute;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(6.25rem, 17vw, 16.25rem);
    font-weight: 900;
    letter-spacing: -0.085em;
    line-height: 0.72;
    text-transform: uppercase;
    white-space: nowrap;
}

.editorial-section__word--one {
    top: calc(20% - var(--editorial-balance-offset));
    left: var(--site-pad);
}

.editorial-section__word--two {
    top: calc(40% - var(--editorial-balance-offset));
    right: calc(var(--site-pad) - 1%);
    color: var(--yellow);
}

.editorial-section__word--three {
    top: calc(67% - var(--editorial-balance-offset));
    left: calc(var(--site-pad) + 4.5%);
}

.editorial-section__car {
    position: absolute;
    z-index: 3;
    top: calc(23.5% - var(--editorial-balance-offset));
    right: calc(var(--site-pad) + 7%);
    width: min(58vw, 840px);
    height: auto;
    max-width: none;
    mix-blend-mode: multiply;
    transform: rotate(6deg);
}

.editorial-section__note {
    position: absolute;
    z-index: 5;
    top: calc(47% - var(--editorial-balance-offset));
    left: calc(var(--site-pad) + 8%);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
    color: var(--ink);
    line-height: 1.25;
    transform: rotate(-5deg);
}

/* How, EV, reviews and final CTA */
.process-steps {
    border: 1px solid rgba(22, 19, 26, 0.16);
    background: rgba(22, 19, 26, 0.16);
    gap: 1px;
}

.process-step {
    background: var(--paper);
}

.process-step__number {
    color: var(--purple);
    font-family: var(--display);
    font-size: 4.6rem;
    letter-spacing: -0.08em;
    line-height: 1;
}

.process-step h3 {
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}

.process-step p {
    color: #504b53;
}

.ev-section {
    background: var(--yellow);
}

.ev-card {
    background: var(--paper);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transform: rotate(3deg);
}

.ev-card__image {
    width: 100%;
    mix-blend-mode: multiply;
}

.ev-card__title {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 2.7rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.reviews-section {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.reviews-section__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
    align-items: start;
    gap: clamp(48px, 7vw, 110px);
}

.reviews-section__summary .section-kicker {
    color: rgba(255, 255, 255, 0.88);
}

.reviews-section__score {
    margin: 18px 0 0;
    color: var(--yellow);
    font-family: var(--display);
    font-size: clamp(7.75rem, 10vw, 11rem);
    letter-spacing: -0.095em;
    line-height: 0.72;
}

.reviews-section__score-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 0;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
}

.reviews-section__title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.2rem, 3vw, 3rem);
    letter-spacing: -0.07em;
    line-height: 0.92;
}

.reviews-section__title span {
    color: var(--purple);
}

.reviews-section__carousel {
    min-width: 0;
}

.reviews-section__intro {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
    line-height: 1.55;
}

.reviews-section__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
}

.reviews-provider-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-weight: 900;
}

.reviews-provider-link span {
    color: var(--purple);
    font-size: 1.25rem;
    transition: transform 0.18s ease;
}

.reviews-provider-link:hover span {
    transform: translate(4px, -4px);
}

.reviews-section__controls {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.reviews-section__controls button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.reviews-section__controls button:hover {
    border-color: var(--yellow);
    background: var(--yellow);
    color: var(--ink);
    transform: translateY(-2px);
}

.reviews-section__controls button:disabled {
    background: transparent;
    color: rgba(255, 255, 255, 0.35);
    cursor: default;
    opacity: 0.55;
    transform: none;
}

.reviews-section__controls [data-review-toggle-icon] {
    font-size: 0.85rem;
    letter-spacing: -0.08em;
}

.reviews-carousel__viewport {
    overflow-x: auto;
    margin: 20px -8px 0;
    padding: 8px;
    cursor: grab;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    user-select: none;
}

.reviews-carousel__viewport.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.reviews-carousel__viewport.is-dragging * {
    cursor: grabbing;
}

.reviews-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.reviews-carousel__track {
    display: flex;
    gap: 16px;
}

.review-card {
    display: flex;
    min-width: 0;
    min-height: 178px;
    flex: 0 0 calc((100% - 16px) / 2);
    flex-direction: column;
    padding: 19px 21px;
    border: 1px solid rgba(22, 19, 26, 0.06);
    border-radius: 20px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 14px 36px rgba(22, 19, 26, 0.07);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.review-card__top h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 1.2rem;
    letter-spacing: -0.04em;
}

.review-card__top > span {
    flex-shrink: 0;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--soft);
    font-size: 0.72rem;
    font-weight: 900;
}

.review-card__copy {
    margin-block: 12px;
    color: rgba(22, 19, 26, 0.6);
    font-size: 0.87rem;
    line-height: 1.45;
}

.review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(108, 60, 255, 0.11);
}

.review-card__footer time {
    color: rgba(22, 19, 26, 0.45);
    font-size: 0.76rem;
    font-weight: 700;
    text-align: right;
}

.review-stars {
    color: #ffc72c;
    font-size: 1.06rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.reviews-section__disclaimer {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    text-align: left;
}

@media (max-width: 900px) {
    .reviews-section__layout {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 32px;
    }

    .reviews-section__summary {
        max-width: 560px;
    }
}

.final-cta {
    background: var(--purple);
}

.final-cta__title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 4.75rem);
    letter-spacing: -0.08em;
    line-height: 0.88;
}

/* Offer catalog additions to Tailwind utilities */
.offer-catalog h2,
.car-catalog-card h3 {
    font-family: var(--display);
}

.car-catalog-card h3 {
    font-size: 1.4rem;
    line-height: 1.05;
}

.catalog-filters,
.car-catalog-card,
.offer-results__empty {
    box-shadow: 0 0 0 rgba(22, 19, 26, 0);
}

.car-catalog-card[data-car-card] {
    transition:
        opacity 0.65s ease,
        transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.22s ease;
}

.car-catalog-card[data-car-card][data-reveal] {
    transition:
        opacity 0.65s ease,
        transform 0.65s ease,
        box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.22s ease;
}

.car-catalog-card:hover,
.car-catalog-card:focus-within {
    box-shadow: var(--shadow);
}

.catalog-filters select,
.vehicle-configurator select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' fill='none' stroke='%2316131a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 0.75rem;
}

.catalog-filters select {
    padding-right: 3rem;
}

:is(.catalog-filter--fuel, [data-finder-group="fuel"]) input[value="benzine"] + span {
    --fuel-tint: #faf7c2;
    --fuel-active: #f8f5a9;
}

:is(.catalog-filter--fuel, [data-finder-group="fuel"]) input[value="hybride"] + span {
    --fuel-tint: #d4effd;
    --fuel-active: #c1e9fc;
}

:is(.catalog-filter--fuel, [data-finder-group="fuel"]) input[value="elektrisch"] + span {
    --fuel-tint: #def4e3;
    --fuel-active: #d0f0d9;
}

:is(.catalog-filter--fuel, [data-finder-group="fuel"]) input[value="diesel"] + span {
    --fuel-tint: #f8f5f2;
    --fuel-active: #f5f1ee;
}

:is(.catalog-filter--fuel, [data-finder-group="fuel"]) input:not([value="all"]) + span {
    border-color: rgba(22, 19, 26, 0.14);
    background: var(--fuel-tint, var(--paper));
    color: var(--ink);
}

:is(.catalog-filter--fuel, [data-finder-group="fuel"]) input:not([value="all"]) + span:hover {
    border-color: var(--ink);
    background: var(--fuel-active, var(--paper));
    transform: translateY(-1px);
}

:is(.catalog-filter--fuel, [data-finder-group="fuel"]) input:not([value="all"]):checked + span {
    border-color: var(--ink);
    background: var(--fuel-active, var(--paper));
    color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--ink);
}

.catalog-filter--fuel input:focus-visible + span {
    box-shadow: 0 0 0 2px var(--cream), 0 0 0 5px var(--ink);
}

.catalog-filter--fuel input:not([value="all"]):checked:focus-visible + span {
    box-shadow:
        inset 0 0 0 1px var(--ink),
        0 0 0 2px var(--cream),
        0 0 0 5px var(--ink);
}

.car-catalog-card[data-fuel="benzine"] {
    background: var(--yellow);
}

.car-catalog-card[data-fuel="hybride"] {
    background: var(--blue);
}

.car-catalog-card[data-fuel="elektrisch"] {
    background: var(--green);
}

.car-catalog-card[data-fuel="diesel"] {
    background: var(--soft);
}

.car-catalog-card[data-featured="1"] {
    overflow: visible;
    border-color: #d9ac00;
}

.car-catalog-card__featured {
    position: absolute;
    z-index: 30;
    top: 5.15rem;
    right: -0.35rem;
    display: grid;
    width: 3rem;
    height: 3rem;
    color: #d9ac00;
    filter: drop-shadow(0 4px 8px rgba(22, 19, 26, 0.12));
    pointer-events: none;
    place-items: center;
}

.car-catalog-card__featured svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.car-catalog-card__featured-seal {
    fill: var(--paper);
    stroke: currentcolor;
    stroke-linejoin: round;
    stroke-width: 2;
}

.car-catalog-card__featured-check {
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

@media (max-width: 680px) {
    .car-catalog-card__featured {
        top: 4.9rem;
        right: 0.25rem;
        width: 2.7rem;
        height: 2.7rem;
    }
}

.car-catalog-card__image .remote-car,
.car-catalog-card__image > img {
    width: 115%;
    max-width: none;
    margin-inline: -7.5%;
    mix-blend-mode: normal;
    filter: contrast(1.02) saturate(1.04);
    object-fit: contain;
}

.car-catalog-card__link {
    width: 3.25rem;
    height: 3.25rem;
}

/* Vehicle detail */
.vehicle-detail {
    padding-top: 82px;
    padding-bottom: clamp(72px, 8vw, 130px);
    background: var(--paper);
}

.vehicle-promises {
    border-block: 1px solid rgba(22, 19, 26, 0.08);
    background: #fff;
}

.vehicle-promises ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 58px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(22, 19, 26, 0.62);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.vehicle-promises li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.vehicle-promises li span {
    color: var(--purple);
    font-size: 1rem;
    font-weight: 900;
}

.vehicle-detail__shell {
    padding-top: 30px;
}

.vehicle-detail__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 22px;
    color: rgba(22, 19, 26, 0.46);
    font-size: 0.78rem;
    font-weight: 800;
}

.vehicle-detail__breadcrumb a {
    color: var(--purple);
    transition: color 0.18s ease;
}

.vehicle-detail__breadcrumb a:hover {
    color: var(--purple-dark);
}

.vehicle-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.72fr);
    align-items: start;
    gap: clamp(24px, 3vw, 44px);
}

.vehicle-detail__main,
.vehicle-detail__aside {
    min-width: 0;
}

.vehicle-detail__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.vehicle-detail__availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 12px;
    color: var(--success);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.vehicle-detail__availability span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 0 5px rgba(108, 60, 255, 0.12);
}

.vehicle-detail__brand {
    margin: 0 0 6px;
    color: rgba(22, 19, 26, 0.55);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.vehicle-detail__heading > div {
    min-width: 0;
}

.vehicle-detail__heading h1,
.vehicle-missing h1 {
    max-width: 850px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.1rem, 3.5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    line-height: 0.92;
    text-transform: uppercase;
}

.vehicle-surface {
    background: var(--cream);
}

.vehicle-detail[data-fuel="benzine"] .vehicle-surface {
    background: var(--yellow);
}

.vehicle-detail[data-fuel="hybride"] .vehicle-surface {
    background: var(--blue);
}

.vehicle-detail[data-fuel="elektrisch"] .vehicle-surface {
    background: var(--green);
}

.vehicle-detail[data-fuel="diesel"] .vehicle-surface {
    background: var(--soft);
}

.vehicle-gallery {
    position: relative;
    overflow: hidden;
    min-height: clamp(420px, 43vw, 650px);
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 2.25rem;
}

.vehicle-gallery__viewport {
    position: absolute;
    z-index: 1;
    overflow: hidden;
    border-radius: 1.75rem;
    background: #fff;
    inset: 8px;
}

.vehicle-gallery__slide {
    width: 100%;
    height: 100%;
    margin: 0;
}

.vehicle-gallery__slide .remote-car {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.03);
    animation: vehicle-image-in 0.32s ease both;
}

@keyframes vehicle-image-in {
    from {
        opacity: 0;
        transform: translateX(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.vehicle-gallery__arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    cursor: pointer;
    font-size: 1.2rem;
    place-items: center;
    transform: translateY(-50%);
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.vehicle-gallery__arrow:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.vehicle-gallery__arrow--previous {
    left: 20px;
}

.vehicle-gallery__arrow--next {
    right: 20px;
}

.vehicle-gallery__dots {
    position: absolute;
    z-index: 3;
    bottom: 32px;
    left: 50%;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.vehicle-gallery__dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(22, 19, 26, 0.25);
    cursor: pointer;
    transition: width 0.18s ease, background 0.18s ease;
}

.vehicle-gallery__dots button[aria-current="true"] {
    width: 28px;
    border-radius: 999px;
    background: var(--purple);
}

.vehicle-gallery__disclaimer {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 18px;
    left: 28px;
    margin: 0;
    color: rgba(22, 19, 26, 0.42);
    font-size: 0.66rem;
    text-align: left;
}

.vehicle-detail__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0 0;
}

.vehicle-detail__facts > div {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(22, 19, 26, 0.09);
    border-radius: 1.2rem;
    background: #fff;
}

.vehicle-detail__facts dt {
    margin-bottom: 7px;
    color: rgba(22, 19, 26, 0.45);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vehicle-detail__facts dd {
    overflow: hidden;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 900;
    text-overflow: ellipsis;
}

.vehicle-detail__about {
    margin-top: clamp(44px, 6vw, 82px);
    padding: clamp(30px, 4vw, 54px);
    border-radius: 2rem;
    background: var(--cream);
}

.vehicle-detail__about .eyebrow {
    color: var(--purple);
}

.vehicle-detail__about h2,
.vehicle-detail__closing h2 {
    margin: 18px 0 22px;
    font-family: var(--display);
    font-size: clamp(1.75rem, 2.9vw, 3rem);
    letter-spacing: -0.065em;
    line-height: 0.94;
    text-transform: uppercase;
}

.vehicle-missing h1 {
    margin: 18px 0 22px;
}

.vehicle-detail__about > p:not(.eyebrow) {
    max-width: 780px;
    margin: 0 0 1rem;
    color: rgba(22, 19, 26, 0.7);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.65;
}

.vehicle-detail__about > p:last-of-type {
    margin-bottom: 0;
}

.vehicle-detail__accordions {
    margin-top: clamp(28px, 4vw, 44px);
    border-top: 1px solid rgba(22, 19, 26, 0.14);
}

.vehicle-detail__about > .vehicle-detail__accordions:first-child {
    margin-top: 0;
}

.vehicle-detail__accordion {
    border-bottom: 1px solid rgba(22, 19, 26, 0.14);
}

.vehicle-detail__accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
    padding: 18px 2px;
    font-family: var(--display);
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.1;
    list-style: none;
    cursor: pointer;
}

.vehicle-detail__accordion summary::-webkit-details-marker {
    display: none;
}

.vehicle-detail__accordion summary:focus-visible {
    border-radius: 0.35rem;
    outline: 3px solid rgba(108, 60, 255, 0.38);
    outline-offset: 4px;
}

.vehicle-detail__accordion-icon {
    position: relative;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    transition: transform 180ms ease;
}

.vehicle-detail__accordion-icon::before,
.vehicle-detail__accordion-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
}

.vehicle-detail__accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.vehicle-detail__accordion[open] .vehicle-detail__accordion-icon {
    color: var(--purple);
    transform: rotate(45deg);
}

.vehicle-detail__accordion-content {
    max-width: 780px;
    padding: 0 44px 28px 2px;
    color: rgba(22, 19, 26, 0.72);
    font-size: clamp(0.98rem, 1.4vw, 1.08rem);
    line-height: 1.65;
}

.vehicle-detail__accordion-content p,
.vehicle-detail__accordion-content ul {
    margin: 0;
}

.vehicle-detail__accordion-content p {
    white-space: pre-line;
}

.vehicle-detail__accordion-content ul {
    padding-left: 1.25rem;
}

.vehicle-detail__aside {
    position: sticky;
    top: 104px;
}

.vehicle-subscription {
    padding: clamp(24px, 2.5vw, 38px);
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 2rem;
    background: #fff;
    box-shadow: 0 22px 70px rgba(22, 19, 26, 0.1);
}

.vehicle-subscription__kicker {
    margin: 0 0 18px;
    font-family: var(--display);
    font-size: 1.15rem;
    letter-spacing: -0.025em;
}

.vehicle-subscription__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.vehicle-subscription__price-row strong {
    font-family: var(--display);
    font-size: clamp(2.25rem, 3.5vw, 3.5rem);
    letter-spacing: -0.07em;
    line-height: 1;
}

.vehicle-subscription__price-row > span {
    color: rgba(22, 19, 26, 0.55);
    font-size: 0.72rem;
    line-height: 1.25;
}

.vehicle-subscription__price-row b {
    display: block;
    color: var(--ink);
    font-size: 0.85rem;
}

.vehicle-subscription__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 12px 0 26px;
    color: rgba(22, 19, 26, 0.55);
    font-size: 0.78rem;
    font-weight: 700;
}

.vehicle-configurator {
    padding-block: 24px;
    border-block: 1px solid rgba(22, 19, 26, 0.1);
}

.vehicle-configurator fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.vehicle-configurator legend,
.vehicle-configurator__fields label > span {
    display: block;
    margin-bottom: 9px;
    color: rgba(22, 19, 26, 0.58);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vehicle-configurator__segments {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    padding: 5px;
    border-radius: 999px;
    background: var(--cream);
}

.vehicle-configurator__segments label {
    position: relative;
    cursor: pointer;
}

.vehicle-configurator__segments input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.vehicle-configurator__segments span {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.vehicle-configurator__segments input:checked + span {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 8px 24px rgba(108, 60, 255, 0.2);
}

.vehicle-configurator__segments input:focus-visible + span {
    outline: 3px solid var(--purple);
    outline-offset: 3px;
}

.vehicle-configurator__single-market {
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: var(--cream);
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
}

.vehicle-configurator__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.vehicle-configurator__fields label {
    min-width: 0;
}

.vehicle-configurator select {
    width: 100%;
    min-height: 48px;
    padding: 0 3rem 0 13px;
    border: 1px solid rgba(22, 19, 26, 0.13);
    border-radius: 0.9rem;
    background-color: #fff;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 800;
}

.vehicle-configurator__update {
    width: 100%;
    margin-top: 12px;
    padding: 0.65rem;
    border: 0;
    background: transparent;
    color: var(--purple);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 900;
}

.js .vehicle-configurator__update {
    display: none;
}

.vehicle-subscription__cta {
    width: 100%;
    min-height: 56px;
    margin-top: 24px;
}

.vehicle-subscription__price-overview {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(22, 19, 26, 0.1);
}

.vehicle-subscription__price-overview h3 {
    margin: 0 0 12px;
    font-size: 0.82rem;
    font-weight: 900;
}

.vehicle-subscription__price-table-frame {
    overflow: hidden;
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 1rem;
}

.vehicle-subscription__price-overview table {
    width: 100%;
    border-collapse: collapse;
    color: rgba(22, 19, 26, 0.7);
    font-size: 0.74rem;
    line-height: 1.35;
}

.vehicle-subscription__price-overview th,
.vehicle-subscription__price-overview td {
    padding: 11px 13px;
    border-bottom: 1px solid rgba(22, 19, 26, 0.08);
}

.vehicle-subscription__price-overview thead th {
    background: rgba(246, 242, 234, 0.62);
    color: rgba(22, 19, 26, 0.58);
    font-size: 0.68rem;
    font-weight: 900;
    text-align: left;
}

.vehicle-subscription__price-overview th[scope="row"] {
    font-weight: 700;
    text-align: left;
}

.vehicle-subscription__price-overview th:last-child,
.vehicle-subscription__price-overview td:last-child {
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    text-align: right;
    white-space: nowrap;
}

.vehicle-subscription__price-overview tbody tr[aria-current="true"] {
    background: rgba(108, 60, 255, 0.08);
    color: var(--ink);
}

.vehicle-subscription__price-overview tbody tr:last-child > * {
    border-bottom: 0;
}

.vehicle-subscription__price-context {
    margin: 9px 2px 0;
    color: rgba(22, 19, 26, 0.46);
    font-size: 0.64rem;
    line-height: 1.45;
}

.vehicle-subscription__included {
    margin-top: 30px;
}

.vehicle-subscription__included h3 {
    margin: 0 0 15px;
    font-size: 0.82rem;
    font-weight: 900;
}

.vehicle-subscription__included ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(22, 19, 26, 0.68);
    font-size: 0.76rem;
}

.vehicle-subscription__included li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.vehicle-subscription__included li span {
    color: var(--purple);
    font-weight: 900;
}

.vehicle-subscription__fineprint {
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(22, 19, 26, 0.08);
    color: rgba(22, 19, 26, 0.4);
    font-size: 0.65rem;
    line-height: 1.5;
}

.vehicle-detail__faq {
    width: 100%;
    margin: clamp(70px, 9vw, 130px) 0 0;
    padding: clamp(30px, 5vw, 64px);
    border: 1px solid rgba(22, 19, 26, 0.08);
    border-radius: 2.2rem;
    background: #fff;
}

.vehicle-detail__faq-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: clamp(30px, 5vw, 52px);
}

.vehicle-detail__faq-heading h2 {
    margin: 16px 0 0;
    font-family: var(--display);
    font-size: clamp(1.75rem, 2.9vw, 3rem);
    letter-spacing: -0.06em;
    line-height: 0.94;
    text-transform: uppercase;
}

.vehicle-detail__closing {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-top: clamp(70px, 9vw, 130px);
    padding: clamp(32px, 5vw, 70px);
    border-radius: 2.2rem;
    background: var(--yellow);
}

.vehicle-detail__closing h2 {
    max-width: 780px;
    margin-bottom: 0;
}

.vehicle-missing {
    display: grid;
    min-height: 78vh;
    padding-block: 150px 90px;
    background: var(--paper);
    place-items: center;
}

.vehicle-missing__inner {
    text-align: center;
}

.vehicle-missing h1 {
    max-width: 900px;
    margin-inline: auto;
}

.vehicle-missing p:not(.eyebrow) {
    max-width: 560px;
    margin: 0 auto 28px;
    color: rgba(22, 19, 26, 0.62);
    line-height: 1.6;
}

@media (max-width: 1120px) {
    .vehicle-promises ul {
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .vehicle-promises ul::-webkit-scrollbar {
        display: none;
    }

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

    .vehicle-detail__aside {
        position: static;
    }

    .vehicle-subscription {
        display: grid;
        grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
        gap: 0 36px;
    }

    .vehicle-subscription__kicker,
    .vehicle-subscription__price-row,
    .vehicle-subscription__summary,
    .vehicle-subscription__included,
    .vehicle-subscription__fineprint {
        grid-column: 1;
    }

    .vehicle-configurator,
    .vehicle-subscription__cta,
    .vehicle-subscription__price-overview {
        grid-column: 2;
    }

    .vehicle-configurator {
        grid-row: 1 / span 4;
        padding-block: 0;
        border-block: 0;
    }

    .vehicle-subscription__cta {
        align-self: end;
        margin-top: 18px;
    }
}

@media (max-width: 760px) {
    .vehicle-detail {
        padding-top: 72px;
    }

    .vehicle-detail__shell {
        padding-top: 22px;
    }

    .vehicle-detail__heading {
        align-items: flex-start;
    }

    .vehicle-gallery {
        min-height: clamp(310px, 78vw, 440px);
        border-radius: 1.6rem;
    }

    .vehicle-gallery__viewport {
        border-radius: 1.25rem;
        inset: 6px;
    }

    .vehicle-gallery__arrow {
        top: auto;
        bottom: 22px;
        width: 42px;
        height: 42px;
        transform: none;
    }

    .vehicle-gallery__arrow:hover {
        transform: scale(1.04);
    }

    .vehicle-gallery__arrow--previous {
        left: 16px;
    }

    .vehicle-gallery__arrow--next {
        right: 16px;
    }

    .vehicle-gallery__dots {
        bottom: 38px;
    }

    .vehicle-gallery__disclaimer {
        display: none;
    }

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

    .vehicle-detail__about {
        padding: 28px 22px;
        border-radius: 1.5rem;
    }

    .vehicle-subscription {
        display: block;
        padding: 24px 20px;
    }

    .vehicle-configurator {
        padding-block: 22px;
        border-block: 1px solid rgba(22, 19, 26, 0.1);
    }

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

    .vehicle-detail__closing {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 22px;
        border-radius: 1.6rem;
    }

    .vehicle-detail__closing .button {
        width: 100%;
    }
}

@media (max-width: 440px) {
    .reviews-section__toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .vehicle-detail__heading {
        display: block;
    }

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

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


/* FAQ */
.faq-hero {
    background: var(--cream);
}

.faq-toolbar,
.faq-results {
    width: min(100%, 1040px);
    margin-inline: auto;
}

.faq-search-label {
    display: block;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-search__clear {
    border: 0;
    background: var(--soft);
    cursor: pointer;
    font-size: 1.25rem;
}

.faq-results__title {
    font-size: clamp(1.125rem, 2.2vw, 1.35rem);
}

.faq-placement__list-title {
    font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.faq-list {
    border-top: 1px solid rgba(22, 19, 26, 0.16);
}

.faq-item {
    border-bottom: 1px solid rgba(22, 19, 26, 0.16);
}

.faq-question {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(14px, 3vw, 32px);
    align-items: center;
    padding-block: 24px;
    cursor: pointer;
    list-style: none;
}

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

.faq-question__number {
    color: var(--purple);
    font-family: var(--display);
    font-size: 1rem;
}

.faq-question__text {
    font-family: var(--display);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.faq-question__icon {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.faq-item[open] .faq-question__icon {
    background: var(--purple);
    transform: rotate(45deg);
}

.faq-answer {
    max-width: 820px;
    padding: 0 68px 26px 62px;
    color: rgba(22, 19, 26, 0.68);
    font-size: 1.03rem;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
    white-space: pre-line;
}

@media (max-width: 760px) {
    .vehicle-detail__faq {
        padding: 30px 22px;
        border-radius: 1.6rem;
    }

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

.faq-contact__card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.faq-contact .section-title span {
    color: var(--yellow);
}

/* Autobedrijven */
.partner-hero {
    padding-block: clamp(150px, 13vw, 210px) clamp(80px, 9vw, 130px);
    background: var(--cream);
}

.partner-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
    align-items: center;
    gap: clamp(48px, 8vw, 120px);
}

.partner-hero__copy {
    max-width: 780px;
}

.partner-hero__copy .page-title {
    margin-top: 22px;
}

.partner-hero__copy .page-intro {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgba(22, 19, 26, 0.68);
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.partner-hero__lead p {
    margin: 0;
    line-height: 1.55;
}

.partner-hero__lead p + p {
    margin-top: 7px;
}

.partner-hero__lead strong {
    color: var(--ink);
    font-weight: 900;
}

.partner-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.partner-hero__statement {
    position: relative;
    display: flex;
    min-height: 440px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(30px, 4vw, 54px);
    border-radius: 2.5rem;
    background: var(--purple);
    color: #fff;
    isolation: isolate;
}

.partner-hero__statement::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 12%;
    width: 26%;
    height: 100%;
    background: rgba(243, 238, 105, 0.94);
    content: "";
    transform: skewX(-12deg);
}

.partner-hero__statement p,
.partner-hero__statement small {
    margin: 0;
    font-weight: 900;
}

.partner-hero__statement p {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.partner-hero__statement strong {
    font-family: var(--display);
    font-size: clamp(2.8rem, 5vw, 5rem);
    letter-spacing: -0.075em;
    line-height: 0.84;
    text-transform: uppercase;
}

.partner-hero__statement strong span {
    color: var(--yellow);
}

.partner-hero__statement small {
    max-width: 260px;
    font-size: 0.85rem;
    line-height: 1.45;
}

.partner-opportunity {
    background: var(--paper);
}

.partner-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
    align-items: end;
    gap: clamp(36px, 7vw, 110px);
}

.partner-section-heading .section-title {
    margin-top: 16px;
}

.partner-section-heading > p {
    max-width: 620px;
    margin: 0 0 4px;
    color: rgba(22, 19, 26, 0.65);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.65;
}

.partner-outcomes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: clamp(46px, 6vw, 78px);
}

.partner-outcomes article {
    min-height: 270px;
    padding: clamp(26px, 3.5vw, 42px);
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 2rem;
    background: var(--cream);
}

.partner-outcomes article:nth-child(2) {
    background: var(--blue);
}

.partner-outcomes article:nth-child(3) {
    background: var(--yellow);
}

.partner-outcomes article > span {
    display: block;
    margin-bottom: clamp(60px, 7vw, 105px);
    color: var(--purple);
    font-family: var(--display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    letter-spacing: -0.07em;
    line-height: 0.8;
}

.partner-outcomes h3 {
    margin: 0 0 10px;
    font-family: var(--display);
    font-size: clamp(1.2rem, 1.9vw, 1.65rem);
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.partner-outcomes p {
    margin: 0;
    color: rgba(22, 19, 26, 0.68);
    line-height: 1.55;
}

.partner-benefits {
    background: var(--ink);
    color: #fff;
}

.partner-benefits__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(54px, 9vw, 140px);
}

.partner-benefits .dot {
    background: var(--yellow);
}

.partner-benefits .section-title {
    margin-top: 20px;
}

.partner-benefits .section-title span {
    color: var(--yellow);
}

.partner-benefits header > p:last-child {
    max-width: 470px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 1.05rem;
    line-height: 1.65;
}

.partner-benefits__list {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    list-style: none;
}

.partner-benefits__list li {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.partner-benefits__list li > span {
    color: var(--purple);
    font-family: var(--display);
    font-size: 1.2rem;
}

.partner-benefits__list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.55;
}

.partner-benefits__list strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.03rem;
}

.partner-benefits__list strong:only-child {
    margin-bottom: 0;
    font-size: 1.08rem;
}

.partner-relief {
    background: var(--paper);
}

.partner-relief__panel {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 6vw, 78px);
    border: 1px solid rgba(22, 19, 26, 0.09);
    border-radius: 2.5rem;
    background: var(--cream);
    isolation: isolate;
}

.partner-relief__panel::after {
    position: absolute;
    z-index: -1;
    top: -55%;
    right: -5%;
    width: clamp(250px, 34vw, 500px);
    aspect-ratio: 1;
    border: clamp(45px, 6vw, 86px) solid rgba(108, 60, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.partner-relief__panel .section-title {
    max-width: 980px;
    margin-top: 18px;
}

.partner-relief__panel > p:last-child {
    max-width: 1050px;
    margin: 27px 0 0;
    color: rgba(22, 19, 26, 0.68);
    font-size: clamp(1rem, 1.45vw, 1.16rem);
    line-height: 1.7;
}

.partner-why {
    background: var(--cream);
}

.partner-why__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 8vw, 120px);
}

.partner-why .section-title {
    margin-top: 20px;
}

.partner-why__list {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(22, 19, 26, 0.16);
    list-style: none;
}

.partner-why__list li {
    position: relative;
    padding: 23px 0 23px 42px;
    border-bottom: 1px solid rgba(22, 19, 26, 0.16);
    color: rgba(22, 19, 26, 0.74);
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    font-weight: 800;
    line-height: 1.5;
}

.partner-why__list li::before {
    position: absolute;
    top: 21px;
    left: 3px;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    content: "✓";
    font-size: 0.72rem;
    font-weight: 900;
}

.partner-fee {
    position: relative;
    grid-column: 1 / -1;
    overflow: hidden;
    margin-top: clamp(4px, 2vw, 22px);
    padding: clamp(30px, 5vw, 58px);
    border-radius: 2.25rem;
    background: var(--blue);
    isolation: isolate;
}

.partner-fee::after {
    position: absolute;
    z-index: -1;
    right: -60px;
    bottom: -115px;
    width: 280px;
    height: 280px;
    border: 60px solid rgba(22, 19, 26, 0.08);
    border-radius: 50%;
    content: "";
}

.partner-fee h3 {
    margin: 18px 0 10px;
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.7rem);
    letter-spacing: -0.065em;
    line-height: 0.95;
    text-transform: uppercase;
}

.partner-fee > p:last-child {
    max-width: 720px;
    margin: 0;
    color: rgba(22, 19, 26, 0.68);
    font-size: 1.05rem;
    line-height: 1.6;
}

.partner-contact {
    background: var(--paper);
}

.partner-contact__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
    gap: clamp(50px, 8vw, 120px);
    padding: clamp(34px, 6vw, 82px);
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 2.5rem;
    background: var(--yellow);
}

.partner-contact__panel .section-title {
    margin-top: 18px;
}

.partner-contact__panel > div:first-child > p:not(.kicker) {
    max-width: 590px;
    margin: 26px 0 30px;
    color: rgba(22, 19, 26, 0.68);
    font-size: 1.05rem;
    line-height: 1.6;
}

.partner-contact__direct {
    display: grid;
    align-content: center;
    gap: 10px;
}

.partner-contact__direct a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 20px;
    padding: 18px 20px;
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.72);
    transition: background 0.18s ease, transform 0.18s ease;
}

.partner-contact__direct a:hover {
    background: #fff;
    transform: translateY(-2px);
}

.partner-contact__direct span {
    color: rgba(22, 19, 26, 0.48);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partner-contact__direct strong {
    grid-column: 1;
    overflow-wrap: anywhere;
}

.partner-contact__direct b {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 1.2rem;
}

@media (max-width: 920px) {
    .partner-hero__grid,
    .partner-section-heading,
    .partner-benefits__grid,
    .partner-why__grid,
    .partner-contact__panel {
        grid-template-columns: 1fr;
    }

    .partner-hero__statement {
        min-height: 360px;
    }

    .partner-outcomes {
        grid-template-columns: 1fr;
    }

    .partner-outcomes article {
        min-height: 0;
    }

    .partner-outcomes article > span {
        margin-bottom: 48px;
    }
}

@media (max-width: 600px) {
    .partner-hero {
        padding-top: 120px;
    }

    .partner-hero__actions,
    .partner-hero__actions .btn,
    .partner-contact__panel .btn {
        width: 100%;
    }

    .partner-hero__statement {
        min-height: 310px;
        border-radius: 1.7rem;
    }

    .partner-benefits__list li {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    .partner-contact__panel {
        gap: 38px;
        border-radius: 1.7rem;
    }

    .partner-relief__panel,
    .partner-fee {
        border-radius: 1.7rem;
    }
}

/* Expats */
.expat-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(145px, 13vw, 205px) clamp(78px, 8vw, 125px);
    background:
        radial-gradient(circle at 90% 14%, rgba(142, 216, 255, 0.56), transparent 30%),
        var(--cream);
}

.expat-hero::after {
    position: absolute;
    right: -8vw;
    bottom: -18vw;
    width: clamp(300px, 42vw, 660px);
    aspect-ratio: 1;
    border: clamp(44px, 7vw, 100px) solid rgba(108, 60, 255, 0.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.expat-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: clamp(50px, 8vw, 120px);
}

.expat-hero__copy {
    max-width: 830px;
}

.expat-hero__copy .eyebrow {
    gap: 12px;
}

.expat-hero__copy .eyebrow span {
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--ink);
    letter-spacing: 0.08em;
}

.expat-hero__copy .page-title {
    margin-top: 24px;
}

.expat-hero__copy .page-intro {
    max-width: 730px;
    margin: 30px 0 0;
    color: rgba(22, 19, 26, 0.72);
    font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.expat-hero__supporting {
    max-width: 680px;
    margin: 16px 0 0;
    color: rgba(22, 19, 26, 0.62);
    line-height: 1.65;
}

.expat-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.expat-hero__actions .btn-light {
    border: 1px solid rgba(22, 19, 26, 0.1);
}

.expat-route-card {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    padding: clamp(30px, 4vw, 48px);
    border-radius: 2.6rem;
    background: var(--purple);
    box-shadow: 0 32px 80px rgba(74, 32, 204, 0.24);
    color: #fff;
    isolation: isolate;
}

.expat-route-card::before {
    position: absolute;
    z-index: -1;
    top: -12%;
    right: 10%;
    width: 28%;
    height: 128%;
    background: var(--yellow);
    content: "";
    opacity: 0.96;
    transform: rotate(11deg);
}

.expat-route-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.expat-route-card__top p {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.expat-route-card__top > span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
}

.expat-route-card h2 {
    max-width: 420px;
    margin: clamp(54px, 7vw, 88px) 0 40px;
    font-family: var(--display);
    font-size: clamp(2.4rem, 4.4vw, 4.5rem);
    letter-spacing: -0.075em;
    line-height: 0.86;
    text-transform: uppercase;
}

.expat-route-card ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.expat-route-card li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 14px;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.expat-route-card li > span,
.expat-route-card li small {
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.expat-route-card li strong {
    font-size: 1rem;
}

.expat-route-card__footer {
    margin: 28px 0 0;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.expat-language-nav {
    position: relative;
    z-index: 2;
    background: var(--ink);
    color: #fff;
}

.expat-language-nav__inner {
    display: flex;
    min-height: 66px;
    align-items: center;
    gap: 10px;
}

.expat-language-nav__inner > span {
    margin-right: auto;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.expat-language-nav a {
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 900;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.expat-language-nav a:hover {
    border-color: var(--yellow);
    background: var(--yellow);
    color: var(--ink);
}

#nederlands,
#english {
    scroll-margin-top: 88px;
}

.expat-flexibility {
    background: var(--paper);
}

.expat-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
    align-items: end;
    gap: clamp(36px, 7vw, 110px);
}

.expat-section-heading .section-title {
    margin-top: 17px;
}

.expat-section-heading > p {
    max-width: 610px;
    margin: 0 0 3px;
    color: rgba(22, 19, 26, 0.67);
    font-size: clamp(1rem, 1.45vw, 1.17rem);
    line-height: 1.68;
}

.expat-benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: clamp(46px, 6vw, 78px);
}

.expat-benefit-cards article {
    min-height: 275px;
    padding: clamp(27px, 3.3vw, 42px);
    border: 1px solid rgba(22, 19, 26, 0.09);
    border-radius: 2rem;
    background: var(--cream);
}

.expat-benefit-cards article:nth-child(2) {
    background: var(--blue);
}

.expat-benefit-cards article:nth-child(3) {
    background: var(--yellow);
}

.expat-benefit-cards article > span,
.expat-steps li > span,
.expat-section-number {
    color: var(--purple);
    font-family: var(--display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    line-height: 0.8;
}

.expat-benefit-cards article > span {
    display: block;
    margin-bottom: clamp(58px, 7vw, 100px);
}

.expat-benefit-cards h3 {
    margin: 0 0 10px;
    font-family: var(--display);
    font-size: clamp(1.25rem, 1.9vw, 1.65rem);
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.expat-benefit-cards p,
.expat-flexibility__closing {
    color: rgba(22, 19, 26, 0.67);
    line-height: 1.6;
}

.expat-benefit-cards p {
    margin: 0;
}

.expat-flexibility__closing {
    max-width: 820px;
    margin: 38px 0 0;
    font-size: 1.08rem;
    font-weight: 700;
}

.expat-included {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.expat-included::after {
    position: absolute;
    top: 10%;
    right: -160px;
    width: 350px;
    height: 350px;
    border: 72px solid rgba(142, 216, 255, 0.12);
    border-radius: 50%;
    content: "";
}

.expat-included__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(54px, 9vw, 140px);
}

.expat-included .section-title {
    margin-top: 20px;
}

.expat-included .section-title span {
    color: var(--yellow);
}

.expat-included__grid > div > p:not(.eyebrow) {
    max-width: 520px;
    margin: 27px 0 0;
    color: rgba(255, 255, 255, 0.67);
    line-height: 1.68;
}

.expat-included__grid .expat-included__promise {
    color: #fff;
    font-weight: 900;
}

.expat-included__list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.expat-included__list li {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    min-height: 82px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
}

.expat-included__list li > span {
    display: grid;
    width: 42px;
    height: 42px;
    grid-row: 1 / span 2;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 900;
}

.expat-included__list strong {
    font-size: 1.02rem;
}

.expat-included__list small {
    grid-column: 2;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.45;
}

.expat-process {
    background: var(--cream);
}

.expat-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: clamp(48px, 6vw, 76px) 0 0;
    padding: 0;
    list-style: none;
    counter-reset: expat-steps;
}

.expat-steps li {
    min-height: 260px;
    padding: clamp(24px, 2.7vw, 36px);
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 1.75rem;
    background: var(--paper);
}

.expat-steps li > span {
    display: block;
    margin-bottom: clamp(55px, 7vw, 90px);
    font-size: clamp(2.2rem, 3vw, 3.25rem);
}

.expat-steps p {
    margin: 0;
    color: rgba(22, 19, 26, 0.7);
    line-height: 1.58;
}

.expat-steps a {
    color: var(--purple);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.expat-why {
    background: var(--paper);
}

.expat-why__panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(50px, 8vw, 120px);
    padding: clamp(34px, 6vw, 80px);
    border-radius: 2.5rem;
    background: var(--yellow);
}

.expat-why__panel .section-title {
    margin-top: 18px;
}

.expat-why__panel ul {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(22, 19, 26, 0.18);
    list-style: none;
}

.expat-why__panel li {
    position: relative;
    padding: 18px 0 18px 35px;
    border-bottom: 1px solid rgba(22, 19, 26, 0.18);
    font-weight: 800;
    line-height: 1.45;
}

.expat-why__panel li::before {
    position: absolute;
    top: 17px;
    left: 2px;
    color: var(--purple);
    content: "✓";
    font-size: 1.05rem;
    font-weight: 900;
}

.expat-cta {
    background: var(--blue);
}

.expat-cta__inner {
    text-align: center;
}

.expat-cta h2 {
    max-width: 900px;
    margin: 18px auto 0;
    font-family: var(--display);
    font-size: clamp(2.3rem, 5.3vw, 5rem);
    letter-spacing: -0.07em;
    line-height: 0.93;
    text-transform: uppercase;
}

.expat-cta__inner > p:not(.kicker):not(.expat-signoff) {
    margin: 24px auto 28px;
    color: rgba(22, 19, 26, 0.68);
    font-size: 1.08rem;
    line-height: 1.6;
}

.expat-cta__inner > p a {
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.expat-signoff {
    margin: 28px 0 0;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.expat-english {
    position: relative;
    overflow: hidden;
    background: var(--purple);
    color: #fff;
}

.expat-english::before {
    position: absolute;
    top: 4%;
    left: -180px;
    width: 400px;
    height: 400px;
    border: 82px solid rgba(243, 238, 105, 0.11);
    border-radius: 50%;
    content: "";
}

.expat-english > .shell {
    position: relative;
    z-index: 1;
}

.expat-english__intro {
    max-width: 980px;
}

.expat-english__intro .page-title {
    margin-top: 22px;
}

.expat-english__intro .page-title span {
    color: var(--yellow);
}

.expat-english__intro .page-intro {
    max-width: 800px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.expat-english__intro > p:last-child {
    max-width: 760px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.65;
}

.expat-english__sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(55px, 7vw, 92px);
}

.expat-english__block {
    padding: clamp(27px, 4vw, 46px);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.08);
}

.expat-english__block .expat-section-number {
    margin: 0 0 clamp(48px, 6vw, 82px);
    color: var(--yellow);
    font-size: clamp(2.2rem, 3vw, 3.4rem);
}

.expat-english__block h3,
.expat-english__cta h3 {
    font-family: var(--display);
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.expat-english__block h3 {
    margin: 0 0 20px;
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.expat-english__block p,
.expat-english__block li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

.expat-english__block p {
    margin: 0 0 18px;
}

.expat-english__block ul,
.expat-english__block ol {
    display: grid;
    gap: 9px;
    margin: 0 0 20px;
    padding-left: 22px;
}

.expat-english__block a,
.expat-english__cta p a {
    color: var(--yellow);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.expat-english__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px 50px;
    margin-top: 14px;
    padding: clamp(30px, 5vw, 62px);
    border-radius: 2rem;
    background: var(--ink);
}

.expat-english__cta h3 {
    max-width: 760px;
    margin: 16px 0 0;
    font-size: clamp(1.9rem, 3.6vw, 3.5rem);
}

.expat-english__cta p:not(.kicker):not(.expat-signoff) {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.67);
    line-height: 1.6;
}

.expat-english__cta .expat-signoff {
    grid-column: 1 / -1;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1020px) {
    .expat-hero__grid,
    .expat-section-heading,
    .expat-included__grid,
    .expat-why__panel {
        grid-template-columns: 1fr;
    }

    .expat-route-card {
        min-height: 450px;
    }

    .expat-benefit-cards {
        grid-template-columns: 1fr;
    }

    .expat-benefit-cards article {
        min-height: 0;
    }

    .expat-benefit-cards article > span {
        margin-bottom: 52px;
    }

    .expat-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .expat-hero {
        padding-top: 122px;
    }

    .expat-hero__actions,
    .expat-hero__actions .btn {
        width: 100%;
    }

    .expat-route-card {
        min-height: 400px;
        border-radius: 1.8rem;
    }

    .expat-route-card h2 {
        margin-block: 52px 32px;
    }

    .expat-language-nav__inner {
        flex-wrap: wrap;
        padding-block: 14px;
    }

    .expat-language-nav__inner > span {
        width: 100%;
        margin-right: 0;
    }

    .expat-steps,
    .expat-english__sections,
    .expat-english__cta {
        grid-template-columns: 1fr;
    }

    .expat-steps li {
        min-height: 0;
    }

    .expat-steps li > span {
        margin-bottom: 48px;
    }

    .expat-why__panel,
    .expat-english__block,
    .expat-english__cta {
        border-radius: 1.65rem;
    }

    .expat-english__cta .btn {
        width: 100%;
    }
}

/* Contact */
.contact-hero {
    background: var(--cream);
}

.contact-hero .page-title {
    color: var(--ink);
}

.contact-aside__title {
    font-size: clamp(2rem, 4.6vw, 3.3rem);
}

.contact-form-card__title,
.privacy-closing__title {
    font-size: clamp(1.7rem, 3.4vw, 2.65rem);
}

.contact-topic {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 18px;
    background: #fff;
}

.contact-topic__number {
    color: var(--purple);
    font-family: var(--display);
    font-size: 1.25rem;
}

.contact-topic h3 {
    margin: 0 0 4px;
    font-weight: 900;
}

.contact-topic p {
    margin: 0;
    color: rgba(22, 19, 26, 0.58);
    font-size: 0.88rem;
    line-height: 1.45;
}

.contact-direct {
    padding-top: 24px;
    border-top: 1px solid rgba(22, 19, 26, 0.14);
}

.contact-direct__links {
    display: grid;
    gap: 7px;
    margin-block: 12px 17px;
}

.contact-direct__link {
    display: inline-flex;
    width: fit-content;
    min-height: 32px;
    align-items: center;
    gap: 8px;
    color: var(--purple);
    font-size: 0.95rem;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.contact-direct__link--primary {
    font-family: var(--display);
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    letter-spacing: -0.04em;
    text-decoration: none;
}

.contact-direct__meta {
    max-width: 440px;
    margin: 0;
    color: rgba(22, 19, 26, 0.55);
    font-size: 0.78rem;
    line-height: 1.5;
}

.contact-company {
    padding: 0 0 clamp(72px, 10vw, 130px);
}

.contact-company-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 16px;
}

.contact-company-card {
    padding: clamp(25px, 4vw, 42px);
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 28px;
    background: var(--cream);
}

.contact-company-card--dark {
    display: flex;
    flex-direction: column;
    border-color: transparent;
    background: var(--ink);
    color: #fff;
}

.contact-company-card h2 {
    margin: 9px 0 27px;
    font-family: var(--display);
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    letter-spacing: -0.05em;
    line-height: 0.95;
    text-transform: uppercase;
}

.contact-company-card--dark > p:not(.kicker) {
    max-width: 620px;
    margin: -12px 0 24px;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.55;
}

.contact-company-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.contact-company-details address {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(22, 19, 26, 0.1);
    color: rgba(22, 19, 26, 0.67);
    font-style: normal;
    line-height: 1.7;
}

.contact-company-details address a {
    flex: 0 0 auto;
    color: var(--purple);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-company-details dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.contact-company-details dl div {
    position: relative;
    min-width: 0;
    min-height: 96px;
    padding: 19px 20px;
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(22, 19, 26, 0.04);
}

.contact-company-details dl div:last-child {
    grid-column: 1 / -1;
}

.contact-company-details dt {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    color: rgba(22, 19, 26, 0.5);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.contact-company-details dt::before {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--purple);
    content: "";
}

.contact-company-details dd {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(0.92rem, 1.25vw, 1.08rem);
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.015em;
    line-height: 1.35;
    overflow-wrap: normal;
    white-space: nowrap;
}

.contact-account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-company-card--dark .contact-account-actions {
    margin-top: auto;
    padding-top: 12px;
}

.contact-form-card {
    scroll-margin-top: 110px;
}

@media (max-width: 1000px) {
    .contact-company-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .contact-company-details,
    .contact-company-details dl {
        grid-template-columns: 1fr;
    }

    .contact-company-details address {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .contact-company-details dl div:last-child {
        grid-column: auto;
    }

    .contact-account-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-account-actions .btn {
        width: 100%;
    }
}

.contact-form-card {
    padding: clamp(24px, 5vw, 50px);
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(22, 19, 26, 0.08);
}

.form-field label {
    display: block;
    margin-bottom: 9px;
    font-size: 0.84rem;
    font-weight: 900;
}

.form-label-optional {
    color: rgba(22, 19, 26, 0.48);
    font-size: 0.72rem;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(22, 19, 26, 0.18);
    border-radius: 15px;
    background: var(--paper);
    color: var(--ink);
    outline: 0;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-field input,
.form-field select {
    min-height: 52px;
    padding-inline: 16px;
}

.form-field textarea {
    min-height: 190px;
    padding: 15px 16px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(108, 60, 255, 0.13);
}

.form-field [aria-invalid="true"] {
    border-color: var(--error);
}

.form-field__meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 7px;
    color: rgba(22, 19, 26, 0.5);
    font-size: 0.72rem;
}

.form-error {
    margin: 7px 0 0;
    color: var(--error);
    font-size: 0.8rem;
    font-weight: 800;
}

.form-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 11px;
    align-items: start;
    padding: 14px;
    border: 1px solid transparent;
    border-radius: 15px;
    background: var(--cream);
}

.form-consent--error {
    border-color: var(--error);
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--purple);
}

.form-consent label {
    font-size: 0.82rem;
    line-height: 1.5;
}

.form-consent a {
    color: var(--purple);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-status,
.form-error-summary {
    display: flex;
    gap: 13px;
    padding: 17px;
    border-radius: 16px;
}

.form-status h3,
.form-error-summary h3 {
    margin: 0 0 3px;
    font-weight: 900;
}

.form-status p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
}

.form-status--success {
    background: #e7f6ed;
    color: var(--success);
}

.form-status--error,
.form-error-summary {
    background: #fef0ed;
    color: var(--error);
}

.form-error-summary {
    display: block;
}

.form-error-summary ul {
    margin: 8px 0 0 18px;
    list-style: disc;
}

.form-error-summary a {
    text-decoration: underline;
}

/* Privacy */
.privacy-hero {
    background: var(--cream);
    color: var(--ink);
}

.privacy-summary__item > span,
.privacy-section-number {
    color: var(--purple);
    font-family: var(--display);
    font-size: 1.15rem;
    letter-spacing: -0.04em;
}

.privacy-summary__item h2 {
    margin: 25px 0 10px;
    font-family: var(--display);
    font-size: 1.45rem;
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.privacy-summary__item p {
    margin: 0;
    color: rgba(22, 19, 26, 0.65);
    line-height: 1.55;
}

.privacy-toc {
    padding: 24px;
    border: 1px solid rgba(22, 19, 26, 0.1);
    border-radius: 22px;
    background: var(--cream);
}

.privacy-toc h2 {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.privacy-toc ol {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    counter-reset: privacy-toc;
    list-style: none;
}

.privacy-toc li {
    counter-increment: privacy-toc;
}

.privacy-toc a {
    display: grid;
    grid-template-columns: 1.7rem 1fr;
    gap: 7px;
    padding-block: 6px;
    color: rgba(22, 19, 26, 0.68);
    font-size: 0.88rem;
    font-weight: 700;
}

.privacy-toc a::before {
    color: var(--purple);
    content: counter(privacy-toc, decimal-leading-zero);
    font-family: var(--display);
}

.privacy-toc a:hover {
    color: var(--purple);
}

.privacy-copy > section {
    position: relative;
    padding-bottom: 48px;
    scroll-margin-top: 110px;
}

.privacy-copy > section + section {
    padding-top: 48px;
    border-top: 1px solid rgba(22, 19, 26, 0.12);
}

.privacy-copy h2 {
    max-width: 800px;
    margin: 9px 0 22px;
    font-family: var(--display);
    font-size: clamp(1.65rem, 3.35vw, 2.65rem);
    letter-spacing: -0.05em;
    line-height: 1;
    text-transform: uppercase;
}

.privacy-copy p,
.privacy-copy li {
    color: rgba(22, 19, 26, 0.7);
    line-height: 1.75;
}

.privacy-copy p {
    margin-block: 0 18px;
}

.privacy-copy ul {
    display: grid;
    gap: 8px;
    margin: 0 0 20px;
    padding-left: 22px;
    list-style: disc;
}

.privacy-copy a {
    color: var(--purple);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-callout {
    margin-block: 25px;
    padding: 22px;
    border-left: 5px solid var(--purple);
    border-radius: 0 18px 18px 0;
    background: var(--cream);
}

.privacy-callout p:last-child {
    margin-bottom: 0;
}

.cookie-declaration-embed {
    min-width: 0;
    overflow-x: auto;
}

/* Shared reveal animation */
.reveal,
[data-reveal] {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible,
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Footer */
.site-footer {
    padding: 70px 0 28px;
    background: #0f0d11;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
    gap: clamp(30px, 4vw, 64px);
}

.footer-brand .logo {
    font-size: 2.7rem;
}

.footer-brand p,
.footer-cta p {
    max-width: 350px;
    margin: 20px 0 0;
    color: #aaa3ad;
    line-height: 1.55;
}

.site-footer h2 {
    margin: 0 0 15px;
    color: #aaa3ad;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-footer a:not(.logo):not(.button):not(.footer-contact__link):not(.footer-social-link) {
    display: block;
    width: fit-content;
    padding-block: 7px;
    color: #eee;
    font-size: 0.9rem;
}

.site-footer a:not(.logo):not(.button):not(.footer-contact__link):not(.footer-social-link):hover {
    color: var(--yellow);
}

.footer-contact {
    margin-top: 24px;
    color: #aaa3ad;
    font-size: 0.9rem;
    font-style: normal;
    line-height: 1.55;
}

.footer-contact strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
}

.site-footer .footer-contact__link {
    display: block;
    width: fit-content;
    padding: 0;
    color: #aaa3ad;
    transition: color 0.2s ease;
}

.site-footer .footer-contact__link:hover,
.site-footer .footer-contact__link:focus-visible {
    color: var(--yellow);
}

.footer-contact__links {
    display: grid;
    gap: 2px;
    margin-top: 14px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.site-footer .footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #3b3640;
    border-radius: 12px;
    color: #fff;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus-visible {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-cta {
    align-self: start;
    padding: 24px;
    border: 1px solid #302c34;
    border-radius: 22px;
}

.footer-cta p {
    margin-block: 0 20px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid #2d2931;
    color: #8f8792;
    font-size: 0.75rem;
}

.footer-bottom > div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    padding: 0 !important;
    color: #aaa3ad !important;
    font-size: inherit !important;
}

@media (max-width: 1050px) {
    .home-hero {
        min-height: auto;
    }

    .home-hero__media img {
        object-position: 62% center;
        transform: translateX(3%) scale(1.04);
    }

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

    .footer-cta {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) and (max-width: 1050px) {
    .home-hero__media img {
        object-position: center;
        transform: translateX(clamp(300px, calc(25.7vw + 40px), 315px)) scale(1.03);
    }
}

@media (max-width: 680px) {
    :root {
        --site-pad: 18px;
    }

    .site-header {
        padding-block: 14px;
        background: rgba(245, 241, 232, 0.86);
    }

    .site-header.is-scrolled {
        background: rgba(245, 241, 232, 0.9);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .logo {
        font-size: 1.55rem;
    }

    .account-link,
    .menu-toggle,
    .mobile-menu-close {
        width: 44px;
        height: 44px;
    }

    .account-link,
    .menu-toggle {
        flex-basis: 44px;
    }

    .site-nav__actions {
        gap: 8px;
    }

    .site-nav {
        position: relative;
        min-height: 44px;
        padding-inline: 18px;
    }

    .mobile-menu {
        padding:
            max(18px, env(safe-area-inset-top))
            max(18px, env(safe-area-inset-right))
            max(18px, env(safe-area-inset-bottom))
            max(18px, env(safe-area-inset-left));
    }

    .home-hero__positioning {
        font-size: clamp(0.95rem, 4.5vw, 1.2rem);
    }

    .home-hero {
        min-height: auto;
        padding-top: 6.75rem !important;
        padding-bottom: 1.5rem !important;
    }

    .market-choice-card__title {
        font-size: clamp(2rem, 10.3vw, 2.6rem);
        letter-spacing: -0.075em;
    }

    .home-hero__content,
    .home-hero__choices,
    .market-choice-card {
        min-width: 0;
        max-width: 100%;
    }

    .home-hero__media img {
        object-position: 69% center;
        transform: none;
    }

    .reviews-section__layout {
        gap: 32px;
    }

    .reviews-section__title {
        font-size: clamp(2.25rem, 11vw, 3rem);
    }

    .reviews-section__score {
        font-size: clamp(6.5rem, 32vw, 8.5rem);
    }

    .reviews-section__toolbar {
        align-items: flex-start;
    }

    .reviews-provider-link {
        font-size: 0.9rem;
    }

    .reviews-section__controls {
        gap: 7px;
    }

    .reviews-section__controls button {
        width: 40px;
        height: 40px;
    }

    .reviews-carousel__viewport {
        margin-top: 14px;
    }

    .review-card {
        min-height: 195px;
        flex-basis: 100%;
        padding: 22px;
    }

    .reviews-section__disclaimer {
        text-align: left;
    }

    .carsub-ticker__track {
        font-size: 1.2rem;
    }

    .editorial-section__stage {
        min-height: 650px;
    }

    .editorial-section__word {
        letter-spacing: -0.09em;
    }

    .editorial-section__word--one {
        top: 7%;
        left: var(--site-pad);
        font-size: clamp(4.75rem, 24vw, 7.25rem);
    }

    .editorial-section__word--two {
        top: 38%;
        right: 6%;
        font-size: clamp(4.25rem, 22vw, 6.75rem);
    }

    .editorial-section__word--three {
        top: auto;
        left: auto;
        right: 6%;
        bottom: 7%;
        font-size: clamp(3.5rem, 18vw, 5.5rem);
    }

    .editorial-section__car {
        top: 21%;
        right: -22%;
        width: 94vw;
    }

    .editorial-section__note {
        top: 52%;
        left: 4%;
        font-size: 0.95rem;
    }

    .ev-card {
        transform: rotate(1deg);
    }

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

    .footer-brand,
    .footer-cta {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
