/* NBR Landing — design tokens & layout */
:root {
  --accent: #BD0603;
  --accent-dark: #8a0402;
  --accent-soft: #fbe5e5;
  --bg: #ffffff;
  --bg-soft: #f4f5f7;
  --bg-dark: #001427;
  --bg-dark-2: #07223a;
  --ink: #001427;
  --ink-2: #0d2540;
  --ink-3: #4a5a6e;
  --ink-4: #8a95a3;
  --line: rgba(0, 20, 39, 0.10);
  --line-2: rgba(0, 20, 39, 0.18);
  --line-dark: rgba(255, 255, 255, 0.10);
  --radius: 4px;
  --radius-lg: 10px;
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --font-display: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}
.eyebrow.on-dark { color: rgba(255,255,255,0.6); }

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(40px, 5.6vw, 80px); font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Top bar ===== */
.topbar {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  border-bottom: 1px solid var(--line-dark);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 24px;
}
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { opacity: 0.5; }
.topbar-right { display: inline-flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 2px;
  background: rgba(255,255,255,0.04);
}
.lang-btn {
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  border-radius: 999px;
}
.lang-btn.active { background: #fff; color: var(--ink); }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 32px;
}
.header-logo { display: inline-flex; align-items: center; gap: 10px; }
.nbr-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.nbr-logo-shell.inverse {
  background: transparent;
}
.nbr-logo-img {
  display: block;
  width: auto;
  height: var(--logo-height, 42px);
  object-fit: contain;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  position: relative;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--accent);
}
.header-actions { display: flex; gap: 10px; align-items: center; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #fff;
  color: var(--ink);
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.98);
}
.mobile-menu-inner {
  padding-top: 12px;
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a:not(.btn) {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}
.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 14px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  border-radius: var(--radius);
  transition: all 0.15s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: var(--ink); color: #fff; }
.btn-secondary:hover { background: var(--ink-2); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost { color: var(--ink-2); }
.btn-ghost:hover { color: var(--ink); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1fb957; }
.btn-lg { padding: 16px 26px; font-size: 15px; }

/* ===== Gateway choose page ===== */
.choose-page-body {
  background: var(--bg-dark);
  color: #fff;
}
.choose-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
}
.choose-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 800px 600px at 20% 30%, rgba(189, 6, 3, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 80% 70%, rgba(189, 6, 3, 0.10) 0%, transparent 60%);
}
.choose-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.025) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.025) 100%);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
}
.choose-page > * {
  position: relative;
  z-index: 1;
}
.choose-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}
.choose-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.choose-logo,
.choose-logo .nbr-logo-shell {
  display: inline-flex;
  align-items: center;
}
.choose-lang {
  border-color: var(--line-dark);
  background: rgba(255,255,255,0.04);
}
.choose-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) 0;
}
.choose {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  animation: choose-fade-in 0.8s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes choose-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.choose-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 8px 14px;
  border: 1px solid rgba(189, 6, 3, 0.3);
  border-radius: 999px;
  background: rgba(189, 6, 3, 0.15);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.choose-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(189, 6, 3, 0.2);
  animation: choose-pulse 2s ease-in-out infinite;
}
@keyframes choose-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(189, 6, 3, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(189, 6, 3, 0.05); }
}
.choose-title {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.choose-title .accent {
  color: var(--accent);
}
.choose-sub {
  max-width: 580px;
  margin: 20px auto 0;
  color: rgba(255,255,255,0.75);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}
.choose-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.choose-card {
  position: relative;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  padding: 40px 36px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  text-align: left;
  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.4s ease;
  animation: choose-card-in 0.7s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes choose-card-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.choose-card:nth-child(1) { animation-delay: 0.15s; }
.choose-card:nth-child(2) { animation-delay: 0.28s; }
.choose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, var(--card-glow, var(--accent)) 0%, transparent 60%);
  opacity: 0;
  filter: blur(30px);
  transition: opacity 0.4s ease;
}
.choose-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0,20,39,0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.choose-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-glow, var(--accent));
  background: rgba(255,255,255,0.07);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.choose-card:hover::before { opacity: 0.5; }
.choose-card:hover::after { opacity: 1; }
.choose-card-wholesale { --card-glow: var(--accent); }
.choose-card-retail { --card-glow: #4a90e2; }
.choose-card-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  margin-bottom: 28px;
  padding: 6px 11px;
  border: 1px solid var(--card-glow);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--card-glow);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.choose-card-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--card-glow);
}
.choose-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  color: var(--card-glow);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), background 0.3s ease;
}
.choose-card:hover .choose-card-icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
}
.choose-card-title {
  font-size: clamp(28px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.choose-card-desc {
  flex: 1;
  margin-top: 16px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.55;
}
.choose-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.choose-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.45;
}
.choose-card-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--card-glow);
}
.choose-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.choose-card-cta-text {
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}
.choose-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-glow);
  color: #fff;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.choose-card:hover .choose-card-arrow {
  transform: translateX(6px) rotate(-45deg);
}
.choose-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line-dark);
}
.choose-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.choose-trust-item svg {
  flex-shrink: 0;
  color: var(--accent);
}
.choose-footer {
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}
.choose-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.choose-footer a {
  color: rgba(255,255,255,0.7);
}
.choose-footer a:hover {
  color: #fff;
}
@media (hover: none) {
  .choose-card {
    border-color: color-mix(in srgb, var(--card-glow) 70%, transparent);
    background: color-mix(in srgb, var(--card-glow) 18%, rgba(255,255,255,0.05));
  }
  .choose-card::before {
    opacity: 0.32;
  }
  .choose-card-arrow {
    background: var(--card-glow);
  }
  .choose-card:active {
    transform: scale(0.98);
  }
}
@media (max-width: 960px) {
  .choose-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .choose-card {
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .choose-header {
    padding: 18px 0;
  }
  .choose-logo .nbr-logo-img {
    height: 32px;
  }
  .choose-main {
    padding: 28px 0 32px;
  }
  .choose-eyebrow {
    margin-bottom: 20px;
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .choose-title {
    font-size: 30px;
    line-height: 1.1;
  }
  .choose-sub {
    margin-top: 16px;
    padding: 0 4px;
    font-size: 16px;
  }
  .choose-cards {
    margin-top: 32px;
    gap: 14px;
  }
  .choose-card {
    padding: 28px 24px;
    border-radius: 14px;
  }
  .choose-card-tag {
    margin-bottom: 22px;
    padding: 6px 11px;
    font-size: 10px;
  }
  .choose-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
  .choose-card-icon svg {
    width: 28px;
    height: 28px;
  }
  .choose-card-title {
    font-size: 26px;
    line-height: 1.15;
  }
  .choose-card-desc {
    margin-top: 14px;
    font-size: 15px;
  }
  .choose-card-list {
    margin-top: 18px;
    gap: 11px;
  }
  .choose-card-list li {
    font-size: 15px;
  }
  .choose-card-cta {
    margin-top: 24px;
    padding-top: 20px;
  }
  .choose-card-cta-text {
    font-size: 16px;
  }
  .choose-card-arrow {
    width: 44px;
    height: 44px;
  }
  .choose-trust {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    margin-top: 36px;
    padding-top: 28px;
  }
  .choose-trust-item {
    font-size: 14px;
  }
  .choose-footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 12px;
  }
}
@media (max-width: 380px) {
  .choose-card {
    padding: 26px 20px;
  }
  .choose-title {
    font-size: 26px;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--bg-soft);
  padding: clamp(48px, 7vw, 96px) 0 clamp(32px, 5vw, 72px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(12,12,13,0.04) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(12,12,13,0.04) 100%);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-since {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3);
  padding: 4px 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px;
}
.hero-since-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.hero h1 .accent { color: var(--accent); }
.hero h1 .underlined {
  position: relative; display: inline-block;
}
.hero h1 .underlined::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 4px; height: 14px;
  background: var(--accent); opacity: 0.18;
  z-index: -1;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 560px;
  margin-top: 24px;
  line-height: 1.5;
}
.hero-cta-row {
  display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap;
}
.hero-trust {
  display: flex; gap: 24px; margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-2);
}
.hero-trust-item svg { color: var(--accent); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, #001427 0%, #07223a 52%, #0b2d48 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 20, 39, 0.16);
  box-shadow: 0 26px 80px -46px rgba(0, 20, 39, 0.85);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.06) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.06) 100%);
  background-size: 56px 56px;
  opacity: 0.42;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.045) 0 18px, transparent 18px 44px);
  opacity: 0.75;
}
.hero-visual-grid,
.hero-console,
.hero-network,
.hero-kpi-grid {
  position: absolute;
  z-index: 1;
}
.hero-visual-grid {
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(189,6,3,0.22) 0 2px, transparent 3px) 0 0 / 38px 38px;
  opacity: 0.45;
}
.hero-console {
  left: 28px;
  right: 28px;
  top: 28px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(0, 20, 39, 0.78);
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-console-head > div {
  text-align: right;
  display: grid;
  gap: 3px;
}
.hero-console-head span,
.hero-console-status span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-console-head strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0;
}
.hero-console-status {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 4px;
  align-items: center;
}
.hero-console-status strong {
  grid-column: 2;
  font-size: 14px;
  color: #fff;
}
.hero-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(189,6,3,0.18);
}
.hero-network {
  inset: 0;
}
.hero-hub {
  position: absolute;
  left: 50%;
  top: 49%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: rgba(0,20,39,0.82);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  box-shadow:
    0 0 0 14px rgba(189,6,3,0.14),
    0 0 0 42px rgba(189,6,3,0.06);
}
.hero-node {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid rgba(0,20,39,0.9);
  box-shadow: 0 0 0 5px rgba(189,6,3,0.16);
}
.hero-node.n1 { left: 24%; top: 36%; }
.hero-node.n2 { right: 25%; top: 38%; }
.hero-node.n3 { left: 34%; bottom: 28%; }
.hero-line {
  position: absolute;
  height: 1px;
  background: rgba(189,6,3,0.46);
  transform-origin: right center;
}
.hero-line.l1 {
  left: 25%;
  top: 38%;
  width: 28%;
  transform: rotate(15deg);
}
.hero-line.l2 {
  right: 28%;
  top: 42%;
  width: 23%;
  transform: rotate(-26deg);
}
.hero-line.l3 {
  left: 36%;
  bottom: 34%;
  width: 22%;
  transform: rotate(-12deg);
}
.hero-kpi-grid {
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 10px;
}
.hero-kpi {
  min-height: 92px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(12,12,13,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
}
.hero-kpi.primary {
  background: #fff;
  color: var(--ink);
}
.hero-kpi strong {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 0.95;
  color: var(--accent);
}
.hero-kpi span {
  color: inherit;
  opacity: 0.72;
  font-size: 12px;
  line-height: 1.25;
}

/* ===== Hero brands panel ===== */
.hero-brands-panel {
  position: absolute;
  z-index: 1;
  inset: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(0,20,39,0.82);
  backdrop-filter: blur(10px);
  color: #fff;
}
.hero-brands-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-brands-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-brands-count {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2px 10px;
}
.hero-brands-list {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-content: start;
}
.hero-brand-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}
.hero-brand-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}
.hero-brand-item strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero-brand-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero-brand-item.exclusive .hero-brand-badge { color: #4caf8a; }
.hero-brand-item.exclusive { border-color: rgba(76,175,138,0.25); }
.hero-brand-item.exclusive:hover { border-color: rgba(76,175,138,0.45); }
.hero-brand-item.official .hero-brand-badge { color: var(--accent); }
.hero-brands-nbr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-brands-nbr span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ===== WhatsApp news channel ===== */
.wa-news {
  background: var(--bg-soft);
  padding: 0 0 clamp(36px, 5vw, 64px);
}
.wa-news-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1.1fr) minmax(260px, 0.8fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(37,211,102,0.14), rgba(0,20,39,0) 40%),
    var(--bg-dark);
  color: #fff;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  box-shadow: 0 24px 60px -36px rgba(0,20,39,0.6);
}
.wa-news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.06) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.06) 100%);
  background-size: 58px 58px;
  opacity: 0.7;
}
.wa-news-card > * {
  position: relative;
  z-index: 1;
}
.wa-news-mark {
  display: inline-flex;
  align-items: center;
}
.wa-news-kicker {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #25d366;
}
.wa-news-copy h2 {
  font-size: clamp(24px, 2.4vw, 36px);
  color: #fff;
}
.wa-news-copy p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.55;
}
.wa-news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wa-news-list span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.84);
  font-size: 12px;
}
.wa-news-btn {
  white-space: nowrap;
}

/* ===== Stats bar ===== */
.stats {
  background: var(--bg-dark);
  color: #fff;
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.stat-num .plus { color: var(--accent); font-size: 0.6em; }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  max-width: 220px;
  line-height: 1.4;
}

/* ===== Sections ===== */
.section {
  padding: clamp(64px, 8vw, 120px) 0;
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head-text { max-width: 720px; }
.section-head h2 { margin-top: 12px; }
.section-head p { color: var(--ink-3); font-size: 17px; margin-top: 12px; max-width: 600px; }

/* ===== Why ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-item {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
  background: #fff;
  transition: background 0.2s ease;
}
.why-item:hover { background: var(--bg-soft); }
.why-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.why-item h3 { font-size: 22px; }
.why-item p { color: var(--ink-3); font-size: 15px; line-height: 1.55; }
.why-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 8px;
}

/* ===== Brands ===== */
.section-brands { background: var(--bg-soft); }
.own-brand {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 0;
  background:
    linear-gradient(135deg, #ffffff 0%, #fbfcfd 58%, #f6f8fb 100%);
  border: 1px solid rgba(0, 20, 39, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -38px rgba(0, 20, 39, 0.28);
  position: relative;
  isolation: isolate;
}
.own-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(0,20,39,0.04) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(0,20,39,0.04) 100%);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.35), rgba(0,0,0,0.9));
  pointer-events: none;
}
.own-brand::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(189,6,3,0.08), transparent);
  transform: skewX(-16deg);
  animation: ownBrandSweep 7s ease-in-out infinite;
  pointer-events: none;
}
.own-brand-copy {
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  z-index: 1;
}
.own-brand-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(189,6,3,0.92);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.own-brand h3 {
  max-width: 620px;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--ink);
}
.own-brand p {
  max-width: 660px;
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
}
.own-brand-proof {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}
.own-brand-proof-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-3);
  font-size: 14px;
}
.own-brand-proof-item span {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.own-brand-panel {
  position: relative;
  min-height: 320px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(189, 6, 3, 0.12), rgba(0,20,39,0)),
    var(--bg-dark);
  border-left: 1px solid rgba(0,20,39,0.1);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.own-brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.09) 0 1px, transparent 1px 32px);
  animation: ownBrandDrift 16s linear infinite;
  opacity: 0.72;
}
.own-brand-panel > * {
  position: relative;
  z-index: 1;
}
.own-brand-mark {
  width: fit-content;
  padding: 4px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.own-brand-mark .nbr-logo-img {
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.28));
}
.own-brand-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.own-brand-lines span {
  position: absolute;
  left: 12%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
  animation: ownBrandLine 5.5s ease-in-out infinite;
}
.own-brand-lines span:nth-child(1) { top: 27%; }
.own-brand-lines span:nth-child(2) { top: 52%; animation-delay: 1.6s; }
.own-brand-lines span:nth-child(3) { top: 76%; animation-delay: 3.1s; }
.own-brand-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.own-brand-products span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  box-shadow: none;
  backdrop-filter: blur(8px);
}
@keyframes ownBrandSweep {
  0%, 38% { left: -38%; opacity: 0; }
  48% { opacity: 1; }
  68%, 100% { left: 118%; opacity: 0; }
}
@keyframes ownBrandDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-56px, 56px, 0); }
}
@keyframes ownBrandLine {
  0%, 100% { opacity: 0; transform: translateX(-20px); }
  42%, 58% { opacity: 1; transform: translateX(24px); }
}
@media (prefers-reduced-motion: reduce) {
  .own-brand::after,
  .own-brand-panel::before,
  .own-brand-lines span,
  .car-brand-rail,
  .car-brands-stage,
  .car-brands-stage::before,
  .car-brands-glow,
  .car-brands-scan {
    animation: none;
  }
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.brand-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 200px;
  position: relative;
  transition: all 0.18s ease;
}
.brand-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.brand-card:focus-visible,
.own-brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.brand-card.exclusive {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff 0%, #fff5f5 100%);
}
.brand-card.official { border-color: rgba(217, 32, 39, 0.3); }
.brand-card-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.brand-card-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.brand-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 600;
}
.brand-badge.exclusive { background: var(--accent); color: #fff; }
.brand-badge.official { background: var(--ink); color: #fff; }
.brand-badge.partner { background: var(--bg-soft); color: var(--ink-3); border: 1px solid var(--line); }
.brand-badge.own { background: var(--ink); color: #fff; }
.brand-card.own { border-color: rgba(0,0,0,0.18); }
.brand-card-logo {
  flex: 1;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 12px 0;
}
.brand-card-desc {
  font-size: 12px; color: var(--ink-3); line-height: 1.45;
}

/* ===== Coverage / Map ===== */
.section-coverage {
  background: var(--bg-dark);
  color: #fff;
}
.section-coverage h2 { color: #fff; }
.section-coverage .section-head p { color: rgba(255,255,255,0.6); }

.kz-map-wrap {
  position: relative;
  width: 100%;
  background: var(--bg-dark-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.kz-map-svg {
  width: 100%;
  display: block;
  height: auto;
}
.kz-map-info {
  position: absolute;
  top: 24px; right: 24px;
  width: 280px;
  pointer-events: none;
}
.kz-info-card {
  background: rgba(12,12,13,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 18px;
  color: #fff;
}
.kz-info-empty-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kz-info-legend { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.kz-leg-row { display: inline-flex; align-items: center; gap: 10px; }
.kz-leg-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.kz-leg-dot.hub { background: #666; }
.kz-leg-dot.free { background: var(--accent); }
.kz-leg-dot.paid { background: #666; }
.kz-info-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  margin-bottom: 14px;
}
.kz-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
}
.kz-info-label { color: rgba(255,255,255,0.5); }
.kz-info-value { font-weight: 600; }
.kz-info-value.free { color: var(--accent); }
.kz-info-value.paid { color: rgba(255,255,255,0.7); }
.kz-info-cond {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 14px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.kz-info-cond-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255,255,255,0.35);
}
.kz-info-note {
  margin-top: 10px;
  padding: 9px 12px;
  background: rgba(217,32,39,0.1);
  border: 1px solid rgba(217,32,39,0.22);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.5;
}
.kz-info-hub {
  margin-top: 12px;
  padding: 10px;
  background: rgba(217,32,39,0.12);
  border-radius: 4px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}
.coverage-cities {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.coverage-city {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  width: 100%;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}
.coverage-city:hover,
.coverage-city.active {
  border-color: var(--accent);
  background: rgba(189,6,3,0.08);
  color: #fff;
}
.coverage-city.hub { border-color: rgba(189,6,3,0.75); color: #fff; }
.coverage-city.hub.active { border-color: var(--accent); }
.coverage-city-days {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--accent);
}

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reviews-grid.single {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  transition: all 0.2s ease;
}
.review-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(12,12,13,0.15);
}
.review-stars { display: inline-flex; gap: 2px; color: var(--accent); }
.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  flex: 1;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--ink-2);
  font-size: 14px;
}
.review-name { font-weight: 600; font-size: 14px; }
.review-meta { font-size: 12px; color: var(--ink-3); }

/* ===== Supported car brands ===== */
.section-car-brands {
  background: linear-gradient(180deg, #fff 0%, #fff 58%, var(--bg-soft) 100%);
  overflow: hidden;
  padding: clamp(40px, 5vw, 72px) 0;
}
.car-brands-head {
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 24px;
}
.section-car-brands .section-head-text {
  max-width: 560px;
}
.section-car-brands .section-head h2 {
  max-width: 540px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.06;
  margin-top: 8px;
}
.section-car-brands .section-head p {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
}
.car-brands-count {
  min-width: 132px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: grid;
  gap: 4px;
  box-shadow: 0 18px 46px -34px rgba(0,20,39,0.28);
}
.car-brands-count strong {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 0.95;
  color: var(--accent);
}
.car-brands-count span {
  color: var(--ink-3);
  font-size: 10px;
  line-height: 1.3;
}
.car-brands-stage {
  position: relative;
  min-height: clamp(148px, 14vw, 180px);
  display: flex;
  align-items: center;
  padding: 22px 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(189,6,3,0.16), rgba(0,20,39,0) 34%),
    radial-gradient(circle at 70% 22%, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(135deg, #001427 0%, #06213a 54%, #001427 100%);
  border: 1px solid rgba(0,20,39,0.14);
  overflow: hidden;
  box-shadow: 0 28px 80px -50px rgba(0,20,39,0.8);
  isolation: isolate;
  animation: carStageIn 0.7s ease both;
}
.car-brands-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.06) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.06) 100%);
  background-size: 64px 64px;
  opacity: 0.55;
  animation: carGridDrift 18s linear infinite;
}
.car-brands-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #001427 0%, rgba(0,20,39,0) 18%, rgba(0,20,39,0) 82%, #001427 100%);
  pointer-events: none;
  z-index: 4;
}
.car-brands-glow {
  position: absolute;
  z-index: 0;
  width: clamp(260px, 34vw, 440px);
  height: clamp(260px, 34vw, 440px);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(189,6,3,0.32), transparent 66%);
  pointer-events: none;
  animation: carGlowPulse 4.8s ease-in-out infinite;
}
.car-brands-scan {
  position: absolute;
  z-index: 1;
  inset: -30% auto -30% -18%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: skewX(-16deg);
  pointer-events: none;
  animation: carScan 6.6s ease-in-out infinite;
}
.car-brand-rail {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: none;
  padding-right: 12px;
  overflow: visible;
  animation: carRail 40s linear infinite;
  will-change: transform;
}
.car-brands-stage:hover .car-brand-rail,
.car-brands-stage:focus-within .car-brand-rail {
  animation-play-state: paused;
}
.section-car-brands .car-brand-card {
  width: 190px;
  min-height: 78px;
  padding: 9px 10px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055));
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  position: relative;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 60px -42px rgba(0,0,0,0.95);
  transform: translateZ(0);
  text-decoration: none;
  outline: none;
  backdrop-filter: blur(10px);
  overflow: visible;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.section-car-brands .car-brand-card:nth-child(2n) {
  margin-top: 6px;
}
.section-car-brands .car-brand-card:hover,
.section-car-brands .car-brand-card:focus-visible {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 30px 74px -44px rgba(0,0,0,0.96);
  transform: translateY(-4px) translateZ(0);
}
.section-car-brands .car-brand-card:focus-visible {
  box-shadow:
    0 0 0 3px rgba(189,6,3,0.18),
    0 30px 74px -44px rgba(0,0,0,0.96);
}
.section-car-brands .brand-logo-tile {
  width: 52px;
  height: 40px;
  padding: 6px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  overflow: visible;
}
.section-car-brands .brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(var(--brand-logo-scale, 1));
  transform-origin: center;
  transition: filter 0.28s ease;
}
.section-car-brands .car-brand-card:hover .brand-logo,
.section-car-brands .car-brand-card:focus-visible .brand-logo {
  filter: saturate(1.08) contrast(1.04);
}
.section-car-brands .brand-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}
.section-car-brands .car-brand-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.section-car-brands .car-brand-card h3::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin-top: 6px;
  background: var(--brand-accent, var(--accent));
}
.section-car-brands .car-brand-card p {
  color: rgba(255,255,255,0.68);
  font-size: 10px;
  line-height: 1.35;
}
.car-brands-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(189,6,3,0.12), rgba(0,20,39,0) 38%),
    var(--bg-dark);
  color: #fff;
  box-shadow: 0 24px 64px -44px rgba(0,20,39,0.8);
}
.car-brands-contact-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.car-brands-contact-copy strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.car-brands-contact-copy span {
  position: relative;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.35;
}
.car-brands-contact-copy span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  margin-right: 16px;
  background: rgba(255,255,255,0.18);
  vertical-align: -3px;
}
.car-brands-contact-btn {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
}
@keyframes carRail {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes carStageIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes carGridDrift {
  from { background-position: 0 0; }
  to { background-position: 64px 64px; }
}
@keyframes carGlowPulse {
  0%, 100% { opacity: 0.78; transform: translate(-50%, -50%) scale(0.94); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}
@keyframes carScan {
  0%, 34% { left: -24%; opacity: 0; }
  44% { opacity: 1; }
  68%, 100% { left: 118%; opacity: 0; }
}

/* ===== Registration guide ===== */
.section-registration {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-registration::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,32,39,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
  position: relative;
}
.registration-grid h2 { color: #fff; max-width: 560px; }
.registration-grid .section-head-text p {
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
}
.registration-steps {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}
.registration-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  line-height: 1.5;
}
.registration-step span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  margin-top: 3px;
}
.registration-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.video-placeholder.primary { grid-column: 1 / -1; }
.video-placeholder {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(189,6,3,0.22), rgba(0,20,39,0.95)),
    repeating-linear-gradient(45deg, #07223a 0 18px, #001427 18px 36px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-embed {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.08) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.08) 100%);
  background-size: 44px 44px;
  opacity: 0.45;
  pointer-events: none;
}
.video-play {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(189,6,3,0.35);
}
.video-tag {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.video-copy {
  padding: 18px;
}
.video-copy h3 {
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}
.video-copy p {
  margin-top: 8px;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.55;
}
.registration-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(189,6,3,0.34);
  border-radius: var(--radius);
  background: rgba(189,6,3,0.1);
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.45;
}
.registration-note svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== FAQ ===== */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 600;
  color: var(--ink);
}
.faq-q:hover { color: var(--accent); }
.faq-toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px; line-height: 1.6; color: var(--ink-3);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
  padding-right: 56px;
}

/* ===== Privacy page ===== */
.privacy-page {
  background: var(--bg-soft);
}
.privacy-hero {
  padding: clamp(48px, 7vw, 92px) 0 clamp(34px, 5vw, 64px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.privacy-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 600;
}
.privacy-back:hover {
  color: var(--accent);
}
.privacy-hero h1 {
  max-width: 900px;
  margin-top: 14px;
  font-size: clamp(38px, 5vw, 68px);
}
.privacy-hero p {
  max-width: 920px;
  margin-top: 22px;
  color: var(--ink-2);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
}
.privacy-content {
  padding: clamp(40px, 7vw, 88px) 0;
}
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.privacy-aside {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 12px;
}
.privacy-aside p {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}
.privacy-aside a {
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  word-break: break-word;
}
.privacy-aside a:hover {
  color: var(--accent);
}
.privacy-document {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 54px);
}
.privacy-section {
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.privacy-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.privacy-section h2 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  margin-bottom: 14px;
}
.privacy-section p,
.privacy-section li {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.75;
}
.privacy-section ul {
  margin: 0;
  padding-left: 20px;
}
.privacy-section p + ul {
  margin-top: 8px;
}
.privacy-section li + li {
  margin-top: 8px;
}
.privacy-contacts {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
}
.privacy-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.privacy-contact-list a {
  display: inline-flex;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
}
.privacy-contact-list a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand h4 { color: #fff; margin-bottom: 16px; font-size: 14px; }
.footer-tagline { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-col h5 {
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

/* ===== Floating WhatsApp ===== */
.fab-wa {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
  z-index: 40;
  transition: transform 0.2s ease;
}
.fab-wa:hover { transform: scale(1.08); }

/* ===== Marquee ===== */
.marquee {
  background: var(--accent);
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 36s linear infinite;
  padding-right: 48px;
}
.marquee-item { display: inline-flex; gap: 48px; align-items: center; }
.marquee-item::after { content: "■"; color: rgba(255,255,255,0.5); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  :root { --pad: clamp(18px, 4vw, 36px); }
  h1 { font-size: clamp(40px, 8vw, 68px); }
  h2 { font-size: clamp(30px, 6vw, 46px); }
  .topbar-inner { gap: 14px; }
  .topbar-left { gap: 14px; }
  .header-inner { padding: 12px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-sub { max-width: 720px; }
  .hero-visual { aspect-ratio: 16/10; width: min(100%, 760px); max-width: none; }
  .hero-kpi { min-height: 86px; }
  .wa-news-card { grid-template-columns: auto minmax(0, 1fr); }
  .wa-news-list, .wa-news-btn { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { padding: 32px 28px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .own-brand { grid-template-columns: 1fr; }
  .own-brand-panel { min-height: 260px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .registration-grid { grid-template-columns: 1fr; gap: 32px; }
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-aside { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .coverage-cities { grid-template-columns: repeat(2, 1fr); }
  .nav, .header-actions { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu.open { display: block; }
  .kz-map-info { position: static; width: auto; padding: 16px; }
}

@media (max-width: 760px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .topbar-left {
    width: 100%;
    display: grid;
    gap: 8px;
  }
  .topbar-right {
    width: 100%;
    justify-content: space-between;
  }
  .topbar-item {
    align-items: flex-start;
    line-height: 1.35;
  }
  .mobile-menu-actions .btn,
  .hero-cta-row .btn {
    width: 100%;
  }
  .hero {
    padding-top: 42px;
  }
  .hero-grid {
    gap: 28px;
  }
  .hero-eyebrow-row {
    margin-bottom: 20px;
  }
  .hero-sub {
    margin-top: 18px;
  }
  .hero-cta-row {
    flex-direction: column;
    margin-top: 28px;
  }
  .hero-trust {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    padding-top: 22px;
  }
  .section {
    padding: 56px 0;
  }
  .section-head {
    margin-bottom: 32px;
  }
  .wa-news-card {
    grid-template-columns: 1fr;
  }
  .wa-news-btn {
    width: 100%;
  }
  .stats {
    padding: 38px 0;
  }
  .brand-card {
    min-height: auto;
  }
  .kz-map-wrap { overflow: hidden; }
  .kz-map-svg { min-width: 0; pointer-events: none; }
  .kz-map-info {
    min-width: 0;
  }
  .coverage-cities {
    grid-template-columns: 1fr;
  }
  .car-brands-contact {
    align-items: stretch;
    flex-direction: column;
    border-radius: 8px;
    padding: 18px;
  }
  .car-brands-contact-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .car-brands-contact-copy strong {
    white-space: normal;
  }
  .car-brands-contact-copy span::before {
    display: none;
  }
  .car-brands-contact-btn {
    width: 100%;
  }
  .car-brands-stage {
    border-radius: 8px;
    min-height: 150px;
    padding: 20px 0;
  }
  .section-car-brands .car-brand-card {
    width: 178px;
    min-height: 76px;
    padding: 9px;
    gap: 8px;
  }
  .section-car-brands .brand-logo-tile {
    width: 50px;
    height: 38px;
    padding: 6px;
  }
}

@media (max-width: 640px) {
  :root { --pad: 18px; }
  h1 { font-size: clamp(34px, 11vw, 46px); }
  h2 { font-size: clamp(28px, 9vw, 38px); }
  h3 { font-size: 21px; }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .btn {
    min-height: 46px;
    white-space: normal;
    text-align: center;
  }
  .btn-lg {
    min-height: 52px;
    padding: 14px 18px;
    width: 100%;
  }
  .header-logo .nbr-logo-img {
    height: 34px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .mobile-menu a:not(.btn) {
    font-size: 16px;
  }
  .hero-since {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }
  .stats-grid { grid-template-columns: 1fr; gap: 18px; }
  .stat-item {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-dark);
  }
  .stat-item:last-child { border-bottom: 0; padding-bottom: 0; }
  .stat-num { font-size: 44px; }
  .why-item { padding: 26px 20px; }
  .brands-grid { grid-template-columns: 1fr; }
  .brand-card { padding: 20px; }
  .brand-card-logo svg { max-width: 100%; }
  .brand-card-top { align-items: flex-start; }
  .brand-badge { text-align: right; }
  .own-brand-copy { padding: 26px 20px; }
  .own-brand h3 { font-size: 28px; }
  .own-brand p { font-size: 15px; }
  .own-brand-proof-item { font-size: 13px; }
  .own-brand-panel {
    min-height: 300px;
    padding: 24px 20px;
  }
  .own-brand-products {
    display: grid;
    grid-template-columns: 1fr;
  }
  .registration-videos { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .topbar-left { font-size: 12px; gap: 8px; }
  .topbar-right { gap: 10px; }
  .wa-news-mark .nbr-logo-img { height: 38px; }
  .own-brand-products span { font-size: 12px; }
  .privacy-document { padding: 22px; }
  .privacy-contact-list { flex-direction: column; }
  .hero-visual {
    aspect-ratio: auto;
    min-height: 0;
  }
  .hero-brands-panel {
    inset: 16px;
    padding: 16px;
    gap: 12px;
  }
  .hero-brands-list {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .hero-brand-item {
    padding: 10px 12px;
  }
  .hero-brand-item strong {
    font-size: 14px;
  }
  .registration-step {
    font-size: 14px;
  }
  .video-copy h3 {
    font-size: 18px;
  }
  .faq-q {
    gap: 14px;
    padding: 20px 0;
  }
  .faq-item.open .faq-a {
    padding-right: 0;
  }
  .footer {
    padding-top: 48px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .fab-wa {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 420px) {
  :root { --pad: 16px; }
  .topbar-right {
    align-items: flex-start;
    flex-direction: column;
  }
  .lang-toggle {
    align-self: flex-start;
  }
  .hero-visual {
    padding: 14px;
  }
  .hero-console-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-console-head > div {
    text-align: left;
  }
  .hero-console-head strong {
    font-size: 16px;
  }
  .hero-console-status {
    margin-top: 14px;
    padding-top: 14px;
  }
  .hero-kpi {
    min-height: 62px;
    padding: 13px;
  }
  .hero-kpi strong {
    font-size: 25px;
  }
  .hero-kpi span {
    font-size: 11px;
  }
  .wa-news-card {
    padding: 20px;
  }
  .coverage-city {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .car-brands-stage {
    min-height: 142px;
    padding: 18px 0;
  }
  .car-brand-rail {
    gap: 10px;
    padding-right: 10px;
  }
  .section-car-brands .car-brand-card {
    width: 166px;
    min-height: 72px;
    padding: 8px;
    gap: 8px;
  }
  .section-car-brands .brand-logo-tile {
    width: 46px;
    height: 36px;
    padding: 5px;
  }
  .section-car-brands .car-brand-card h3 {
    font-size: 15px;
  }
  .section-car-brands .car-brand-card p {
    font-size: 10px;
  }
  .privacy-hero h1 {
    font-size: 32px;
  }
  .privacy-section p,
  .privacy-section li {
    font-size: 15px;
  }
}
