/* ============================================================
   АЗС «ТрансСиб» — стили
   ------------------------------------------------------------
   Палитра сайта — только фирменные цвета:
     #fd6801  основной 1 (оранжевый) — кнопки, акценты, цены
     #2c97cf  основной 2 (голубой)   — вторичные элементы
     #ffffff  фон
     #78bdde  второстепенный         — мягкие подложки
   Для читаемости текста допускаются тёмные тона голубого
   (#124059 и производные) — см. --ink/--muted.
   ============================================================ */

:root {
  --brand-1: #fd6801;        /* оранжевый */
  --brand-1-d: #e35c00;      /* hover (тёмный тон) */
  --brand-2: #2c97cf;        /* голубой */
  --brand-2-d: #1f7db1;      /* hover (тёмный тон) */
  --brand-3: #ffffff;        /* белый */
  --brand-4: #78bdde;        /* светло-голубой */

  /* тёмные тона голубого (текст, читаемость) */
  --ink: #124059;
  --ink-2: #1c526e;
  --muted: #3f6e8a;
  --muted-2: #5c8aa5;

  /* светлые тона (подложки из #78bdde/#2c97cf на белом) */
  --tint-1: #eaf5fb;
  --tint-2: #dff0f9;
  --line: #d5e9f4;

  --radius: 16px;
  --shadow-s: 0 1px 2px rgba(18,64,89,.07), 0 4px 14px rgba(18,64,89,.06);
  --shadow-m: 0 2px 6px rgba(18,64,89,.08), 0 16px 36px rgba(18,64,89,.13);
  --shadow-o: 0 8px 24px rgba(253,104,1,.3);

  --font: 'Manrope', 'Onest', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Onest', 'Manrope', -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--brand-3);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand-2-d); text-decoration: none; }
a:hover { text-decoration: none; }
b, strong { font-weight: 700; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); line-height: 1.14; letter-spacing: -0.02em; color: var(--ink); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 2px; }

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

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 700 15px/1 var(--font);
  letter-spacing: .01em;
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 10px 17px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* главные кнопки — #fd6801, текст белый */
.btn-primary, .btn-accent { background: var(--brand-1); color: #fff; }
.btn-primary:hover, .btn-accent:hover { background: var(--brand-1-d); transform: translateY(-1px); box-shadow: var(--shadow-o); }

/* вторичная кнопка — голубой контур */
.btn-secondary { background: var(--brand-3); color: var(--brand-2-d); border-color: var(--brand-4); }
.btn-secondary:hover { border-color: var(--brand-2); transform: translateY(-1px); box-shadow: var(--shadow-s); }

/* голубая кнопка с заливкой (второй CTA) */
.btn-outline-light, .btn-ghost-light { background: var(--brand-2); color: #fff; border-color: var(--brand-2); }
.btn-outline-light:hover, .btn-ghost-light:hover { background: var(--brand-2-d); color: #fff; border-color: var(--brand-2-d); transform: translateY(-1px); }

/* ---------- Шапка ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 70px; }
.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.logo-img { height: 44px; width: auto; }
.logo-mark { color: var(--brand-1); width: 36px; height: 36px; display: grid; place-items: center; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: .06em; }
.logo-name span { color: var(--brand-1); }
.logo-sub { font-size: 10.5px; color: var(--muted-2); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }

.nav { display: flex; gap: 2px; margin-left: auto; }
.nav-link {
  color: var(--ink); font-size: 14.5px; font-weight: 600;
  padding: 8px 12px; border-radius: 999px; transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--brand-2-d); background: var(--tint-1); }
.header-actions { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  background: var(--tint-1); border: 1px solid var(--line);
  cursor: pointer; padding: 11px 9px; flex-direction: column; justify-content: space-between;
}
.burger span { display: block; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* мобильное меню */
.mobile-nav {
  position: fixed; inset: 70px 0 auto 0; z-index: 55;
  background: rgba(255,255,255,.98);
  padding: 14px 20px 22px;
  transform: translateY(-110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-m);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav-link { color: var(--ink); font-size: 16px; font-weight: 600; padding: 11px 4px; border-bottom: 1px solid var(--tint-1); }
.mobile-nav-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.mobile-nav-cta .btn { width: 100%; }

/* ---------- Секции ---------- */
.section { padding: 78px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.section-kicker {
  font-size: 12.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-2); margin-bottom: 8px;
}
.section-kicker.light { color: var(--brand-1); }
.section-title { font-size: clamp(27px, 4.4vw, 42px); font-weight: 800; }

/* ---------- HERO (светлый) ---------- */
.hero { position: relative; overflow: hidden; background: #ffffff; }
.hero-bg { position: absolute; inset: 0; }
.hero-svg { width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 2; padding: clamp(58px, 9vw, 108px) 0 clamp(170px, 17vw, 225px); max-width: 780px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; color: var(--brand-2-d);
  background: rgba(255,255,255,.75); border: 1px solid var(--brand-4);
  padding: 8px 15px; border-radius: 999px; margin-bottom: 22px;
  letter-spacing: .02em;
  backdrop-filter: blur(6px);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-1); box-shadow: 0 0 0 0 rgba(253,104,1,.6); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(253,104,1,.55); }
  70% { box-shadow: 0 0 0 9px rgba(253,104,1,0); }
  100% { box-shadow: 0 0 0 0 rgba(253,104,1,0); }
}
.hero-title { font-size: clamp(40px, 7vw, 72px); font-weight: 800; letter-spacing: -.035em; line-height: 1.02; color: var(--ink); }
.accent-text { color: var(--brand-1); }
.hero-sub { margin-top: 20px; font-size: clamp(16px, 2vw, 19px); color: var(--ink-2); max-width: 540px; }
.hero-cta { display: flex; gap: 13px; margin-top: 34px; flex-wrap: wrap; }

.hero-card-wrap { position: relative; z-index: 3; margin-top: -150px; margin-bottom: 56px; }
.hero-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--brand-3); color: var(--ink);
  border-radius: var(--radius); box-shadow: var(--shadow-m);
  border: 1px solid var(--line);
  padding: 16px 18px; max-width: 560px;
}
.hero-card-badge {
  background: var(--brand-1); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 21px;
  padding: 10px 13px; border-radius: 12px; white-space: nowrap;
}
.hero-card-text { display: flex; flex-direction: column; }
.hero-card-text b { font-size: 15px; }
.hero-card-text span { font-size: 13px; color: var(--muted); }
.hero-card-link { margin-left: auto; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-2); color: #fff; flex: 0 0 auto; transition: background .18s; }
.hero-card-link:hover { background: var(--brand-2-d); color: #fff; }
.hero-card-link svg { width: 19px; height: 19px; }

/* ---------- Цены ---------- */
.prices { background: var(--brand-3); }
.prices-updated { color: var(--muted); font-size: 13.5px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card {
  background: var(--brand-3); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px 20px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--brand-4); }
.price-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--tint-1); color: var(--brand-2-d);
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.price-label { font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.price-value {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 5vw, 50px);
  letter-spacing: -.03em; line-height: 1.05; margin-top: 10px;
  font-variant-numeric: tabular-nums;
  color: var(--brand-1);
  display: flex; align-items: baseline; gap: 6px;
}
.price-unit { font-size: 19px; font-weight: 700; color: var(--brand-1); }
.price-old {
  margin-top: 5px;
  font-size: 13.6px; color: var(--muted); font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-decoration: line-through;
  text-decoration-color: var(--brand-4);
  text-decoration-thickness: 2px;
}
.price-note { margin-top: 10px; font-size: 13px; color: var(--brand-2-d); font-weight: 600; }
.price-card.is-tba .price-value { color: var(--muted); font-size: clamp(24px, 3vw, 32px); }
.price-card.is-tba .price-tag { background: var(--brand-1); color: #fff; }
.prices-foot { margin-top: 26px; }
.prices-hint { color: var(--muted); font-size: 13.5px; }

/* ---------- Почему ---------- */
.why { background: var(--brand-2); }
.why .section-kicker { color: rgba(255,255,255,.85); }
.why .section-title { color: #fff; }
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.benefit {
  background: #fff; border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 24px 20px;
  transition: transform .2s, box-shadow .2s;
}
.benefit:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(18,64,89,.25); }
.benefit-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--brand-1);
  color: #fff;
  display: grid; place-items: center; margin-bottom: 15px;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 17px; font-weight: 800; margin-bottom: 7px; }
.benefit p { font-size: 13.8px; color: var(--muted); }

/* ---------- Карта клиента ---------- */
.loyalty { background: #ffffff; }
.loyalty-panel {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 6vw, 72px);
  align-items: center;
}
.loyalty-lead { color: var(--ink); font-size: 18px; margin-top: 14px; max-width: 480px; }
.loyalty-lead b { color: var(--brand-1); }
.loyalty-steps { margin-top: 26px; display: flex; flex-direction: column; gap: 13px; counter-reset: step; }
.loyalty-steps li {
  counter-increment: step;
  display: flex; align-items: center; gap: 14px;
  color: var(--ink); font-size: 15px;
}
.loyalty-steps li::before {
  content: counter(step);
  width: 30px; height: 30px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-2); color: #fff;
  font-weight: 800; font-size: 14px;
}
.loyalty-note { margin-top: 18px; font-size: 13px; color: var(--muted); max-width: 460px; }
.loyalty-cta { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

/* витринная карта клиента — плоский голубой, оранжевый дисконт */
.loyalty-card {
  position: relative;
  aspect-ratio: 1.6;
  border-radius: 22px;
  background: var(--brand-2);
  border: 1px solid rgba(255,255,255,.25);
  padding: clamp(20px, 3.4vw, 34px);
  display: flex; flex-direction: column;
  box-shadow: 0 26px 60px rgba(44,151,207,.36);
  color: #fff;
  overflow: hidden;
}
.loyalty-card-chip { color: #fff; width: 44px; height: 34px; }
.loyalty-card-chip svg { width: 100%; height: 100%; }
.loyalty-card-name { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 3vw, 30px); letter-spacing: .09em; margin-top: 18px; }
.loyalty-card-tag { color: rgba(255,255,255,.8); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.loyalty-card-discount { margin-top: auto; display: flex; align-items: flex-end; gap: 14px; }
.loyalty-card-discount .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(44px, 6vw, 68px); line-height: .95; color: #fff; letter-spacing: -.03em; }
.loyalty-card-discount .lbl { font-size: 12.5px; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .06em; line-height: 1.4; padding-bottom: 7px; }
.loyalty-card-footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.2); font-size: 12px; color: rgba(255,255,255,.75); letter-spacing: .1em; text-transform: uppercase; }

/* ---------- АЗС ---------- */
.stations { background: var(--brand-3); }
.stations-note { color: var(--muted); font-size: 14px; }
.stations-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; align-items: stretch; }
.stations-list { display: flex; flex-direction: column; gap: 12px; }
.station {
  display: flex; align-items: center; gap: 15px;
  background: var(--brand-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 17px 18px;
  cursor: pointer;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.station:hover { transform: translateY(-1px); border-color: var(--brand-4); }
.station.active { border-color: var(--brand-2); box-shadow: 0 0 0 3px rgba(44,151,207,.14), var(--shadow-s); }
.station-pin {
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: 50%;
  background: var(--tint-1); color: var(--brand-2);
  display: grid; place-items: center;
  transition: background .18s, color .18s;
}
.station.active .station-pin { background: var(--brand-2); color: #fff; }
.station-pin svg { width: 21px; height: 21px; }
.station-body { flex: 1; min-width: 0; }
.station-city { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-2); }
.station-city.city-kalachinsk { color: var(--brand-1); }
.station-title { font-weight: 800; font-size: 16px; margin: 2px 0 1px; }
.station-addr { font-size: 13.6px; color: var(--muted); }
.station-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 7px; font-size: 12.4px; color: var(--muted); }
.station-meta span { display: inline-flex; align-items: center; gap: 5px; }
.station-meta svg { width: 14px; height: 14px; }
.station-meta .ok { color: var(--brand-2); }
.station-arrow { color: #b9d4e3; transition: color .18s, transform .18s; }
.station.active .station-arrow { color: var(--brand-2-d); transform: translateX(3px); }
.station-arrow svg { width: 20px; height: 20px; }

.stations-map { position: sticky; top: 88px; align-self: start; }
.map-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  background: var(--tint-2);
  aspect-ratio: 4 / 3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.route-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px; width: 100%;
  background: var(--brand-3); color: var(--brand-2-d);
  border: 1.5px solid var(--brand-4);
  padding: 13px; border-radius: 999px;
  font-weight: 700; font-size: 14.5px;
  transition: border-color .18s, background .18s;
}
.route-btn:hover { border-color: var(--brand-2); background: var(--tint-1); }
.route-btn svg { width: 18px; height: 18px; }

/* ---------- Бизнес ---------- */
.business { background: var(--tint-1); }
.business-panel {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 60px);
  background: var(--brand-3); border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(26px, 5vw, 54px);
  box-shadow: var(--shadow-s);
}
.business-lead { color: var(--muted); margin-top: 12px; max-width: 520px; font-size: 15.5px; }
.business-list { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; }
.business-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.8px; font-weight: 600; }
.business-list svg { width: 20px; height: 20px; color: var(--brand-2); flex: 0 0 auto; margin-top: 2px; }
.business-cta {
  align-self: center;
  background: var(--brand-2);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(22px, 3.4vw, 34px);
  box-shadow: 0 18px 44px rgba(44,151,207,.3);
}
.business-cta-title { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: #fff; }
.business-cta-text { color: rgba(255,255,255,.9); font-size: 14.3px; margin: 10px 0 20px; }
.business-cta .btn-primary { background: #fff; color: var(--brand-2-d); }
.business-cta .btn-primary:hover { background: var(--tint-2); box-shadow: 0 8px 22px rgba(0,0,0,.14); color: var(--brand-2-d); }

/* ---------- Новости / акции ---------- */
.news { background: var(--brand-3); border-top: 1px solid var(--line); }
.news-social {
  max-width: 760px; margin: 0 auto;
  text-align: center;
  background: var(--tint-1);
  border: 1.5px dashed var(--brand-4);
  border-radius: 20px;
  padding: clamp(26px, 4.6vw, 44px);
}
.news-text { color: var(--muted); font-size: 15.5px; }
.news-buttons { display: flex; justify-content: center; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.news-buttons .btn { min-width: 200px; }

/* ---------- Контакты / форма ---------- */
.contact { background: var(--brand-3); }
.contact-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.contact-form-side, .contact-side {
  background: var(--brand-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(22px, 3.6vw, 36px);
  box-shadow: var(--shadow-s);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-label { font-size: 13px; font-weight: 700; color: var(--ink); }
.input {
  font: 500 15px/1.4 var(--font);
  color: var(--ink);
  background: var(--tint-1);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12.5px 15px;
  width: 100%;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.input::placeholder { color: var(--muted-2); }
.input:focus { outline: none; border-color: var(--brand-2); background: #fff; box-shadow: 0 0 0 3px rgba(44,151,207,.15); }
textarea.input { resize: vertical; min-height: 108px; }
.form-privacy { font-size: 12px; color: var(--muted); }
.form-privacy a { text-decoration: underline; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }
.form-status { font-size: 14px; font-weight: 600; border-radius: 12px; padding: 11px 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e5f5ec; color: #14703f; }
.form-status.err { background: #fdeceb; color: #b02a21; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

.contact-side { display: flex; flex-direction: column; gap: 24px; }
.contact-alt-title { font-weight: 800; font-size: 15.5px; }
.contact-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 13px; }
.contact-buttons .btn { justify-content: flex-start; }
.contact-buttons .btn svg { width: 20px; height: 20px; }
.contact-info { display: flex; flex-direction: column; gap: 15px; border-top: 1px solid var(--line); padding-top: 22px; }
.contact-info-item { display: flex; gap: 13px; align-items: flex-start; }
.ci-icon {
  width: 40px; height: 40px; flex: 0 0 auto;
  background: var(--tint-1); color: var(--brand-2);
  border-radius: 12px; display: grid; place-items: center;
}
.ci-icon svg { width: 20px; height: 20px; }
.contact-info-item b { display: block; font-size: 14px; margin-bottom: 1px; }
.contact-info-item span, .contact-info-item .ci-phone { font-size: 13.6px; color: var(--muted); }
.ci-phone { font-weight: 700; color: var(--brand-2-d) !important; }
.ci-addresses { display: block; max-width: 300px; }

/* кнопки соцсетей: VK — #78bdde с белым текстом (по ТЗ), TG — #2c97cf */
.btn-vk { background: var(--brand-4); color: #fff; }
.btn-vk:hover { background: var(--brand-2); color: #fff; }
.btn-tg { background: var(--brand-2); }
.btn-tg:hover { background: var(--brand-2-d); }

/* ---------- Футер ---------- */
.footer { background: var(--tint-1); border-top: 1px solid var(--line); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.3fr; gap: 34px; }
.footer-desc { color: var(--muted); font-size: 13.8px; margin-top: 16px; max-width: 340px; }
.footer-heading { font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-2-d); margin-bottom: 14px; }
.footer-link { display: block; color: var(--ink); font-size: 14.3px; padding: 4.5px 0; transition: color .15s; }
.footer-link:hover { color: var(--brand-1); }
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links .footer-link { display: inline-flex; align-items: center; gap: 8px; }
.footer-links svg { width: 17px; height: 17px; color: var(--brand-1); }
.footer-addresses .footer-link { font-size: 13.4px; }
.footer-addresses b { display: block; color: var(--ink); font-size: 13.2px; }
.footer-addresses span { color: var(--muted); font-size: 12.8px; }
.footer-bottom {
  margin-top: 42px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 12.8px;
}
.footer-small { display: inline; color: var(--muted); }
.footer-bottom .footer-link { display: inline; padding: 0; }

/* ---------- Мобильная нижняя панель ---------- */
.mobile-bar {
  display: none;
  position: fixed; z-index: 50; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  justify-content: space-around;
}
.mobile-bar-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--brand-2-d); font-size: 10.8px; font-weight: 700;
  padding: 6px 18px; border-radius: 12px;
}
.mobile-bar-item:active { background: var(--tint-1); }
.mobile-bar-item svg { width: 22px; height: 22px; }
.mobile-bar-item:nth-child(3) { color: var(--brand-1); }
body.has-bar { padding-bottom: 62px; }

/* ---------- Ревил-анимации ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-eyebrow .dot { animation: none; }
}

/* ---------- Адаптив ---------- */
@media (max-width: 1020px) {
  .loyalty-panel { grid-template-columns: 1fr; }
  .loyalty-card { max-width: 460px; }
  .business-panel { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .stations-wrap { grid-template-columns: 1fr; }
  .stations-map { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header-ask { display: none; }
  .hero-card-wrap { margin-top: -90px; }
}

@media (max-width: 620px) {
  .section { padding: 56px 0; }
  .price-grid { grid-template-columns: 1fr; gap: 11px; }
  .price-card { padding: 20px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .mobile-bar { display: flex; }
  body.has-bar { padding-bottom: 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .business-list { grid-template-columns: 1fr; }
  .hero-title { font-size: 40px; }
  .hero-cta .btn { width: 100%; }
  .loyalty-steps li { font-size: 14.2px; }
}

@media (max-width: 400px) {
  .benefit-grid { grid-template-columns: 1fr; }
}
