:root {
  --bg: #0C0C0D;
  --bg-panel: #151517;
  --bg-panel-hover: #1B1B1E;
  --white: #FFFFFF;
  --red: #E62E2E;
  --red-bright: #FF3B3B;
  --cyan: #00E5FF;
  --line: #2C2C2F;
  --line-strong: #38383C;
  --text-body: #B8B8BE;
  --text-body-2: #C9C9CE;
  --text-body-3: #A9A9AE;
  --text-muted: #8E8E93;
  --text-faint: #6E6E73;
  --font-display: 'Golos Text', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-width: 1440px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-display);
}

a { color: var(--white); text-decoration: none; }
a:hover { color: var(--red); }

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

::selection { background: var(--red); color: #fff; }

input::placeholder, textarea::placeholder { color: var(--text-faint); }

.mono { font-family: var(--font-mono); }
.muted-text { font-size: 12px; color: var(--text-muted); }
.accent-text { color: var(--red); }
.dot { width: 10px; height: 10px; background: var(--red); display: inline-block; flex-shrink: 0; }

@keyframes neonPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.78; } }
.neon-flicker { animation: neonPulse 3.2s ease-in-out infinite; }

/* ===== Text outline effect ===== */
.text-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}
.text-outline--cyan {
  display: block;
  -webkit-text-stroke: 2px var(--cyan);
  filter: drop-shadow(0 0 10px rgba(0,229,255,0.55)) drop-shadow(0 0 26px rgba(0,229,255,0.28));
}

/* ===== Layout helpers ===== */
main > section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.section-title {
  margin: 0 0 48px;
  font-weight: 900;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.05;
}
.section-title--wide { max-width: 900px; }

.section-header {
  margin-bottom: 48px;
}
.section-header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-header--row .section-title { margin-bottom: 0; }

.section-lede {
  margin: 12px 0 0;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 380px;
}

.badge { display: flex; align-items: center; gap: 12px; }
.badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px 3px rgba(230,46,46,0.7);
  flex-shrink: 0;
}
.badge__text {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
}

/* ===== Buttons ===== */
.btn {
  border-radius: 999px;
  padding: 20px 40px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  font-family: var(--font-display);
}
.btn--white {
  background: var(--white);
  color: var(--bg);
}
.btn--white:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 24px 4px rgba(230,46,46,0.55), 0 0 60px 8px rgba(230,46,46,0.25);
}
.btn__line { display: inline-block; width: 36px; height: 2px; background: currentColor; }

.btn--accent {
  background: var(--red);
  color: var(--white);
  padding: 18px 36px;
  font-size: 15px;
  box-shadow: 0 0 22px -2px rgba(230,46,46,0.55);
}
.btn--accent:hover {
  background: var(--red-bright);
  color: var(--white);
  box-shadow: 0 0 30px 2px rgba(230,46,46,0.7);
}
.btn--full { width: 100%; margin-top: 8px; }

/* ===== Header ===== */
.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 48px;
}

.header__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 24px;
  margin-left: 24px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle__bar {
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo:hover { color: var(--white); }
.logo__main {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.logo__main--sm { font-size: 20px; }
.logo__accent {
  color: var(--red-bright);
  text-shadow: 0 0 12px rgba(230,46,46,0.85), 0 0 30px rgba(230,46,46,0.5);
}
.logo__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  margin-top: 4px;
}

.nav { display: flex; gap: 32px; font-size: 15px; font-weight: 500; flex-wrap: wrap; }
.nav a { color: #D6D6D9; }
.nav a:hover { color: var(--white); }

.header__actions { display: flex; align-items: center; gap: 12px; }

.social-row { display: flex; gap: 8px; }
.social-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-circle img { width: 100%; height: 100%; object-fit: cover; }
.social-circle--whatsapp {
  background: #25D366;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
}
.social-circle--whatsapp:hover { color: #fff; }

.phone-pill {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.phone-pill:hover { border-color: var(--red); color: var(--white); }

/* ===== Hero ===== */
.hero { padding-top: 56px; }

.hero__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
  flex: 1 1 480px;
  min-width: 0;
}

.hero__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.hero__title span { display: block; }

.hero__desc {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 460px;
}

.hero__cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.hero__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: 20px;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__feature { border-left: 2px solid var(--line); padding-left: 14px; }
.hero__feature--active { border-left-color: var(--red); }
.hero__feature-title { font-weight: 700; font-size: 15px; }
.hero__feature-desc {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 380px;
  min-width: 0;
}
.hero__glow {
  position: absolute;
  width: 70%;
  height: 70%;
  filter: blur(20px);
}
.hero__glow--red {
  background: radial-gradient(closest-side, rgba(230, 46, 46, 0.24), transparent 60%);
}
.hero__glow--cyan {
  width: 55%;
  height: 55%;
  right: 8%;
  background: radial-gradient(closest-side, rgba(0, 229, 255, 0.20), transparent 60%);
  filter: blur(22px);
}
.hero__shadow {
  position: absolute;
  bottom: 6%;
  width: 60%;
  height: 32px;
  background: radial-gradient(closest-side, rgba(0,0,0,0.55), transparent 70%);
}
.hero__image {
  width: 100%;
  max-width: 620px;
  position: relative;
  border-radius: 20px;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(0, 229, 255, 0.18));
}

/* ===== Stats bar ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 72px;
}
.stats__item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stats__item:last-child { border-right: none; }
.stats__value {
  font-weight: 900;
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 18px rgba(0,229,255,0.35);
}
.stats__label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== Process ===== */
.process { padding-top: 120px; }

.process__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.process__steps-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  white-space: nowrap;
}
.process__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--red));
  box-shadow: 0 0 10px 0px rgba(230,46,46,0.6);
}
.process__arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px 2px rgba(230,46,46,0.45);
  color: var(--red);
  font-size: 16px;
  line-height: 1;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 20px;
}
.process__card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process__num { font-family: var(--font-mono); font-size: 14px; color: var(--red); font-weight: 700; }
.process__title { font-weight: 700; font-size: 19px; }
.process__desc {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== Advantages ===== */
.advantages {
  margin-top: 120px;
  padding: 100px 48px;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(230,46,46,0.14), rgba(230,46,46,0) 55%),
    radial-gradient(90% 120% at 100% 100%, rgba(0,229,255,0.08), rgba(0,229,255,0) 55%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(230,46,46,0.3);
  max-width: none;
}
.advantages__inner { max-width: var(--max-width); margin: 0 auto; }
.advantages .badge { margin-bottom: 20px; }
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .advantages__grid { grid-template-columns: 1fr; }
}
.advantages__card {
  background: var(--bg-panel);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s, box-shadow 0.25s;
}
.advantages__card:hover {
  background: var(--bg-panel-hover);
  box-shadow: inset 0 0 0 1px rgba(230,46,46,0.5), 0 0 24px -6px rgba(230,46,46,0.5);
}
.advantages__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(230,46,46,0.12);
  border: 1px solid rgba(230,46,46,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--red);
  box-shadow: 0 0 14px -2px rgba(230,46,46,0.5);
}
.advantages__title { font-weight: 700; font-size: 21px; line-height: 1.25; }
.advantages__desc {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}
.advantages__footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== Certificates ===== */
.certificates { padding-top: 120px; }

/* ===== Before / After & Media cards ===== */
.beforeafter { padding-top: 120px; }

.certificates__grid,
.beforeafter__grid,
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}
.media-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-panel);
}
.media-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-missing img { display: none; }
.media-missing.media-card__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border: 1px dashed var(--line-strong);
}
.media-missing.media-card__frame::before {
  content: 'Фото добавьте в assets/';
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}
.hero__visual.media-missing {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 620px;
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
}
.hero__visual.media-missing::before {
  content: 'headlights.png добавьте в assets/';
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}
.media-card__caption {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-body-2);
}

/* ===== Works carousel ===== */
.works { padding-top: 120px; }

.works__nav { display: flex; gap: 12px; }
.round-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.round-btn:hover { border-color: var(--red); color: var(--red); }

.works__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.works__track::-webkit-scrollbar { display: none; }
.works__item {
  flex: 0 0 min(320px, 80vw);
  scroll-snap-align: start;
}

/* ===== Reviews ===== */
.reviews { padding-top: 120px; }

.review-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}
.review-card__text {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-body-2);
  flex: 1;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.review-card__name { font-weight: 700; font-size: 15px; }
.review-card__car { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }

/* ===== Delivery / Warranty ===== */
.delivery { padding-top: 120px; }

.delivery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 20px;
}
.delivery__card {
  background: var(--bg-panel);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.delivery__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.05;
}
.delivery__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-body-3);
}
.delivery__list li { display: flex; gap: 12px; }

/* ===== FAQ ===== */
.faq { max-width: 1000px; padding-top: 120px; }

.faq__list { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item--last { border-bottom: 1px solid var(--line); }
.faq__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-weight: 700;
  font-size: 18px;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__icon {
  font-family: var(--font-mono);
  color: var(--red);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer {
  margin: 0;
  padding: 0 0 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 720px;
}

/* ===== Form ===== */
.form-section { padding: 120px 48px; }

.form-card {
  background: var(--bg-panel);
  border-radius: 20px;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(230,46,46,0.35), 0 0 60px -20px rgba(230,46,46,0.3);
}

.form-card__info { display: flex; flex-direction: column; gap: 24px; }
.form-card__info .section-title { margin-bottom: 0; }
.form-card__lede {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body-3);
  max-width: 420px;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border: 1px solid rgba(230,46,46,0.35);
  border-radius: 12px;
  padding: 12px 18px;
  background: rgba(230,46,46,0.06);
  width: fit-content;
}
.countdown__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px 3px rgba(230,46,46,0.7);
  flex-shrink: 0;
  animation: neonPulse 1.4s ease-in-out infinite;
}
.countdown__label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}
.countdown__time {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.05em;
  text-shadow: 0 0 14px rgba(230,46,46,0.5);
}

.form-card__contact { display: flex; flex-direction: column; gap: 16px; }
.form-card__phone { font-weight: 900; font-size: clamp(24px, 2.2vw, 34px); }
.form-card__phone:hover { color: var(--red); }

.form-card__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.form-card__socials--mobile { display: none; }

@media (max-width: 760px) {
  .form-card__contact--desktop { display: none; }
  .form-card__socials--mobile {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }
}
.social-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #D6D6D9;
}
.social-pill__icon { width: 22px; height: 22px; border-radius: 50%; overflow: hidden; flex-shrink: 0; object-fit: cover; }
.social-pill__icon img { width: 100%; height: 100%; object-fit: cover; }
.social-pill--max:hover { border-color: #7B5CFF; color: var(--white); }
.social-pill--vk:hover { border-color: #0077FF; color: var(--white); }
.social-pill--tg:hover { border-color: #29A9EB; color: var(--white); }
.social-pill--wa { padding: 10px 20px; }
.social-pill--wa:hover { border-color: #25D366; color: var(--white); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form[hidden] { display: none; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field input {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--white);
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus { border-color: var(--red); }
.field__hint { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); padding: 0 4px; }

.field__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  margin: 4px 0 0;
}
.consent__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.consent__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.consent__box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s;
}
.consent__input:checked + .consent__box {
  background: var(--red);
  border-color: var(--red);
}
.consent__input:checked + .consent__box::after { opacity: 1; }
.consent__input:focus-visible + .consent__box {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.consent__text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.5;
}

.form-error {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red-bright);
}
.form-error[hidden] { display: none; }

.form-success { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.form-success[hidden] { display: none; }
.form-success__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
}
.form-success__title { font-weight: 900; font-size: 28px; }
.form-success__desc {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); }
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.footer__tagline { font-size: 12px; color: var(--text-faint); }
.footer__legal { font-size: 11px; color: var(--text-faint); }
.footer__phone { font-size: 13px; color: #D6D6D9; }

/* ===== Responsive ===== */

/* Мобильное меню-бургер */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }

  .header__panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    z-index: 20;
  }
  .header__panel.is-open { display: flex; }

  .nav { flex-direction: column; gap: 4px; }
  .nav a { padding: 10px 4px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }

  .header__actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .social-row { justify-content: center; }
  .phone-pill { text-align: center; }
}

/* Общее уменьшение отступов и укрупнение тач-таргетов на планшетах/телефонах */
@media (max-width: 880px) {
  .process,
  .certificates,
  .beforeafter,
  .works,
  .reviews,
  .delivery,
  .faq { padding-top: 72px; }
  .advantages { margin-top: 72px; padding-top: 64px; padding-bottom: 64px; }
  .form-section { padding-top: 72px; padding-bottom: 72px; }

  .section-title { margin-bottom: 32px; }
  .stats { margin-top: 48px; }

  .round-btn,
  .social-circle { width: 44px; height: 44px; }
}

@media (max-width: 640px) {
  .header, main > section { padding-left: 24px; padding-right: 24px; }
  .advantages { padding-left: 24px; padding-right: 24px; }
  .form-section { padding-left: 24px; padding-right: 24px; }
  .form-card { padding: 32px 24px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3), .stats__item:nth-child(4) { border-top: 1px solid var(--line); }
  .delivery__card { padding: 28px 20px; }
  .advantages__card { padding: 28px 24px; }

  .hero { padding-top: 32px; }
  .hero__cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__cta-row .btn { width: 100%; }
  .hero__cta-row .muted-text { text-align: center; }

  .advantages__footer { flex-direction: column; align-items: stretch; }
  .advantages__footer .muted-text { text-align: center; }

  .works__nav { justify-content: flex-end; }

  .process__header { flex-wrap: wrap; }

  .form-card__socials { justify-content: center; }
}

@media (max-width: 400px) {
  .logo__main { font-size: 24px; }
  .btn { padding: 16px 24px; }
  .btn--accent { padding: 16px 24px; }
}
