/* =========================================================
   RESET
========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #07131f;
  color: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* =========================================================
   VARIABLES
========================================================= */
:root {
  --dark: #07131f;
  --dark-2: #0b1c2b;
  --dark-3: #102b40;
  --orange: #f59e0b;
  --orange-light: #ffbd45;
  --orange-dark: #d97706;
  --white: #ffffff;
  --muted: rgba(255,255,255,.68);
  --glass: rgba(255,255,255,.055);
  --border: rgba(255,255,255,.13);
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: relative;
  z-index: 30;
  height: 82px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(4,13,22,.45);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1280px, calc(100% - 50px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 13px; }
.logo-icon {
  width: 50px; height: 50px;
  border: 2px solid var(--orange);
  border-radius: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #18384f, #071522);
  box-shadow: 0 0 30px rgba(245,158,11,.15);
  overflow: hidden;
}
.logo-icon::before {
  content: "";
  width: 25px; height: 16px;
  border-left: 3px solid white;
  border-top: 3px solid white;
  transform: rotate(45deg) translateY(3px);
}
.logo-icon::after {
  content: "";
  position: absolute;
  width: 34px; height: 5px;
  bottom: 7px;
  background: var(--orange);
  border-radius: 100%;
  transform: rotate(-18deg);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-size: 19px; letter-spacing: .04em; }
.logo-text span { margin-top: 7px; font-size: 8px; letter-spacing: .18em; color: rgba(255,255,255,.52); }

.header-nav { display: flex; gap: 22px; }
.header-nav a { font-size: 14px; color: rgba(255,255,255,.75); transition: .25s; }
.header-nav a:hover { color: var(--orange); }

.header-right { display: flex; align-items: center; gap: 25px; }
.phone { font-size: 16px; font-weight: 800; transition: .25s; }
.phone:hover { color: var(--orange-light); }
.header-button {
  position: relative;
  padding: 12px 19px;
  border-radius: 12px;
  background: var(--orange);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
  transition: .25s;
  box-shadow: 0 8px 25px rgba(245,158,11,.15);
}
.header-button::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 50px;
  left: -70px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  transform: skewX(-20deg);
  animation: buttonShine 4s infinite;
}
@keyframes buttonShine {
  0% { left: -70px; }
  35%, 100% { left: 130%; }
}
.header-button:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--orange-light);
  box-shadow: 0 12px 35px rgba(245,158,11,.35);
}

/* =========================================================
   BUTTONS
========================================================= */
.button {
  min-height: 57px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 950;
  transition: .3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
.button-primary {
  background: linear-gradient(135deg, #f59e0b, #ffb62f);
  color: #111;
  box-shadow: 0 12px 35px rgba(245,158,11,.2);
}
.button-primary::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  left: -100px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  transform: skewX(-20deg);
  animation: mainShine 3.5s infinite;
}
@keyframes mainShine {
  0% { left: -100px; }
  30%, 100% { left: 140%; }
}
.button-primary:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 20px 45px rgba(245,158,11,.38);
}
.button-secondary {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
  color: white;
  backdrop-filter: blur(12px);
}
.button-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-4px);
}

/* =========================================================
   SECTION COMMON
========================================================= */
section.block { padding: 90px 0; position: relative; }
.container { width: min(1280px, calc(100% - 50px)); margin: 0 auto; }
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 950;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.section-title span { color: var(--orange); }
.section-sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  max-width: 720px;
  margin-bottom: 50px;
}

/* =========================================================
   PROMO
========================================================= */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.promo-card {
  position: relative;
  padding: 34px 30px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  transition: .35s;
}
.promo-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,158,11,.18), transparent 70%);
  pointer-events: none;
}
.promo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,158,11,.4);
  box-shadow: 0 25px 60px rgba(0,0,0,.4);
}
.promo-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  margin-bottom: 22px;
}
.promo-value {
  font-size: 46px;
  font-weight: 950;
  color: var(--orange);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.promo-name { font-size: 20px; font-weight: 850; margin-bottom: 10px; }
.promo-desc { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* =========================================================
   STEPS
========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  position: relative;
  padding: 30px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: .3s;
}
.step:hover { border-color: rgba(245,158,11,.3); transform: translateY(-4px); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.35);
  color: var(--orange);
  font-weight: 950;
  font-size: 18px;
  margin-bottom: 18px;
}
.step h4 { font-size: 17px; font-weight: 850; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* =========================================================
   ROUTES
========================================================= */
.routes { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.route-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: .3s;
  color: inherit;
}
.route-card:hover {
  border-color: rgba(245,158,11,.4);
  background: rgba(245,158,11,.05);
  transform: translateX(4px);
}
.route-name { font-size: 15px; font-weight: 800; }
.route-km { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }
.route-price { font-size: 20px; font-weight: 950; color: var(--orange); }

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050e17;
}
.footer-container { width: min(1280px, calc(100% - 50px)); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,.75);
  margin-bottom: 10px;
  transition: .25s;
}
.footer-col a:hover { color: var(--orange); }
.footer-about { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.55); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 1050px) {
  .promo-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
}
@media (max-width: 700px) {
  .site-header { height: 70px; }
  .header-inner { width: calc(100% - 28px); }
  .logo-icon { width: 42px; height: 42px; }
  .logo-text strong { font-size: 14px; }
  .logo-text span { font-size: 6px; }
  .header-right { gap: 8px; }
  .phone { display: none; }
  .header-button { padding: 10px 13px; font-size: 10px; }
  section.block { padding: 60px 0; }
  .container { width: calc(100% - 28px); }
  .steps { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
