:root {
  --bg: #e8eaed;
  --bg-soft: #dce0e5;
  --paper: #f4f6f8;
  --ink: #12151a;
  --ink-soft: #252a32;
  --muted: #5c646e;
  --faint: #8a929c;
  --line: #d0d5db;
  --accent: #e85d04;
  --accent-2: #c2410c;
  --accent-fg: #fff7ed;
  --accent-soft: #ffedd5;
  --dark: #101318;
  --dark-2: #191d24;
  --max: #471aff;
  --tg: #2aabee;
  --danger: #b42318;
  --sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --display: "Unbounded", "Manrope", ui-sans-serif, system-ui, sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-hero: 40px;
  --shadow-card: 0 18px 48px rgba(16, 19, 24, 0.08);
  --shadow-pop: 0 16px 40px rgba(16, 19, 24, 0.22);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 88px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}

button:not(:disabled),
[role="button"]:not(:disabled) { cursor: pointer; }

button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3 {
  text-wrap: balance;
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; }

::selection {
  background: var(--accent);
  color: var(--accent-fg);
}

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.gold-text {
  background: linear-gradient(180deg, #ff8a3d 0%, #e85d04 52%, #c2410c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-btn {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.28) 0%, transparent 55%),
    linear-gradient(180deg, #ff8a3d 0%, #e85d04 42%, #c2410c 100%);
  color: #fff7ed;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 18px rgba(194, 65, 12, 0.32);
  border: 0;
}

.gold-btn:hover { filter: brightness(1.05); }
.gold-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.no-scroll {
  overflow: hidden !important;
  touch-action: none;
}

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

.eyebrow.light { color: var(--accent); }

h2.sec-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--ink);
}

.lead {
  margin-top: 16px;
  max-width: 36rem;
  color: var(--muted);
}

/* Header */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(232, 234, 237, 0.88);
  backdrop-filter: blur(14px);
  transition: border-color 0.2s, background 0.2s;
}
#header.scrolled {
  border-color: var(--line);
  background: rgba(232, 234, 237, 0.96);
}
#header-bar {
  margin: 0 auto;
  display: flex;
  height: 72px;
  width: 100%;
  max-width: 1180px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
}
@media (min-width: 640px) { #header-bar { padding: 0 20px; } }

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand-name {
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
}
.brand-tag {
  margin-top: 2px;
  max-width: 9.5rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--muted);
}
@media (min-width: 640px) { .brand-tag { max-width: none; } }

.nav-desk {
  display: none;
  align-items: center;
  gap: 20px;
}
.nav-desk button {
  background: none;
  border: 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}
.nav-desk button:hover { color: var(--ink); }
@media (min-width: 1024px) { .nav-desk { display: flex; } }

.head-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
}
@media (min-width: 640px) { .head-actions { gap: 8px; } }

.icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  padding: 0;
}
.icon-link {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 13px;
  display: block;
}
.icon-link img { width: 100%; height: 100%; object-fit: cover; }
.icon-link.max { box-shadow: 0 6px 14px rgba(71, 26, 255, 0.32); }
.icon-link.tg { box-shadow: 0 6px 14px rgba(42, 171, 238, 0.34); }
.menu-toggle {
  background: var(--dark);
  color: var(--paper);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  border-radius: 13px;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.burger {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--paper);
  box-shadow: 0 5px 0 #fafaf7, 0 -5px 0 #fafaf7;
}

.phone-pop {
  position: relative;
}
.phone-drop {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 200;
  width: min(280px, calc(100vw - 24px));
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 16px;
  box-shadow: var(--shadow-pop);
}
.phone-drop .lbl {
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}

#mobile-nav {
  position: absolute;
  inset: 72px 0 auto 0;
  z-index: 40;
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 16px;
  box-shadow: var(--shadow-pop);
}
#mobile-nav .col { display: flex; flex-direction: column; gap: 4px; padding-bottom: 96px; }
#mobile-nav button.nav-item {
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  padding: 0 12px;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  background: transparent;
  color: var(--ink);
}
#mobile-nav button.nav-item:hover { background: var(--bg-soft); }
#mobile-nav .cta {
  margin-top: 12px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (min-width: 1024px) { #mobile-nav { display: none !important; } }

/* Hero */
.hero { padding: 88px 0 16px; }
.hero-card {
  position: relative;
  display: grid;
  min-height: calc(100svh - 104px);
  overflow: hidden;
  border-radius: var(--radius-hero);
  background: var(--dark);
  color: var(--paper);
  box-shadow: var(--shadow-card);
}
@media (min-width: 1024px) {
  .hero-card { grid-template-columns: 1.05fr 0.95fr; }
}
.hero-copy {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 24px;
}
@media (min-width: 640px) { .hero-copy { padding: 48px 40px; } }
@media (min-width: 1024px) { .hero-copy { padding: 64px; } }
.pill {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(232, 93, 4, 0.15);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.hero h1 span { display: block; color: var(--accent); }
.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  max-width: 28rem;
  flex-direction: column;
  gap: 10px;
}
.hero-points li { display: flex; align-items: flex-start; gap: 12px; }
.check {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(232, 93, 4, 0.2);
  color: var(--accent);
}
.hero-points span.txt {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(244, 246, 248, 0.82);
}
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.hero-photo { position: relative; min-height: 280px; }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #101318, rgba(16, 19, 24, 0.2), transparent);
}
@media (min-width: 1024px) {
  .hero-photo .shade {
    background: linear-gradient(to left, transparent, rgba(16, 19, 24, 0.1), rgba(16, 19, 24, 0.8));
  }
}
.hero-badges {
  pointer-events: none;
  position: absolute;
  left: 0; right: 0; bottom: 20px;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}
.hero-badges .row {
  pointer-events: auto;
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(244, 246, 248, 0.15);
  background: rgba(16, 19, 24, 0.8);
  padding: 10px 14px;
  backdrop-filter: blur(12px);
}
.badge .ico {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(232, 93, 4, 0.35);
  background: rgba(232, 93, 4, 0.15);
  color: var(--accent);
}
.badge span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: rgba(244, 246, 248, 0.95);
}
@media (min-width: 640px) { .badge span { font-size: 0.78rem; } }

/* Sections */
section.block { padding: 64px 0; }
@media (min-width: 768px) { section.block { padding: 96px 0; } }
section.block-sm { padding: 32px 0; }
@media (min-width: 768px) { section.block-sm { padding: 48px 0; } }

.cards-3 {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) { .cards-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-3 { grid-template-columns: 1fr 1fr 1fr; } }
.card {
  border-radius: 28px;
  background: var(--paper);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.card .ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-2);
}
.card h3 {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.card p { margin-top: 8px; font-size: 0.875rem; line-height: 1.6; color: var(--muted); }

/* Price */
.price-box {
  border-radius: var(--radius-xl);
  background: var(--dark);
  padding: 40px 20px;
  color: var(--paper);
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .price-box { padding: 48px 40px; } }
.price-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.ghost-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(244, 246, 248, 0.15);
  padding: 0 20px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  background: transparent;
}
.ghost-btn:hover { background: rgba(244, 246, 248, 0.1); }
.chips {
  margin-top: 32px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.chip {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  background: rgba(244, 246, 248, 0.08);
  color: rgba(244, 246, 248, 0.8);
}
.chip.on { background: var(--accent); color: var(--accent-fg); }
.chip.ink.on { background: var(--ink); color: var(--paper); }
.chip.soft { background: var(--bg-soft); color: var(--muted); }
.chip.soft.on { background: var(--ink); color: var(--paper); }

.table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(244, 246, 248, 0.1);
}
table.price {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}
table.price thead {
  background: rgba(244, 246, 248, 0.05);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 246, 248, 0.5);
}
table.price th, table.price td { padding: 12px 16px; font-weight: 600; }
table.price tbody tr { border-top: 1px solid rgba(244, 246, 248, 0.08); }
table.price td.mark { font-weight: 800; font-variant-numeric: tabular-nums; }
table.price td.muted { color: rgba(244, 246, 248, 0.65); }
table.price td.use { color: rgba(244, 246, 248, 0.55); }
table.price td.cost { font-weight: 800; font-variant-numeric: tabular-nums; color: var(--accent); }
table.price button.linkish {
  background: none;
  border: 0;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 246, 248, 0.8);
}
table.price button.linkish:hover { color: var(--accent); }
.note { margin-top: 16px; font-size: 0.75rem; color: rgba(244, 246, 248, 0.45); }

/* Calculator */
.calc-grid {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}
@media (min-width: 1024px) { .calc-grid { grid-template-columns: 1.15fr 0.85fr; } }
.panel {
  border-radius: 28px;
  background: var(--paper);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .panel { padding: 32px; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.field .hint { font-size: 0.75rem; color: var(--faint); font-weight: 500; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0 14px;
  outline: none;
}
.field textarea { min-height: 96px; padding: 12px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
}
.grid-2 { display: grid; gap: 16px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.dims { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 640px) { .dims { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.vol-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 14px;
  background: var(--accent-soft);
  padding: 12px;
}
.vol-box .k { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); }
.vol-box .v { font-weight: 800; font-variant-numeric: tabular-nums; color: var(--ink); }
.info-soft {
  margin-top: 16px;
  border-radius: 16px;
  background: var(--accent-soft);
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-soft);
}
.aside-dark {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: var(--dark);
  padding: 24px;
  color: var(--paper);
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .aside-dark { padding: 32px; } }
.aside-dark .k {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.aside-dark .sum {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.aside-dark .sub { margin-top: 4px; font-size: 0.875rem; color: rgba(244, 246, 248, 0.55); }
.aside-dark ul { margin: 24px 0 0; padding: 0; list-style: none; }
.aside-dark li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(244, 246, 248, 0.1);
  font-size: 0.875rem;
}
.aside-dark li:last-child { border: 0; margin: 0; padding: 0; }
.aside-dark li span.l { color: rgba(244, 246, 248, 0.6); }
.aside-dark li span.r { font-weight: 700; font-variant-numeric: tabular-nums; }
.aside-dark .fine { margin-top: 12px; text-align: center; font-size: 0.75rem; color: rgba(244, 246, 248, 0.4); }

/* Quality / fleet / delivery / order */
.split {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.photo-card {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-card);
}
.photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 1023px) {
  #order .photo-card { display: none; }
}
.check-list { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 12px; font-size: 0.875rem; font-weight: 500; color: var(--ink-soft); }
.dot {
  margin-top: 8px;
  width: 6px; height: 6px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--accent);
}

.fleet {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) { .fleet { grid-template-columns: 1fr 1fr; } }
.fleet article {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--dark);
  color: var(--paper);
  box-shadow: var(--shadow-card);
}
.fleet img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.fleet .shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #101318, rgba(16, 19, 24, 0.4), transparent);
}
.fleet .txt { position: relative; z-index: 2; display: flex; height: 100%; min-height: 280px; flex-direction: column; justify-content: flex-end; padding: 28px; }
.fleet h3 { margin-top: 8px; font-size: 1.5rem; font-weight: 600; }
.fleet p.body { margin-top: 8px; max-width: 24rem; font-size: 0.875rem; color: rgba(244, 246, 248, 0.7); }

.deliv-2 { margin-top: 32px; display: grid; gap: 16px; }
@media (min-width: 640px) { .deliv-2 { grid-template-columns: 1fr 1fr; } }
.deliv-2 article { border-radius: 28px; background: var(--paper); padding: 28px; box-shadow: var(--shadow-card); }
.deliv-2 .k { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.deliv-2 .v { margin-top: 8px; font-family: var(--display); font-size: 1.875rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.deliv-2 p.s { margin-top: 4px; font-size: 0.875rem; color: var(--muted); }
.districts { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 8px; }
.districts span {
  border-radius: 999px;
  background: var(--bg-soft);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Reviews */
.rev-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.rev-nav { display: none; gap: 8px; }
@media (min-width: 640px) { .rev-nav { display: flex; } }
.rev-nav button {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 0; border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
}
.rev-track {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.rev-track::-webkit-scrollbar { display: none; }
.rev-card {
  width: min(340px, 85vw);
  flex-shrink: 0;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
}
.rev-card img { height: 160px; width: 100%; object-fit: cover; }
.rev-card .body { padding: 20px; }
.rev-card .obj { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-2); }
.rev-card p { margin-top: 12px; font-size: 0.875rem; line-height: 1.6; color: var(--ink-soft); }
.rev-card .meta { margin-top: 16px; display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted); }
.rev-card .meta b { color: var(--ink); }

/* FAQ */
.faq-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 0.8fr 1.2fr; } }
.faq-list {
  border-radius: 28px;
  background: var(--paper);
  padding: 0 8px;
  box-shadow: var(--shadow-card);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item button.q {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 0;
  background: none;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
}
.faq-item .a {
  display: none;
  padding: 0 16px 16px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}
.faq-item.open .a { display: block; }
.chev { width: 20px; height: 20px; flex-shrink: 0; color: var(--muted); transition: transform 0.2s; }
.faq-item.open .chev { transform: rotate(180deg); }

/* Contacts */
.contacts-card {
  display: grid;
  overflow: hidden;
  border-radius: 32px;
  background: var(--dark);
  color: var(--paper);
  box-shadow: var(--shadow-card);
}
@media (min-width: 1024px) { .contacts-card { grid-template-columns: 1fr 1fr; } }
.contacts-card .copy { padding: 32px; }
@media (min-width: 768px) { .contacts-card .copy { padding: 48px; } }
.contacts-card dl { margin: 32px 0 0; display: grid; gap: 20px; }
.contacts-card .row { display: flex; gap: 12px; }
.contacts-card .ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(244, 246, 248, 0.08);
  color: var(--accent);
}
.contacts-card dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 246, 248, 0.45);
}
.contacts-card a.mail { font-weight: 700; color: var(--paper); text-decoration: none; }
.msg-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 8px; }
.msg-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--paper);
  text-decoration: none;
}
.msg-btn img { width: 24px; height: 24px; border-radius: 6px; }
.msg-btn.max { background: var(--max); }
.msg-btn.tg { background: var(--tg); }
.contacts-photo { position: relative; min-height: 280px; }
.contacts-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contacts-photo .shade { position: absolute; inset: 0; background: rgba(16, 19, 24, 0.25); }

/* Documents — no GOST / no download-site buttons */
#documents { padding: 16px 0 40px; text-align: center; }
@media (min-width: 768px) { #documents { padding: 16px 0 96px; } }
.docs-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.docs-grid {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  text-align: left;
}
@media (min-width: 640px) { .docs-grid { grid-template-columns: 1fr 1fr; } }
.doc-item {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 12px;
  border: 0;
  border-radius: 16px;
  background: var(--paper);
  padding: 12px;
  text-align: left;
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
}
.doc-item .ico {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-2);
}
.doc-item b { display: block; font-size: 0.875rem; font-weight: 800; color: var(--ink); }
.doc-item span.t { display: block; margin-top: 2px; font-size: 0.75rem; color: var(--muted); }

/* Footer */
footer.site {
  border-top: 1px solid var(--line);
  background: var(--dark);
  color: var(--paper);
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}
@media (min-width: 768px) { footer.site { padding-bottom: 0; } }
.foot-grid {
  display: grid;
  gap: 40px;
  padding: 56px 0;
}
@media (min-width: 768px) { .foot-grid { grid-template-columns: 1fr 1fr 1fr; } }
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand .name { font-family: var(--display); font-size: 1.25rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.foot-brand .sub { margin-top: 2px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244, 246, 248, 0.5); }
footer.site .about { margin-top: 12px; max-width: 20rem; font-size: 0.875rem; line-height: 1.6; color: rgba(244, 246, 248, 0.7); }
footer.site .k {
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 246, 248, 0.45);
}
footer.site a.mail { display: block; margin-top: 4px; color: var(--accent); text-decoration: none; }
.foot-actions { display: flex; flex-direction: column; gap: 12px; }
.outline-light {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(244, 246, 248, 0.25);
  padding: 0 20px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  background: transparent;
}
.legal { font-size: 0.75rem; color: rgba(244, 246, 248, 0.45); }
.legal a { color: rgba(244, 246, 248, 0.7); }

/* Mobile bar */
#mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 40;
  border-top: 1px solid var(--line);
  background: rgba(242, 242, 240, 0.94);
  padding: 8px 12px calc(10px + env(safe-area-inset-bottom));
  backdrop-filter: blur(12px);
}
@media (min-width: 768px) { #mobile-bar { display: none; } }
#mobile-bar .row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
#mobile-bar button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
#mobile-bar .calc { background: var(--bg-soft); color: var(--ink); }

/* Modal + toast + preview */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(18, 21, 26, 0.5);
}
@media (min-width: 768px) {
  .overlay { align-items: center; padding: 24px; }
}
.modal {
  position: relative;
  display: flex;
  max-height: 92svh;
  width: 100%;
  flex-direction: column;
  overflow: auto;
  border-radius: 22px 22px 0 0;
  background: var(--paper);
  padding: 20px 20px calc(16px + env(safe-area-inset-bottom));
  box-shadow: var(--shadow-pop);
}
@media (min-width: 768px) {
  .modal {
    max-height: min(88vh, 680px);
    width: min(440px, 100%);
    border-radius: 22px;
    padding: 24px;
  }
}
.modal.wide { width: min(640px, 100%); }
.modal h2 { padding-right: 48px; font-size: 1.35rem; font-weight: 600; text-transform: uppercase; }
.modal .sub { margin: 4px 0 16px; font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.modal .x {
  position: absolute;
  right: 14px; top: 14px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 0; border-radius: 12px;
  background: var(--bg-soft);
}
.form-grid { display: grid; gap: 12px; }
.preview-pages { display: grid; gap: 12px; }
.preview-pages img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.back-link {
  margin-bottom: 12px;
  background: none;
  border: 0;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-2);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(88px + env(safe-area-inset-bottom));
  z-index: 90;
  transform: translateX(-50%);
  max-width: min(420px, calc(100vw - 24px));
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-pop);
}
@media (min-width: 768px) { .toast { bottom: 24px; } }

.hidden { display: none !important; }

.phone-num {
  font-size: 1.15rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.phone-num button.mask {
  display: inline;
  border: 0;
  background: none;
  padding: 0;
  letter-spacing: 0.2em;
  color: var(--accent);
  font: inherit;
  font-weight: 800;
}
.fail {
  display: inline-flex;
  border-radius: 16px;
  border: 1px solid rgba(180, 35, 24, 0.35);
  background: #fdecea;
  padding: 10px 16px;
}
.fail p {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--danger);
}
.shake-err { animation: shake-err 0.48s ease-in-out; }
@keyframes shake-err {
  0%, 100% { transform: translateX(0); }
  12% { transform: translateX(-7px); }
  24% { transform: translateX(7px); }
  36% { transform: translateX(-5px); }
  48% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  72% { transform: translateX(3px); }
  84% { transform: translateX(-1px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
