/* ===== Fonts (self-hosted, Cyrillic + Latin subsets only) ===== */
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/static/fonts/golos-text-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/static/fonts/golos-text-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/fonts/pt-sans-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/fonts/pt-sans-400-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/fonts/pt-sans-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/fonts/pt-sans-700-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/static/fonts/jetbrains-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/static/fonts/jetbrains-mono-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* ===== Design tokens ===== */
:root {
  --ink: #10181f;
  --ink-soft: #4b5763;
  --ink-faint: #7c8791;
  --paper: #f6f4ef;
  --surface: #ffffff;
  --line: #e3ded3;
  --line-strong: #cfc8b8;

  --blue-900: #0a2f57;
  --blue-800: #0b3f77;
  --blue-700: #0b4f9e;
  --blue-600: #1465c4;
  --blue-500: #2e7bd6;
  --blue-100: #e4eefb;

  --amber-700: #a8420f;
  --amber-600: #d9531f;
  --amber-500: #ff6a3d;
  --amber-100: #ffe6da;

  --night-900: #071322;
  --night-800: #0b1e33;

  --font-display: "Golos Text", "Arial Narrow", sans-serif;
  --font-body: "PT Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-card: 0 1px 2px rgba(16, 24, 31, 0.06), 0 8px 24px -12px rgba(16, 24, 31, 0.18);

  --wrap: min(1180px, 100% - 2.5rem);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 0.6em; color: var(--blue-900); }
p { margin: 0 0 1em; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
svg { fill: currentColor; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue-700); color: #fff; padding: 0.75em 1.25em; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.wrap { width: var(--wrap); margin-inline: auto; }

.mono-accent {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--blue-700);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-display); font-weight: 700; text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 0.9em 1.4em;
  min-height: 52px;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}
.btn__icon { width: 1.15em; height: 1.15em; flex: none; }
.btn--call {
  background: var(--blue-700);
  color: #fff;
  box-shadow: inset 0 -4px 0 var(--blue-900);
}
.btn--call:hover { background: var(--blue-600); }
.btn--call:active { box-shadow: inset 0 -1px 0 var(--blue-900); transform: translateY(3px); }
.btn--ghost {
  background: transparent;
  color: var(--blue-900);
  box-shadow: inset 0 0 0 2px var(--line-strong);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--blue-700); color: var(--blue-700); }
.btn--lg { font-size: 1.08rem; padding: 1.05em 1.6em; width: 100%; }
.btn--header { display: none; }

@media (min-width: 720px) {
  .btn--lg { width: auto; }
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header__row { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; gap: 1rem; }

.wordmark { display: inline-flex; align-items: baseline; gap: 0.4em; text-decoration: none; }
.wordmark__name { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; font-size: 1.15rem; color: var(--blue-900); }
.wordmark__badge {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.72rem;
  background: var(--amber-500); color: var(--blue-900); padding: 0.15em 0.42em; border-radius: 5px;
  transform: translateY(-0.1em);
}

.site-nav { display: none; }
@media (min-width: 960px) {
  .site-nav { display: flex; gap: 1.6rem; font-size: 0.95rem; font-weight: 700; }
  .site-nav a { text-decoration: none; color: var(--ink-soft); }
  .site-nav a:hover { color: var(--blue-700); }
  .btn--header { display: inline-flex; min-height: 44px; padding: 0.6em 1.2em; }
}

/* ===== Section shells ===== */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section--paper { background: var(--surface); border-block: 1px solid var(--line); }
.section__eyebrow {
  font-family: var(--font-mono); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--amber-700); font-size: 0.8rem; margin-bottom: 0.7em;
}
.section__title { font-size: clamp(1.6rem, 3.4vw + 0.9rem, 2.3rem); max-width: 34ch; }
.section__lead { color: var(--ink-soft); max-width: 56ch; font-size: 1.05rem; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; background: var(--blue-900); }
.hero__media { position: relative; width: 100%; aspect-ratio: 4 / 3; }
.hero__media picture, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,47,87,0) 40%, rgba(7,19,34,0.88) 100%);
}
.hero__inner { position: relative; padding-block: 1.75rem 2.5rem; }
.hero__content { color: #fff; }
.hero__eyebrow { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-500); margin-bottom: 0.6em; }
.hero__title { color: #fff; font-size: clamp(1.9rem, 5.2vw + 0.6rem, 2.9rem); max-width: 16ch; }
.hero__title .mono-accent { color: var(--amber-500); }
.hero__lead { color: rgba(255,255,255,0.86); font-size: 1.08rem; max-width: 46ch; }
.hero__actions { display: grid; gap: 0.8rem; margin: 1.5rem 0; }
@media (min-width: 720px) {
  .hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
}
.hero .btn--ghost { color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.55); }
.hero .btn--ghost:hover { box-shadow: inset 0 0 0 2px #fff; }
.hero__stats { display: grid; gap: 0.5rem; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.2); }
.hero__stats li { display: flex; align-items: baseline; gap: 0.6em; color: rgba(255,255,255,0.82); font-size: 0.92rem; }
.hero__stats .mono-accent { color: var(--amber-500); font-size: 1.05rem; min-width: 4.2ch; }

@media (min-width: 960px) {
  .hero__media { position: absolute; inset: 0 0 0 50%; aspect-ratio: auto; clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%); }
  .hero__media::after { background: linear-gradient(90deg, rgba(10,47,87,0.95) 0%, rgba(10,47,87,0) 45%); }
  .hero__inner { padding-block: 5rem; min-height: 640px; display: flex; align-items: center; }
  .hero__content { max-width: 50%; }
  .hero__stats { grid-auto-flow: column; justify-content: start; gap: 2.2rem; }
}

/* ===== Services ===== */
.services-grid { display: grid; gap: 1.25rem; margin-top: 1.8rem; }
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--surface); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  border: 1px solid var(--line);
}
.service-card__media { aspect-ratio: 4/3; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 1.3rem 1.3rem 0.4rem; flex: 1; }
.service-card__body h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.service-card__body p { color: var(--ink-soft); font-size: 0.95rem; }
.service-card__price {
  margin: 0.6rem 1.3rem 1.3rem; padding: 0.55em 0.9em;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.92rem;
  background: var(--blue-100); color: var(--blue-800); border-radius: 6px;
  border-left: 3px dashed var(--blue-500);
  width: fit-content;
}

/* ===== Prices ===== */
.price-list { margin-top: 1.8rem; display: grid; gap: 0.9rem; max-width: 760px; }
.price-list__row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; column-gap: 0.6rem;
  padding-bottom: 0.9rem; border-bottom: 1px dotted var(--line-strong);
}
.price-list__label { font-weight: 700; color: var(--ink); }
.price-list__leader { border-bottom: 1px dotted transparent; }
.price-list__price { font-size: 1.15rem; white-space: nowrap; }
.price-list__note { grid-column: 1 / -1; color: var(--ink-faint); font-size: 0.88rem; margin-top: 0.2rem; }

/* ===== Steps ===== */
.steps { margin-top: 2rem; display: grid; gap: 2rem; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; } }
.steps__item { position: relative; padding-top: 0.2rem; border-top: 3px solid var(--blue-700); }
.steps__number { display: block; font-size: 1.6rem; margin: 0.4rem 0 0.5rem; }
.steps__item h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.steps__item p { color: var(--ink-soft); font-size: 0.93rem; }

/* ===== Feature (why us) ===== */
.section--feature { background: var(--surface); border-block: 1px solid var(--line); }
.feature-grid { display: grid; gap: 2rem; }
@media (min-width: 960px) { .feature-grid { grid-template-columns: 0.85fr 1fr; align-items: center; gap: 3rem; } }
.feature-grid__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 3/4; }
.feature-grid__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-highlight {
  background: var(--amber-100); border-left: 4px solid var(--amber-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.3rem 1.4rem; margin-bottom: 1.6rem;
}
.feature-highlight h2 { font-size: 1.35rem; color: var(--blue-900); }
.feature-highlight p { margin: 0; color: var(--ink); }
.feature-list { display: grid; gap: 1.1rem; }
.feature-list h3 { font-size: 1.02rem; margin-bottom: 0.3em; color: var(--ink); }
.feature-list p { color: var(--ink-soft); font-size: 0.93rem; margin: 0; }

/* ===== Stats strip (night) ===== */
.stats-strip { position: relative; overflow: hidden; color: #fff; padding: clamp(3rem, 7vw, 5rem) 0; }
.stats-strip__media { position: absolute; inset: 0; }
.stats-strip__media img { width: 100%; height: 100%; object-fit: cover; }
.stats-strip__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,19,34,0.9), rgba(7,19,34,0.78)); }
.stats-strip__content { position: relative; }
.stats-strip__content h2 { color: #fff; font-size: clamp(1.5rem, 3vw + 0.8rem, 2.1rem); }
.stats-strip__content > p { color: rgba(255,255,255,0.82); max-width: 50ch; }
.stats-strip__grid { display: grid; gap: 1.2rem; margin-top: 2rem; }
@media (min-width: 720px) { .stats-strip__grid { grid-template-columns: repeat(3, 1fr); } }
.stats-strip__grid > div { border-top: 1px solid rgba(255,255,255,0.25); padding-top: 0.8rem; }
.stats-strip__grid .mono-accent { display: block; color: var(--amber-500); font-size: 1.8rem; }
.stats-strip__grid small { color: rgba(255,255,255,0.75); }

/* ===== Geography ===== */
.geo-grid { display: grid; gap: 2rem; }
@media (min-width: 960px) { .geo-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 3rem; } }
.geo-grid__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); order: -1; aspect-ratio: 16/9; }
.geo-grid__media img { width: 100%; height: 100%; object-fit: cover; object-position: 15% 50%; }
@media (min-width: 960px) { .geo-grid__media { order: 1; } }
.geo-list { margin-top: 1.6rem; display: grid; gap: 1.2rem; }
.geo-list__row { border-top: 1px solid var(--line); padding-top: 0.9rem; }
.geo-list__row dt { font-family: var(--font-display); font-weight: 700; color: var(--blue-800); margin-bottom: 0.3em; }
.geo-list__row dd { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

/* ===== FAQ ===== */
.faq-list { margin-top: 1.8rem; display: grid; gap: 0.7rem; max-width: 760px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.2rem 1.1rem;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1rem 1.6rem 1rem 0; position: relative;
  font-weight: 700; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 0.85rem;
  font-family: var(--font-mono); font-size: 1.3rem; color: var(--blue-700);
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding-bottom: 1.1rem; margin: 0; }

/* ===== Fleet strip ===== */
#fleet-strip-wrap { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.fleet-strip {
  display: flex; justify-content: safe center; gap: 0.8rem; overflow-x: auto;
  padding: 1.4rem clamp(1.25rem, 4vw, calc((100% - 1180px) / 2 + 1.25rem)) 0.4rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.fleet-strip__item {
  margin: 0; flex: none; width: 200px; aspect-ratio: 4/3; border-radius: var(--radius-sm);
  overflow: hidden; scroll-snap-align: start; box-shadow: var(--shadow-card);
}
.fleet-strip__item img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Final CTA ===== */
.final-cta { background: var(--blue-900); color: #fff; }
.final-cta__inner { display: grid; gap: 1.6rem; }
@media (min-width: 860px) { .final-cta__inner { grid-template-columns: 1fr auto; align-items: center; } }
.final-cta h2 { color: #fff; font-size: clamp(1.5rem, 3vw + 0.8rem, 2.1rem); margin-bottom: 0.3em; }
.final-cta p { color: rgba(255,255,255,0.8); margin: 0; }
.final-cta .btn--ghost { color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.55); }
.final-cta .btn--ghost:hover { box-shadow: inset 0 0 0 2px #fff; }
.final-cta .hero__actions { margin: 0; }

/* ===== Footer ===== */
.site-footer { background: var(--night-900); color: rgba(255,255,255,0.82); padding: 3.5rem 0 1.5rem; }
.site-footer__grid { display: grid; gap: 2.2rem; }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 42ch; margin-top: 0.8rem; }
.site-footer .wordmark__name { color: #fff; }
.site-footer h2 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.8em; }
.site-footer__col ul, .footer-contacts { display: grid; gap: 0.55rem; }
.site-footer a { text-decoration: none; color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: #fff; }
.site-footer__legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ===== Sticky mobile bar ===== */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  background: var(--surface); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(16,24,31,0.12);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.sticky-bar__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem;
  padding: 0.55rem 0.3rem; text-decoration: none; font-size: 0.72rem; font-weight: 700;
  color: var(--ink-soft); border-right: 1px solid var(--line);
}
.sticky-bar__item:last-child { border-right: none; }
.sticky-bar__item svg { width: 22px; height: 22px; }
.sticky-bar__item--call { background: var(--blue-700); color: #fff; }
@media (min-width: 960px) { .sticky-bar { display: none; } }
body { padding-bottom: 64px; }
@media (min-width: 960px) { body { padding-bottom: 0; } }

/* ===== Consent note ===== */
.consent-note {
  position: fixed; left: 1rem; right: 1rem; bottom: 76px; z-index: 140;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 0.9rem 1rem; font-size: 0.82rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 0.8rem; max-width: 520px;
}
.consent-note[hidden] { display: none; }
.consent-note p { margin: 0; }
.consent-note a { color: var(--blue-700); font-weight: 700; }
.consent-note button {
  flex: none; background: var(--blue-100); color: var(--blue-800); border-radius: 6px;
  padding: 0.4em 0.8em; font-weight: 700; border: none; cursor: pointer;
}
@media (min-width: 960px) { .consent-note { bottom: 1.25rem; } }

/* ===== Legal page ===== */
.legal__inner { max-width: 760px; }
.legal__updated { color: var(--ink-faint); font-size: 0.9rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.2rem; margin-top: 1.8em; }
.legal ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1em; }
.legal ul li { margin-bottom: 0.4em; }
.legal__contact { margin-top: 2rem; font-weight: 700; }
