/* ============ RESET / BASE ============ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #15192b;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s ease, background .15s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
input, textarea { font-family: inherit; font-size: inherit; }

:root {
  --c-primary: #0a1f44;
  --c-primary-dark: #061434;
  --c-primary-darker: #030c22;
  --c-accent: #1e4ea6;
  --c-red: #e22030;
  --c-red-dark: #c01828;
  --c-red-hover: #f02838;
  --c-green: #4caf50;
  --c-yellow: #f4c430;
  --c-text: #15192b;
  --c-muted: #5e6478;
  --c-border: #e1e5ee;
  --c-bg-gray: #f4f6fa;
  --c-bg-card: #ffffff;
  --c-bg-card-gray: #eef1f6;
  --shadow-sm: 0 2px 6px rgba(10, 31, 68, 0.05);
  --shadow-md: 0 4px 20px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 31, 68, 0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --header-h: 78px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  transition: all .2s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary { background: var(--c-red); color: #fff; }
.btn--primary:hover { background: var(--c-red-hover); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(226, 32, 48, 0.35); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn--outline-white { color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--outline-dark { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn--outline-dark:hover { background: var(--c-primary); color: #fff; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--xl { padding: 22px 32px; font-size: 18px; font-weight: 700; }
.btn--block { width: 100%; }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.header__logo { flex-shrink: 0; }
.header__logo img { height: 44px; width: auto; }
.header__nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
}
.header__nav a { color: var(--c-text); position: relative; padding: 4px 0; }
.header__nav a:hover { color: var(--c-red); }
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-primary);
}
.header__phone:hover { color: var(--c-red); }
.header__phone svg { color: var(--c-red); }
.header__cta { padding: 12px 22px; font-size: 14px; }
.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.header.is-open .header__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.is-open .header__burger span:nth-child(2) { opacity: 0; }
.header.is-open .header__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--c-primary-dark);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/img/hero-tank.jpg') center/cover no-repeat;
  opacity: 0.18;
  filter: contrast(1.05) brightness(0.7);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,20,52,0.6) 0%, rgba(6,20,52,0.95) 100%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #fff;
}
.hero__subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 32px;
}
.hero__subtitle b { color: var(--c-red); font-weight: 700; }

.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hero__perk {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: background .15s, border-color .15s;
}
.hero__perk:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(76, 175, 80, 0.5);
}
.hero__perk-check {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--c-green);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.25);
}
.hero__perk-text { min-width: 0; }
.hero__perk-num {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.hero__perk-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  line-height: 1.35;
}

.hero__form-wrap {
  align-self: center;
}

/* ============ LEAD FORM ============ */
.lead-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--c-text);
  box-shadow: var(--shadow-lg);
}
.lead-form__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--c-primary);
}
.lead-form__subtitle {
  font-size: 14px;
  color: var(--c-muted);
  margin-bottom: 22px;
}

.lead-form--dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
  color: #fff;
}
.lead-form--dark .lead-form__title { color: #fff; }
.lead-form--dark .lead-form__subtitle { color: rgba(255,255,255,0.7); }
.lead-form--dark .form__field input { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; }
.lead-form--dark .form__field input::placeholder { color: rgba(255,255,255,0.5); }
.lead-form--dark .form__field input:focus { background: rgba(255,255,255,0.15); border-color: var(--c-red); }

.form__field { margin-bottom: 14px; }
.form__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
  margin-bottom: 6px;
}
.form__field input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  color: var(--c-text);
}
.form__field input:focus { border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(226,32,48,0.1); }
.form__field input.is-invalid { border-color: var(--c-red); background: #fef5f6; }

.form__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.4;
  cursor: pointer;
}
.form__agree input[type="checkbox"] {
  margin-top: 2px;
  width: 14px;
  height: 14px;
  accent-color: var(--c-red);
}
.form__agree a { color: var(--c-primary); text-decoration: underline; }
.form__agree--dark { color: rgba(255,255,255,0.6); }
.form__agree--dark a { color: rgba(255,255,255,0.9); }

/* ============ SECTION COMMON ============ */
.section { padding: 88px 0; }
.section--gray { background: var(--c-bg-gray); }
.section__head { max-width: 760px; margin-bottom: 48px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--c-red);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--c-primary);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.section__lead {
  font-size: 17px;
  color: var(--c-muted);
  max-width: 660px;
  margin: 0;
}
.section__head--center .section__lead { margin-left: auto; margin-right: auto; }

/* ============ PAYOUTS ============ */
.payouts__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 24px;
}
.payouts__big {
  background: linear-gradient(160deg, var(--c-primary) 0%, var(--c-primary-darker) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.payouts__big::before {
  content: '';
  position: absolute;
  inset: -50% -30% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(226,32,48,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.payouts__big-eyebrow {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  position: relative;
}
.payouts__big-num {
  font-size: clamp(54px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
}
.payouts__big-lbl {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  position: relative;
}
.payouts__big-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  flex-grow: 1;
  position: relative;
}
.payouts__big .btn { position: relative; }

.payouts__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}
.card {
  padding: 26px 24px;
  border-radius: var(--radius);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card--white { background: #fff; }
.card__num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--c-primary);
  line-height: 1.15;
  margin-bottom: 8px;
}
.card__num--icon {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
}
.card__num--icon svg { flex-shrink: 0; }
.card__lbl {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.45;
}

/* ============ WHO ============ */
.who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.who__item {
  text-align: center;
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  transition: transform .18s ease, box-shadow .18s ease;
}
.who__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.who__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(226,32,48,0.08);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.who__icon svg { color: var(--c-red); }
.who__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.who__desc {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.55;
}

/* ============ STEPS ============ */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  padding: 36px 32px;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(226,32,48,0.18) 0%, transparent 70%);
}
.step__num {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-red);
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
}
.step__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}
.step__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  position: relative;
}

/* ============ VACANCIES ============ */
.vacancies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.vacancy {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.vacancy:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(226,32,48,0.3);
}
.vacancy__icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(226,32,48,0.08);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.vacancy__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 6px;
}
.vacancy__sub {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.vacancy__price {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(226,32,48,0.08);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-red);
}
.vacancies__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.vacancies__cta p {
  font-size: 17px;
  color: var(--c-muted);
  margin: 0;
}

/* ============ MID CTA ============ */
.midcta__box {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-darker) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.midcta__box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(226,32,48,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.midcta__content { position: relative; }
.midcta__title {
  font-size: clamp(28px, 3.6vw, 40px);
  color: #fff;
  margin-bottom: 18px;
}
.midcta__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.midcta__desc b { color: var(--c-red); font-weight: 700; }
.midcta__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.midcta__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
}
.midcta__list li svg { flex-shrink: 0; margin-top: 2px; }

/* ============ CONDITIONS ============ */
.conditions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.condition {
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease;
}
.condition:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.condition__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(10,31,68,0.06);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.condition__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.35;
}

/* ============ BENEFITS / TABS ============ */
.tabs__nav {
  display: flex;
  gap: 8px;
  background: var(--c-bg-gray);
  padding: 6px;
  border-radius: 12px;
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs__nav::-webkit-scrollbar { display: none; }
.tabs__btn {
  flex: 1;
  min-width: max-content;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-muted);
  border-radius: 8px;
  transition: all .15s ease;
  white-space: nowrap;
}
.tabs__btn:hover { color: var(--c-primary); }
.tabs__btn.is-active {
  background: var(--c-primary);
  color: #fff;
}
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: fadein .25s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.benefits__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
.benefits__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.5;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 10px;
}
.benefits__list li svg { flex-shrink: 0; margin-top: 2px; }
.benefits__list li b { font-weight: 700; color: var(--c-red); }

/* ============ STORIES ============ */
.stories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.stories__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-primary);
  aspect-ratio: 16 / 10;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.stories__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.stories__item:hover img { transform: scale(1.04); }
.stories__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.stories__play svg {
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  transition: transform .18s ease;
}
.stories__item:hover .stories__play svg { transform: scale(1.1); }
.stories__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* ============ REVIEWS ============ */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.review__rating {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.review__text {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 22px;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border);
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.review__name { font-weight: 700; font-size: 15px; color: var(--c-primary); }
.review__role { font-size: 13px; color: var(--c-muted); margin-top: 2px; }

/* ============ FAQ ============ */
.faq__list {
  max-width: 880px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s ease;
}
.faq__item[open] { border-color: var(--c-red); box-shadow: var(--shadow-sm); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(226,32,48,0.08);
  transition: background .15s ease, transform .2s ease;
}
.faq__plus::before, .faq__plus::after {
  content: '';
  position: absolute;
  background: var(--c-red);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__plus::before { width: 12px; height: 2px; }
.faq__plus::after { width: 2px; height: 12px; transition: transform .2s ease; }
.faq__item[open] .faq__plus { background: var(--c-red); }
.faq__item[open] .faq__plus::before { background: #fff; }
.faq__item[open] .faq__plus::after { background: #fff; transform: translate(-50%, -50%) rotate(90deg); }
.faq__answer {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.6;
}
.faq__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.faq__cta p { font-size: 17px; color: var(--c-muted); margin: 0; }

/* ============ FINAL CTA ============ */
.finalcta {
  background: var(--c-primary-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/img/hero-tank.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.finalcta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,20,52,0.95) 0%, rgba(6,20,52,0.85) 100%);
}
.finalcta__box {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.finalcta__title {
  font-size: clamp(32px, 4.4vw, 52px);
  color: #fff;
  margin-bottom: 18px;
}
.finalcta__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin: 0 auto 32px;
}
.finalcta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--c-primary-darker);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 24px;
  font-size: 14px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo img { height: 50px; width: auto; margin-bottom: 16px; }
.footer__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  max-width: 320px;
  margin: 0;
}
.footer__title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer__link {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  font-size: 14px;
  transition: color .15s ease;
}
.footer__link:hover { color: var(--c-red); }
.footer__link--phone {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.footer__link--phone:hover { color: var(--c-red); }
.footer__small {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 4px 0;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 32px;
}
.footer__bottom p { margin: 0; line-height: 1.55; }
.footer__requisites {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer__requisites a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer__requisites a:hover { color: var(--c-red); }
.footer__org { color: #fff; font-weight: 600; font-size: 14px; }

/* ============ LEGAL PAGES ============ */
.legal {
  padding: 56px 0 80px;
  background: #f5f7fb;
  min-height: calc(100vh - 380px);
}
.legal__inner {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  padding: 56px 56px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(10,31,68,0.06);
}
.legal__breadcrumbs {
  font-size: 13px;
  color: #6b7388;
  margin-bottom: 24px;
}
.legal__breadcrumbs a { color: #6b7388; text-decoration: none; }
.legal__breadcrumbs a:hover { color: var(--c-red); }
.legal h1 {
  font-size: 32px;
  font-weight: 800;
  color: #0a1f44;
  margin: 0 0 28px;
  line-height: 1.2;
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0a1f44;
  margin: 36px 0 14px;
  line-height: 1.3;
}
.legal h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0a1f44;
  margin: 28px 0 12px;
  line-height: 1.35;
}
.legal p {
  font-size: 15px;
  color: #2c3346;
  line-height: 1.65;
  margin: 0 0 14px;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal ul li {
  font-size: 15px;
  color: #2c3346;
  line-height: 1.65;
  margin-bottom: 6px;
}
.legal strong { color: #0a1f44; }
.legal em { font-style: normal; color: #4d5468; }
.legal a { color: var(--c-red); }
.legal__meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e6ebf3;
  font-size: 13px;
  color: #6b7388;
}
@media (max-width: 767px) {
  .legal { padding: 24px 0 48px; }
  .legal__inner { padding: 28px 20px; border-radius: 12px; }
  .legal h1 { font-size: 24px; }
  .legal h2 { font-size: 19px; }
  .legal h3 { font-size: 17px; }
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 52, 0.72);
  backdrop-filter: blur(4px);
  animation: modal-fade .2s ease-out;
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  animation: modal-pop .25s ease-out;
}
.modal__close {
  position: absolute;
  top: -52px;
  right: -4px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.modal__close:hover { background: rgba(255,255,255,0.22); transform: rotate(90deg); }
.lead-form--modal {
  padding: 44px 40px;
  border-radius: 20px;
}
.lead-form--modal .lead-form__title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}
.lead-form--modal .lead-form__subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 28px;
  color: var(--c-muted);
}
.lead-form--modal .form__field input {
  padding: 20px 22px;
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
  border-width: 2px;
}
.lead-form--modal .btn { margin-top: 16px; }
.lead-form--modal .form__agree { margin-top: 18px; justify-content: center; text-align: center; }

@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modal-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 540px) {
  .modal { padding: 16px; }
  .lead-form--modal { padding: 32px 24px; }
  .lead-form--modal .lead-form__title { font-size: 24px; }
  .lead-form--modal .form__field input { font-size: 17px; padding: 16px 18px; }
  .modal__close { top: -48px; right: 0; }
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: #15192b;
  color: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 360px;
  animation: slidein .3s ease;
}
.toast[hidden] { display: none; }
.toast__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.toast__title { font-weight: 700; font-size: 15px; }
.toast__desc { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 2px; }
@keyframes slidein { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__form-wrap { position: static; max-width: 480px; }
  .payouts__grid { grid-template-columns: 1fr; }
  .payouts__cards { grid-template-columns: repeat(3, 1fr); }
  .midcta__box { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}

@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header.is-open .header__nav {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--c-border);
    gap: 14px;
  }
  .header__cta { display: none; }
  .conditions__grid { grid-template-columns: repeat(2, 1fr); }
  .who__grid, .steps__grid, .vacancies__grid, .reviews__grid {
    grid-template-columns: 1fr 1fr;
  }
  .payouts__cards { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .benefits__list { grid-template-columns: 1fr; }
  .stories__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0 56px; }
  .hero__title { font-size: 34px; }
  .hero__perks { grid-template-columns: 1fr; gap: 10px; }
  .hero__perk { padding: 16px 18px; gap: 14px; }
  .hero__perk-check { width: 38px; height: 38px; }
  .hero__perk-check svg { width: 18px; height: 18px; }
  .hero__perk-num { font-size: 18px; }
  .hero__buttons .btn, .finalcta__buttons .btn { width: 100%; }
  .who__grid, .steps__grid, .vacancies__grid, .reviews__grid { grid-template-columns: 1fr; }
  .payouts__cards { grid-template-columns: 1fr; }
  .conditions__grid { grid-template-columns: 1fr 1fr; }
  .lead-form { padding: 24px; }
  .midcta__box { padding: 32px 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; }
  .header__phone span { display: none; }
  .header__logo img { height: 36px; }
  .section__head { margin-bottom: 32px; }
  .toast { left: 16px; right: 16px; bottom: 16px; }
}
