/* ============================================================
   ДОСТАВКА ПРО — фирменный стиль
   Палитра: оранжевый #F28C28→#E8722A, синий #2E7EC2→#1B5E9E,
   тёмно-синий #1F3A5F, серый #8A8F98
   ============================================================ */

:root {
  --orange: #F28C28;
  --orange-deep: #E8722A;
  --blue: #2E7EC2;
  --blue-deep: #1B5E9E;
  --navy: #1F3A5F;
  --gray: #8A8F98;
  --bg: #F7F9FC;
  --white: #FFFFFF;
  --grad-brand: linear-gradient(93deg, var(--orange) 0%, var(--orange-deep) 38%, var(--blue) 72%, var(--blue-deep) 100%);
  --grad-cta: linear-gradient(93deg, #F79A3E 0%, var(--orange-deep) 100%);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(31, 58, 95, .10);
  --shadow-lift: 0 16px 40px rgba(31, 58, 95, .16);
  --container: 1160px;
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Manrope', 'Arial', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--bg);
  min-width: 320px;
}

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

a { color: var(--blue-deep); text-decoration: none; }
a:hover { color: var(--orange-deep); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 6px;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(30px, 6vw, 54px); }
h2 { font-size: clamp(24px, 4.2vw, 38px); }
h3 { font-size: clamp(19px, 2.6vw, 23px); }

.accent-i { font-style: italic; color: var(--orange-deep); }
.accent-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding: clamp(52px, 8vw, 96px) 0; }
.section--alt { background: var(--white); }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  padding-left: 34px;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 3px;
  transform: translateY(-50%) skewX(-25deg);
  background: var(--grad-cta);
  border-radius: 2px;
}
.section-head p { color: var(--gray); font-size: 18px; margin: 0; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-cta);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(232, 114, 42, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(232, 114, 42, .45); }
.btn--ghost {
  background: transparent;
  color: var(--navy) !important;
  border: 2px solid rgba(31, 58, 95, .25);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue-deep) !important; }
.btn--light {
  background: #fff;
  color: var(--blue-deep) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}
.btn--light:hover { transform: translateY(-2px); }
.btn--lg { font-size: 19px; padding: 19px 38px; }
.btn svg { flex: none; }

/* ---------- Хедер ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 58, 95, .08);
  transition: box-shadow .2s ease;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(31, 58, 95, .10); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; flex: none; }
.logo img, .logo svg { height: 44px; width: auto; }
.nav { display: flex; gap: 26px; margin-left: 8px; }
.nav a {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--grad-cta);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.header__actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }


.header .btn { padding: 12px 22px; font-size: 15px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .25s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(118deg, var(--navy) 0%, var(--blue-deep) 46%, var(--blue) 78%, var(--orange-deep) 130%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 320px at 88% 18%, rgba(242, 140, 40, .34), transparent 65%),
    radial-gradient(480px 300px at 8% 90%, rgba(46, 126, 194, .35), transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 40px;
  align-items: center;
  padding: clamp(56px, 8vw, 110px) 0 clamp(56px, 8vw, 100px);
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .sum { color: var(--orange); font-style: italic; white-space: nowrap; }
.hero__sub { font-size: clamp(17px, 2.2vw, 20px); color: rgba(255, 255, 255, .88); max-width: 520px; margin: 0 0 30px; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }



.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero__badges span {
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
}
.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; filter: drop-shadow(0 24px 40px rgba(0,0,0,.30)); }

/* Линии скорости — фирменный мотив */
.speedlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.speedlines i {
  position: absolute;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-30deg);
  animation: dash 3.4s linear infinite;
  opacity: 0;
}
.speedlines i:nth-child(1) { top: 22%; width: 180px; animation-delay: 0s; }
.speedlines i:nth-child(2) { top: 48%; width: 260px; animation-delay: 1.1s; }
.speedlines i:nth-child(3) { top: 74%; width: 140px; animation-delay: 2.2s; }
@keyframes dash {
  0%   { left: -300px; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* Внутренний hero (подстраницы) */
.hero--page .hero__inner { grid-template-columns: 1fr; padding: clamp(46px, 6vw, 76px) 0; }
.breadcrumbs { font-size: 13.5px; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.breadcrumbs a { color: rgba(255,255,255,.85); }
.breadcrumbs a:hover { color: var(--orange); }

/* ---------- Карточки преимуществ ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 58, 95, .05);
}
.card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(242,140,40,.14), rgba(46,126,194,.14));
  margin-bottom: 18px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--gray); font-size: 15.5px; }

/* ---------- Карточки вакансий ---------- */
.vac-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 58, 95, .05);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.vac-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity .2s ease;
}
.vac-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.vac-card:hover::before { opacity: 1; }
.vac-card__income {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 19px;
  color: var(--orange-deep);
  margin: 4px 0 10px;
}
.vac-card p { color: var(--gray); font-size: 15.5px; margin: 0 0 22px; }
.vac-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Шаги ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.step {
  counter-increment: step;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 42px;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 18.5px; margin-bottom: 8px; }
.step p { margin: 0; color: var(--gray); font-size: 15px; }

/* ---------- Полоса «быстрый старт» ---------- */
.fastband {
  background: var(--grad-brand);
  border-radius: var(--radius);
  color: #fff;
  padding: clamp(26px, 4vw, 40px) clamp(24px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-lift);
}
.fastband strong { font-family: var(--font-display); font-size: clamp(19px, 3vw, 26px); font-weight: 800; font-style: italic; }
.fastband p { margin: 4px 0 0; color: rgba(255,255,255,.9); }

/* ---------- Цифры доверия ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: center; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(30px, 5vw, 46px);
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: var(--gray); font-size: 15.5px; }

/* Лента партнёров */
.partners { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.partners span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--gray);
  background: var(--white);
  border: 1px solid rgba(31,58,95,.08);
  border-radius: 999px;
  padding: 12px 26px;
  box-shadow: var(--shadow);
}
.partners-note { text-align: center; color: var(--gray); font-size: 14px; margin-top: 18px; }

/* ---------- Списки условий / требований ---------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.checklist li { position: relative; padding-left: 34px; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.5-4.3-4.3 1.7-1.7 2.6 2.6 5.8-5.8 1.7 1.7-7.5 7.5z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.5-4.3-4.3 1.7-1.7 2.6 2.6 5.8-5.8 1.7 1.7-7.5 7.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow);
}
.panel h3 { margin-bottom: 18px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; }
.faq details {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid rgba(31,58,95,.05);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 19px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-size: 24px;
  font-weight: 400;
  color: var(--orange-deep);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 24px 20px; color: var(--gray); font-size: 15.5px; }

/* ---------- Финальный CTA ---------- */
.cta-final {
  background: linear-gradient(118deg, var(--navy) 0%, var(--blue-deep) 55%, var(--blue) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 68px) clamp(24px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 30px; }
.cta-final__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 34px;
  margin-top: 26px;
}


.cta-final__mail { font-size: 17px; color: rgba(255,255,255,.9); }
.cta-final__mail:hover { color: var(--orange); }

/* ---------- Футер ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding: 52px 0 30px;
  font-size: 14.5px;
}
.footer a { color: rgba(255,255,255,.85); }
.footer a:hover { color: var(--orange); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.footer nav { display: grid; gap: 9px; }
.footer__phone { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff !important; }
.footer__requisites { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* ---------- Плавающая кнопка звонка ---------- */




/* ---------- Анимация появления ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Прочее ---------- */
.prose p { margin: 0 0 1em; }
.prose ul { padding-left: 22px; }
.income-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--orange);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.contact-big {
  display: grid;
  gap: 18px;
  font-size: 18px;
}
.contact-big a { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 4vw, 30px); color: var(--navy); }
.contact-big a:hover { color: var(--orange-deep); }
.contact-big small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 14px; color: var(--gray); margin-bottom: 2px; }

/* ---------- Адаптив ---------- */
@media (max-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps--4 { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 20px;
    box-shadow: 0 20px 30px rgba(31,58,95,.15);
    transform: translateY(-140%);
    transition: transform .28s ease;
    z-index: 99;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 13px 0; border-bottom: 1px solid rgba(31,58,95,.07); font-size: 17px; }
  .burger { display: flex; }
  .header .btn { padding: 10px 18px; font-size: 14px; }
  .logo img, .logo svg { height: 38px; }
}

@media (max-width: 640px) {
  .header__inner { gap: 12px; }
  .header .btn { display: none; }
  .grid--3, .grid--2, .steps, .steps--4 { grid-template-columns: 1fr; }
  .twocol { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 26px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .btn--lg { width: 100%; }
}
