/* Korna Otomotiv — V2 visual layer
   Loaded after the original styles so existing page behavior stays intact. */

:root {
  --color-bg: #05070b;
  --color-surface: #0a0f17;
  --color-card: #0e1520;
  --color-light: #eef3f8;
  --color-primary: #1769ff;
  --color-primary-light: #68a7ff;
  --color-accent: #42d9ff;
  --color-text: #f7faff;
  --color-muted: #97a4b6;
  --color-line: rgba(151, 177, 211, .15);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 34px 90px rgba(0, 0, 0, .42);
  --shadow-blue: 0 24px 70px rgba(23, 105, 255, .18);
}

html { scroll-behavior: smooth; }

body {
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 14%, rgba(23, 105, 255, .10), transparent 28rem),
    radial-gradient(circle at 92% 42%, rgba(66, 217, 255, .055), transparent 34rem),
    var(--color-bg);
}

body::before {
  opacity: .14;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 78%);
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  z-index: -1;
}

::selection { background: var(--color-primary); color: #fff; }

.container { width: min(calc(100% - 48px), var(--container)); }
.section { padding: 128px 0; position: relative; }
.section--compact { padding: 78px 0; }

.section--surface {
  background:
    radial-gradient(circle at 18% 10%, rgba(23, 105, 255, .12), transparent 26rem),
    linear-gradient(180deg, #090e15, #080c13);
  border-block: 1px solid rgba(255, 255, 255, .05);
}

.section--light {
  color: #111a27;
  background:
    radial-gradient(circle at 88% 12%, rgba(23, 105, 255, .12), transparent 25rem),
    linear-gradient(135deg, #f8fbff 0%, #eaf1f8 100%);
}

.eyebrow {
  gap: 12px;
  padding: 7px 11px;
  border: 1px solid rgba(104, 167, 255, .22);
  border-radius: 999px;
  background: rgba(23, 105, 255, .08);
  font-size: .7rem;
  letter-spacing: .18em;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 16px rgba(66, 217, 255, .9);
}

.section--light .eyebrow { background: rgba(23, 105, 255, .08); }

.display,
.section-title {
  text-wrap: balance;
  letter-spacing: -.06em;
}

.display { font-weight: 650; }
.section-title { font-weight: 650; }
.lead { line-height: 1.75; }

.section-head {
  position: relative;
  margin-bottom: 54px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-line);
}

.section-head::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 1px;
  margin-top: 25px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

/* Header */
.topbar {
  color: #aab6c6;
  background: rgba(5, 7, 11, .45);
  backdrop-filter: blur(12px);
}

.topbar__inner { height: 38px; }

.site-header { top: 38px; }

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(104, 167, 255, .35), transparent);
}

.site-header.is-scrolled {
  background: rgba(5, 8, 13, .76);
  border-bottom-color: rgba(151, 177, 211, .12);
  box-shadow: 0 16px 55px rgba(0, 0, 0, .28);
  backdrop-filter: blur(24px) saturate(1.3);
}

.header__inner { height: 88px; }

.brand__mark {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 16px 5px 16px 5px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .22), transparent 45%),
    linear-gradient(135deg, var(--color-accent), var(--color-primary) 62%, #0e3aa1);
  box-shadow: 0 14px 34px rgba(23, 105, 255, .32), inset 0 1px rgba(255, 255, 255, .25);
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(104, 167, 255, .15);
  border-radius: 20px 8px 20px 8px;
}

.brand__text { letter-spacing: .01em; }
.brand__text small { color: #8390a2; letter-spacing: .19em; }

.nav { gap: clamp(12px, 1.35vw, 24px); }
.nav a { position: relative; padding: 14px 0; color: #aeb9c8; }

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
  transition: right .25s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after { right: 0; }

.btn {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 14px;
  letter-spacing: -.01em;
}

.btn--primary {
  border-color: rgba(255, 255, 255, .15);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), transparent),
    linear-gradient(135deg, #2384ff, #125ae8 72%);
  box-shadow: 0 15px 36px rgba(23, 105, 255, .28), inset 0 1px rgba(255, 255, 255, .18);
}

.btn--primary:hover { box-shadow: 0 20px 42px rgba(23, 105, 255, .38); }

.btn--outline {
  border-color: rgba(159, 181, 211, .22);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(12px);
}

.btn--outline:hover { border-color: rgba(104, 167, 255, .55); background: rgba(23, 105, 255, .10); }
.btn--light { box-shadow: 0 14px 40px rgba(0, 0, 0, .22); }

.icon-btn {
  border-color: rgba(159, 181, 211, .22);
  background: rgba(8, 13, 21, .72);
  backdrop-filter: blur(12px);
}

/* Home hero */
.hero {
  min-height: 96vh;
  padding: 210px 0 115px;
  align-items: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 18%;
  right: 5%;
  width: min(35vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(104, 167, 255, .18);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(104, 167, 255, .025),
    0 0 0 120px rgba(104, 167, 255, .018);
  opacity: .75;
}

.hero::after {
  content: "KORNA / AUTOMOTIVE CONSULTING";
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 44px;
  color: rgba(255, 255, 255, .4);
  font-family: var(--font-heading);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .28em;
  writing-mode: vertical-rl;
}

.hero__media img {
  transform: scale(1.02);
  filter: saturate(.7) contrast(1.13) brightness(.83);
}

.hero__media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 48%, rgba(66, 217, 255, .08) 48.2%, transparent 48.6%),
    radial-gradient(circle at 68% 48%, transparent 0 12%, rgba(5, 7, 11, .16) 38%);
  mix-blend-mode: screen;
}

.hero__media::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 5, 9, .98) 0%, rgba(4, 7, 12, .84) 37%, rgba(4, 7, 12, .30) 71%, rgba(4, 7, 12, .12)),
    linear-gradient(0deg, #05070b 0%, transparent 40%, rgba(5, 7, 11, .22) 100%);
}

.hero__content {
  width: min(900px, 100%);
  gap: 28px;
}

.hero__content .display {
  max-width: 900px;
  font-size: clamp(3rem, 6.2vw, 6.75rem);
  line-height: .92;
  text-shadow: 0 16px 55px rgba(0, 0, 0, .45);
}

.hero__content .display::first-line { color: #fff; }
.hero__content .lead { max-width: 690px; color: #c2cad5; }
.hero__actions { gap: 12px; }

.hero-search { margin-top: -56px; }

.search-panel {
  position: relative;
  padding: 16px;
  border-color: rgba(159, 181, 211, .22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .07), transparent 52%),
    rgba(8, 13, 21, .88);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .48), inset 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(28px) saturate(1.35);
}

.search-panel::before {
  content: "ARAÇ BUL";
  position: absolute;
  left: 25px;
  top: -27px;
  color: #9eb6d7;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .22em;
}

.search-panel select,
.search-panel input {
  height: 56px;
  border-color: rgba(159, 181, 211, .15);
  border-radius: 12px;
  background: rgba(4, 8, 14, .78);
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.search-panel select:focus,
.search-panel input:focus {
  outline: none;
  border-color: var(--color-primary-light);
  background: rgba(10, 18, 30, .95);
  box-shadow: 0 0 0 3px rgba(23, 105, 255, .14);
}

.trust-strip {
  border-radius: 24px;
  background: rgba(151, 177, 211, .12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
}

.trust-item {
  position: relative;
  min-height: 96px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .035), transparent), #0a0f17;
  overflow: hidden;
}

.trust-item::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -40px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(104, 167, 255, .12);
  border-radius: 50%;
}

.trust-item b {
  flex-basis: 42px;
  height: 42px;
  border: 1px solid rgba(104, 167, 255, .20);
  background: linear-gradient(145deg, rgba(23, 105, 255, .20), rgba(66, 217, 255, .06));
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}

/* Cards and editorial blocks */
.card,
.form-card,
.info-card,
.contact-item,
.equipment-card {
  border-color: rgba(151, 177, 211, .14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .045), transparent 35%),
    var(--color-card);
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}

.vehicle-grid { gap: 26px; }

.vehicle-card {
  position: relative;
  border-radius: 26px;
  isolation: isolate;
}

.vehicle-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(104, 167, 255, .48), transparent 30%, transparent 70%, rgba(66, 217, 255, .18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}

.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .45), 0 18px 48px rgba(23, 105, 255, .12);
}

.vehicle-card:hover::before { opacity: 1; }

.vehicle-card__image { aspect-ratio: 16 / 10.5; }

.vehicle-card__image::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(5, 8, 13, .8));
  pointer-events: none;
}

.vehicle-card__image img { filter: saturate(.86) contrast(1.06); }
.vehicle-card:hover img { transform: scale(1.06); filter: saturate(1) contrast(1.04); }
.vehicle-card__badges, .favorite-btn { z-index: 2; }

.badge {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(5, 8, 13, .72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}

.badge--primary { background: linear-gradient(135deg, #237eff, #1159e5); }
.vehicle-card__body { padding: 23px; }
.vehicle-card__year { letter-spacing: .05em; }
.vehicle-card h3 { font-size: 1.25rem; margin-top: 8px; }

.vehicle-card__meta {
  gap: 8px;
  padding: 14px 0;
  border-color: rgba(151, 177, 211, .12);
}

.vehicle-card__meta span {
  padding: 5px 3px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .025);
}

.vehicle-card__price { font-size: 1.4rem; letter-spacing: -.04em; }

.service-grid { gap: 22px; }

.service-card {
  position: relative;
  min-height: 340px;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 95% 0%, rgba(66, 217, 255, .10), transparent 40%),
    linear-gradient(145deg, rgba(23, 105, 255, .14), transparent 54%),
    #0d141e;
}

.service-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  aspect-ratio: 1;
  right: -70px;
  bottom: -86px;
  border: 1px solid rgba(104, 167, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(104, 167, 255, .025), 0 0 0 60px rgba(104, 167, 255, .018);
  transition: transform .5s ease;
}

.service-card::after {
  content: "↗";
  position: absolute;
  top: 27px;
  right: 27px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(151, 177, 211, .18);
  border-radius: 50%;
  color: var(--color-primary-light);
  background: rgba(255, 255, 255, .035);
  transition: transform .3s, background .3s;
}

.service-card:hover {
  border-color: rgba(104, 167, 255, .55);
  transform: translateY(-7px);
  box-shadow: var(--shadow-blue);
}

.service-card:hover::before { transform: scale(1.15); }
.service-card:hover::after { transform: rotate(45deg); background: var(--color-primary); color: #fff; }
.service-card__number { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.service-card h3 { font-size: clamp(1.6rem, 2vw, 2.15rem); letter-spacing: -.04em; }
.service-card p { max-width: 420px; }

.split-feature { gap: clamp(46px, 7vw, 104px); }

.split-feature__media {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(151, 177, 211, .16);
  border-radius: 40px 16px 40px 16px;
  box-shadow: var(--shadow);
}

.split-feature__media::after {
  content: "KORNA SELECT";
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 8, 13, .56);
  backdrop-filter: blur(15px);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.split-feature__media img { filter: saturate(.82) contrast(1.07); }

.step {
  position: relative;
  padding: 15px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: background .25s, border-color .25s, transform .25s;
}

.step:hover {
  border-color: rgba(104, 167, 255, .16);
  background: rgba(23, 105, 255, .055);
  transform: translateX(5px);
}

.step__num {
  border: 1px solid rgba(104, 167, 255, .35);
  background: rgba(23, 105, 255, .12);
  color: var(--color-primary-light);
}

/* Forms and calculators */
.form-card {
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .16);
}

.section--light .form-card {
  border-color: rgba(31, 62, 103, .12);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 30px 80px rgba(34, 64, 104, .13);
  backdrop-filter: blur(20px);
}

.field label { color: inherit; letter-spacing: .01em; }

.field input,
.field select,
.field textarea {
  min-height: 56px;
  border-color: rgba(151, 177, 211, .18);
  border-radius: 13px;
  background: rgba(5, 9, 15, .72);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(104, 167, 255, .38); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 4px rgba(23, 105, 255, .12), 0 12px 28px rgba(0, 0, 0, .10);
}

.calculator { gap: 40px; }

.calculator__result {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(104, 167, 255, .22);
  border-radius: 25px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(66, 217, 255, .20), transparent 36%),
    linear-gradient(145deg, #102b5e, #07111f 65%);
  box-shadow: 0 26px 60px rgba(23, 105, 255, .18);
  color: #fff;
}

.calculator__result::before {
  content: "FINANCE / 02";
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .38);
}

.result-item { border-color: rgba(255, 255, 255, .12); }
.result-item strong { color: #fff; }

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 480px;
  padding: 210px 0 96px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 35%, rgba(23, 105, 255, .24), transparent 25rem),
    radial-gradient(circle at 90% 5%, rgba(66, 217, 255, .08), transparent 22rem),
    linear-gradient(145deg, #0b111b, #05070b 68%);
}

.page-hero::before {
  content: "KORNA";
  position: absolute;
  z-index: -1;
  right: -1vw;
  bottom: -5vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(104, 167, 255, .11);
  font-family: var(--font-heading);
  font-size: clamp(9rem, 22vw, 25rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .78;
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 18%;
  width: 1px;
  height: 160%;
  background: linear-gradient(transparent, rgba(104, 167, 255, .55), transparent);
  transform: rotate(32deg);
  box-shadow: 70px 0 rgba(104, 167, 255, .07), 140px 0 rgba(104, 167, 255, .05);
}

.page-hero .container { gap: 21px; }
.breadcrumbs { color: #8794a6; }
.breadcrumbs a { color: #c4cfdd; }

.listing-layout { gap: 34px; }

.filters {
  top: 108px;
  padding: 25px;
  border-color: rgba(151, 177, 211, .15);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .04), transparent 36%),
    rgba(11, 17, 26, .96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.filters__head {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-line);
}

.toolbar__controls select {
  border-radius: 12px;
  border-color: rgba(151, 177, 211, .18);
  background: #0b111a;
}

.filter-chip {
  border-color: rgba(104, 167, 255, .34);
  background: rgba(23, 105, 255, .13);
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
}

.pagination button { transition: transform .2s, border-color .2s, background .2s; }
.pagination button:hover { transform: translateY(-2px); border-color: var(--color-primary-light); }

.gallery-main {
  border: 1px solid rgba(151, 177, 211, .14);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery-main::after {
  content: "KORNA SELECT";
  position: absolute;
  left: 18px;
  bottom: 17px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(5, 8, 13, .65);
  color: rgba(255, 255, 255, .8);
  backdrop-filter: blur(12px);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.gallery-count { z-index: 2; }
.gallery-thumb { border-radius: 13px; opacity: .63; transition: opacity .2s, transform .2s; }
.gallery-thumb:hover, .gallery-thumb.is-active { opacity: 1; transform: translateY(-2px); }

.detail-panel {
  top: 108px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.detail-price {
  font-size: 2.35rem;
  letter-spacing: -.055em;
  background: linear-gradient(90deg, #fff, #85bbff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.spec {
  min-height: 88px;
  border-color: rgba(151, 177, 211, .14);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .04), transparent), #0b111a;
}

.spec span { margin-bottom: 5px; }

.info-card,
.contact-item,
.equipment-card {
  border-radius: 22px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.info-card:hover,
.contact-item:hover,
.equipment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(104, 167, 255, .35);
  box-shadow: var(--shadow-blue);
}

.stats {
  border-radius: 25px;
  background: rgba(151, 177, 211, .13);
  box-shadow: var(--shadow-blue);
}

.stat {
  position: relative;
  padding: 35px 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), transparent), #0a0f17;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  right: -45px;
  bottom: -45px;
  border: 1px solid rgba(104, 167, 255, .16);
  border-radius: 50%;
}

.stat strong {
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  color: #fff;
  letter-spacing: -.05em;
}

.faq details {
  padding: 24px 25px;
  border-color: rgba(151, 177, 211, .14);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), transparent), #0d141e;
  transition: border-color .25s, background .25s;
}

.faq details[open] {
  border-color: rgba(104, 167, 255, .4);
  background: linear-gradient(145deg, rgba(23, 105, 255, .10), transparent), #0d141e;
}

.faq summary { font-family: var(--font-heading); }

.steps-form__progress {
  height: 7px;
  background: #17202d;
}

.steps-form__bar {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 0 18px rgba(66, 217, 255, .4);
}

.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(104, 167, 255, .22);
  background:
    radial-gradient(circle at 86% 18%, rgba(66, 217, 255, .24), transparent 25%),
    linear-gradient(135deg, #102c65 0%, #09172e 52%, #070c14 100%);
  box-shadow: 0 35px 100px rgba(23, 105, 255, .18);
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -160px;
  bottom: -260px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, .025), 0 0 0 110px rgba(255, 255, 255, .018);
}

.final-cta > * { position: relative; z-index: 1; }

/* Brand strip */
.brand-marquee {
  padding: 27px 0;
  background: rgba(4, 6, 10, .86);
  border-color: rgba(151, 177, 211, .12);
}

.brand-logo {
  width: 148px;
  height: 58px;
  opacity: .42;
}

.brand-logo img { max-width: 118px; max-height: 43px; }
.brand-logo:hover { opacity: .95; transform: translateY(-3px) scale(1.04); }

/* Footer */
.site-footer {
  padding-top: 92px;
  background:
    radial-gradient(circle at 15% 0%, rgba(23, 105, 255, .10), transparent 25rem),
    #030508;
}

.footer__grid { gap: clamp(38px, 5vw, 75px); }
.footer__col h3 { color: #d5deeb; font-size: .72rem; letter-spacing: .18em; }
.footer__col a { transition: color .2s, transform .2s; display: inline-block; }
.footer__col a:hover { color: #fff; transform: translateX(4px); }

.footer__bottom {
  margin-top: 70px;
  padding-top: 26px;
  border-color: rgba(151, 177, 211, .10);
}

.footer__bottom a { color: #8da8cc; }

.floating-whatsapp {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: 0 18px 45px rgba(37, 211, 102, .28), 0 0 0 8px rgba(37, 211, 102, .07);
  transition: transform .25s, box-shadow .25s;
}

.floating-whatsapp:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 22px 52px rgba(37, 211, 102, .4); }

.mobile-drawer__panel {
  border-left: 1px solid rgba(151, 177, 211, .16);
  background:
    radial-gradient(circle at 100% 0%, rgba(23, 105, 255, .18), transparent 20rem),
    #080d15;
  box-shadow: -35px 0 100px rgba(0, 0, 0, .45);
}

.compare-bar {
  border: 1px solid rgba(23, 105, 255, .18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35), 0 12px 30px rgba(23, 105, 255, .12);
}

@media (max-width: 1180px) {
  .header__inner { height: 80px; }
  .hero { min-height: 900px; }
  .vehicle-grid { gap: 20px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 92px 0; }
  .site-header { top: 0; }
  .header__inner { height: 76px; }
  .hero { min-height: 850px; padding: 150px 0 72px; align-items: flex-end; }
  .hero::before { width: 55vw; top: 22%; right: -10%; }
  .hero::after { display: none; }
  .hero__media::after {
    background:
      linear-gradient(0deg, rgba(4, 6, 10, .99) 3%, rgba(4, 7, 12, .70) 58%, rgba(4, 7, 12, .36)),
      linear-gradient(90deg, rgba(4, 6, 10, .70), transparent);
  }
  .hero-search { margin-top: 0; padding-top: 18px; }
  .search-panel::before { display: none; }
  .page-hero { min-height: 410px; padding: 145px 0 78px; }
  .split-feature__media { min-height: 460px; }
  .filters { top: 0; border-radius: 26px 0 0 26px; }
  .mobile-detail-bar { border-color: rgba(151, 177, 211, .15); background: rgba(5, 8, 13, .91); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .section--compact { padding: 48px 0; }
  .section-head { margin-bottom: 38px; padding-bottom: 20px; }
  .header__inner { height: 70px; }
  .brand__mark { width: 42px; height: 42px; border-radius: 14px 5px 14px 5px; }
  .hero { min-height: 780px; padding: 125px 0 48px; }
  .hero__content { gap: 22px; }
  .hero__content .display { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  .hero__content .lead { font-size: .98rem; line-height: 1.62; }
  .hero__actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .hero__actions .btn:first-child { grid-column: 1 / -1; }
  .search-panel { padding: 13px; border-radius: 19px; }
  .search-panel select, .search-panel input { height: 52px; }
  .trust-strip { border-radius: 20px; }
  .trust-item { min-height: 82px; padding: 19px; }
  .vehicle-card { border-radius: 22px; }
  .service-card { min-height: 280px; padding: 25px; border-radius: 25px; }
  .service-card::after { top: 22px; right: 22px; }
  .split-feature__media { min-height: 380px; border-radius: 28px 12px 28px 12px; }
  .calculator { gap: 24px; }
  .calculator__result { padding: 28px 22px; }
  .page-hero { min-height: 370px; padding: 125px 0 65px; }
  .page-hero::before { font-size: 10rem; bottom: -1.5rem; }
  .form-card { border-radius: 25px; }
  .final-cta { border-radius: 26px; }
  .gallery-main { border-radius: 21px; }
  .floating-whatsapp { width: 56px; height: 56px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .brand-track { animation-play-state: paused; }
  .vehicle-card,
  .service-card,
  .step,
  .btn { transition-duration: .01ms !important; }
}
