:root {
  --ink: #20303c;
  --soft: #5c6c7a;
  --line: #d9e5f0;
  --pri: #2a7ab5;
  --pri-deep: #1d5a87;
  --acc: #35a06f;
  --mist: #eef5fb;
  --paper: #ffffff;
  --r: 18px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Sora', sans-serif; color: var(--ink); background: var(--paper); line-height: 1.65; }
img { max-width: 100%; }
a { color: var(--pri); text-decoration: none; }
a:hover { color: var(--pri-deep); }
h1, h2, h3 { font-family: 'Sora', serif; line-height: 1.22; font-weight: 600; }
h1 { font-size: clamp(30px, 4vw, 45px); }
h2 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 14px; }
h3 { font-size: 19px; margin-bottom: 8px; }
.wrap { max-width: 1150px; margin: 0 auto; padding: 0 22px; }

.nav-wrap { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 900; }
.nav-wrap .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.ident { display: flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 600; font-size: 18px; }
.mark-box { background: var(--pri); color: #fff; border-radius: var(--r); padding: 4px 8px; font-size: 13px; letter-spacing: 1px; }
.mark-title em { color: var(--pri); font-style: normal; }
.nav-links ul { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a { color: var(--ink); font-size: 15px; padding: 8px 12px; border-radius: 4px; }
.nav-links a:hover { background: var(--mist); color: var(--pri-deep); }
.cta-link { background: var(--acc); color: var(--ink) !important; font-weight: 600; margin-left: 8px; }
.cta-link:hover { filter: brightness(.95); }
.nav-btn { display: none; background: none; border: 0; cursor: pointer; }
.nav-btn span { display: block; width: 23px; height: 2px; background: var(--ink); margin: 5px 0; }

.hero-area { position: relative; background-size: cover; background-position: center; padding: 84px 0; }
.hero-area::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,20,28,.62), rgba(12,20,28,.25)); }
.hero-area .wrap { position: relative; }
.lead-copy { color: #fff; max-width: 680px; }
.lead-copy h1 { color: #fff; margin-bottom: 11px; }
.lead-sub { font-size: 17px; opacity: .93; }
.perk-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.tag-pill { background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.5); color: #fff; border-radius: 40px; padding: 5px 14px; font-size: 13.5px; }
.tag-pill-strong { background: var(--acc); border-color: var(--acc); color: var(--ink); font-weight: 600; }

.car-search { background: var(--pri-deep); padding: 30px 0; }
.car-search .wrap { max-width: 1100px; }

.path-bar { background: var(--mist); border-bottom: 1px solid var(--line); font-size: 13.5px; padding: 9px 0; }
.path-bar ol { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; }
.path-bar li + li::before { content: "/"; color: var(--soft); margin-right: 8px; }
.path-bar a { font-weight: 500; }
.path-bar li:last-child span { color: var(--soft); }

.zone { padding: 52px 0; }
.block-alt { background: var(--mist); }
.block-title { margin-bottom: 20px; }
.prose { max-width: 74ch; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 14px 22px; }
.prose li { margin-bottom: 6px; }
.prose table { border-collapse: collapse; width: 100%; margin: 6px 0 16px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; font-size: 15px; }
.prose th { background: var(--mist); }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.feature { display: flex; gap: 13px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 18px; }
.point-ico { flex: 0 0 38px; height: 38px; border-radius: var(--r); background: var(--mist); color: var(--pri); display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 700; }

.qa-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.qa-q { font-weight: 600; margin-bottom: 7px; }
.q-body { color: var(--soft); }

.voice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.feedback-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.quote-stars { color: var(--acc); letter-spacing: 2px; margin-bottom: 6px; }
.quote-meta { font-size: 13.5px; color: var(--soft); margin-top: 10px; }

.form-slab { max-width: 620px; }
.form-slab label { display: block; font-weight: 500; font-size: 14.5px; margin: 14px 0 5px; }
.form-slab input[type=text], .form-slab input[type=email], .form-slab input[type=tel],
.form-slab select, .form-slab textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--r); font-family: inherit; font-size: 15px; }
.form-slab textarea { min-height: 120px; resize: vertical; }
.main-btn { display: inline-block; background: var(--pri); color: #fff; border: 0; border-radius: 4px; padding: 12px 26px; font-family: inherit; font-size: 15.5px; font-weight: 600; cursor: pointer; margin-top: 16px; }
.main-btn:hover { background: var(--pri-deep); }
.form-ok { background: var(--mist); border: 1px solid var(--line); color: var(--pri-deep); border-radius: var(--r); padding: 13px 15px; margin-bottom: 14px; font-weight: 500; }
.aux-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.star-set { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.star-set input { display: none; }
.star-set label { font-size: 28px; color: var(--line); cursor: pointer; }
.star-set label:hover, .star-set label:hover ~ label, .star-set input:checked ~ label { color: var(--acc); }

.map-shell { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); line-height: 0; margin: 14px 0; }

.site-footer { background: var(--ink); color: #ccd5d1; margin-top: 40px; }
.site-footer .wrap { padding-top: 44px; }
.ground-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.14); }
.base-brand { color: #fff; font-weight: 600; font-size: 17px; margin-bottom: 10px; }
.base-brand em { color: var(--acc); font-style: normal; }
.ground-note { font-size: 14px; line-height: 1.6; }
.pay-area { margin-top: 14px; }
.pay-area-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .6px; opacity: .7; margin-bottom: 7px; }
.pay-line { display: flex; gap: 8px; }
.pay-badge { width: 48px; height: 31px; background: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; padding: 3px; }
.pay-badge-cash { font-size: 11px; font-weight: 700; color: var(--pri); }
.foot-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 7px; font-size: 14.5px; }
.foot-col a { color: #ccd5d1; }
.foot-col a:hover { color: #fff; }
.base-contact li { line-height: 1.5; }
.ground-base { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; font-size: 13.5px; flex-wrap: wrap; gap: 8px; }
.base-legal { display: flex; gap: 16px; }

@media (max-width: 900px) {
  .hero-area .wrap { grid-template-columns: 1fr; }
  .opener-img { min-height: 220px; order: -1; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px 20px; z-index: 950; }
  .nav-links.show { display: block; }
  .nav-links ul { flex-direction: column; align-items: stretch; }
  .nav-links a { color: var(--ink); }
  .nav-btn { display: block; }
  .ground-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .ground-grid { grid-template-columns: 1fr; } }
