:root {
  --bg: #0f1a2b;
  --bg-2: #142239;
  --surface: #ffffff;
  --surface-alt: #f4f6fb;
  --text: #0f1a2b;
  --text-soft: #4b5b75;
  --text-on-dark: #eaf0ff;
  --text-on-dark-soft: #b6c2da;
  --accent: #ffd84a;
  --accent-2: #ffb800;
  --border: #e2e7f1;
  --shadow: 0 10px 30px rgba(15, 26, 43, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 26, 43, 0.15);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

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

h1, h2, h3, p, dl, dd, ol, ul { margin: 0; padding: 0; }

ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 26, 43, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-on-dark);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.2px;
}
.logo__mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo__text span { color: var(--accent); }

.nav { display: none; gap: 22px; font-weight: 500; }
.nav a {
  color: var(--text-on-dark-soft);
  transition: color .2s;
  font-size: 15px;
}
.nav a:hover { color: var(--accent); }

.topbar__phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  transition: background .2s, border-color .2s;
}
.topbar__phone:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

@media (min-width: 860px) {
  .nav { display: flex; }
  .topbar__phone { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1px;
  transition: transform .15s, box-shadow .15s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 8px 22px rgba(255, 216, 74, 0.35);
}
.btn--primary:hover { transform: translateY(-1px); background: var(--accent-2); }
.btn--ghost {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg);
}
.btn--ghost:hover { background: var(--bg); color: var(--text-on-dark); }

.hero .btn--ghost { color: var(--text-on-dark); border-color: rgba(255,255,255,0.5); }
.hero .btn--ghost:hover { background: var(--text-on-dark); color: var(--bg); border-color: var(--text-on-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--text-on-dark);
  padding: 64px 0 72px;
  background:
    radial-gradient(1100px 600px at 80% -20%, rgba(255,216,74,0.15), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(110,180,255,0.12), transparent 60%),
    linear-gradient(180deg, #0c1626 0%, #142239 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 400px at 70% 110%, rgba(255,216,74,0.10), transparent 60%),
    radial-gradient(500px 400px at 10% 0%, rgba(110,180,255,0.08), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.hero__copy { max-width: 640px; }
.hero__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
  aspect-ratio: 4 / 3;
  background: #1a2b4a;
  cursor: zoom-in;
}
.hero__photo img { transition: transform .5s ease; }
.hero__photo:hover img { transform: scale(1.04); }
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__photo-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(15,26,43,0.78);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,216,74,0.12);
  border: 1px solid rgba(255,216,74,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.hero__title span { color: var(--accent); }
.hero__lead {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--text-on-dark-soft);
  max-width: 600px;
  margin-bottom: 28px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 14px;
  color: var(--text-on-dark-soft);
}
.hero__badges li {
  position: relative;
  padding-left: 22px;
}
.hero__badges li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,216,74,0.18);
}

@media (min-width: 768px) {
  .hero { padding: 96px 0 110px; }
}
@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
  }
  .hero__photo { aspect-ratio: 5 / 4; }
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section--alt { background: var(--surface-alt); }

.section__head { text-align: center; margin-bottom: 36px; }
.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.section__title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.section__lead { color: var(--text-soft); font-size: 16px; }

@media (min-width: 768px) { .section { padding: 96px 0; } }

/* ---------- Tariff cards ---------- */
.cards {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.card__name { font-size: 14px; font-weight: 600; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 12px; }
.card__price { font-size: 36px; font-weight: 800; color: var(--bg); margin-bottom: 6px; }
.card__hint { font-size: 14px; color: var(--text-soft); }
.card--accent {
  background: linear-gradient(160deg, var(--accent) 0%, #ffc833 100%);
  border-color: transparent;
  color: var(--bg);
  box-shadow: var(--shadow-lg);
}
.card--accent .card__name,
.card--accent .card__hint { color: rgba(15,26,43,0.8); }
.card--accent .card__price { color: var(--bg); }
.card__ribbon {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bg);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 10px;
  border-radius: 999px;
}

@media (min-width: 600px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cards { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Fleet ---------- */
.fleet__row {
  display: grid;
  gap: 40px;
  align-items: center;
}
.fleet__copy p { color: var(--text-soft); font-size: 17px; margin-top: 10px; }
.fleet__copy .section__title { margin-top: 4px; }
.fleet__visual { display: block; }
.fleet__photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a2b4a;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.fleet__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.fleet__photo:hover img { transform: scale(1.04); }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.chips li {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

@media (min-width: 900px) {
  .fleet__row { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
}
.step__title { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.step p { color: var(--text-soft); }

@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Service ---------- */
.service {
  display: grid;
  gap: 36px;
  align-items: start;
}
.service > div p { color: var(--text-soft); font-size: 17px; margin-top: 10px; }
.service__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.service__list {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--border);
}
.service__list li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
}
.service__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

@media (min-width: 900px) { .service { grid-template-columns: 1.1fr 1fr; gap: 64px; } }

/* ---------- Find us ---------- */
.findus {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.findus__item figure {
  margin: 0;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  cursor: zoom-in;
}
.findus__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.findus__item:hover img { transform: scale(1.04); }
.findus__item figcaption {
  padding: 14px 18px 16px;
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  background: var(--surface);
}

@media (min-width: 700px) { .findus { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .findus__item img { height: 320px; } }

/* ---------- Locations (контакты — две точки) ---------- */
.locations {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
}
.location {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}
.location__head { display: flex; flex-direction: column; gap: 4px; }
.location__badge {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.location__title {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.3px;
}
.location__sub { font-size: 15px; color: var(--text-soft); margin: 0; }

.location__list { display: grid; gap: 14px; margin: 0; padding: 0; }
.location__list dt {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-soft);
  margin-bottom: 2px;
}
.location__list dd { margin: 0; font-size: 17px; font-weight: 600; }
.location__list a { border-bottom: 2px solid var(--accent); }

.location__cta { display: flex; flex-wrap: wrap; gap: 10px; }
.location__cta .btn { padding: 12px 18px; font-size: 15px; }

.location__map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  min-height: 260px;
  margin-top: auto;
}
.location__map iframe { width: 100%; height: 100%; min-height: 260px; border: 0; display: block; }

@media (min-width: 900px) {
  .locations { grid-template-columns: 1fr 1fr; gap: 28px; }
  .location { padding: 28px; }
  .location__map { min-height: 320px; }
  .location__map iframe { min-height: 320px; }
}

.socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.socials--centered { justify-content: center; margin-top: 0; }
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .2s, color .2s, border-color .2s;
}
.socials a:hover { background: var(--bg); color: var(--accent); border-color: var(--bg); }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  color: var(--text-on-dark-soft);
  padding: 28px 0 88px;
  font-size: 14px;
}
.footer__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer p { margin: 0; }
.footer a { color: var(--text-on-dark); border-bottom: 1px dashed rgba(255,255,255,0.3); }
.footer a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.footer__dev { font-size: 13px; opacity: 0.75; }
.footer__dev a { color: var(--accent); border-bottom-color: rgba(255,216,74,0.4); font-weight: 600; }

@media (min-width: 900px) {
  .footer__row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 16px;
  }
  .footer { padding: 28px 0; }
}

/* ---------- Floating call button (mobile) ---------- */
.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(255, 184, 0, 0.45);
  z-index: 60;
  transition: transform .2s, background .2s;
}
.fab:hover { background: var(--accent-2); transform: scale(1.05); }
@media (min-width: 860px) { .fab { display: none; } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 14, 24, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  -webkit-tap-highlight-color: transparent;
  cursor: zoom-out;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__inner {
  position: relative;
  max-width: min(1200px, 100%);
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 90px);
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform .25s ease;
  cursor: default;
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__caption {
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  color: var(--text-on-dark);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(0,0,0,0.4);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  font-size: 22px;
  line-height: 1;
  z-index: 1;
}
.lightbox__close:hover { background: var(--accent); color: var(--bg); transform: rotate(90deg); }
body.lightbox-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox img { transition: none; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
