/* ===========================================================
   World Auto Trading (WGT) — Mockup stylesheet
   Blacked-out theme (matches WGT logo on black):
     black    #141316  (primary dark surface)
     black-2  #0B0A0C  (deepest black / hero base / footer)
     elevated #201E22  (dark cards)
     orange   #F8512F  (accent / CTAs)
     ink      #1B1B1B  (text on white)
     paper    #FFFFFF
   =========================================================== */

:root {
  /* Blacked-out theme. Warm-tinted near-black pairs with the orange
     better than a cold pure black. Var names kept as --navy* to limit churn. */
  --navy:        #141316;   /* primary dark surface */
  --navy-deep:   #0B0A0C;   /* deepest black (hero base, footer) */
  --navy-soft:   #201E22;   /* elevated dark (cards on dark) */
  --orange:      #F8512F;
  --orange-dark: #DE3E1E;
  --ink:         #1B1B1B;
  --paper:       #FFFFFF;
  --bg-soft:     #F6F5F3;
  --bg-soft-2:   #EDEBE7;
  --line:        #E6E3DE;
  --muted:       #6E6B73;
  --green:       #1FA463;

  --maxw: 1360px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0,0,0,.14);
  --shadow-sm: 0 6px 20px rgba(0,0,0,.08);
  --font: "Inter", "Pretendard", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
  --head: "Archivo", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(24px, 2.5vw, 48px); }

/* ----- typography helpers ----- */
.eyebrow {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--orange);
}
h1, h2, h3 { font-family: var(--head); line-height: 1.08; letter-spacing: -.01em; }
.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin: 10px 0 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ----- buttons ----- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700;
  padding: 14px 26px; border-radius: 10px; cursor: pointer; border: 1.5px solid transparent;
  font-size: 15px; transition: .18s ease; white-space: nowrap; }
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-deep); }
.btn--block { width: 100%; justify-content: center; }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(11,10,12,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { display: flex; align-items: center; gap: 28px; height: 76px; }
.nav__logo { display: flex; align-items: center; }
.nav__logo svg { height: 34px; width: auto; }
.nav__logo img.brand-logo { height: 48px; width: auto; display: block; }
.site-footer img.brand-logo { height: 30px; width: auto; margin-bottom: 16px; }
.nav__links { display: flex; gap: 26px; margin-inline-start: 12px; }
.nav__links a { color: #E8ECF4; font-weight: 600; font-size: 15px; opacity: .9; }
.nav__links a:hover { color: var(--orange); opacity: 1; }
.nav__spacer { flex: 1; }
/* push the centered nav group toward the right */
.nav__logo + .nav__spacer { flex: 2.2; }
/* extra nudge of ~one menu-item width on wide screens */
@media (min-width: 1100px) { .nav__links { transform: translateX(96px); } }
.nav__actions { display: flex; align-items: center; gap: 14px; }
/* header CTA height matched to the language switcher */
.nav__actions .btn--primary { height: 40px; padding: 0 22px; font-size: 14px; }

/* language switcher */
.lang { display: flex; align-items: center; height: 40px; gap: 4px; background: rgba(255,255,255,.08); padding: 4px; border-radius: 9px; }
.lang button { background: transparent; border: 0; color: #cfd6e4; font-weight: 700;
  font-size: 12.5px; padding: 6px 9px; border-radius: 6px; cursor: pointer; transition: .15s; }
.lang button:hover { color: #fff; }
.lang button.is-active { background: var(--orange); color: #fff; }

.nav__burger { display: none; background: transparent; border: 0; cursor: pointer; }
.nav__burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative; display: flex; align-items: center;
  color: #fff; overflow: hidden;
  /* wide cinematic band instead of full-viewport height;
     grows with content on short (16:9) laptop screens */
  min-height: clamp(560px, 80vh, 820px);
  padding: 116px 0 56px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,8,9,.94) 0%, rgba(8,8,9,.74) 42%, rgba(8,8,9,.30) 100%); }
.hero .container { position: relative; z-index: 2; display: grid;
  grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: end; width: 100%; }
.hero__copy { max-width: 640px; }
.hero__title { font-size: clamp(34px, 4.6vw, 62px); font-weight: 800; text-transform: uppercase;
  letter-spacing: -.02em; line-height: 1.04; margin: 16px 0 20px; }
/* each colored phrase on its own line, like the design */
.hero__title span, .hero__title em { display: block; }
.hero__title em { color: var(--orange); font-style: normal; }
.hero__sub { font-size: 18px; color: #D5DCEA; max-width: 520px; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: stretch; }
/* force both hero CTAs to identical height */
.hero__cta .btn { min-height: 54px; padding-top: 0; padding-bottom: 0; }

/* find your ride card */
.finder { background: rgba(13,12,14,.78); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 30px; backdrop-filter: blur(8px); }
.finder h3 { font-size: 26px; font-weight: 800; margin-bottom: 20px; }
.finder label { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: #9fb0cc; font-weight: 700; margin: 14px 0 6px; }
.finder select { width: 100%; padding: 13px 14px; border-radius: 9px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06); color: #fff; font-size: 15px; font-family: var(--font);
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23F8512F' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
.finder select option { color: #1B1B1B; }
.finder .btn { margin-top: 22px; }

/* trust strip under hero */
.trust-strip { background: var(--navy-deep); color: #fff; }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 28px 24px; }
.trust-strip .stat { text-align: center; }
.trust-strip .stat b { display: block; font-family: var(--head); font-size: 30px; font-weight: 800; color: var(--orange); }
.trust-strip .stat span { font-size: 13px; color: #b9c3d6; letter-spacing: .04em; }

/* ===========================================================
   INTRO BANNER
   =========================================================== */
.intro { background: var(--navy); color: #fff; }
.intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.intro h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; }
.intro p { color: #c7d0e0; margin-top: 18px; font-size: 17px; }

/* ===========================================================
   INSPECTION (100-point)
   =========================================================== */
.inspect-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.inspect-grid img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.inspect-list { display: grid; gap: 18px; }
.inspect-item { display: flex; gap: 16px; padding: 18px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-sm); }
.inspect-item .num { flex: 0 0 40px; height: 40px; border-radius: 9px; background: var(--orange);
  color: #fff; font-family: var(--head); font-weight: 800; display: grid; place-items: center; }
.inspect-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.inspect-item p { color: var(--muted); font-size: 14.5px; }

/* ===========================================================
   DOCUMENTS
   =========================================================== */
.doc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.doc-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm); }
.doc-card__img { height: 280px; padding: 10px; background: var(--bg-soft-2); display: flex; align-items: center; justify-content: center; gap: 10px; overflow: hidden; }
.doc-card__img svg { width: 54px; height: 54px; opacity: .35; }
.doc-card__img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.doc-card__img--two img { max-width: calc(50% - 5px); }
.doc-card__body { padding: 18px; }
.doc-card h4 { font-size: 14px; letter-spacing: .04em; text-transform: uppercase; font-weight: 800; margin-bottom: 6px; }
.doc-card p { color: var(--muted); font-size: 14px; white-space: pre-line; }

/* ===========================================================
   LOGISTICS / SAFE LOADING
   =========================================================== */
.logi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.logi-card { border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.logi-card img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.logi-card__media { aspect-ratio: 16/11; display: flex; gap: 4px; }
.logi-card__media img { flex: 1 1 0; min-width: 0; width: auto; height: 100%; aspect-ratio: auto; }
.logi-card__body { padding: 18px 20px 24px; }
.logi-card h4 { font-size: 15px; letter-spacing: .04em; text-transform: uppercase; font-weight: 800; margin-bottom: 6px; }
.logi-card p { color: var(--muted); font-size: 14.5px; }

/* shipping options */
.ship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.ship-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 360px;
  display: flex; align-items: flex-end; color: #fff; }
.ship-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ship-card::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,9,.1), rgba(8,8,9,.9)); }
.ship-card__body { position: relative; z-index: 2; padding: 28px; }
.ship-card h4 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.ship-card p { color: #d7deea; font-size: 15px; }

/* ===========================================================
   HOW IT WORKS (5 steps)
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { text-align: center; position: relative; padding: 12px; }
.step .circle { width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--head); font-weight: 800; font-size: 22px;
  display: grid; place-items: center; border: 3px solid var(--orange); }
.step h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 13.5px; }
.steps .step:not(:last-child)::after { content: ""; position: absolute; top: 31px; inset-inline-start: 62%;
  width: 76%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px); }

/* ===========================================================
   BEFORE YOU PURCHASE / NOTICE
   =========================================================== */
.notice { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 44px; }
.notice h3 { font-size: 26px; font-weight: 800; margin-bottom: 24px; }
.notice ul { list-style: none; display: grid; gap: 16px; }
.notice li { display: flex; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.notice li b { color: var(--orange); display: block; margin-bottom: 3px; }
.notice li span.t { color: #c7d0e0; font-size: 14.5px; }
.notice .mark { color: var(--orange); font-weight: 800; }

/* ===========================================================
   CTA BAND
   =========================================================== */
.cta-band { background: linear-gradient(120deg, var(--orange), var(--orange-dark)); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.cta-band p { margin: 14px auto 28px; max-width: 560px; font-size: 17px; opacity: .95; }
.cta-band .btn--dark { background: var(--navy); }

/* ===========================================================
   CONTACT + INQUIRY FORM
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin: 10px 0 14px; }
.contact-info p { color: var(--muted); font-size: 17px; }
.contact-list { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.contact-list a { font-size: 20px; font-weight: 800; color: var(--ink); }
.contact-list a:hover { color: var(--orange); }
.inquiry-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); }
.inquiry-form label { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin: 16px 0 6px; }
.inquiry-form label:first-child { margin-top: 0; }
.inquiry-form input, .inquiry-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 9px; font-family: var(--font); font-size: 15px; background: #fff; color: var(--ink); resize: vertical; }
.inquiry-form input:focus, .inquiry-form textarea:focus { outline: none; border-color: var(--orange); }
.inquiry-form .btn { margin-top: 22px; }
.inquiry-form .form-note { text-align: center; color: var(--muted); font-size: 13px; margin: 12px 0 0; }

/* ===========================================================
   SHOP — listing grid
   =========================================================== */
.page-hero { background: var(--navy); color: #fff; padding: 130px 0 56px; }
.page-hero .eyebrow { color: var(--orange); }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; margin-top: 10px; }
.page-hero p { color: #c2cbdd; margin-top: 12px; max-width: 560px; }

.filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 34px 0 30px; }
.filters button { border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 14px; cursor: pointer; transition: .15s; }
.filters button:hover { border-color: var(--navy); }
.filters button.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.car-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: .2s ease; display: flex; flex-direction: column; }
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.car-card__media { aspect-ratio: 16/11; background: linear-gradient(160deg, #eef1f7, #dfe4ee); position: relative; }
.car-card__media img { width: 100%; height: 100%; object-fit: cover; }
.car-card__tag { position: absolute; top: 12px; inset-inline-start: 12px; background: var(--orange);
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px; }
.car-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.car-card__meta { display: flex; gap: 14px; color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.car-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.car-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 14px; }
.car-card .spacer { flex: 1; }
.car-card__foot { display: flex; gap: 10px; }
.car-card__foot .btn { padding: 11px 16px; font-size: 14px; }

/* ===========================================================
   DETAIL
   =========================================================== */
.detail { padding-top: 116px; }
.crumbs { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.crumbs a:hover { color: var(--orange); }
.detail-top { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; }
.detail-top > * { min-width: 0; }
.gallery__main { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 16/11;
  background: linear-gradient(160deg, #eef1f7, #dfe4ee); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(20,19,22,.5); color: #fff; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center; padding-bottom: 3px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: background .15s, transform .1s; }
.gallery__nav:hover { background: rgba(20,19,22,.82); }
.gallery__nav:active { transform: translateY(-50%) scale(.9); }
.gallery__nav--prev { left: 14px; }
.gallery__nav--next { right: 14px; }
.gallery__counter { position: absolute; bottom: 14px; right: 14px; z-index: 2;
  background: rgba(20,19,22,.6); color: #fff; font-size: 13px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.gallery__thumbs { display: flex; flex-wrap: nowrap; gap: 10px; margin-top: 12px;
  overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 6px;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent; }
.gallery__thumbs::-webkit-scrollbar { height: 7px; }
.gallery__thumbs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.gallery__thumbs::-webkit-scrollbar-track { background: transparent; }
.gallery__thumbs img { flex: 0 0 88px; width: 88px; aspect-ratio: 4/3; object-fit: cover; border-radius: 9px;
  cursor: pointer; opacity: .6; transition: .15s; background: #dfe4ee; scroll-snap-align: center; }
.gallery__thumbs img:hover, .gallery__thumbs img.is-active { opacity: 1; outline: 2px solid var(--orange); }

.detail-info h1 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; }
.detail-info .badges { display: flex; gap: 8px; margin: 14px 0 18px; flex-wrap: wrap; }
.badge { background: var(--bg-soft); border: 1px solid var(--line); color: var(--navy);
  font-size: 13px; font-weight: 700; padding: 6px 12px; border-radius: 999px; }
.detail-info p.lead { color: var(--muted); font-size: 16px; margin-bottom: 22px; }
.inquiry-box { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 26px; }
.inquiry-box .price-note { font-size: 14px; color: #aebbd2; margin-bottom: 4px; }
.inquiry-box .price-cta { font-family: var(--head); font-size: 24px; font-weight: 800; margin-bottom: 18px; }
.inquiry-box .price-cta em { color: var(--orange); font-style: normal; }
.inquiry-box .btn { margin-bottom: 10px; }
.inquiry-box small { color: #93a1bd; display: block; text-align: center; }

/* spec table */
.specs { margin-top: 56px; }
.specs h2 { font-size: 26px; font-weight: 800; margin-bottom: 20px; }
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 14px 18px; font-size: 15px; }
.spec-table td:first-child { color: var(--muted); font-weight: 600; width: 38%; background: var(--bg-soft); }
.spec-table td:last-child { font-weight: 600; }

/* condition report */
.cond { margin-top: 48px; }
.cond h2 { font-size: 26px; font-weight: 800; margin-bottom: 20px; }
.cond-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.cond-table th { text-align: start; background: var(--navy); color: #fff; font-size: 12px; letter-spacing: .06em;
  text-transform: uppercase; padding: 14px 18px; font-weight: 700; }
.cond-table td { padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.pill { font-size: 12px; font-weight: 800; padding: 4px 11px; border-radius: 999px; }
.pill--ok { background: #E4F6EC; color: var(--green); }
.pill--na { background: #F0F2F6; color: var(--muted); }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--navy-deep); color: #cdd6e6; padding: 64px 0 30px; }
.site-footer .container { display: grid; grid-template-columns: 1.8fr 1fr 1.3fr; gap: 40px; }
.site-footer svg { height: 32px; margin-bottom: 16px; }
.site-footer h5 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a, .site-footer p { color: #aab6cc; font-size: 14.5px; display: block; margin-bottom: 9px; }
.site-footer a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px;
  display: flex; justify-content: space-between; color: #8593ad; font-size: 13px; }

/* ===========================================================
   RTL (Arabic)
   =========================================================== */
[dir="rtl"] body, [dir="rtl"] { text-align: right; }
[dir="rtl"] .hero .container { direction: rtl; }
[dir="rtl"] .hero__bg::after {
  background: linear-gradient(270deg, rgba(8,8,9,.94) 0%, rgba(8,8,9,.74) 42%, rgba(8,8,9,.30) 100%); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
/* short laptop screens (16:9): compact finder card */
@media (max-height: 780px) and (min-width: 881px) {
  .finder { padding: 22px; }
  .finder h3 { font-size: 22px; margin-bottom: 12px; }
  .finder label { margin: 11px 0 5px; }
  .finder .btn { margin-top: 16px; }
}
@media (max-width: 880px) {
  .hero { height: auto; min-height: 0; max-height: none; padding: 120px 0 56px; }
  .hero .container { grid-template-columns: 1fr; }
  .finder { max-width: 480px; }
}
@media (max-width: 1024px) {
  .doc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .car-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-top { grid-template-columns: 1fr; }
  .intro .container { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__links.open { display: flex; position: absolute; top: 76px; inset-inline-start: 0; right: 0;
    flex-direction: column; background: var(--navy); padding: 20px 24px; gap: 16px; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .inspect-grid, .logi-grid, .ship-grid, .doc-grid, .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps .step::after { display: none; }
  .car-grid { grid-template-columns: 1fr; }
  .site-footer .container { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: 13vw; }
}
