:root {
  --cream: #161816;
  --cream-2: #1a1d18;
  --surface: #22261f;
  --pine: #2f9e44;
  --pine-deep: #1f7a32;
  --gold: #e8a54b;
  --gold-soft: #c9843a;
  --ink: #f4f1ea;
  --muted: #b8b3a6;
  --line: #2e332c;
  --shadow: none;
  --radius: 16px;
  --radius-sm: 12px;
  --display: Inter, "SF Pro Text", "Segoe UI", sans-serif;
  --sans: Inter, "SF Pro Text", "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(22, 24, 22, 0.28) 0%, #161816 58%),
    radial-gradient(900px 420px at 88% -4%, rgba(232, 165, 75, 0.22), transparent 58%),
    url("/visuals/scene-mountains.png") top center / cover no-repeat;
  opacity: 1;
}
a { color: inherit; }
img, svg { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; position: relative; z-index: 1; }
.site-header, .site-footer, main { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(22, 24, 22, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 20px;
  color: #fff;
}
.brand img { width: auto; height: 56px; object-fit: contain; background: transparent; }
.brand img.brand-avatar {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: none !important;
  opacity: 1;
  background: transparent;
}
.brand .brand-name {
  color: #fff;
  font-weight: 800;
}
.brand img.logo-horizontal,
.brand img.logo-full {
  width: auto;
  height: 58px;
  max-width: min(168px, 46vw);
  object-fit: contain;
  background: transparent;
}
.brand img.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}
.nav-main {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.nav-main a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.nav-main a:hover, .nav-main a.active { color: var(--ink); }
.nav-main .btn { display: none; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 14px 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--pine);
  margin: 6px 0;
}

.btn, .btn-ghost, .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover, .btn-ghost:hover, .btn-gold:hover { transform: translateY(-1px); }
.btn { background: #2f9e44; color: #fff; }
.btn-primary { background: linear-gradient(180deg, #3bb554, #2f9e44); color: #fff; }
.btn-gold {
  background: transparent;
  color: #d8f3dc;
  border: 1px solid #2f9e44;
}
.btn-ghost {
  border: 1px solid rgba(244, 238, 228, 0.28);
  background: transparent;
  color: var(--cream);
}
.btn-on-dark { background: linear-gradient(180deg, #3bb554, #2f9e44); color: #fff; }

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: center;
  padding: 36px 0 88px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7.2vw, 86px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.hero .lead { font-size: 20px; color: var(--muted); margin: 0; max-width: 28ch; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}
.trust svg { width: 16px; height: 16px; flex: 0 0 auto; }

.hero-visual {
  position: relative;
  min-height: 460px;
  padding-bottom: 12px;
}
.hero-car {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 62% 58%;
  border-radius: 36px;
}
.phone {
  position: absolute;
  right: 18px;
  bottom: -18px;
  width: 214px;
  background: #111;
  color: #fff;
  border-radius: 32px;
  padding: 16px 14px 18px;
  box-shadow: 0 24px 50px rgba(16, 36, 28, 0.28);
  border: 1px solid rgba(244, 238, 228, 0.12);
}
.phone .notch {
  width: 72px;
  height: 6px;
  border-radius: 99px;
  background: #3a3a3c;
  margin: 0 auto 14px;
}
.phone .app-brand {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #b8b8b8;
  margin: 0 0 12px;
}
.phone .field {
  background: #1c1c1e;
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.phone .field span { display: block; font-size: 10px; color: #9aa89f; }
.phone .field strong { font-size: 14px; }
.phone .price {
  font-family: var(--display);
  font-size: 28px;
  margin: 12px 0 10px;
}
.phone .fake-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: var(--pine);
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
}

.section { padding: 28px 0 88px; }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.section-head::before, .section-head::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-head h2, .section h2, .page h1 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0;
}
.section-head h2 { font-size: clamp(32px, 4vw, 44px); text-align: center; }
.section-copy { text-align: center; color: var(--muted); margin: -18px 0 32px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 16%;
  right: 16%;
  border-top: 1px dashed var(--gold);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid rgba(196, 160, 90, 0.35);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(20, 36, 28, 0.1); }
.icon-round {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background: var(--cream);
  margin-bottom: 18px;
}
.step h3, .card h3 { margin: 0 0 8px; font-size: 22px; }
.muted, .step p, .card p { color: var(--muted); }

.fare-grid, .grid-4, .safety-grid {
  display: grid;
  gap: 18px;
}
.fare-grid { grid-template-columns: repeat(4, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.fare-card, .card {
  background: var(--surface);
  border: 1px solid rgba(196, 160, 90, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.fare-card:hover, .card:hover { transform: translateY(-4px); }
.fare-art {
  height: 150px;
  background-size: cover;
  background-position: center;
}
.fare-card .body, .card { padding: 20px 20px 22px; }
.fare-card h3 { margin: 0 0 6px; }
.stat {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.center-cta { display: flex; justify-content: center; margin-top: 28px; }

.driver-band {
  background: #1c1c1e;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.driver-band h2 { color: var(--cream); font-size: clamp(36px, 4vw, 52px); }
.driver-band .eyebrow { color: var(--gold-soft); letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; font-weight: 700; margin: 0 0 10px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 22px 0 28px; padding: 0; list-style: none; }
.checks li { display: flex; gap: 8px; align-items: center; }
.checks svg { width: 16px; height: 16px; flex: 0 0 auto; }

.cabinet {
  background: #111;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
}
.cabinet .demo-note {
  font-size: 12px;
  color: #b7c4bc;
  margin: 0 0 14px;
}
.cabinet .status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 16px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: #7dba8d; box-shadow: 0 0 0 6px rgba(125, 186, 141, 0.15); }
.offer-mini {
  background: #1c1c1e;
  border-radius: 20px;
  padding: 16px;
}
.offer-mini small { color: var(--gold-soft); letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; }
.offer-mini strong { display: block; font-size: 22px; margin: 8px 0 4px; }
.stats-zero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.stats-zero span {
  background: #1c1c1e;
  border-radius: 14px;
  padding: 10px;
  font-size: 12px;
  color: #cfd8d3;
}

.intercity {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.route-list { display: grid; gap: 12px; }
.route-list article {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em;
}
.route-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid rgba(196, 160, 90, 0.3);
  border-radius: 22px;
  padding: 18px 20px;
  text-decoration: none;
  transition: transform .2s ease;
}
.route-card:hover { transform: translateY(-3px); }
.route-card .stat { font-size: 26px; }

.safety-grid { grid-template-columns: repeat(4, 1fr); }
.safety-grid .card { padding: 22px; }

.max-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(196, 160, 90, 0.3);
  border-radius: 40px;
  padding: 40px;
}
.max-band h2 { font-size: clamp(32px, 4vw, 48px); }
.phone.static { position: relative; right: auto; bottom: auto; }

.page { padding: 48px 0 88px; }
.page h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin: 0 0 16px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 10px;
}
.legal { max-width: 760px; }
.legal ul, .legal ol { padding-left: 1.2em; margin: 0 0 1em; }
.legal li { margin: 0.35em 0; }
.legal-body { white-space: pre-wrap; font-size: 16px; line-height: 1.7; }
.legal-list a { display: block; margin: 8px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { padding: 22px; }
.tariff-lookup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 8px;
}
.tariff-lookup label { display: grid; gap: 8px; font-weight: 700; }
.tariff-lookup select {
  font: inherit;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.site-footer {
  background: var(--pine-deep);
  color: #d7e0db;
  margin-top: 24px;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}
.site-footer .brand { color: var(--cream); letter-spacing: 0.08em; }
.site-footer .logo-icon {
  box-shadow: none;
}
.site-footer a { color: #d7e0db; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-nav { display: grid; gap: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(196, 160, 90, 0.22);
  margin-top: 36px;
  padding-top: 18px;
  font-size: 13px;
}

@media (max-width: 960px) {
  .header-bar { grid-template-columns: auto 1fr auto auto; }
  .nav-main {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .site-header.open .nav-main { display: flex; }
  .nav-toggle { display: block; }
  .nav-main .btn { display: inline-flex; width: min(100%, 280px); min-height: 52px; }
  .header-cta { min-height: 48px; padding: 0 14px; font-size: 13px; }
  .hero, .driver-band, .intercity, .max-band, .fare-grid, .steps, .safety-grid, .grid, .footer-grid, .grid-4, .tariff-lookup {
    grid-template-columns: 1fr;
  }
  .steps::before { display: none; }
  .hero { padding-top: 24px; }
  .hero-visual { min-height: 0; }
  .hero-car { height: 280px; }
  .phone { width: 170px; right: 10px; bottom: -12px; }
  .driver-band, .max-band { padding: 28px; border-radius: 28px; }
  .checks { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .section-head::before, .section-head::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

.comments-page {
  padding: 24px 0 64px;
}
.comments-post {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.comments-post h1 {
  font-family: var(--display);
  font-size: clamp(28px, 6vw, 42px);
  line-height: 1.15;
  margin: 8px 0 12px;
}
.comments-meta, .comments-count {
  color: var(--muted);
  font-size: 16px;
}
.comments-excerpt {
  font-size: 18px;
  margin: 12px 0 0;
  white-space: pre-wrap;
}
.comments-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}
.comments-actions .btn, .comments-actions .btn-ghost, .comments-actions .btn-gold {
  min-height: 48px;
  padding: 12px 18px;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}
.comments-locked {
  background: #1c1c1e;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 12px 0;
}
.comment-list { margin-top: 8px; }
.comment-card {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 40px;
}
.comment-body { flex: 1; min-width: 0; }
.comment-name { font-weight: 800; }
.comment-text { font-size: 17px; margin: 6px 0; white-space: pre-wrap; word-wrap: break-word; }
.comment-hidden { color: var(--muted); font-style: italic; }
.comment-replies { margin: 8px 0 0 16px; }
.comment-form textarea {
  width: 100%;
  min-height: 110px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  font: inherit;
  font-size: 17px;
}
.comment-code {
  font-size: 28px;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin: 8px 0;
}
.comment-skeleton {
  height: 18px;
  background: #2c2c2e;
  border-radius: 8px;
  margin: 10px 0;
}
.comment-empty { color: var(--muted); padding: 24px 0; font-size: 18px; }
.comment-error { color: #ff453a; margin: 8px 0; }
@media (max-width: 360px) {
  .wrap { width: calc(100% - 24px); }
  .comments-post { padding: 18px 14px; border-radius: 20px; }
  .comments-actions .btn, .comments-actions .btn-ghost, .comments-actions .btn-gold {
    width: 100%;
  }
}
