:root {
  --blue: #1f6feb;
  --blue-dark: #1a5fd0;
  --navy: #13314f;
  --teal: #13b6ac;
  --teal-dark: #0fa298;
  --text: #2a3b4d;
  --muted: #6b7a8c;
  --line: #e4ebf2;
  --bg-soft: #eef3f9;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(120% 90% at 75% 0%, #eaf1fb 0%, #f4f8fc 45%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  border: 1.6px solid transparent;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .05s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn__ico { width: 22px; height: 22px; flex: none; }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(31, 111, 235, .25);
}
.btn--primary:hover { background: var(--blue-dark); }

.btn--outline {
  background: #fff;
  color: var(--blue);
  border-color: #cdddf6;
}
.btn--outline:hover { border-color: var(--blue); background: #f5f9ff; }

.btn--teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(19, 182, 172, .28);
}
.btn--teal:hover { background: var(--teal-dark); }

.btn--lg { padding: 17px 28px; font-size: 17px; }
.btn--md { padding: 13px 26px; font-size: 16px; }
.btn--block { width: 100%; padding: 16px; font-size: 16px; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 88px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo__icon { width: 46px; height: 46px; flex: none; }
.logo__icon svg { width: 100%; height: 100%; display: block; }
.logo__title { display: block; font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.logo__sub { display: block; font-size: 12px; color: var(--muted); letter-spacing: .2px; }

.nav {
  display: flex;
  gap: 34px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
}
.nav a { transition: color .15s ease; }
.nav a:hover { color: var(--blue); }

.header__right { display: flex; align-items: center; gap: 28px; }

.phone { display: flex; align-items: center; gap: 10px; }
.phone__icon { width: 22px; height: 22px; flex: none; }
.phone__number { display: block; font-size: 19px; font-weight: 800; color: var(--navy); line-height: 1.15; }
.phone__hours { display: block; font-size: 12px; color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 24px 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero__title {
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
}
.hero__lead {
  margin-top: 22px;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* features row */
.features {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 18px 40px;
  margin-top: 36px;
}
.feature { display: flex; align-items: center; gap: 12px; }
.feature__icon {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: #e7f0fd;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature__icon--teal { background: #e1f6f4; }
.feature__text { font-size: 14px; font-weight: 600; line-height: 1.3; color: var(--text); }

/* bottom row */
.hero__bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
.trust { display: flex; align-items: center; gap: 14px; }
.trust__icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #e7f0fd;
}
.trust__icon svg { width: 26px; height: 26px; }
.trust__text { font-size: 16px; font-weight: 700; color: var(--navy); max-width: 220px; line-height: 1.25; }

/* ---------- Hero media ---------- */
.hero__media { position: relative; }
.hero__photo {
  width: 100%;
  max-height: calc(100vh - 160px);
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(19, 49, 79, .18);
  object-fit: cover;
}

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

/* ---------- Generic section ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-soft); }
.section__head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 14px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  color: var(--blue);
  background: #e7f0fd;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 16px;
}
.section--alt .eyebrow { background: #fff; }
.section__title { font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -.5px; }
.section__subtitle { margin-top: 16px; font-size: 18px; line-height: 1.55; color: var(--muted); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(19,49,79,.1); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 14px; background: #e7f0fd; margin-bottom: 20px;
}
.card__icon svg { width: 30px; height: 30px; }
.card__icon--teal { background: #e1f6f4; }
.card__title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card__text { font-size: 15px; line-height: 1.55; color: var(--muted); }

/* ---------- Benefits ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(19,49,79,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(19,49,79,.12); }
.benefit__icon {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 8px 18px rgba(31,111,235,.25);
}
.benefit__icon svg { width: 30px; height: 30px; }
.benefit__title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.benefit__text { font-size: 15px; line-height: 1.55; color: var(--muted); }

/* ---------- How it works ---------- */
.how__inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 72px; align-items: center; }
.how__media { position: relative; padding-bottom: 28px; }
.how__photo {
  width: 100%; border-radius: 22px; aspect-ratio: 4 / 5; object-fit: cover; object-position: center;
  box-shadow: 0 30px 60px rgba(19,49,79,.16); background: #dde7f1;
}
.how__inset {
  position: absolute; left: -24px; bottom: -24px; z-index: 2;
  width: 46%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 16px; border: 5px solid #fff;
  box-shadow: 0 20px 40px rgba(19,49,79,.2);
  background: #dde7f1;
}
.how__badge {
  position: absolute; right: -16px; bottom: 32px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(19,49,79,.18);
}
.how__badge--top { top: 24px; bottom: auto; }
.how__badge-num { font-size: 34px; font-weight: 800; color: var(--blue); line-height: 1; }
.how__badge-text { font-size: 13px; font-weight: 600; color: var(--muted); line-height: 1.3; }

.steps { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }
.step { display: flex; gap: 20px; }
.step__num {
  flex: none; width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  font-size: 20px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}
.step__title { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step__text { font-size: 15px; line-height: 1.55; color: var(--muted); }

/* ---------- Prices ---------- */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 34px 30px; display: flex; flex-direction: column;
}
.price--featured {
  border-color: transparent;
  box-shadow: 0 30px 60px rgba(19,49,79,.16);
  transform: translateY(-12px);
}
.price__tag {
  position: absolute; top: 18px; right: 24px;
  font-size: 12px; font-weight: 700; color: #fff;
  background: var(--teal); padding: 5px 12px; border-radius: 999px;
}
.price__name { font-size: 22px; font-weight: 800; color: var(--navy); }
.price__desc { margin-top: 8px; font-size: 14px; line-height: 1.5; color: var(--muted); min-height: 42px; }
.price__value { margin: 18px 0 22px; font-size: 38px; font-weight: 800; color: var(--blue); }
.price--featured .price__value { color: var(--teal); }
.price__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.price__list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--text); line-height: 1.4; }
.price__list li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #e1f6f4 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l4 4 10-10' stroke='%2313b6ac' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.price .btn { margin-top: auto; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 28px; display: flex; flex-direction: column;
}
.section--alt .review { border-color: transparent; box-shadow: 0 10px 30px rgba(19,49,79,.06); }
.review__stars { color: #f5b53d; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.review__text { font-size: 15px; line-height: 1.6; color: var(--text); flex: 1; }
.review__author { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.avatar {
  width: 48px; height: 48px; flex: none; border-radius: 50%; overflow: hidden;
  display: grid; place-items: center;
  background: #e7f0fd; color: var(--blue); font-weight: 800; font-size: 16px;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.review__name { display: block; font-weight: 700; color: var(--navy); }
.review__meta { display: block; font-size: 13px; color: var(--muted); }

/* ---------- CTA / form ---------- */
.cta {
  padding: 96px 0;
  background: linear-gradient(135deg, #14365a 0%, #1f6feb 100%);
}
.cta__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.cta__title { font-size: clamp(28px, 3vw, 38px); font-weight: 800; color: #fff; line-height: 1.15; }
.cta__sub { margin-top: 18px; font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.8); max-width: 480px; }
.cta__points { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.cta__points li { position: relative; padding-left: 30px; color: #fff; font-weight: 600; font-size: 16px; }
.cta__points li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l4 4 10-10' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.cta .lead-card { width: 100%; max-width: 420px; margin-left: auto; }

/* lead-card (reused) */
.lead-card { background: #fff; border-radius: 22px; padding: 32px 30px 28px; box-shadow: 0 30px 60px rgba(0,0,0,.22); }
.lead-card__title { font-size: 26px; font-weight: 800; color: var(--navy); text-align: center; }
.lead-card__sub { margin-top: 8px; font-size: 14px; color: var(--muted); text-align: center; }
.field {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 0 16px; height: 56px;
  border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,111,235,.12); }
.field.is-error { border-color: #e0566b; box-shadow: 0 0 0 3px rgba(224,86,107,.12); }
.field__icon { width: 22px; height: 22px; flex: none; }
.field input { flex: 1; border: none; outline: none; font-family: inherit; font-size: 16px; color: var(--text); background: transparent; }
.field input::placeholder { color: #9aa7b6; }
.lead-card .btn--block { margin-top: 18px; }
.lead-card__note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 13px; color: var(--muted); }
.lead-card__note svg { width: 18px; height: 18px; }
.lead-card__success { text-align: center; color: var(--navy); padding: 16px 0; }
.lead-card__success strong { color: var(--teal); }

/* ---------- Footer ---------- */
.footer { background: #0f2438; color: #c2cedb; padding: 64px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 40px; }
.logo--light .logo__title { color: #fff; }
.logo--light .logo__sub { color: #8ba0b6; }
.footer__about { margin-top: 18px; font-size: 14px; line-height: 1.6; color: #8ba0b6; max-width: 280px; }
.footer__title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; font-size: 15px; color: #c2cedb; margin-bottom: 12px; }
.footer__col a { transition: color .15s ease; }
.footer__col a:hover { color: #5fa0ff; }
.footer__phone { font-size: 20px !important; font-weight: 800; color: #fff !important; }
.footer__col .btn { margin-top: 6px; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px; color: #6f8298;
}

/* ---------- Section CTA buttons ---------- */
.section__cta { text-align: center; margin-top: 52px; }
.how__cta { margin-top: 34px; }

/* ---------- Modal ---------- */
body.no-scroll { overflow: hidden; }
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; transition: opacity .25s ease;
}
.modal[hidden] { display: none; }
.modal.is-open { opacity: 1; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(15,36,56,.55);
  backdrop-filter: blur(2px);
}
.modal__dialog {
  position: relative; width: 100%; max-width: 420px;
  transform: translateY(18px) scale(.98);
  transition: transform .25s ease;
}
.modal.is-open .modal__dialog { transform: none; }
.modal .lead-card { box-shadow: 0 40px 80px rgba(0,0,0,.3); }
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: #eef3f9; color: var(--navy);
  display: grid; place-items: center;
  transition: background .15s ease;
}
.modal__close:hover { background: #e1e9f2; }
.modal__close svg { width: 18px; height: 18px; }

/* ---------- Popup (через 2 минуты) ---------- */
.popup {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 320px;
  background: #fff; border-radius: 18px;
  padding: 26px 22px 22px;
  box-shadow: 0 24px 56px rgba(15,36,56,.28);
  transform: translateY(24px); opacity: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}
.popup[hidden] { display: none; }
.popup.is-visible { transform: none; opacity: 1; }
.popup__close {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px; border-radius: 50%; border: none; cursor: pointer;
  background: #eef3f9; color: var(--navy);
  display: grid; place-items: center;
  transition: background .15s ease;
}
.popup__close:hover { background: #e1e9f2; }
.popup__close svg { width: 15px; height: 15px; }
.popup__icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}
.popup__icon svg { width: 26px; height: 26px; }
.popup__title { font-size: 19px; font-weight: 800; color: var(--navy); line-height: 1.2; max-width: 240px; }
.popup__text { margin-top: 8px; font-size: 14px; line-height: 1.5; color: var(--muted); }
.popup__form .field { margin-top: 14px; }
.popup__form .btn--block { margin-top: 12px; }
.popup__success { text-align: center; padding: 8px 0; }
.popup__success strong { color: var(--teal); }

/* ---------- Video widget ---------- */
.video-widget {
  position: fixed;
  left: 20px; bottom: 20px;
  z-index: 80;
  width: 70px;
  transition: width .28s cubic-bezier(.4, 0, .2, 1);
}
.video-widget:hover { width: 210px; }
.video-widget.is-playing { width: 280px; }
.video-widget.is-hidden { display: none; }
.video-widget__frame {
  position: relative;
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #0f2438;
  box-shadow: 0 14px 32px rgba(15,36,56,.32);
  cursor: pointer;
}
.video-widget video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-widget__play {
  position: absolute; inset: 0; margin: auto;
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--blue);
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: transform .15s ease, width .25s ease, height .25s ease;
}
.video-widget:hover .video-widget__play { width: 52px; height: 52px; }
.video-widget__play:hover { transform: scale(1.08); }
.video-widget__play svg { width: 18px; height: 18px; margin-left: 2px; transition: width .25s ease, height .25s ease; }
.video-widget:hover .video-widget__play svg { width: 24px; height: 24px; }
.video-widget.is-playing .video-widget__play { display: none; }
.video-widget__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 14px 11px;
  font-size: 13px; font-weight: 600; color: #fff;
  background: linear-gradient(to top, rgba(15,36,56,.85), transparent);
  pointer-events: none;
  opacity: 0; transition: opacity .25s ease;
}
.video-widget:hover .video-widget__label { opacity: 1; }
.video-widget.is-playing .video-widget__label { display: none; }
.video-widget__close {
  position: absolute; top: -8px; right: -8px; z-index: 2;
  width: 24px; height: 24px; border-radius: 50%; border: none; cursor: pointer;
  background: #fff; color: var(--navy);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  opacity: 0; transition: opacity .25s ease;
}
.video-widget:hover .video-widget__close,
.video-widget.is-playing .video-widget__close { opacity: 1; }
.video-widget__close svg { width: 14px; height: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .nav { gap: 22px; }
  .header__inner { gap: 20px; }
  .hero__title { font-size: 44px; }
}

@media (max-width: 1024px) {
  .nav {
    position: fixed; top: 0; right: 0; z-index: 60;
    flex-direction: column; gap: 8px;
    width: min(78vw, 320px); height: 100vh; margin: 0;
    padding: 96px 28px 28px;
    background: #fff; box-shadow: -20px 0 60px rgba(19,49,79,.15);
    transform: translateX(100%); transition: transform .28s ease;
    font-size: 18px;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .burger { display: flex; }
  .header__cta { display: none; }

  .hero { min-height: 0; padding: 48px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__media { max-width: 620px; }
  .hero__photo { max-height: none; }
  .features { grid-template-columns: repeat(3, 1fr); }

  .section { padding: 72px 0; }
  .cards, .benefits { grid-template-columns: repeat(2, 1fr); }
  .how__inner { grid-template-columns: 1fr; gap: 48px; }
  .how__media { max-width: 460px; }
  .prices { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price--featured { transform: none; }
  .reviews { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .cta { padding: 72px 0; }
  .cta__inner { grid-template-columns: 1fr; gap: 36px; }
  .cta .lead-card { margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .header__inner { height: 70px; }
  .phone__hours, .logo__sub { display: none; }
  .header__cta { display: none; }
  .hero__title { font-size: 34px; }
  .hero__lead { font-size: 17px; margin-top: 18px; }
  .hero__actions { margin-top: 28px; }
  .btn--lg { flex: 1; padding: 15px 18px; font-size: 15px; }
  .features { grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 32px; }
  .hero__bottom { margin-top: 36px; }
  .hero__media { margin: 0 auto; }
  .hero__photo { max-height: none; }

  .section { padding: 56px 0; }
  .section__head { margin-bottom: 40px; }
  .section__subtitle { font-size: 16px; }
  .cards, .benefits { grid-template-columns: 1fr; gap: 16px; }
  .how__badge { right: 0; padding: 12px 16px; }
  .how__badge--top { top: 12px; }
  .how__badge-num { font-size: 26px; }
  .how__inset { width: 44%; left: -8px; bottom: -14px; border-width: 4px; }
  .cta__sub { font-size: 16px; }
  .lead-card { padding: 26px 22px; }
  .footer { padding: 48px 0 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { margin-top: 32px; }
  .video-widget { width: 60px; left: 14px; bottom: 14px; }
  .video-widget.is-playing { width: 200px; }
  .video-widget__close { opacity: 1; }

  .section__cta { margin-top: 36px; }
  .popup { right: 12px; bottom: 12px; width: min(300px, calc(100vw - 92px)); padding: 20px 18px 18px; }
}

@media (max-width: 420px) {
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; }
}
