:root {
    --color-bg: #f6f2ea;
    --color-surface: #fffdf8;
    --color-surface-strong: #fff7eb;
    --color-ink: #15242c;
    --color-ink-soft: #4c5d66;
    --color-line: rgba(21, 36, 44, 0.12);
    --color-brand: #18394a;
    --color-brand-strong: #0f2632;
    --color-accent: #f08d27;
    --color-accent-strong: #c96d12;
    --color-success: #1d7a4a;
    --color-warning: #c17b15;
    --color-danger: #b2412f;
    --shadow-sm: 0 10px 30px rgba(15, 38, 50, 0.08);
    --shadow-md: 0 20px 50px rgba(15, 38, 50, 0.12);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --container: 1200px;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    color: var(--color-ink);
    background:
        radial-gradient(circle at top right, rgba(240, 141, 39, 0.1), transparent 28%),
        linear-gradient(180deg, #fcfaf6 0%, var(--color-bg) 55%, #efe6d9 100%);
    line-height: 1.6;
}

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

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

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

.site-topbar {
    background: var(--color-brand-strong);
    color: #f9f1e2;
    padding: 10px 20px;
    font-size: 0.95rem;
}

.site-topbar__inner,
.site-header__inner,
.section,
.site-footer__inner,
.legal-layout,
.error-layout__inner {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.site-topbar__inner {
    display: flex;
    gap: 18px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-topbar__items {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.site-topbar__items span,
.site-topbar__items a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(252, 250, 246, 0.9);
    border-bottom: 1px solid rgba(21, 36, 44, 0.08);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-brand img {
    width: 168px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav__list a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--color-ink-soft);
    transition: background var(--transition), color var(--transition);
}

.site-nav__list a:hover,
.site-nav__list a.is-current {
    background: rgba(24, 57, 74, 0.08);
    color: var(--color-brand);
}

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

.site-nav__action-cluster {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(21, 36, 44, 0.08);
    box-shadow: var(--shadow-sm);
}

.site-nav__toggle {
    display: none;
    border: 0;
    background: rgba(24, 57, 74, 0.08);
    color: var(--color-brand);
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    background: var(--color-accent);
    color: #1e160c;
}

.button--primary:hover {
    background: var(--color-accent-strong);
    color: #fff8ef;
}

.button--ghost {
    background: rgba(24, 57, 74, 0.06);
    border-color: rgba(24, 57, 74, 0.12);
    color: var(--color-brand);
}

.button--dark {
    background: var(--color-brand);
    color: #fdf5e8;
}

.button--block {
    width: 100%;
}

.icon-button {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(24, 57, 74, 0.14);
    background: #fff;
    color: var(--color-brand);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.icon-button:hover {
    transform: translateY(-2px);
    border-color: rgba(24, 57, 74, 0.24);
    box-shadow: var(--shadow-sm);
}

.icon-button--wa {
    color: #159d4f;
}

.icon-button--instagram {
    color: #d25a74;
}

.icon-button svg {
    width: 24px;
    height: 24px;
}

.hero,
.page-hero {
    padding: 78px 0 34px;
}

.hero__panel,
.page-hero__panel {
    position: relative;
    overflow: hidden;
    padding: 46px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(15, 38, 50, 0.96), rgba(24, 57, 74, 0.9)),
        url('../img/hero.jpg') center/cover;
    color: #fff4e2;
    box-shadow: var(--shadow-md);
}

.hero__panel::after,
.page-hero__panel::after {
    content: '';
    position: absolute;
    inset: auto -10% -30% auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 141, 39, 0.28), transparent 70%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: #ffd7a3;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__grid,
.page-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 28px;
    align-items: end;
}

.hero h1,
.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.02;
    max-width: 12ch;
}

.hero p,
.page-hero p {
    margin: 0;
    max-width: 62ch;
    color: rgba(255, 244, 226, 0.86);
}

.hero__stage {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.22fr) minmax(0, 0.92fr);
    align-items: center;
}

.hero__spotlight {
    padding: 34px 32px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(12, 32, 43, 0.82), rgba(19, 56, 76, 0.88));
    border: 1px solid rgba(255, 248, 237, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: center;
}

.hero__spotlight .eyebrow,
.hero__spotlight .hero-cta,
.hero__chipline {
    justify-content: center;
}

.hero__spotlight h1 {
    max-width: 9ch;
    margin-left: auto;
    margin-right: auto;
}

.hero__lead {
    max-width: 24ch;
    margin: 0 auto;
    font-size: clamp(1.14rem, 2vw, 1.5rem);
}

.hero__highlight {
    color: #75b2ff;
}

.hero__chipline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero__chipline .badge {
    background: rgba(255, 248, 237, 0.1);
    color: #fff7e8;
    border: 1px solid rgba(255, 248, 237, 0.14);
}

.hero__vehicle {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    border-radius: 34px;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.12);
}

.hero__vehicle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 32, 43, 0.12), rgba(12, 32, 43, 0.34));
}

.hero__vehicle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero__fact {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 248, 237, 0.1);
    border: 1px solid rgba(255, 248, 237, 0.12);
}

.hero__fact strong,
.vehicle-detail__summary-grid strong {
    display: block;
    font-size: 1.3rem;
    color: #fff7e8;
}

.hero__fact span,
.vehicle-detail__summary-grid span {
    color: rgba(255, 244, 226, 0.72);
    font-size: 0.92rem;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.trust-card {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(21, 36, 44, 0.08);
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.trust-card:hover,
.mini-card:hover,
.inventory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(15, 38, 50, 0.14);
}

.trust-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-brand);
}

.section {
    padding: 30px 0 38px;
}

.section--tight {
    padding-top: 18px;
}

.section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.section__header--left {
    display: block;
}

.section__header h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.05;
    color: var(--color-brand-strong);
}

.section__header p {
    margin: 10px 0 0;
    color: var(--color-ink-soft);
    max-width: 68ch;
}

.badge-line {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(24, 57, 74, 0.08);
    color: var(--color-brand);
    font-weight: 600;
}

.service-grid,
.local-grid,
.process-grid,
.content-grid,
.inventory-grid,
.coverage-grid {
    display: grid;
    gap: 18px;
}

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

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

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

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

.card,
.mini-card,
.inventory-card,
.form-card,
.faq__item,
.inventory-filter,
.vehicle-detail__spec,
.detail-note {
    background: rgba(255, 253, 248, 0.85);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.mini-card,
.card {
    padding: 24px;
}

.mini-card {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.mini-card h3,
.card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: var(--color-brand);
}

.mini-card p,
.card p,
.list-check li {
    margin: 0;
    color: var(--color-ink-soft);
}

.mini-card a,
.mini-card span {
    display: inline-flex;
    margin-top: 18px;
    color: var(--color-accent-strong);
    font-weight: 700;
}

.sales-band {
    display: grid;
    gap: 22px;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
}

.sales-band__visual {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 34px;
    box-shadow: var(--shadow-md);
}

.sales-band__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 32, 43, 0.08), rgba(12, 32, 43, 0.48));
}

.sales-band__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sales-band__badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 248, 237, 0.92);
    color: var(--color-brand);
    font-weight: 700;
}

.sales-band__content {
    padding: 32px;
    border-radius: 34px;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-sm);
}

.sales-band__content h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    color: var(--color-brand-strong);
}

.sales-band__content p {
    margin: 0 0 18px;
    color: var(--color-ink-soft);
}

.list-check {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-check li {
    position: relative;
    padding-left: 30px;
}

.list-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 5px rgba(240, 141, 39, 0.18);
}

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

.inventory-card {
    overflow: hidden;
}

.inventory-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: rgba(24, 57, 74, 0.08);
}

.inventory-card__media img,
.vehicle-detail__cover img,
.vehicle-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inventory-card__body {
    padding: 22px;
}

.inventory-card__topline {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
    margin-bottom: 10px;
}

.inventory-card__type {
    color: var(--color-brand);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.inventory-card__price,
.vehicle-detail__price {
    color: var(--color-accent-strong);
    font-size: 1.5rem;
    line-height: 1.1;
}

.inventory-card__title {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.inventory-card__meta,
.inventory-card__copy,
.vehicle-detail__intro,
.vehicle-detail__helper,
.inventory-results,
.legal-intro {
    color: var(--color-ink-soft);
}

.inventory-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.inventory-card__specs li,
.tag {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(24, 57, 74, 0.08);
    color: var(--color-brand);
    font-size: 0.92rem;
}

.inventory-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.inventory-status {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.inventory-status--published {
    background: rgba(29, 122, 74, 0.92);
    color: #f2fff7;
}

.inventory-status--reserved {
    background: rgba(193, 123, 21, 0.95);
    color: #fff8ef;
}

.inventory-status--sold {
    background: rgba(178, 65, 47, 0.92);
    color: #fff0ee;
}

.inventory-status--draft {
    background: rgba(24, 57, 74, 0.92);
    color: #eef7fb;
}

.inventory-filter {
    padding: 20px;
}

.inventory-filter__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.field,
.lead-form input,
.lead-form select,
.lead-form textarea,
.inventory-filter select,
.admin-preview__note {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(21, 36, 44, 0.12);
    background: #fffdf9;
    color: var(--color-ink);
    outline: 0;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.inventory-filter select:focus {
    border-color: rgba(24, 57, 74, 0.38);
    box-shadow: 0 0 0 4px rgba(24, 57, 74, 0.08);
}

.lead-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: 0.92fr 1.08fr;
}

.lead-sidebar {
    padding: 28px;
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(24, 57, 74, 0.98), rgba(15, 38, 50, 0.96));
    color: #fff7e7;
    box-shadow: var(--shadow-md);
}

.lead-sidebar--visual {
    background:
        linear-gradient(180deg, rgba(14, 35, 46, 0.92), rgba(14, 35, 46, 0.88)),
        url('../img/examples/money_bg.webp') center/cover;
}

.lead-sidebar h2,
.lead-sidebar h3 {
    margin: 0 0 12px;
}

.lead-sidebar p,
.lead-sidebar li {
    color: rgba(255, 244, 226, 0.84);
}

.lead-form {
    padding: 28px;
    border-radius: var(--radius-md);
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(21, 36, 44, 0.1);
    box-shadow: var(--shadow-sm);
}

.lead-form__grid,
.lead-form__photos {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-form__full {
    grid-column: 1 / -1;
}

.form-field label,
.lead-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-brand);
}

.formulario__error {
    display: block;
    margin-top: 6px;
    color: var(--color-danger);
    font-size: 0.9rem;
}

.lead-form input.error,
.lead-form select.error,
.lead-form textarea.error {
    border-color: rgba(178, 65, 47, 0.55);
    box-shadow: 0 0 0 4px rgba(178, 65, 47, 0.08);
}

.lead-form__legal {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    color: var(--color-ink-soft);
    font-size: 0.95rem;
}

.lead-form__legal label {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 0;
    font-weight: 400;
}

.lead-form__photos {
    margin-top: 12px;
}

.lead-form__photo {
    padding: 14px;
    border: 1px dashed rgba(24, 57, 74, 0.22);
    border-radius: 18px;
    background: rgba(24, 57, 74, 0.04);
}

.lead-form__photo-preview {
    display: grid;
    place-items: center;
    min-height: 140px;
    margin-top: 10px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
}

.lead-form__photo-preview.has-image {
    padding: 0;
}

.lead-form__photo-preview img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.lead-form__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    color: var(--color-ink-soft);
    font-size: 0.9rem;
}

.formulario__success {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(29, 122, 74, 0.22);
    background: rgba(29, 122, 74, 0.08);
    color: var(--color-success);
}

.faq {
    display: grid;
    gap: 14px;
}

.faq__item {
    overflow: hidden;
}

.faq__question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border: 0;
    background: transparent;
    color: var(--color-brand-strong);
    text-align: left;
    font-size: 1.02rem;
    font-weight: 700;
    cursor: pointer;
}

.faq__question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--color-accent-strong);
}

.faq__item.is-open .faq__question::after {
    content: '-';
}

.faq__answer {
    display: none;
    padding: 0 24px 22px;
    color: var(--color-ink-soft);
}

.faq__item.is-open .faq__answer {
    display: block;
}

.cta-banner {
    padding: 28px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(120deg, rgba(240, 141, 39, 0.15), rgba(24, 57, 74, 0.14)),
        rgba(255, 252, 246, 0.9);
    border: 1px solid rgba(21, 36, 44, 0.08);
    box-shadow: var(--shadow-sm);
}

.cta-banner h2 {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    color: var(--color-brand-strong);
}

.cta-banner p {
    margin: 0;
    max-width: 65ch;
    color: var(--color-ink-soft);
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.breadcrumbs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 244, 226, 0.78);
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: inherit;
}

.vehicle-detail__hero {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
}

.vehicle-detail__gallery {
    display: grid;
    gap: 14px;
}

.vehicle-detail__cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    border-radius: 30px;
    background: rgba(24, 57, 74, 0.08);
}

.vehicle-detail__thumbs {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vehicle-detail__thumb {
    padding: 0;
    aspect-ratio: 1;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid transparent;
    background: rgba(24, 57, 74, 0.06);
}

.vehicle-detail__thumb.is-active {
    border-color: rgba(240, 141, 39, 0.7);
}

.vehicle-detail__summary {
    padding: 28px;
    border-radius: 32px;
    background: rgba(255, 253, 248, 0.88);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-sm);
}

.vehicle-detail__summary h1 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
}

.vehicle-detail__summary-grid,
.vehicle-detail__spec-grid {
    display: grid;
    gap: 14px;
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vehicle-detail__spec {
    padding: 18px;
}

.vehicle-detail__spec span {
    display: block;
    color: var(--color-ink-soft);
    font-size: 0.9rem;
}

.vehicle-detail__spec strong {
    display: block;
    margin-top: 6px;
    font-size: 1.05rem;
    color: var(--color-brand-strong);
}

.vehicle-detail__content {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.88);
    border: 1px solid var(--color-line);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer {
    margin-top: 48px;
    padding: 44px 0 32px;
    background: var(--color-brand-strong);
    color: #f8efde;
}

.site-footer__inner {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.3fr 0.85fr 0.85fr 0.85fr;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 12px;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: rgba(248, 239, 222, 0.78);
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.site-footer__bottom {
    width: min(calc(100% - 32px), var(--container));
    margin: 24px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(248, 239, 222, 0.12);
    color: rgba(248, 239, 222, 0.62);
    font-size: 0.92rem;
}

.cookies-banner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 110;
    max-width: 420px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.95);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-md);
}

.cookies-banner__content p {
    margin: 0 0 14px;
    color: var(--color-ink-soft);
}

.cookies-banner__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookies-banner__btn {
    border: 0;
    border-radius: 999px;
    min-height: 44px;
    padding: 0 18px;
    font-weight: 700;
}

.cookies-banner__btn--accept {
    background: var(--color-brand);
    color: #fff6e8;
}

.cookies-banner__btn--reject {
    background: rgba(24, 57, 74, 0.08);
    color: var(--color-brand);
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 100;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #1fa34a;
    color: #fff;
    box-shadow: var(--shadow-md);
}

.whatsapp-float__icon {
    width: 28px;
    height: 28px;
}

.empty-state {
    padding: 28px;
    text-align: center;
    border-radius: 24px;
    border: 1px dashed rgba(21, 36, 44, 0.18);
    background: rgba(255, 253, 248, 0.7);
    color: var(--color-ink-soft);
}

.legal-layout {
    padding: 48px 0 64px;
}

.legal-card {
    padding: 30px;
    border-radius: var(--radius-md);
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-sm);
}

.legal-card h1,
.legal-card h2 {
    color: var(--color-brand-strong);
}

.legal-card h1 {
    margin-top: 0;
}

.legal-card h2 {
    margin-top: 26px;
}

.legal-card p,
.legal-card li {
    color: var(--color-ink-soft);
}

.legal-card ul {
    padding-left: 22px;
}

.error-layout {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 0;
}

.error-layout__panel {
    padding: 34px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-md);
}

.error-layout__panel h1 {
    margin: 0;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.95;
    color: var(--color-brand-strong);
}

.error-layout__panel h2 {
    margin: 12px 0;
    color: var(--color-brand);
}

.error-layout__panel p {
    margin: 0 auto 18px;
    max-width: 32ch;
    color: var(--color-ink-soft);
}

@media (max-width: 1120px) {
    .hero__grid,
    .page-hero__grid,
    .lead-layout,
    .vehicle-detail__hero,
    .site-footer__inner,
    .coverage-grid,
    .content-grid,
    .sales-band {
        grid-template-columns: 1fr;
    }

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

    .hero__spotlight {
        grid-column: 1 / -1;
    }

    .service-grid,
    .process-grid,
    .inventory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .site-nav__toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-nav {
        position: relative;
    }

    .site-nav__list {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        min-width: min(340px, calc(100vw - 32px));
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 253, 248, 0.98);
        border: 1px solid var(--color-line);
        box-shadow: var(--shadow-md);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    [data-menu].is-open {
        display: flex;
    }

    .site-nav__action-cluster {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .trust-strip,
    .inventory-filter__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .hero__panel,
    .page-hero__panel,
    .lead-form,
    .lead-sidebar,
    .cta-banner,
    .legal-card {
        padding: 24px;
        border-radius: 28px;
    }

    .service-grid,
    .process-grid,
    .inventory-grid,
    .local-grid,
    .trust-strip,
    .lead-form__grid,
    .lead-form__photos,
    .inventory-filter__grid,
    .vehicle-detail__thumbs,
    .vehicle-detail__summary-grid,
    .vehicle-detail__spec-grid {
        grid-template-columns: 1fr;
    }

    .section,
    .hero,
    .page-hero {
        padding-top: 24px;
    }

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

    .hero__vehicle {
        min-height: 260px;
    }

    .hero__vehicle--right {
        display: none;
    }

    .hero__spotlight {
        grid-column: auto;
        padding: 28px 22px;
        border-radius: 28px;
    }

    .site-brand img {
        width: 144px;
    }

    .hero-cta,
    .cta-banner__actions,
    .inventory-card__actions {
        flex-direction: column;
    }

    .site-nav__actions .button--primary {
        display: none;
    }

    .button,
    .cookies-banner__btn {
        width: 100%;
    }

    .cookies-banner,
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
    }
}

:root {
    --marquee-height: 40px;
}

body {
    background:
        radial-gradient(circle at top right, rgba(240, 141, 39, 0.1), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 46%, #f4ecdf 100%);
}

.eyebrow--accent {
    color: var(--color-accent-strong);
}

.site-marquee {
    position: sticky;
    top: 0;
    z-index: 140;
    height: var(--marquee-height);
    overflow: hidden;
    background: linear-gradient(90deg, #0b2740 0%, #113b59 50%, #0b2740 100%);
    color: #fdf5e7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-marquee__track {
    display: flex;
    align-items: center;
    gap: 44px;
    min-width: max-content;
    height: 100%;
    padding-inline: 24px;
    white-space: nowrap;
    animation: site-marquee-scroll 38s linear infinite;
}

.site-marquee:hover .site-marquee__track {
    animation-play-state: paused;
}

.site-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-marquee__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffd047;
    box-shadow: 0 0 0 5px rgba(255, 208, 71, 0.16);
}

.site-marquee__label {
    color: rgba(253, 245, 231, 0.82);
}

.site-marquee__accent {
    color: #ffd047;
}

@keyframes site-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.site-header {
    top: var(--marquee-height);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(21, 36, 44, 0.06);
    box-shadow: 0 10px 30px rgba(15, 38, 50, 0.05);
}

.site-header__inner {
    min-height: 94px;
}

.site-brand img {
    width: 236px;
}

.site-nav__list {
    gap: 12px;
}

.site-nav__list a {
    padding: 14px 16px;
    font-size: 0.99rem;
    font-weight: 800;
    color: var(--color-brand-strong);
    white-space: nowrap;
}

.site-nav__list a:hover,
.site-nav__list a.is-current {
    background: rgba(111, 169, 225, 0.16);
    color: var(--color-brand);
}

.site-nav__action-cluster {
    gap: 12px;
    padding: 10px 12px 10px 16px;
    background: rgba(255, 255, 255, 0.9);
}

.site-nav__toggle {
    gap: 5px;
    align-content: center;
}

.site-nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.hero--sell {
    padding: 34px 0 28px;
}

.hero__shell {
    width: min(calc(100% - 24px), 1860px);
    margin: 0 auto;
}

.hero__panel--billboard {
    padding: 0;
    border-radius: 34px 34px 0 0;
}

.hero__panel--billboard::after {
    inset: auto -12% -28% auto;
}

.hero--sell .hero__stage {
    gap: 0;
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr) minmax(0, 0.92fr);
}

.hero--sell .hero__vehicle,
.hero--sell .hero__spotlight {
    min-height: 540px;
    border-radius: 0;
}

.hero--sell .hero__vehicle {
    box-shadow: none;
}

.hero--sell .hero__vehicle::after {
    background: linear-gradient(180deg, rgba(8, 24, 35, 0.14), rgba(8, 24, 35, 0.42));
}

.hero--sell .hero__spotlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 58px 42px;
    background: linear-gradient(180deg, rgba(13, 45, 66, 0.78), rgba(13, 54, 84, 0.84));
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__notice {
    display: block;
    margin-bottom: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffe5a5;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero--sell h1 {
    max-width: 8.2ch;
    font-size: clamp(3rem, 5.6vw, 5.4rem);
}

.hero--sell .hero__lead {
    max-width: 24ch;
    font-size: clamp(1.22rem, 2vw, 1.7rem);
}

.hero--sell .hero__chipline {
    margin-top: 20px;
}

.hero--sell .hero__chipline .badge {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.hero--sell .hero-cta {
    margin-top: 30px;
    width: 100%;
    justify-content: center;
}

.hero--sell .button--primary {
    min-height: 68px;
    padding: 0 38px;
    background: #fff;
    color: var(--color-brand-strong);
    font-size: 1.14rem;
    box-shadow: 0 18px 42px rgba(255, 255, 255, 0.14);
}

.hero--sell .button--primary:hover {
    background: #fff2dd;
    color: var(--color-brand);
}

.hero--sell .button--ghost {
    min-height: 68px;
    padding: 0 32px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.hero-trustbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(21, 36, 44, 0.08);
    border-top: 0;
    border-radius: 0 0 32px 32px;
    box-shadow: var(--shadow-sm);
}

.hero-trustbar__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 22px;
    overflow: hidden;
    color: var(--color-brand-strong);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-trustbar__item:not(:last-child) {
    border-right: 1px solid rgba(21, 36, 44, 0.08);
}

.hero-trustbar__item::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -55%;
    width: 18%;
    height: 220%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.78) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(26deg);
    animation: trust-shine 7s infinite;
}

.hero-trustbar__item:nth-child(2)::after {
    animation-delay: 1.4s;
}

.hero-trustbar__item:nth-child(3)::after {
    animation-delay: 2.8s;
}

.hero-trustbar__item:nth-child(4)::after {
    animation-delay: 4.2s;
}

.hero-trustbar__icon {
    width: 32px;
    height: 32px;
    color: var(--color-brand);
    flex-shrink: 0;
}

@keyframes trust-shine {
    0% {
        left: -55%;
    }

    22% {
        left: 115%;
    }

    100% {
        left: 115%;
    }
}

.categories-showcase__panel {
    position: relative;
    overflow: hidden;
    padding: 70px 46px;
    border-radius: 36px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.82)),
        url('../img/examples/money_bg.webp') center/cover;
    border: 1px solid rgba(21, 36, 44, 0.08);
    box-shadow: var(--shadow-md);
}

.categories-showcase__header {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.categories-showcase__header h2 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    line-height: 1.02;
    color: var(--color-brand);
}

.categories-showcase__header p {
    margin: 16px auto 0;
    max-width: 52ch;
    font-size: 1.12rem;
    color: var(--color-ink-soft);
}

.categories-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 250px;
    padding: 34px 24px;
    text-align: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(21, 36, 44, 0.1);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(15, 38, 50, 0.16);
    border-color: rgba(24, 57, 74, 0.3);
    background: #fff;
}

.category-card__icon {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(24, 57, 74, 0.06);
    color: var(--color-brand);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.category-card__icon svg {
    width: 36px;
    height: 36px;
}

.category-card__icon--accent {
    background: var(--color-brand);
    color: #fff;
}

.category-card:hover .category-card__icon {
    background: var(--color-brand);
    color: #fff;
    transform: translateY(-2px);
}

.category-card h3 {
    margin: 0;
    font-size: 1.18rem;
    color: var(--color-brand-strong);
    text-transform: uppercase;
}

.category-card p {
    margin: 0;
    color: var(--color-ink-soft);
    font-weight: 500;
}

.categories-showcase__footer {
    margin-top: 28px;
    text-align: center;
}

.categories-showcase__footer .badge-line {
    justify-content: center;
    margin-bottom: 14px;
}

.categories-showcase__footer p {
    margin: 0;
    color: var(--color-ink-soft);
}

.categories-showcase__footer a {
    color: var(--color-brand);
    font-weight: 700;
}

.local-grid--premium .mini-card,
.process-grid .card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
}

.local-grid--premium .mini-card {
    min-height: 168px;
    border-top: 4px solid rgba(24, 57, 74, 0.12);
}

.local-grid--premium .mini-card:hover {
    border-top-color: var(--color-accent);
}

.process-grid .card {
    padding: 28px;
}

.process-grid .card h3 {
    font-size: 1.34rem;
}

.lead-sidebar__badge {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.lead-sidebar__badge strong {
    display: block;
    margin-bottom: 6px;
}

.lead-sidebar__badge span {
    color: rgba(255, 244, 226, 0.82);
}

.lead-form__photos-wrap {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(21, 36, 44, 0.08);
}

.lead-form__photos-copy h3 {
    margin: 0 0 8px;
    color: var(--color-brand);
    font-size: 1.55rem;
}

.lead-form__photos-copy p {
    margin: 0;
    color: var(--color-ink-soft);
}

.lead-form__photos {
    margin-top: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.lead-form__photo {
    padding: 0;
    border: 0;
    background: transparent;
}

.lead-form__photo-example {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    border: 1px solid rgba(21, 36, 44, 0.08);
    box-shadow: var(--shadow-sm);
}

.lead-form__photo-example img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
}

.lead-form__photo-example span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(16, 58, 90, 0.86);
    color: #fff;
    font-weight: 700;
}

.lead-form__photo-upload {
    display: block;
    margin-top: 12px;
    cursor: pointer;
}

.lead-form__photo-upload input {
    display: none;
}

.lead-form__photo-preview {
    min-height: 150px;
    gap: 10px;
    border: 2px dashed rgba(21, 36, 44, 0.2);
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-ink-soft);
    font-weight: 600;
}

.lead-form__photo-preview.has-image {
    border-style: solid;
}

.lead-form__photo-preview img {
    height: 100%;
    min-height: 150px;
}

.lead-form__photo-plus {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(24, 57, 74, 0.08);
    color: var(--color-brand);
    font-size: 2rem;
    line-height: 1;
}

.reviews {
    padding-top: 34px;
}

.reviews__header {
    max-width: 920px;
    margin: 0 auto 34px;
    text-align: center;
}

.reviews__google-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    padding: 16px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(21, 36, 44, 0.08);
    box-shadow: var(--shadow-sm);
}

.reviews__google-copy span {
    display: block;
    color: var(--color-ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.reviews__google-copy strong {
    color: var(--color-brand);
    font-size: 1.02rem;
}

.reviews__header h2 {
    margin: 0;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.02;
    color: var(--color-brand);
}

.reviews__header p {
    max-width: 50ch;
    margin: 16px auto 0;
    color: var(--color-ink-soft);
    font-size: 1.08rem;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.reviews__card {
    position: relative;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(21, 36, 44, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.reviews__card::before {
    content: '"';
    position: absolute;
    top: 18px;
    right: 22px;
    color: rgba(21, 36, 44, 0.08);
    font-size: 4.4rem;
    line-height: 1;
    font-family: Georgia, serif;
}

.reviews__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(15, 38, 50, 0.14);
    border-color: rgba(24, 57, 74, 0.22);
}

.reviews__card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.reviews__card-header strong {
    display: block;
    font-size: 1.32rem;
    color: var(--color-brand-strong);
}

.reviews__card-header span {
    color: var(--color-ink-soft);
}

.reviews__card p {
    margin: 0;
    color: var(--color-ink-soft);
    font-size: 1.02rem;
}

.reviews__avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 800;
    flex-shrink: 0;
}

.reviews__avatar--teal {
    background: linear-gradient(135deg, #2d9f8a, #4a90e2);
}

.reviews__avatar--orange {
    background: linear-gradient(135deg, #ef6b1a, #ffba00);
}

.reviews__avatar--blue {
    background: linear-gradient(135deg, #2ca885, #4986f1);
}

.reviews__avatar--sun {
    background: linear-gradient(135deg, #ffb300, #ff5d2f);
}

.reviews__avatar--violet {
    background: linear-gradient(135deg, #6475d9, #db4d5d);
}

.reviews__avatar--lime {
    background: linear-gradient(135deg, #62b62f, #f0c500);
}

.reviews__actions {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

@media (max-width: 1280px) {
    .hero--sell .hero__stage {
        grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.06fr) minmax(0, 0.78fr);
    }

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

@media (max-width: 1120px) {
    .hero--sell .hero__stage {
        grid-template-columns: 1fr;
    }

    .hero--sell .hero__spotlight {
        min-height: auto;
        border-left: 0;
        border-right: 0;
    }

    .hero--sell .hero__vehicle {
        min-height: 300px;
    }

    .hero--sell .hero__vehicle--right {
        display: block;
    }

    .hero-trustbar,
    .reviews__grid,
    .categories-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .site-brand img {
        width: 188px;
    }

    .site-header {
        top: var(--marquee-height);
    }

    .site-nav__list {
        top: calc(100% + 14px);
    }

    .site-nav__action-cluster {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .hero--sell .button--primary,
    .hero--sell .button--ghost {
        min-height: 58px;
        padding: 0 28px;
    }
}

@media (max-width: 720px) {
    :root {
        --marquee-height: 38px;
    }

    .site-marquee__track {
        gap: 30px;
        animation-duration: 28s;
    }

    .site-marquee__item {
        font-size: 0.74rem;
    }

    .site-header__inner {
        min-height: 84px;
    }

    .site-brand img {
        width: 156px;
    }

    .hero__shell {
        width: min(calc(100% - 20px), 1860px);
    }

    .hero__panel--billboard {
        border-radius: 28px 28px 0 0;
    }

    .hero--sell .hero__vehicle {
        min-height: 240px;
    }

    .hero--sell .hero__vehicle--right {
        display: none;
    }

    .hero--sell .hero__spotlight {
        padding: 34px 22px;
    }

    .hero--sell h1 {
        font-size: clamp(2.5rem, 12vw, 3.8rem);
    }

    .hero__notice {
        font-size: 0.76rem;
        line-height: 1.4;
    }

    .hero-trustbar,
    .categories-showcase__grid,
    .reviews__grid,
    .lead-form__photos {
        grid-template-columns: 1fr;
    }

    .hero-trustbar {
        border-radius: 0 0 28px 28px;
    }

    .hero-trustbar__item:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgba(21, 36, 44, 0.08);
    }

    .categories-showcase__panel {
        padding: 42px 22px;
        border-radius: 28px;
    }

    .categories-showcase__header h2,
    .reviews__header h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .category-card,
    .reviews__card {
        border-radius: 24px;
    }

    .reviews__google-badge {
        flex-direction: column;
        text-align: center;
        border-radius: 28px;
    }
}

.page-hero {
    padding: 34px 0 28px;
}

.page-hero .section {
    width: min(calc(100% - 24px), 1460px);
}

.page-hero__panel {
    padding: 54px;
    border-radius: 34px;
    background:
        linear-gradient(100deg, rgba(11, 36, 50, 0.92), rgba(13, 52, 77, 0.86) 45%, rgba(18, 68, 102, 0.76) 100%),
        url('../img/hero.jpg') center/cover;
}

.page-hero__panel::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top left, rgba(255, 211, 121, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.page-hero__panel::after {
    inset: auto -8% -22% auto;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(240, 141, 39, 0.24), transparent 70%);
}

.page-hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    align-items: center;
    gap: 30px;
}

.page-hero .breadcrumbs {
    position: relative;
    z-index: 1;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 244, 226, 0.88);
    backdrop-filter: blur(10px);
}

.page-hero .breadcrumbs a {
    opacity: 0.92;
}

.page-hero h1 {
    max-width: 10ch;
}

.page-hero p {
    max-width: 34ch;
    font-size: 1.08rem;
}

.page-hero .hero-cta {
    margin-top: 26px;
}

.page-hero .button--primary {
    background: #fff;
    color: var(--color-brand-strong);
}

.page-hero .button--primary:hover {
    background: #fff0dc;
    color: var(--color-brand);
}

.page-hero .button--ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.page-hero .hero__facts {
    padding: 18px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(8, 29, 42, 0.28), rgba(8, 29, 42, 0.48));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-hero .hero__fact {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.page-hero .hero__fact strong {
    font-size: 1.24rem;
}

.content-grid .card,
.coverage-grid .card,
.process-grid .card,
.inventory-filter,
.vehicle-detail__spec,
.vehicle-detail__content,
.legal-card,
.error-layout__panel {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(21, 36, 44, 0.08);
}

.content-grid .card,
.coverage-grid .card,
.process-grid .card {
    border-radius: 28px;
}

.content-grid .card,
.coverage-grid .card {
    border-top: 4px solid rgba(24, 57, 74, 0.12);
}

.content-grid .card:hover,
.coverage-grid .card:hover,
.process-grid .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(15, 38, 50, 0.13);
}

.process-grid .card {
    position: relative;
    overflow: hidden;
}

.process-grid .card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(24, 57, 74, 0.02));
    pointer-events: none;
}

.inventory-filter {
    padding: 30px;
    border-radius: 30px;
    background:
        linear-gradient(100deg, rgba(12, 36, 52, 0.95), rgba(17, 57, 83, 0.88)),
        url('../img/examples/money_bg.webp') center/cover;
    box-shadow: var(--shadow-md);
}

.inventory-filter .section__header {
    margin-bottom: 18px;
}

.inventory-filter .section__header h2,
.inventory-filter .inventory-results,
.inventory-filter .eyebrow {
    color: #fff7e8;
}

.inventory-filter .inventory-results {
    color: rgba(255, 244, 226, 0.8);
}

.inventory-filter__grid {
    gap: 16px;
}

.inventory-filter select {
    background: rgba(255, 255, 255, 0.96);
}

.inventory-grid {
    gap: 22px;
}

.inventory-card {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
}

.inventory-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 17, 26, 0) 56%, rgba(4, 17, 26, 0.18) 100%);
    pointer-events: none;
}

.inventory-card__title a {
    transition: color var(--transition);
}

.inventory-card__title a:hover {
    color: var(--color-accent-strong);
}

.inventory-card__actions .button {
    flex: 1 1 180px;
}

.vehicle-detail__cover {
    border-radius: 34px;
    box-shadow: var(--shadow-md);
}

.vehicle-detail__thumb {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
}

.vehicle-detail__summary {
    padding: 32px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(249, 243, 234, 0.94));
    box-shadow: var(--shadow-md);
}

.vehicle-detail__summary h2 {
    margin: 0 0 12px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.02;
    color: var(--color-brand-strong);
}

.vehicle-detail__summary-grid {
    gap: 16px;
}

.vehicle-detail__summary-grid > div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(24, 57, 74, 0.06);
    border: 1px solid rgba(21, 36, 44, 0.08);
}

.vehicle-detail__spec {
    border-radius: 24px;
}

.vehicle-detail__content {
    padding: 28px;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
}

.tag {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(21, 36, 44, 0.08);
}

.legal-layout {
    padding-top: 36px;
}

.legal-card,
.error-layout__panel {
    border-radius: 32px;
    box-shadow: var(--shadow-md);
}

.error-layout__panel {
    max-width: 760px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 241, 230, 0.94));
}

@media (min-width: 1121px) {
    .vehicle-detail__summary {
        position: sticky;
        top: calc(var(--marquee-height) + 112px);
    }
}

@media (max-width: 1120px) {
    .page-hero .section {
        width: min(calc(100% - 20px), 1460px);
    }

    .page-hero__panel {
        padding: 34px;
    }
}

@media (max-width: 900px) {
    .page-hero {
        padding: 24px 0 22px;
    }

    .page-hero__panel {
        padding: 28px;
        border-radius: 28px;
    }

    .page-hero__panel::before {
        inset: 12px;
        border-radius: 22px;
    }

    .page-hero__grid {
        grid-template-columns: 1fr;
    }

    .page-hero p {
        max-width: 100%;
    }

    .page-hero .hero__fact {
        min-height: 0;
    }
}

@media (max-width: 720px) {
    .page-hero .section {
        width: min(calc(100% - 18px), 1460px);
    }

    .page-hero__panel {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .page-hero__panel::before {
        display: none;
    }

    .inventory-filter,
    .vehicle-detail__summary,
    .vehicle-detail__content,
    .legal-card,
    .error-layout__panel {
        border-radius: 24px;
    }
}
