/* ====================================================
   MOBIDIK — Home page styles
   Двусредная система: тёмная атмосфера + светлый каталог
   ==================================================== */

:root {
  --dark-base:    #0E0E10;
  --dark-surface: #1A1A1A;
  --dark-border:  #2A2A2A;
  --dark-text:    #FFFFFF;
  --dark-muted:   #A8A8A8;
  --light-bg:     #F5F5F5;
  --light-surface:#FFFFFF;
  --light-border: #E5E5E5;
  --light-text:   #1A1A1A;
  --light-muted:  #6B6B6B;
  --red:          #E31E24;
  --red-hover:    #B71C20;
  --red-soft:     #FFE5E7;
  --ice-white:    #E8EEF2;
  --ice-blue:     #C5D4E0;
  --ice-deep:     #94A8B8;
  --green:        #15803D;
  --amber:        #C2410C;

  --r-card: 12px;
  --r-btn:  8px;
  --r-badge:4px;

  --headline: "Oswald", "Inter", system-ui, sans-serif;
  --body:     "Inter", system-ui, sans-serif;
  --mono:     "JetBrains Mono", ui-monospace, monospace;

  --shell:    1360px;
  --gutter:   40px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  font-size: 14px;
  color: var(--light-text);
  background: var(--light-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-width: 1280px;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============== shared atoms ============== */
.eyebrow {
  font: 600 11px/1 var(--body);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.h1-condensed {
  font-family: var(--headline);
  font-weight: 700;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
}
.h2-condensed {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

/* ============== buttons ============== */
.btn {
  appearance: none;
  border: 0;
  font: 700 14px/1 var(--body);
  border-radius: var(--r-btn);
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-hover); }
.btn--secondary-light {
  background: #fff;
  color: var(--light-text);
  border: 1.5px solid var(--light-text);
}
.btn--secondary-light:hover { background: var(--light-text); color: #fff; }
.btn--secondary-dark {
  background: var(--dark-surface);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--secondary-dark:hover { border-color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--red);
  padding: 12px 4px;
}
.btn--ghost:hover { color: var(--red-hover); }
.btn .arrow { width: 14px; height: 14px; flex: none; }

/* ============== badges ============== */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font: 700 12px/1 var(--body);
  padding: 5px 8px;
  border-radius: var(--r-badge);
}
.badge--discount { background: var(--red); color: #fff; }
.badge--hit      { background: var(--dark-base); color: #fff; }
.badge--new      { background: var(--red-soft); color: var(--red-hover); }
.badge--order    { background: #F5F5F5; color: var(--light-muted); border: 1px solid var(--light-border); }
.badge--stock    { background: var(--green); color: #fff; }

/* ============== HEADER ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark-base);
  color: var(--dark-text);
  border-bottom: 1px solid var(--dark-border);
}
.header__topbar {
  border-bottom: 1px solid var(--dark-border);
  font-size: 12px;
  color: var(--dark-muted);
}
.header__topbar-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 6px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__topbar a { color: var(--dark-muted); }
.header__topbar a:hover { color: #fff; }
.header__topbar-left,
.header__topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header__topbar svg { width: 12px; height: 12px; flex: none; }
.header__topbar .geo { display: inline-flex; align-items: center; gap: 6px; color: #fff; }
.header__topbar .geo svg { color: var(--red); }

.header__main {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.header__logo {
  height: 48px;
  display: block;
}
.header__catalog-btn {
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: var(--r-btn);
  padding: 14px 22px;
  font: 700 14px/1 var(--body);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.header__catalog-btn:hover { background: var(--red-hover); }
.header__catalog-btn svg { width: 18px; height: 18px; }

.header__search {
  position: relative;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-btn);
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 48px;
  transition: border-color 120ms ease;
}
.header__search:focus-within { border-color: rgba(255,255,255,.5); }
.header__search svg { width: 16px; height: 16px; color: var(--dark-muted); flex: none; }
.header__search input {
  background: none;
  border: 0;
  outline: 0;
  flex: 1;
  height: 100%;
  padding: 0 12px;
  color: #fff;
  font: 400 14px/1 var(--body);
}
.header__search input::placeholder { color: #6f6f6f; }
.header__search .mic { color: #6f6f6f; cursor: pointer; }
.header__search .mic:hover { color: #fff; }

.header__icons {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__icon-btn {
  width: 56px;
  height: 56px;
  background: none;
  border: 0;
  color: #fff;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: var(--r-btn);
  font-size: 11px;
  gap: 4px;
}
.header__icon-btn:hover { color: var(--red); }
.header__icon-btn svg { width: 20px; height: 20px; }
.header__icon-btn span {
  position: absolute;
  bottom: 8px;
  font: 500 10px/1 var(--body);
  letter-spacing: 0.3px;
  color: var(--dark-muted);
}
.header__icon-btn:hover span { color: var(--red); }
.header__icon-btn .pin {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--red);
  color: #fff;
  font: 700 10px/1 var(--body);
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.header__nav {
  border-top: 1px solid var(--dark-border);
  background: var(--dark-base);
}
.header__nav-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 46px;
}
.header__nav-list,
.header__nav-promo {
  display: flex;
  align-items: stretch;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font: 500 13px/1 var(--body);
  color: #d6d6d6;
  position: relative;
  letter-spacing: 0.1px;
}
.header__nav a:hover { color: #fff; }
.header__nav a.is-active { color: #fff; }
.header__nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 0;
  height: 2px;
  background: var(--red);
}
.header__nav-promo a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.header__nav-promo svg { width: 14px; height: 14px; color: var(--red); }
.header__nav-promo .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}

/* ============== HERO ============== */
.hero {
  background: var(--dark-base);
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}
.hero__slider {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.hero__slide {
  display: none;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: 540px;
  padding: 64px 0 88px;
  position: relative;
}
.hero__slide.is-active { display: grid; }
.hero__left { position: relative; z-index: 2; }
.hero__eyebrow {
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: "";
  width: 28px; height: 1px; background: var(--red);
}
.hero__title {
  font-size: 88px;
  line-height: 0.9;
  letter-spacing: -1.8px;
  margin: 18px 0 0;
}
.hero__title .accent { color: var(--red); }
.hero__title small { display: block; font-size: 0.5em; letter-spacing: -0.6px; color: var(--dark-muted); font-weight: 600; margin-top: 8px; text-transform: none; }
.hero__lede {
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-muted);
  margin: 22px 0 0;
  max-width: 44ch;
}
.hero__price-block {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 32px 0 6px;
}
.hero__price-block .from {
  font: 600 11px/1 var(--body);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-muted);
}
.hero__price {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1.4px;
  color: var(--red);
}
.hero__installment {
  font-size: 14px;
  color: var(--dark-muted);
}
.hero__installment b { color: #fff; font-weight: 600; }
.hero__ctas {
  display: flex; gap: 14px;
  margin-top: 32px;
}

.hero__right {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 460px;
}
.hero__product {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  border: 1px solid var(--dark-border);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 14px, rgba(255,255,255,.07) 14px 28px);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.5);
  font: 500 11px/1.4 var(--mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  z-index: 2;
  position: relative;
}
.hero__mascot {
  position: absolute;
  bottom: -10px;
  right: -90px;
  width: 460px;
  opacity: .12;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-6deg);
}

/* ice decor in hero */
.hero__shards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__shards .shard { position: absolute; }

/* hero controls */
.hero__controls {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}
.hero__dots {
  display: flex;
  gap: 8px;
  pointer-events: auto;
}
.hero__dot {
  width: 32px; height: 4px;
  background: rgba(255,255,255,.2);
  border: 0;
  border-radius: 2px;
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hero__dot.is-active { background: rgba(255,255,255,.25); }
.hero__dot.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform-origin: left;
  animation: heroDotFill 6s linear forwards;
}
@keyframes heroDotFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero__arrows {
  display: flex;
  gap: 8px;
  pointer-events: auto;
}
.hero__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--dark-border);
  color: #fff;
  display: grid; place-items: center;
}
.hero__arrow:hover { background: var(--red); border-color: var(--red); }
.hero__arrow svg { width: 18px; height: 18px; }

/* ============== SECTION ============== */
.section { padding: 72px 0 32px; }
.section--tight { padding: 32px 0; }
.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section__head h2 {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  margin: 0;
}
.section__head .meta {
  display: flex;
  align-items: baseline;
  gap: 22px;
}
.section__head .sub {
  font-size: 14px;
  color: var(--light-muted);
}
.section__head a.more {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.section__head a.more:hover { color: var(--red-hover); }
.section__head a.more::after { content: "→"; }

/* ============== CATEGORIES ============== */
.cats {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.cat {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--r-card);
  padding: 18px 16px 16px;
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  min-height: 140px;
  cursor: pointer;
}
.cat:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(227,30,36,0.10);
}
.cat:hover .cat__icon { color: var(--red); }
.cat__icon {
  width: 36px; height: 36px;
  color: var(--light-text);
  transition: color 180ms ease;
}
.cat__name {
  font: 600 13px/1.25 var(--body);
  color: var(--light-text);
  margin: 0;
}
.cat__count {
  font: 500 11px/1 var(--mono);
  color: var(--light-muted);
  margin-top: auto;
  letter-spacing: 0.3px;
}
.cat__shard {
  position: absolute;
  top: -10px; right: -10px;
  width: 50px;
  opacity: .5;
  pointer-events: none;
}

/* ============== PROMO STRIP — 0-0-24 ============== */
.promo-strip {
  background: var(--dark-base);
  color: #fff;
  border-radius: var(--r-card);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
  /* iceberg corner cut */
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
  margin-top: 16px;
}
.promo-strip__eyebrow {
  color: var(--red);
  display: inline-flex; align-items: center; gap: 10px;
}
.promo-strip__eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--red);
}
.promo-strip h2 {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  margin: 14px 0 12px;
}
.promo-strip h2 .accent { color: var(--red); }
.promo-strip .sub {
  font-size: 15px;
  color: var(--dark-muted);
  margin: 0;
  max-width: 50ch;
}
.promo-strip__bullets {
  display: flex;
  gap: 28px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.promo-strip__bullets li {
  font: 500 13px/1.3 var(--body);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.promo-strip__bullets li svg {
  width: 16px; height: 16px;
  color: var(--red);
  flex: none;
}
.promo-strip__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.promo-strip__right .small {
  font: 500 11px/1 var(--mono);
  color: var(--dark-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.promo-strip__shard {
  position: absolute;
  right: 36%;
  top: -40px;
  width: 240px;
  opacity: .22;
  pointer-events: none;
}

/* ============== TABS ============== */
.tabs {
  display: flex;
  gap: 6px;
  margin: -8px 0 20px;
  flex-wrap: wrap;
}
.tab {
  background: #fff;
  border: 1px solid var(--light-border);
  color: var(--light-text);
  border-radius: 999px;
  padding: 10px 18px;
  font: 600 13px/1 var(--body);
  cursor: pointer;
  transition: all 120ms ease;
}
.tab:hover { border-color: var(--light-text); }
.tab.is-active { background: var(--red); border-color: var(--red); color: #fff; }

/* ============== PRODUCT GRID ============== */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--r-card);
  padding: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  cursor: pointer;
}
.product:hover {
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(227,30,36,0.12);
  transform: translateY(-1px);
}
.product__badges-top {
  position: absolute; top: 14px; left: 14px;
  display: flex; gap: 6px;
  z-index: 2;
}
.product__like {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--light-border);
  display: grid; place-items: center;
  z-index: 2;
  transition: border-color 120ms ease, color 120ms ease;
}
.product__like svg { width: 16px; height: 16px; color: var(--light-muted); fill: none; stroke: currentColor; stroke-width: 2; }
.product__like:hover { border-color: var(--red); }
.product__like:hover svg { color: var(--red); }
.product__like.is-on { border-color: var(--red); }
.product__like.is-on svg { color: var(--red); fill: var(--red); }
.product__shot {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  margin: 28px 0 14px;
  background: repeating-linear-gradient(45deg, #fafafa 0 10px, #f1f1f1 10px 20px);
  display: grid; place-items: center;
  color: #b6b6b6;
  font: 500 10px/1.2 var(--mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
}
.product__meta-row {
  display: flex; align-items: center; gap: 6px;
  font: 500 11px/1 var(--body);
  color: var(--light-muted);
  margin-bottom: 6px;
}
.product__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}
.product__dot.amber { background: var(--amber); }
.product__name {
  font: 600 13px/1.35 var(--body);
  color: var(--light-text);
  margin: 0 0 10px;
  min-height: 2.7em;
  text-wrap: pretty;
}
.product__swatches {
  display: flex; gap: 5px;
  margin-bottom: 10px;
}
.product__swatch {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
}
.product__price-line {
  display: flex; align-items: baseline; gap: 8px;
}
.product__price {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--light-text);
}
.product__price-old {
  font: 500 12px/1 var(--body);
  color: var(--light-muted);
  text-decoration: line-through;
}
.product__installment {
  font: 500 12px/1.2 var(--body);
  color: var(--light-muted);
  margin-top: 6px;
}
.product__installment b { color: var(--red); font-weight: 700; }
.product__cta {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.section__footer {
  display: flex; justify-content: center;
  margin-top: 28px;
}

/* ============== WHY MOBIDIK ============== */
.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why__card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--r-card);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 180ms ease;
}
.why__card:hover { border-color: var(--red); }
.why__icon-wrap {
  width: 48px; height: 48px;
  background: var(--red-soft);
  border-radius: var(--r-btn);
  display: grid; place-items: center;
  color: var(--red);
}
.why__icon-wrap svg { width: 22px; height: 22px; }
.why__title {
  font: 700 18px/1.2 var(--body);
  color: var(--light-text);
  margin: 0;
  letter-spacing: -0.2px;
}
.why__desc {
  font: 400 13px/1.5 var(--body);
  color: var(--light-muted);
  margin: 0;
  text-wrap: pretty;
}

/* ============== TRADE-IN ============== */
.tradein {
  background: var(--dark-base);
  color: #fff;
  border-radius: var(--r-card);
  padding: 56px 56px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
}
.tradein__eyebrow { color: var(--red); }
.tradein h2 {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 56px;
  line-height: 0.92;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  margin: 16px 0 16px;
  max-width: 14ch;
}
.tradein h2 .accent { color: var(--red); }
.tradein .sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--dark-muted);
  max-width: 48ch;
  margin: 0;
}
.tradein__bullets {
  display: flex; flex-direction: column; gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}
.tradein__bullets li {
  font: 500 14px/1.3 var(--body);
  display: inline-flex; align-items: center; gap: 10px;
}
.tradein__bullets li svg { width: 16px; height: 16px; color: var(--red); flex: none; }
.tradein__right {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.tradein__calc {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-card);
  padding: 24px;
}
.tradein__calc .label {
  font: 600 11px/1 var(--body);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-muted);
}
.tradein__calc-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}
.tradein__calc-cell {
  background: var(--dark-base);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-btn);
  padding: 14px;
}
.tradein__calc-cell .kk {
  font: 500 10px/1 var(--mono);
  letter-spacing: 1px;
  color: var(--dark-muted);
  text-transform: uppercase;
}
.tradein__calc-cell .vv {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.4px;
  margin-top: 8px;
}
.tradein__calc-cell .vv.red { color: var(--red); }
.tradein__calc-arrow {
  color: var(--red);
  font-size: 22px;
  text-align: center;
}
.tradein__mascot {
  position: absolute;
  right: -100px; bottom: -50px;
  width: 520px;
  opacity: .14;
  pointer-events: none;
  transform: rotate(-4deg);
}
.tradein__shard {
  position: absolute;
  left: -20px; bottom: -30px;
  width: 200px;
  opacity: .15;
  pointer-events: none;
}

/* ============== DELIVERY ============== */
.delivery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--r-card);
  padding: 40px 44px;
  align-items: center;
}
.delivery__left h2 {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  margin: 0;
}
.delivery__left .sub {
  font-size: 14px;
  color: var(--light-muted);
  margin: 12px 0 24px;
  max-width: 48ch;
}
.delivery__input {
  display: flex;
  border: 1.5px solid var(--light-text);
  border-radius: var(--r-btn);
  overflow: hidden;
  margin-bottom: 20px;
}
.delivery__input input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 18px;
  font: 400 14px/1 var(--body);
  color: var(--light-text);
  background: #fff;
}
.delivery__input button {
  border: 0;
  background: var(--red);
  color: #fff;
  font: 700 14px/1 var(--body);
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.delivery__input button:hover { background: var(--red-hover); }
.delivery__examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.delivery__example {
  background: var(--light-bg);
  border-radius: var(--r-btn);
  padding: 12px 14px;
  font-size: 12px;
}
.delivery__example .city {
  font-weight: 700;
  color: var(--light-text);
}
.delivery__example .spec {
  color: var(--light-muted);
  margin-top: 4px;
}
.delivery__map {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--light-bg);
  border-radius: var(--r-card);
  overflow: hidden;
}
.delivery__map svg.bg { width: 100%; height: 100%; display: block; }
.delivery__map .pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.delivery__map .pin .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--red), 0 4px 10px rgba(227,30,36,0.3);
  transition: transform 120ms ease;
}
.delivery__map .pin:hover .dot { transform: scale(1.2); }
.delivery__map .pin .label {
  background: #fff;
  border-radius: 4px;
  padding: 3px 6px;
  font: 600 11px/1 var(--body);
  color: var(--light-text);
  border: 1px solid var(--light-border);
  white-space: nowrap;
}
.delivery__map .pin.is-hub .dot { width: 14px; height: 14px; }

/* ============== REELS ============== */
.reels {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.reel {
  aspect-ratio: 9 / 16;
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(160deg, #1A1A1A 0%, #0E0E10 100%);
  border: 1px solid var(--dark-border);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.reel:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.reel::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 10px, rgba(255,255,255,.05) 10px 20px);
}
.reel__overlay {
  position: absolute;
  inset: 0;
  padding: 14px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  color: #fff;
  z-index: 2;
}
.reel__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  font: 500 11px/1 var(--mono);
  color: rgba(255,255,255,.7);
  letter-spacing: 0.5px;
}
.reel__top .views { display: inline-flex; align-items: center; gap: 4px; }
.reel__top svg { width: 12px; height: 12px; }
.reel__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center;
  transition: background 120ms ease;
}
.reel:hover .reel__play { background: var(--red); border-color: var(--red); }
.reel__play svg { width: 16px; height: 16px; color: #fff; margin-left: 2px; }
.reel__bottom {
  font: 600 12px/1.3 var(--body);
}
.reel__bottom .tag {
  display: inline-block;
  font: 500 10px/1 var(--mono);
  color: rgba(255,255,255,.65);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.reels-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--r-card);
  padding: 20px 24px;
}
.reels-cta__left .h {
  font: 700 18px/1.2 var(--body);
  color: var(--light-text);
}
.reels-cta__left .s {
  font-size: 13px;
  color: var(--light-muted);
  margin-top: 4px;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--dark-base);
  color: var(--dark-text);
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}
.footer__top {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 56px var(--gutter) 36px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) 1.2fr;
  gap: 32px;
}
.footer__brand-logo { height: 64px; margin-bottom: 18px; }
.footer__slogan {
  font-family: var(--headline);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #fff;
}
.footer__slogan .red { color: var(--red); }
.footer__socials {
  display: flex;
  gap: 8px;
}
.footer__social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  color: #fff;
  display: grid; place-items: center;
  transition: background 120ms ease, border-color 120ms ease;
}
.footer__social:hover { background: var(--red); border-color: var(--red); }
.footer__social svg { width: 16px; height: 16px; }

.footer__col h4 {
  font: 600 11px/1 var(--body);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin: 0 0 16px;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 13px;
  color: #d6d6d6;
}
.footer__col a:hover { color: var(--red); }

.footer__contact-row {
  display: flex; flex-direction: column; gap: 14px;
}
.footer__contact-row .item .k {
  font: 500 10px/1 var(--mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-bottom: 4px;
}
.footer__contact-row .item .v {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}
.footer__contact-row .item .v.phone {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.footer__bottom {
  border-top: 1px solid var(--dark-border);
}
.footer__bottom-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--dark-muted);
}
.footer__bottom a { color: var(--dark-muted); }
.footer__bottom a:hover { color: #fff; }
.footer__bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }

.footer__shard {
  position: absolute;
  right: -40px; top: -60px;
  width: 320px;
  opacity: .06;
  pointer-events: none;
}

/* misc utility */
.flex { display: flex; }
.gap-12 { gap: 12px; }
