:root {
    --night: #0a0e14;
    --panel: #131a24;
    --panel-line: #232c3a;
    --cyan: #06e5c8;
    --blue: #3b7bf6;
    --amber: #f9762e;
    --green: #22c55e;
    --fog: #e8ecf1;
    --fog-dim: #8a94a6;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--night);
    color: var(--fog);
    font-family: 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .mono {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
  }

  /* ================= HEADER ================= */

  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    background: linear-gradient(180deg, rgba(10,14,20,0.9) 0%, rgba(10,14,20,0) 100%);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.01em;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(6,229,200,0.35);
    animation: breathe 4s ease-in-out infinite;
  }
  @keyframes breathe {
    0%, 100% { box-shadow: 0 0 20px rgba(6,229,200,0.35); }
    50% { box-shadow: 0 0 28px rgba(6,229,200,0.55); }
  }

  .logo-mark svg { width: 16px; height: 16px; }

  nav {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  nav a {
    position: relative;
    color: var(--fog-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s;
    padding-bottom: 2px;
  }
  nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  nav a:hover { color: var(--fog); }
  nav a:hover::after { transform: scaleX(1); }

  .nav-links {
    display: flex;
    gap: 32px;
  }

  .cta-button {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #051014;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 24px rgba(6,229,200,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cta-button:hover { transform: translateY(-1px); box-shadow: 0 4px 28px rgba(6,229,200,0.4); }

  /* Гамбургер — скрыт на десктопе, показывается только на узких экранах. */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 15px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--fog);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  /* Превращаем три полоски в крестик, когда меню открыто. */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  @media (max-width: 860px) {
    header { padding: 18px 20px; }
    nav { gap: 16px; }
    .nav-toggle { display: flex; }

    /* На узких экранах ссылки — не строка в шапке, а выезжающая сверху
       панель на весь экран, скрытая по умолчанию и открываемая гамбургером. */
    .nav-links {
      flex-direction: column;
      gap: 4px;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 96px 28px 32px;
      background: var(--night);
      border-bottom: 1px solid var(--panel-line);
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
      z-index: 40;
    }
    .nav-links.open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
    .nav-links a {
      padding: 16px 4px;
      font-size: 18px;
      border-bottom: 1px solid var(--panel-line);
    }
  }

  /* ================= HERO ================= */

  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    overflow: hidden;
  }

  /* Атмосфера — вместо буквального скриншота, абстрактная "приборная"
     подсветка: два размытых пятна фирменных цветов, как отражение
     приборов на стекле кабины. */
  .hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    width: 1100px;
    height: 1100px;
    transform: translateX(-50%) translate(var(--mx, 0px), var(--my, 0px));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: radial-gradient(circle, rgba(6,229,200,0.10) 0%, rgba(59,123,246,0.06) 40%, transparent 70%);
    pointer-events: none;
  }

  /* Тонкая сетка широт/долгот — намёк на аэронавигационную карту, не буквально */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black 0%, transparent 75%);
    pointer-events: none;
  }

  .eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid var(--panel-line);
    border-radius: 999px;
    background: rgba(19,26,36,0.6);
    font-size: 12px;
    color: var(--cyan);
    margin-bottom: 28px;
  }

  .eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: blink 2.4s ease-in-out infinite;
  }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

  h1 {
    position: relative;
    font-size: clamp(38px, 5.4vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 920px;
    margin-bottom: 24px;
  }

  h1 .accent {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-sub {
    position: relative;
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--fog-dim);
    max-width: 620px;
    line-height: 1.6;
    margin-bottom: 40px;
  }

  .hero-actions {
    position: relative;
    display: flex;
    gap: 14px;
    margin-bottom: 88px;
  }

  .btn-secondary {
    border: 1px solid var(--panel-line);
    color: var(--fog);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 22px;
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-secondary:hover { border-color: var(--fog-dim); background: rgba(255,255,255,0.03); }

  .btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #051014;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(6,229,200,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: breathe-btn 5s ease-in-out infinite;
  }
  .btn-primary:hover { transform: translateY(-1px); animation-play-state: paused; box-shadow: 0 6px 34px rgba(6,229,200,0.45); }
  @keyframes breathe-btn {
    0%, 100% { box-shadow: 0 0 24px rgba(6,229,200,0.22); }
    50% { box-shadow: 0 0 34px rgba(6,229,200,0.4); }
  }

  /* ===== Сигнатурный элемент: полоса "приборов" ===== */

  .instrument-strip {
    position: relative;
    display: flex;
    gap: 1px;
    background: var(--panel-line);
    border: 1px solid var(--panel-line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  }

  .gauge {
    background: var(--panel);
    padding: 18px 28px;
    min-width: 148px;
    text-align: left;
  }

  .gauge-label {
    font-size: 10px;
    color: var(--fog-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
  }

  .gauge-value {
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .gauge-unit {
    font-size: 11px;
    color: var(--fog-dim);
    font-weight: 400;
  }

  .gauge.cyan .gauge-value { color: var(--cyan); text-shadow: 0 0 16px rgba(6,229,200,0.4); }
  .gauge.blue .gauge-value { color: var(--blue); text-shadow: 0 0 16px rgba(59,123,246,0.4); }
  .gauge.green .gauge-value { color: var(--green); text-shadow: 0 0 16px rgba(34,197,94,0.4); }
  .gauge.amber .gauge-value { color: var(--amber); text-shadow: 0 0 16px rgba(249,118,46,0.4); }

  @media (max-width: 720px) {
    .instrument-strip { flex-wrap: wrap; justify-content: center; }
    .gauge { min-width: 130px; flex: 1 1 45%; }
  }

  /* ===== Лента высоты — индикатор прокрутки, стилизован под VSI/альтиметр ===== */

  .altitude-tape {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .altitude-tape .cap {
    font-size: 9px;
    color: var(--fog-dim);
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .altitude-track {
    position: relative;
    width: 2px;
    height: 220px;
    background: var(--panel-line);
    border-radius: 2px;
    overflow: hidden;
  }

  .altitude-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--cyan), var(--blue));
    box-shadow: 0 0 10px rgba(6,229,200,0.6);
    border-radius: 2px;
    transition: height 0.1s linear;
  }

  .altitude-marker {
    position: absolute;
    left: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fog);
    box-shadow: 0 0 8px rgba(255,255,255,0.6);
    bottom: 0%;
    transition: bottom 0.1s linear;
  }

  @media (max-width: 960px) {
    .altitude-tape { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    .logo-mark, .btn-primary, .eyebrow-dot { animation: none !important; }
    .hero::before { transition: none; }
    .altitude-fill, .altitude-marker { transition: none; }
  }

  /* ================= ОБЩЕЕ ДЛЯ РАЗДЕЛОВ ================= */

  section.block {
    max-width: 1120px;
    margin: 0 auto;
    padding: 120px 24px;
  }

  .section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 680px;
    margin-bottom: 20px;
  }

  .section-sub {
    color: var(--fog-dim);
    font-size: 16px;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 56px;
  }

  /* Появление секций при прокрутке — сдержанно, без "прилетания" */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.02s; }
  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.14s; }
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
  .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.26s; }
  .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.32s; }

  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  }

  /* ================= PREFLIGHT (проблема) ================= */

  #preflight .section-eyebrow { color: var(--amber); }

  .caution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--panel-line);
    border: 1px solid var(--panel-line);
    border-radius: 14px;
    overflow: hidden;
  }

  .caution-item {
    background: var(--panel);
    padding: 28px;
    display: flex;
    gap: 16px;
    transition: background 0.25s;
  }
  .caution-item:hover { background: #171f2b; }

  .caution-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(249,118,46,0.12);
    border: 1px solid rgba(249,118,46,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
  }
  .caution-icon svg { width: 17px; height: 17px; }

  .caution-item h3 {
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .caution-item p {
    font-size: 13.5px;
    color: var(--fog-dim);
    line-height: 1.55;
  }

  @media (max-width: 720px) {
    .caution-grid { grid-template-columns: 1fr; }
    section.block { padding: 90px 20px; }
  }

  /* ================= CRUISE (функции) ================= */

  #cruise .section-eyebrow { color: var(--cyan); }

  .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 110px;
  }
  .feature-row:last-child { margin-bottom: 0; }
  .feature-row.reverse .feature-text { order: 2; }
  .feature-row.reverse .feature-shot { order: 1; }

  .feature-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(6,229,200,0.1);
    border: 1px solid rgba(6,229,200,0.25);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
  }

  .feature-text h3 {
    font-size: clamp(22px, 2.4vw, 27px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    line-height: 1.25;
  }

  .feature-text p {
    color: var(--fog-dim);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--fog);
  }
  .feature-list li::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    margin-top: 7px;
    box-shadow: 0 0 6px rgba(6,229,200,0.6);
  }

  /* "Окно кабины" — рамка для скриншотов: тёмный фон страницы, светлый
     реальный интерфейс внутри выглядит как подсвеченный экран/иллюминатор,
     а не просто вставленная картинка. */
  .feature-shot {
    position: relative;
    border-radius: 14px;
    padding: 3px;
    background: linear-gradient(145deg, rgba(6,229,200,0.35), rgba(59,123,246,0.15), var(--panel-line));
    box-shadow: 0 40px 100px -30px rgba(0,0,0,0.7);
  }
  .feature-shot-inner {
    border-radius: 12px;
    overflow: hidden;
    background: #0d1117;
  }
  .shot-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--panel);
  }
  .shot-dot { width: 8px; height: 8px; border-radius: 50%; }
  .feature-shot img {
    display: block;
    width: 100%;
    height: auto;
    cursor: zoom-in;
    transition: filter 0.25s;
  }
  .feature-shot img:hover { filter: brightness(1.04); }

  @media (max-width: 860px) {
    .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
    .feature-row.reverse .feature-text, .feature-row.reverse .feature-shot { order: unset; }
    .feature-row { gap: 28px; margin-bottom: 70px; }
  }

  /* Компактная пара скриншотов (People) */
  .people-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  @media (max-width: 720px) {
    .people-pair { grid-template-columns: 1fr; }
  }

  /* ===== Лайтбокс — увеличенный просмотр скриншота ===== */

  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(5,8,12,0.92);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .lightbox.open {
    display: flex;
    opacity: 1;
  }
  .lightbox-frame {
    position: relative;
    max-width: 1200px;
    max-height: 88vh;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #0d1117;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 40px 120px -20px rgba(0,0,0,0.9);
    transform: scale(0.97);
    transition: transform 0.25s ease;
  }
  .lightbox.open .lightbox-frame { transform: scale(1); }
  .lightbox-frame img {
    display: block;
    width: 100%;
    max-height: calc(88vh - 40px);
    object-fit: contain;
    background: #fff;
  }
  .lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10,14,20,0.7);
    border: 1px solid var(--panel-line);
    color: var(--fog);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .lightbox-close:hover { background: rgba(10,14,20,0.95); }

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

  /* ================= DEBRIEF (доверие) ================= */

  #debrief .section-eyebrow { color: var(--green); }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .trust-card {
    border: 1px solid var(--panel-line);
    border-radius: 14px;
    padding: 26px 22px;
    background: linear-gradient(180deg, rgba(19,26,36,0.5), rgba(19,26,36,0.15));
    transition: border-color 0.25s, transform 0.25s;
  }
  .trust-card:hover { border-color: rgba(34,197,94,0.35); transform: translateY(-2px); }

  .trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .trust-icon svg { width: 16px; height: 16px; }

  .trust-card h3 {
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .trust-card p {
    font-size: 12.5px;
    color: var(--fog-dim);
    line-height: 1.6;
  }

  @media (max-width: 900px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .trust-grid { grid-template-columns: 1fr; }
  }

  /* ================= FLIGHT PLAN (тарифы) ================= */

  #flightplan .section-eyebrow { color: var(--blue); }

  .pricing-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 28px;
    align-items: start;
  }

  .price-card {
    position: relative;
    border-radius: 18px;
    padding: 36px 32px;
    background: linear-gradient(165deg, rgba(6,229,200,0.08), rgba(59,123,246,0.04) 60%, transparent);
    border: 1px solid rgba(6,229,200,0.25);
    overflow: hidden;
  }
  .price-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6,229,200,0.15), transparent 70%);
    pointer-events: none;
  }

  .price-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 18px 0 6px;
  }
  .price-amount .num {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .price-amount .per { font-size: 14px; color: var(--fog-dim); }

  .price-card .includes-note {
    font-size: 13px;
    color: var(--fog-dim);
    margin-bottom: 22px;
  }

  .price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 26px;
  }
  .price-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--fog);
  }
  .price-features li svg {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    color: var(--green);
    margin-top: 2px;
  }

  /* Таблица доплаты за флот — в стиле приборной панели, данные — моно */
  .fleet-table {
    border: 1px solid var(--panel-line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--panel);
  }
  .fleet-table-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--panel-line);
  }
  .fleet-table-head h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
  .fleet-table-head p { font-size: 12px; color: var(--fog-dim); }

  .fleet-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    padding: 13px 20px;
    border-bottom: 1px solid var(--panel-line);
    font-size: 12.5px;
    align-items: center;
  }
  .fleet-row:last-child { border-bottom: none; }
  .fleet-row.head {
    color: var(--fog-dim);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255,255,255,0.015);
  }
  .fleet-row .cat { color: var(--fog); font-weight: 500; }
  .fleet-row .weight { color: var(--fog-dim); }
  .fleet-row .price { color: var(--cyan); font-weight: 600; text-align: right; }
  .fleet-row .price.dash { color: var(--fog-dim); font-weight: 400; }

  .fleet-note {
    padding: 14px 20px;
    font-size: 11.5px;
    color: var(--fog-dim);
    background: rgba(255,255,255,0.015);
    line-height: 1.6;
  }

  @media (max-width: 860px) {
    .pricing-layout { grid-template-columns: 1fr; }
  }

  /* ================= CONTACT / FOOTER ================= */

  #contact {
    text-align: center;
    padding-bottom: 80px;
  }
  #contact .section-title { max-width: 640px; margin-left: auto; margin-right: auto; }
  #contact .section-sub { max-width: 480px; margin-left: auto; margin-right: auto; }

  .contact-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 64px;
  }

  .emergency-strip {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-radius: 12px;
    border: 1px solid rgba(249,118,46,0.3);
    background: rgba(249,118,46,0.06);
    text-align: left;
  }
  .emergency-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(249,118,46,0.15);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .emergency-icon svg { width: 18px; height: 18px; }
  .emergency-strip .label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 2px;
  }
  .emergency-strip p { font-size: 13px; color: var(--fog-dim); }
  .emergency-strip a { color: var(--fog); font-weight: 600; text-decoration: none; }
  .emergency-strip a:hover { text-decoration: underline; }

  footer {
    border-top: 1px solid var(--panel-line);
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--fog-dim);
  }
  .footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-links a {
    font-size: 12.5px;
    color: var(--fog-dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--fog); }
  .footer-copy { font-size: 12px; color: #55606f; }

  @media (max-width: 640px) {
    footer { flex-direction: column; text-align: center; padding: 32px 24px; }
    .emergency-strip { flex-direction: column; text-align: center; }
  }

  /* ================= ЮРИДИЧЕСКИЕ СТРАНИЦЫ (Privacy/Terms/Cookies) ================= */
  /* Простой, читаемый текстовый макет — не hero-анимации, тут задача дать
     прочитать длинный документ, а не произвести впечатление. */

  .doc-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 140px 24px 100px;
  }

  .doc-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--fog-dim);
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.2s;
  }
  .doc-back:hover { color: var(--cyan); }

  .doc-status {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(249,118,46,0.1);
    border: 1px solid rgba(249,118,46,0.25);
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
  }

  .doc-page h1 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }

  .doc-meta {
    font-size: 12.5px;
    color: var(--fog-dim);
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--panel-line);
  }

  .doc-body h2 {
    font-size: 19px;
    font-weight: 600;
    margin: 44px 0 14px;
    letter-spacing: -0.01em;
  }
  .doc-body h2:first-child { margin-top: 0; }

  .doc-body h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--cyan);
  }

  .doc-body p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #c4cbd6;
    margin-bottom: 16px;
  }

  .doc-body ul, .doc-body ol {
    margin: 0 0 16px 20px;
    font-size: 14.5px;
    line-height: 1.75;
    color: #c4cbd6;
  }
  .doc-body li { margin-bottom: 6px; }

  .doc-body strong { color: var(--fog); font-weight: 600; }

  .doc-body a { color: var(--cyan); text-decoration: none; border-bottom: 1px solid rgba(6,229,200,0.3); }
  .doc-body a:hover { border-bottom-color: var(--cyan); }

  .doc-placeholder {
    color: var(--amber);
    background: rgba(249,118,46,0.08);
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 0.92em;
  }

  .doc-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 13.5px;
  }
  .doc-body th, .doc-body td {
    text-align: left;
    padding: 10px 12px;
    border: 1px solid var(--panel-line);
  }
  .doc-body th {
    background: var(--panel);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fog-dim);
  }
  .doc-body td { color: #c4cbd6; }

  .doc-body hr {
    border: none;
    border-top: 1px solid var(--panel-line);
    margin: 36px 0;
  }

  .doc-note {
    margin-top: 40px;
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid var(--panel-line);
    background: rgba(255,255,255,0.015);
    font-size: 13px;
    color: var(--fog-dim);
    line-height: 1.7;
  }

  /* ================= BLOG PREVIEW (homepage section) ================= */

  .blog-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  @media (max-width: 720px) {
    .blog-preview-grid { grid-template-columns: 1fr; }
  }

  .blog-preview-card {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--panel-line);
    background: rgba(255,255,255,0.015);
    transition: border-color 0.2s, transform 0.2s;
  }
  .blog-preview-card:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
  }
  .blog-preview-card .blog-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.05em;
    color: var(--cyan);
    text-transform: uppercase;
  }
  .blog-preview-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 8px 0 8px;
    line-height: 1.35;
  }
  .blog-preview-card p {
    color: var(--fog-dim);
    font-size: 13px;
    line-height: 1.6;
  }

  .blog-preview-more {
    display: inline-block;
    margin-top: 28px;
    color: var(--cyan);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
  }
  .blog-preview-more:hover { text-decoration: underline; }
