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

/* ============================================================
   ТОКЕНЫ ТЕМЫ
   Светлая («Тёплый премиум с характером») — по умолчанию.
   Тёмная — через <html data-theme="dark"> (переключатель в навигации).
   Все имена классов сохранены — скрипты/React/tweaks работают без правок.
   ============================================================ */
:root {
  /* поверхности */
  --bg:  #f6f1e9;   /* фон страницы, кремовый */
  --bg2: #efe8dc;   /* альтернативные секции  */
  --bg3: #ffffff;   /* карточки / приподнятое  */
  /* текст */
  --fg:  #211c17;   /* графит */
  --fg2: #6f6558;   /* приглушённый */
  --fg3: #a89c8b;   /* совсем тихий */
  /* акценты */
  --accent:      #c2571e;                 /* терракота — главный */
  --accent2:     #9e3f12;                 /* тёмная терракота — hover/скролл */
  --accent-soft: rgba(194, 87, 30, 0.10); /* заливка-подсветка */
  --petrol:      #1f3a34;                  /* петроль — вторичный акцент */
  --petrol-fg:   #eaf3ef;
  /* границы */
  --border:  rgba(33, 28, 23, 0.12);
  --border2: rgba(33, 28, 23, 0.20);
  /* навигация */
  --nav-bg: rgba(246, 241, 233, 0.82);
  /* hero — светлый тёплый в светлой теме */
  --hero-fg:   #241f19;
  --hero-fg2:  #6f6558;
  --hero-line: rgba(33, 28, 23, 0.10);
  --hero-glow: rgba(194, 87, 30, 0.16);
  --hero-grad: linear-gradient(180deg, #f8f3ec 0%, #ece1d1 100%);
  --hero-grid: rgba(33, 28, 23, 0.055);
  /* форма */
  --radius:    10px;
  --radius-sm: 6px;
  --shadow-sm: 0 2px 10px rgba(60, 40, 20, 0.06);
  --shadow:    0 12px 34px rgba(60, 40, 20, 0.10);
  /* шрифты */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg:  #0b0a09;
  --bg2: #131110;
  --bg3: #1a1815;
  --fg:  #f0ede8;
  --fg2: #a89e91;
  --fg3: #6a6258;
  --accent:      #e2732f;
  --accent2:     #b6521c;
  --accent-soft: rgba(226, 115, 47, 0.12);
  --petrol:      #2f5c52;
  --petrol-fg:   #eaf3ef;
  --border:  rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.15);
  --nav-bg: rgba(11, 10, 9, 0.82);
  --hero-fg:   #f0ede8;
  --hero-fg2:  #a89e91;
  --hero-line: rgba(255, 255, 255, 0.05);
  --hero-glow: rgba(226, 115, 47, 0.16);
  --hero-grad: linear-gradient(180deg, #17130e 0%, #0b0a09 100%);
  --hero-grid: rgba(255, 255, 255, 0.03);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow:    0 12px 34px rgba(0, 0, 0, 0.55);
  color-scheme: dark;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 3px; }

/* ============================================================ NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px;
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.4s ease, border-color 0.4s ease;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: 2px;
  color: var(--fg);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--fg2); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  background: var(--accent);
  color: #fff;
  border: none; cursor: pointer;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform 0.2s, filter 0.2s;
  text-decoration: none;
}
.nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* Переключатель темы */
.theme-toggle {
  width: 38px; height: 38px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border2); border-radius: 50%;
  background: transparent; color: var(--fg); cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); transform: rotate(12deg); }
.theme-toggle .ico-sun  { display: none; }
.theme-toggle .ico-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .ico-sun  { display: block; }
:root[data-theme="dark"] .theme-toggle .ico-moon { display: none; }

/* ============================================================ TICKER */
.ticker-wrap {
  overflow: hidden; background: var(--accent);
  padding: 13px 0; white-space: nowrap;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.ticker-inner {
  display: inline-flex; gap: 64px;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: #fff;
}
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, 0.55); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================ BENEFITS */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 0;
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: var(--bg3); padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border2); }
.benefit-num {
  font-family: var(--font-display); font-size: 54px;
  color: var(--accent); line-height: 1; letter-spacing: 1px;
}
.benefit-title { font-size: 18px; font-weight: 600; }
.benefit-text { font-size: 14px; color: var(--fg2); line-height: 1.7; }

/* ============================================================ REVIEWS */
.reviews-track-wrap { overflow: hidden; margin-top: 64px; position: relative; }
.reviews-track-wrap::before, .reviews-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.reviews-track-wrap::before { left: 0;  background: linear-gradient(to right, var(--bg2), transparent); }
.reviews-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg2), transparent); }
.reviews-track {
  display: flex; gap: 20px;
  animation: slideReviews 40s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes slideReviews { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px; width: 340px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--fg2); line-height: 1.7; font-style: italic; }
.review-author { font-size: 13px; font-weight: 600; color: var(--fg); }
.review-city { font-size: 12px; color: var(--fg3); }

/* ============================================================ HERO (всегда тёмный) */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(58% 46% at 50% 40%, var(--hero-glow), transparent 72%),
    var(--hero-grad);
  color: var(--hero-fg);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ===== HERO: видео на фоне ===== */
#hero { --hero-fg: #f6f2ea; --hero-fg2: #cbc3b6; }
#hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none; background: #0e1216;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,9,7,0.50) 0%, rgba(10,9,7,0.42) 45%, rgba(10,9,7,0.74) 100%);
}
#hero #hero-canvas { z-index: 2; }
#hero .hero-content, #hero .hero-stats, #hero .hero-scroll { z-index: 3; }
#hero .btn-outline { border-color: rgba(255,255,255,0.32); color: #f6f2ea; }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 165px);
  line-height: 0.9; letter-spacing: 4px;
  color: var(--hero-fg); margin-bottom: 28px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title span { color: var(--accent); }
.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--hero-fg2); font-weight: 300;
  max-width: 560px; line-height: 1.6; margin-bottom: 44px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 14px 36px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(194, 87, 30, 0.28);
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(194, 87, 30, 0.36); }
.btn-outline {
  background: transparent; color: var(--hero-fg);
  padding: 14px 36px; border-radius: var(--radius-sm);
  border: 1px solid var(--border2);
  font-size: 14px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); }
.hero-stats {
  position: absolute; bottom: 48px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 64px;
  opacity: 0; animation: fadeUp 0.8s 1.2s forwards;
}
.hero-stat { text-align: center; }
.hero-stat-n {
  font-family: var(--font-display);
  font-size: 44px; letter-spacing: 1px; color: var(--hero-fg); line-height: 1;
}
.hero-stat-n span { color: var(--accent); }
.hero-stat-l { font-size: 11px; color: var(--hero-fg2); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.hero-scroll {
  position: absolute; bottom: 44px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 0.8s 1.4s forwards;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s infinite;
}
.hero-scroll-txt { font-size: 10px; color: var(--hero-fg2); letter-spacing: 3px; text-transform: uppercase; writing-mode: vertical-rl; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================ SECTIONS COMMON */
section { padding: 120px 48px; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 74px);
  letter-spacing: 2px; line-height: 1; margin-bottom: 16px;
}
.section-sub {
  color: var(--fg2); font-size: 16px; font-weight: 300;
  max-width: 520px; line-height: 1.7;
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================ HOW IT WORKS */
#how { background: var(--bg2); }
.how-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-top: 64px;
}
.how-step {
  background: var(--bg3); padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border2); }
.how-step-n {
  font-family: var(--font-display);
  font-size: 66px; color: var(--accent);
  opacity: 0.12;
  position: absolute; top: 10px; right: 22px;
  line-height: 1; pointer-events: none;
}
.how-step-icon {
  width: 46px; height: 46px; margin-bottom: 24px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(194, 87, 30, 0.28);
}
.how-step h3 { font-size: 17px; font-weight: 600; margin-bottom: 12px; }
.how-step p { font-size: 14px; color: var(--fg2); line-height: 1.6; }

/* ============================================================ CATALOG */
#catalog { background: var(--bg); }
.catalog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.catalog-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--border2);
  background: var(--bg3); color: var(--fg2);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px;
}
.filter-btn:hover { border-color: var(--accent); color: var(--fg); }
.filter-btn.active {
  border-color: var(--accent); color: #fff; background: var(--accent);
}
.cars-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.car-card {
  background: var(--bg3); cursor: pointer;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent); }
.car-img {
  width: 100%; aspect-ratio: 16/10;
  background: linear-gradient(135deg, #23201c 0%, #322d27 50%, #23201c 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.car-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.car-card:hover .car-img img { transform: scale(1.06); }
.car-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}
.car-img-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: flex-start;
  position: absolute; inset: 0;
  padding: 20px 24px; overflow: hidden;
}
.car-img-fallback::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.car-img-fallback svg.car-silhouette {
  position: absolute; right: -20px; bottom: 10px;
  width: 72%; height: auto; opacity: 0.22; color: #fff;
}
.car-img-fallback-content { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 4px; }
.car-img-fallback-brand {
  font-family: var(--font-display);
  font-size: 32px; letter-spacing: 3px; color: #fff; line-height: 1;
  text-transform: uppercase; text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.car-img-fallback-model { font-size: 13px; letter-spacing: 2px; color: rgba(255,255,255,0.75); text-transform: uppercase; font-weight: 500; }
.car-img-fallback-tag { margin-top: 10px; font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.55); font-family: var(--font-mono); text-transform: uppercase; }
.car-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; text-transform: uppercase;
  border-radius: 3px;
}
.car-badge.order    { background: rgba(0, 0, 0, 0.55); border: 1px solid var(--accent); color: #fff; backdrop-filter: blur(4px); }
.car-badge.reserved { background: rgba(245, 158, 11, 0.9); color: #fff; }
.car-country {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(6px);
  color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 1px;
  padding: 4px 10px; text-transform: uppercase;
  border-radius: 3px;
}
.car-info { padding: 22px 24px 24px; }
.car-name { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.car-meta {
  font-size: 13px; color: var(--fg2); margin-bottom: 18px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.car-meta span { display: inline-flex; align-items: center; gap: 6px; }
.car-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 16px; margin-bottom: 18px;
  padding: 14px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.car-spec { display: flex; flex-direction: column; gap: 2px; }
.car-spec-label { font-size: 10px; color: var(--fg2); letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.8; font-family: var(--font-mono); }
.car-spec-val { font-size: 13px; color: var(--fg); font-weight: 500; }
.car-price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.car-price { font-family: var(--font-display); font-size: 30px; letter-spacing: 1px; color: var(--accent); line-height: 1; }
.car-price-sub { font-size: 12px; color: var(--fg2); margin-top: 4px; font-family: var(--font-mono); }
.car-cta {
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--fg);
  padding: 9px 15px; border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  text-decoration: none; transition: all 0.2s;
}
.car-cta:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
.car-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.car-tag { font-size: 11px; padding: 3px 10px; border: 1px solid var(--border); border-radius: 3px; color: var(--fg2); letter-spacing: 0.5px; }
.catalog-empty {
  padding: 80px 20px; text-align: center;
  color: var(--fg2); font-size: 15px;
  border: 1px dashed var(--border2); border-radius: var(--radius);
}
.catalog-count { font-size: 13px; color: var(--fg2); margin-top: 6px; letter-spacing: 1px; }
.catalog-count strong { color: var(--accent); font-weight: 600; }

/* ============================================================ PRICING (петроль-акцент) */
#pricing { background: var(--bg2); }
#pricing .reveal[style] {
  background: var(--petrol) !important;
  border: 1px solid var(--petrol) !important;
  border-radius: var(--radius);
  color: var(--petrol-fg);
  box-shadow: var(--shadow);
}
#pricing .section-label { color: #e79a6f; }
#pricing .reveal[style] > div:first-child > div:nth-child(2) { color: #fff !important; }
#pricing .reveal[style] > div:first-child > div:nth-child(2) span { color: #e79a6f !important; }
#pricing .reveal[style] > div:first-child > div:nth-child(3) { color: rgba(255,255,255,0.72) !important; }
#pricing .reveal[style] > div:last-child > div { color: rgba(255,255,255,0.85) !important; }
#pricing .reveal[style] .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
#pricing .reveal[style] div[style*="border-radius:50%"],
#pricing .reveal[style] div[style*="background:var(--accent)"] { background: var(--accent) !important; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 64px; }
.price-card {
  background: var(--bg3); padding: 40px 36px;
  border: 1px solid var(--border); border-radius: var(--radius);
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.price-card.featured { border-color: var(--accent); background: linear-gradient(160deg, var(--accent-soft) 0%, var(--bg3) 100%); }
.price-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.price-featured-badge { position: absolute; top: 20px; right: 20px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; text-transform: uppercase; border-radius: 3px; }
.price-icon { font-size: 28px; margin-bottom: 20px; }
.price-name { font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--fg2); margin-bottom: 8px; }
.price-amount { font-family: var(--font-display); font-size: 48px; letter-spacing: 1px; color: var(--fg); line-height: 1; margin-bottom: 6px; }
.price-amount span { font-size: 22px; color: var(--fg2); }
.price-desc { font-size: 13px; color: var(--fg2); margin-bottom: 28px; line-height: 1.5; }
.price-items { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.price-items li { font-size: 14px; color: var(--fg2); display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; }
.price-items li::before {
  content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px;
  background: var(--accent);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.pricing-note { margin-top: 40px; padding: 24px 32px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg3); font-size: 14px; color: var(--fg2); line-height: 1.7; }
.pricing-note strong { color: var(--fg); }

/* ============================================================ CONTACTS */
#contacts { background: var(--bg); }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 64px; }
@media (max-width: 768px) { .contacts-grid { grid-template-columns: 1fr; } }
.manager-card {
  background: var(--bg3); padding: 40px;
  border: 1px solid var(--border); border-radius: var(--radius);
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.manager-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.manager-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 26px; color: var(--accent);
  margin-bottom: 20px; flex-shrink: 0;
}
.manager-name { font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.manager-role { font-size: 13px; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; font-weight: 500; }
.manager-contacts { display: flex; flex-direction: column; gap: 10px; }
.contact-link {
  display: flex; align-items: center; gap: 12px;
  color: var(--fg2); text-decoration: none; font-size: 14px;
  padding: 11px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); transition: all 0.2s;
}
.contact-link:hover { color: var(--fg); border-color: var(--accent); background: var(--accent-soft); }
.contact-link svg { flex-shrink: 0; }
.social-row {
  grid-column: 1 / -1;
  background: var(--petrol); color: var(--petrol-fg); padding: 40px;
  border: 1px solid var(--petrol); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; box-shadow: var(--shadow-sm);
}
.social-info h3 { font-size: 22px; font-weight: 600; margin-bottom: 6px; color: #fff; }
.social-info p { font-size: 14px; color: rgba(255, 255, 255, 0.75); }
.social-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: transform 0.2s, filter 0.2s; letter-spacing: 0.5px;
}
.social-btn-tg  { background: #229ED9; color: #fff; }
.social-btn-tg:hover  { filter: brightness(1.1); transform: translateY(-2px); }
.social-btn-max { background: var(--accent); color: #fff; }
.social-btn-max:hover { filter: brightness(1.08); transform: translateY(-2px); }
.social-btn-vk  { background: #4680C2; color: #fff; }
.social-btn-vk:hover  { filter: brightness(1.1); transform: translateY(-2px); }

/* ============================================================ FAQ */
#faq { background: var(--bg2); }
.faq-list { margin-top: 64px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg3); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--fg);
  font-family: var(--font-body); font-size: 16px; font-weight: 500;
  padding: 24px 32px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: background 0.2s;
}
.faq-q:hover { background: var(--accent-soft); }
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid var(--border2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--accent); transition: transform 0.3s;
}
.faq-icon.open { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 32px; }
.faq-a.open { max-height: 400px; padding: 0 32px 24px; }
.faq-a p { font-size: 14px; color: var(--fg2); line-height: 1.8; }

/* ============================================================ FOOTER */
footer {
  background: #14110d; color: #f4ede2;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-family: var(--font-display); font-size: 23px; letter-spacing: 2px; }
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.5); }

/* ============================================================ DIVIDER */
.section-divider { width: 48px; height: 3px; background: var(--accent); margin-top: 20px; margin-bottom: 48px; border-radius: 2px; }

/* ============================================================ CATALOG FOOTER */
.catalog-footer { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 40px 0 8px; }
.btn-load-more {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--bg3);
  border: 1px solid var(--border2); border-radius: var(--radius-sm);
  color: var(--fg); font-family: var(--font-display); font-size: 16px;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-load-more:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.btn-catalog-full {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--accent); color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 6px 20px rgba(194, 87, 30, 0.28);
}
.btn-catalog-full:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* ============================================================ RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 80px 20px; }
  .hero-stats { gap: 32px; bottom: 24px; }
  .hero-scroll { display: none; }
  .how-grid { grid-template-columns: 1fr; }
  footer { padding: 32px 20px; }
  .social-row { grid-column: 1; }
}

/* ============================================================ ЛОГО-БЕЙДЖ + БУРГЕР + МОБ. МЕНЮ */
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--border2); background: #0b0a09;
}
.nav-burger {
  display: none; width: 42px; height: 42px; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: 1px solid var(--border2);
  border-radius: var(--radius-sm); cursor: pointer;
}
.nav-burger span {
  display: block; width: 20px; height: 2px; background: var(--fg);
  border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 66px; left: 0; right: 0; z-index: 99;
  background: var(--nav-bg); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; padding: 12px 20px 20px;
  transform: translateY(-135%); transition: transform 0.3s ease;
  box-shadow: var(--shadow);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  color: var(--fg); text-decoration: none; font-size: 16px; font-weight: 500;
  padding: 15px 6px; border-bottom: 1px solid var(--border); letter-spacing: 0.5px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mm-cta {
  margin-top: 14px; background: var(--accent); color: #fff; text-align: center;
  border-radius: var(--radius-sm); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 15px;
}
@media (min-width: 769px) { .mobile-menu { display: none; } }
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-right .nav-cta { display: none; }
  .nav-logo-img { width: 34px; height: 34px; }
  .nav-logo { font-size: 19px; }
}
