:root {
    --ink: #17212b;
    --muted: #66717f;
    --paper: #f6f4ef;
    --surface: #ffffff;
    --soft: #edf7f4;
    --line: #dcd8cf;
    --accent: #0f766e;
    --accent-dark: #0b504b;
    --gold: #d99a2b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 7%;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand,
.nav-links,
.hero,
.hero-actions,
.search-strip,
.trust-row,
.vehicle-list,
.card-bottom,
.process-list,
.info-section,
.site-footer {
    display: flex;
}

.brand {
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    background: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 0;
}

.nav-links {
    align-items: center;
    gap: 22px;
    font-weight: 700;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
}

.nav-links a:hover {
    color: var(--accent);
}

.hero {
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    padding: 58px 7% 36px;
}

.hero-copy,
.hero-panel {
    flex: 1 1 420px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    max-width: 720px;
    font-size: clamp(2.3rem, 5vw, 4.9rem);
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 10px;
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    line-height: 1.15;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 8px;
}

.hero-text {
    max-width: 610px;
    color: var(--muted);
    font-size: 1.08rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
}

.btn.primary {
    color: white;
    background: var(--accent);
}

.btn.primary:hover {
    background: var(--accent-dark);
}

.btn.secondary {
    border: 1px solid var(--accent);
    color: var(--accent-dark);
    background: transparent;
}

.hero-panel {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 22px 46px rgba(23, 33, 43, 0.18);
}

.hero-panel img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.price-strip {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    border-radius: 6px;
    color: white;
    background: rgba(23, 33, 43, 0.86);
}

.search-strip {
    align-items: end;
    flex-wrap: wrap;
    gap: 16px;
    width: 86%;
    margin: 0 auto 38px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 14px 32px rgba(23, 33, 43, 0.08);
}

.search-strip label {
    flex: 1 1 180px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.search-strip select {
    width: 100%;
    min-height: 44px;
    margin-top: 6px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    background: var(--soft);
    font: inherit;
}

.search-strip .btn {
    flex: 0 0 auto;
}

.trust-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 7% 46px;
}

.trust-row div {
    flex: 1 1 210px;
    max-width: 320px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.trust-row strong {
    display: block;
    color: var(--accent-dark);
    font-size: 1.8rem;
    line-height: 1.1;
}

.trust-row span,
.vehicle-card p,
.process-step p,
.info-copy p,
.site-footer p,
.contact-box p {
    color: var(--muted);
}

.section {
    padding: 54px 7%;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 26px;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
}

.vehicle-list {
    flex-wrap: wrap;
    gap: 22px;
}

.vehicle-card {
    flex: 1 1 280px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 12px 28px rgba(23, 33, 43, 0.08);
}

.vehicle-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.vehicle-content {
    padding: 20px;
}

.card-bottom {
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.card-bottom strong {
    color: var(--accent-dark);
    font-size: 1.2rem;
}

.card-bottom a {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.process-section {
    background: var(--ink);
    color: white;
}

.process-section .eyebrow,
.process-section h2 {
    color: white;
}

.process-list {
    flex-wrap: wrap;
    gap: 18px;
}

.process-step {
    flex: 1 1 240px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--gold);
    font-weight: 800;
}

.process-step p {
    color: #d7dde3;
}

.info-section {
    align-items: stretch;
    gap: 24px;
}

.info-copy {
    flex: 2 1 520px;
}

.contact-box {
    flex: 1 1 280px;
    padding: 26px;
    border-radius: 8px;
    color: white;
    background: var(--accent-dark);
}

.contact-box h2 {
    font-size: 1.6rem;
}

.contact-box p {
    color: #d9fffb;
}

.contact-box .btn {
    width: 100%;
    margin-top: 10px;
    background: white;
    color: var(--accent-dark);
}

.site-footer {
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 7%;
    color: white;
    background: #111820;
}

.site-footer p {
    margin-bottom: 0;
    color: #c3cbd3;
}

@media (max-width: 820px) {
    .site-header,
    .hero,
    .search-strip,
    .info-section,
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .hero {
        padding-top: 36px;
    }

    .hero-panel,
    .hero-panel img {
        min-height: 280px;
    }

    .search-strip {
        align-items: stretch;
        width: 86%;
    }

    .search-strip .btn {
        width: 100%;
    }

    .price-strip {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 540px) {
    .site-header,
    .hero,
    .search-strip,
    .section,
    .site-footer {
        padding-left: 5%;
        padding-right: 5%;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .trust-row {
        padding-left: 5%;
        padding-right: 5%;
    }

    .vehicle-card,
    .process-step {
        flex-basis: 100%;
    }
}
