:root {
  --color-white: #FFFFFF;
  --color-bg-soft: #F4F6F9;
  --color-navy: #0B1F3A;
  --color-navy-soft: #16315A;
  --color-navy-deep: #081325;
  --color-blue: #1F5DAD;
  --color-blue-light: #4D8AD6;
  --color-red: #E2231A;
  --color-red-dark: #C01810;
  --color-gray: #5C7A99;
  --color-text: #1A2433;
  --color-text-muted: #5C6B7E;
  --color-border: #E3E8EF;
  --font-main: 'Montserrat', sans-serif;
  --container-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
}
* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--color-text); background: var(--color-white); }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-blue);
  margin-bottom: 14px;
}
.eyebrow::before { content:''; width:22px; height:2px; background: var(--color-red); border-radius:2px; }
.eyebrow--light { color: #6FA8E8; }
.eyebrow--light::before { background: var(--color-red); }

h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family: var(--font-main); font-weight: 700; font-size: 15px;
  padding: 16px 32px; border-radius: 100px; border:none; cursor:pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--color-red); color: #fff; box-shadow: 0 10px 28px rgba(226,35,26,0.32); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.25); }
.btn-light { background: #fff; color: var(--color-red); }

/* ===== HEADER ===== */
.header-dark {
  background: var(--color-navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-dark .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo__icon { height: 52px; width: auto; object-fit: contain; }
.logo__text { display: flex; flex-direction: column; justify-content: center; line-height: 1.2; padding-left: 4px; }
.logo__text strong { font-size: 19px; font-weight: 800; color: #fff; }
.logo__text small { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }

.nav__list { display: flex; align-items: center; gap: 14px; list-style: none; }
.nav__list li { margin-right: 14px; }
.nav__list li:last-child { margin-right: 0; }
.nav__link { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); white-space: nowrap; position: relative; padding: 6px 0; transition: color 0.15s ease; }
.nav__link::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-red);
  border-radius: 2px;
  transition: width 0.2s ease;
}
.nav__link.active { color: var(--color-red); }
.nav__link.active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__actions > * { margin-right: 12px; }
.header__actions > *:last-child { margin-right: 0; }
.header__phone { display: flex; align-items: center; gap: 12px; color: #fff; }
.header__phone > *:first-child { margin-right: 12px; }
.header__icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}
.header__phone-text { display: flex; flex-direction: column; }
.header__phone-text strong { font-size: 15px; font-weight: 700; color: #fff; }
.header__phone-text small { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); }

/* ===== HERO with photo background ===== */
.hero-dark {
  position: relative;
  background: var(--color-navy-deep);
  background-image:
    linear-gradient(100deg, rgba(8,19,37,0.97) 0%, rgba(8,19,37,0.88) 35%, rgba(8,19,37,0.55) 65%, rgba(8,19,37,0.4) 100%),
    url('photos/processed/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0 100px;
}

.hero-dark__brand {
  display: flex; align-items: center; gap: 16px;
  color: #FF8A82; font-size: 15px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-dark__brand::before { margin-right: 16px; }
.hero-dark__brand::after { margin-left: 16px; }
.hero-dark__brand::before,
.hero-dark__brand::after {
  content: '';
  flex-shrink: 0;
  width: 28px; height: 2px;
  background: var(--color-red);
  border-radius: 2px;
}
.hero-dark h1 {
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 26px; max-width: 740px;
}
.hero-dark h1 span { color: var(--color-red); }
.hero-dark__lead {
  font-size: 19px; color: rgba(255,255,255,0.7); max-width: 500px; margin-bottom: 40px; line-height: 1.6;
}
.hero-dark__cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dark__cta-row > * { margin-right: 16px; }
.hero-dark__cta-row .btn { font-size: 16px; padding: 18px 36px; }

/* Overlapping panel */
.hero-dark__panel { margin-top: 70px; position: relative; z-index: 2; }
.hero-panel {
  background: var(--color-navy-soft);
  border-radius: var(--radius-lg);
  display: flex;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  overflow: hidden;
}
.hero-panel__item { flex: 0.95; padding: 24px 26px; border-right: 1px solid rgba(255,255,255,0.08); }
.hero-panel__item--cta {
  flex: 0.85; background: var(--color-red);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 24px 28px;
}
.hero-panel__item--cta > * { margin-bottom: 10px; }
.hero-panel__item--cta > *:last-child { margin-bottom: 0; }
.hero-panel__item--cta__text { width: 100%; }
.hero-panel__cta-btn { flex-shrink: 0; }
.hero-panel__icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center;
  color: var(--color-red); margin-bottom: 14px; flex-shrink: 0;
}
.hero-panel__item--cta .hero-panel__icon { background: rgba(255,255,255,0.16); color: #fff; margin-bottom: 10px; flex-shrink: 0; }
.hero-panel__item h4 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.hero-panel__item p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.5; }
.hero-panel__item--cta h4 { margin-bottom: 0; font-size: 18px; }
.hero-panel__item--cta p { color: rgba(255,255,255,0.85); margin-bottom: 0; font-size: 14px; }
.hero-panel__item--cta .btn { padding: 12px 24px; font-size: 14px; }

/* ===== About / split section ===== */
.split-section { padding: 90px 0; background: var(--color-bg-soft); }
.split-section__inner { display: flex; gap: 64px; align-items: center; }
.split-section__inner > *:first-child { margin-right: 64px; }
.split-section__media { flex: 1; }
.split-section__media img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(11,31,58,0.1);
}
.split-section__text { flex: 1.1; }
.split-section__text p { color: var(--color-text-muted); font-size: 15.5px; margin: 16px 0; line-height: 1.65; }

.split-section__stats { display: flex; gap: 16px; margin-top: 28px; }
.split-section__stats > * { flex: 1; margin-right: 16px; min-width: 0; }
.split-section__stats > *:last-child { margin-right: 0; }
.split-stat {
  flex: 1;
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  color: #fff;
}
.split-stat--blue { background: var(--color-blue); }
.split-stat--red { background: var(--color-red); }
.split-stat--navy { background: var(--color-navy); }
.split-stat__num { font-size: 28px; font-weight: 900; white-space: nowrap; }
.split-stat__label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ===== Dark services ===== */
.services-dark { background: var(--color-navy-deep); padding: 90px 0; }
.services-dark__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; }
.services-dark h2 { color: #fff; }
.services-dark__head p { color: rgba(255,255,255,0.5); font-size: 15px; max-width: 420px; }
.services-dark__grid { display: flex; flex-wrap: wrap; margin: -12px; }
.service-dark-card {
  background: var(--color-navy-soft); border-radius: var(--radius-md); overflow: hidden;
  flex: 0 0 calc(33.3333% - 24px);
  max-width: calc(33.3333% - 24px);
  margin: 12px;
}
.service-dark-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-dark-card__body { padding: 24px; }
.service-dark-card h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-dark-card p { color: rgba(255,255,255,0.55); font-size: 14.5px; line-height: 1.55; }

/* ===== Price list (light) ===== */
.prices-section { padding: 90px 0; background: var(--color-bg-soft); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head p { margin-top: 14px; font-size: 16px; color: var(--color-text-muted); }
.price-list { display: flex; flex-direction: column; gap: 14px; }
.price-bar {
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  background: var(--color-white); padding: 22px 26px;
}
.price-bar__head {
  display: flex; align-items: center; gap: 18px;
}
.price-bar__head > * { margin-right: 18px; }
.price-bar__head > *:last-child { margin-right: 0; }
.price-bar__icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--color-bg-soft); color: var(--color-blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.price-bar:nth-child(even) .price-bar__icon { color: var(--color-red); }
.price-bar__title { font-weight: 800; font-size: 17px; color: var(--color-navy); flex-grow: 1; }
.price-bar__count { font-size: 13px; font-weight: 600; color: var(--color-text-muted); background: var(--color-bg-soft); padding: 6px 14px; border-radius: 100px; }
.price-bar__caret { color: var(--color-gray); }

/* ===== Process (light) ===== */
.process-section { padding: 90px 0; background: var(--color-white); }
.process__grid { display: flex; gap: 28px; margin-top: 48px; }
.process__grid > * { margin-right: 28px; }
.process__grid > *:last-child { margin-right: 0; }
.process-step { flex: 1; position: relative; padding-top: 4px; }
.process-step__icon {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  border: 1.5px solid var(--color-border);
  color: var(--color-red);
  margin-bottom: 20px;
  position: relative;
}
.process-step__icon::after {
  content: attr(data-step);
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.process-step h3 { font-size: 16px; font-weight: 700; color: var(--color-navy); margin-bottom: 8px; }
.process-step p { font-size: 14.5px; color: var(--color-text-muted); line-height: 1.6; }

/* ===== FAQ (light gray) ===== */
.faq-section { padding: 90px 0; background: var(--color-bg-soft); }
.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-white); padding: 20px 24px; display: flex; justify-content: space-between; }
.faq-item span:first-child { font-weight: 700; font-size: 15.5px; color: var(--color-navy); }
.faq-item span:last-child { color: var(--color-blue); }

/* ===== Reviews ===== */
.reviews-section { padding: 90px 0; background: var(--color-white); }
.reviews__grid { display: flex; gap: 20px; }
.reviews__grid > * { margin-right: 20px; }
.reviews__grid > *:last-child { margin-right: 0; }
.review-card { flex: 1; background: var(--color-bg-soft); border-radius: var(--radius-md); padding: 26px; }
.review-card__stars { color: var(--color-red); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card__text { font-size: 14.5px; color: var(--color-text-muted); margin-bottom: 18px; line-height: 1.6; }
.review-card__author { display:flex; align-items:center; gap:12px; }
.review-card__author > *:first-child { margin-right: 12px; }
.review-card__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--color-blue); color: #fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:15px; }
.review-card__author strong { display:block; font-size: 13.5px; color: var(--color-navy); }
.review-card__author span { font-size: 12px; color: var(--color-text-muted); }

/* ===== B2B section ===== */
.b2b-section { padding: 90px 0; background: var(--color-bg-soft); }
.b2b-card {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-soft) 60%, var(--color-blue) 130%);
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.b2b-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(226,35,26,0.18); filter: blur(10px);
}
.b2b-card__inner { position: relative; z-index: 1; max-width: 700px; }
.b2b-card h2 { color: #fff; margin-bottom: 18px; }
.b2b-card p { color: rgba(255,255,255,0.78); font-size: 15.5px; margin-bottom: 14px; line-height: 1.6; }
.b2b-card__list { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.b2b-card__list li { margin-bottom: 12px; }
.b2b-card__list li:last-child { margin-bottom: 0; }
.b2b-card__list li { position: relative; padding-left: 28px; font-size: 15.5px; color: rgba(255,255,255,0.92); font-weight: 500; }
.b2b-card__list li::before {
  content: '✓'; position: absolute; left: 0; top: -1px;
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--color-red); color: #fff; font-size: 11px; font-weight: 800;
}
.b2b-card__price { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 28px; }
.b2b-card__price span { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ===== Contacts + map ===== */
.contacts-section { padding: 90px 0; background: var(--color-white); }
.contacts__inner { display: flex; gap: 56px; }
.contacts__inner > *:first-child { margin-right: 56px; }
.contacts__info { flex: 1.2; }
.contacts__lead { font-size: 15.5px; color: var(--color-text-muted); margin-bottom: 28px; line-height: 1.6; }
.contacts__list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contacts__list li { margin-bottom: 18px; }
.contacts__list li:last-child { margin-bottom: 0; }
.contacts__list li { display: flex; align-items: flex-start; gap: 14px; }
.contacts__list li > *:first-child { margin-right: 14px; }
.contacts__icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--color-bg-soft); color: var(--color-blue); flex-shrink: 0;
}
.contacts__list li:nth-child(even) .contacts__icon { color: var(--color-red); }
.contacts__list li strong { display: block; font-size: 13px; font-weight: 700; color: var(--color-navy); margin-bottom: 2px; }
.contacts__list li span { font-size: 15px; color: var(--color-text-muted); }
.contacts__map { flex: 1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); min-height: 420px; position: relative; }
.contacts__map iframe,
.contacts__map ymaps,
.contacts__map > ymaps {
  width: 100% !important; height: 100% !important; min-height: 420px; display: block; border: none;
  position: absolute !important; inset: 0;
}

/* ===== Red CTA strip ===== */
.cta-strip { background: var(--color-red); padding: 56px 0; }
.cta-strip__inner { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.cta-strip__inner > *:first-child { margin-right: 24px; }
.cta-strip h3 { color: #fff; font-size: 26px; font-weight: 800; }
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 15px; margin-top:4px; }

/* ===== Footer ===== */
.footer-dark { background: var(--color-navy-deep); color: rgba(255,255,255,0.5); padding: 64px 0 32px; }
.footer-dark__inner { display: flex; gap: 40px; padding-bottom: 48px; }
.footer-dark__inner > * { margin-right: 40px; }
.footer-dark__inner > *:last-child { margin-right: 0; }
.footer-dark__inner > :first-child { flex: 1.4; }
.footer-dark__inner > :not(:first-child) { flex: 1; }
.footer-dark h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-dark ul { list-style:none; display:flex; flex-direction:column; gap:11px; }
.footer-dark ul li { margin-bottom: 11px; }
.footer-dark ul li:last-child { margin-bottom: 0; }
.footer-dark ul li a, .footer-dark ul li { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-dark__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; font-size: 12.5px; display:flex; justify-content:space-between; }

/* ===== Floating contact button ===== */
.floating-contact {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
.floating-contact__menu {
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  max-height: 0; opacity: 0; pointer-events: none; overflow: hidden;
  transition: opacity 0.2s ease;
}
.floating-contact.active .floating-contact__menu {
  max-height: none; opacity: 1; pointer-events: auto; overflow: visible;
}
.floating-contact__menu > * { margin-bottom: 12px; }
.floating-contact__menu > *:last-child { margin-bottom: 0; }
.floating-contact__item {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; color: var(--color-navy);
  box-shadow: 0 8px 30px rgba(11,31,58,0.18);
}
.floating-contact__toggle {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--color-red); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 12px 30px rgba(226,35,26,0.4);
  padding: 0; line-height: 0;
}
.floating-contact__toggle svg { display: block; margin: 0 auto; }

.floating-contact__item--max { color: var(--color-blue); }
.floating-contact__max-icon { width: 26px; height: 26px; object-fit: contain; }

/* ============================================
   HEADER STICKY + BURGER
   ============================================ */
.header-dark {
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner { position: relative; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1180px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; }

  .nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--color-navy-deep);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 8px 24px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  .nav.active .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav.active .nav__list li { margin-right: 0; width: 100%; }
  .nav.active .nav__link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }
  .nav.active .nav__link::after { display: none; }

  .hero-dark__panel { margin-top: 48px; }
  .hero-panel { flex-wrap: wrap; }
  .hero-panel__item, .hero-panel__item--cta {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hero-panel__item--cta { flex: 1 1 100%; border-bottom: none; }
}

@media (max-width: 980px) {
  .split-section__inner,
  .contacts__inner {
    flex-direction: column;
  }
  .split-section__inner > *:first-child,
  .contacts__inner > *:first-child {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .services-dark__head { flex-direction: column; align-items: flex-start; }
  .services-dark__head p { margin-top: 12px; }
  .process__grid { flex-wrap: wrap; }
  .process__grid > * { flex: 1 1 calc(33.33% - 19px); margin-right: 28px; margin-bottom: 28px; }
  .process__grid > *:nth-child(3n) { margin-right: 0; }
  .reviews__grid { flex-wrap: wrap; }
  .reviews__grid > * { flex: 1 1 calc(50% - 10px); margin-bottom: 20px; }
}

@media (max-width: 640px) {
  .service-dark-card { flex-basis: calc(50% - 24px); max-width: calc(50% - 24px); }
}

@media (max-width: 460px) {
  .service-dark-card { flex-basis: calc(100% - 24px); max-width: calc(100% - 24px); }
}

@media (max-width: 760px) {
  .hero-dark { padding: 32px 0 60px; text-align: center; }
  .hero-dark h1 { font-size: clamp(28px, 7vw, 40px); line-height: 1.15; }
  .hero-dark__lead { font-size: 16px; margin-left: auto; margin-right: auto; }
  .hero-dark__brand { font-size: 12px; letter-spacing: 0.12em; justify-content: center; }
  .hero-dark__cta-row { justify-content: center; }

  .hero-panel__item, .hero-panel__item--cta { flex: 1 1 100%; text-align: center; align-items: center; }
  .hero-panel__icon { margin-left: auto; margin-right: auto; }

  .split-section, .services-dark, .prices-section,
  .process-section, .faq-section, .reviews-section,
  .b2b-section, .contacts-section { padding: 56px 0; }

  .split-section__stats { flex-wrap: wrap; }
  .split-section__stats > * { flex: 1 1 calc(50% - 8px); max-width: calc(50% - 8px); margin-right: 16px; margin-bottom: 16px; }
  .split-section__stats > *:nth-child(2n) { margin-right: 0; }

  .process-section .section-head { text-align: center; margin-left: auto; margin-right: auto; }
  .process__grid { display: block; text-align: center; margin-top: 32px; }
  .process__grid > * {
    display: block;
    width: 100%;
    margin: 0 0 32px 0 !important;
  }
  .process__grid > *:last-child { margin-bottom: 0 !important; }
  .process-step__icon { margin-left: auto; margin-right: auto; }

  .reviews__grid > * { flex: 1 1 100%; }

  .b2b-card { padding: 32px 24px; }

  .price-bar { flex-wrap: wrap; padding: 18px; }
  .price-bar__title { flex-basis: 100%; }
  .price-bar__count { margin-top: 8px; }

  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .cta-strip__inner > *:first-child { margin-right: 0; margin-bottom: 16px; }

  .footer-dark__inner { flex-wrap: wrap; }
  .footer-dark__inner > * { flex: 1 1 calc(50% - 20px); margin-bottom: 32px; }
  .footer-dark__bottom { flex-direction: column; gap: 8px; text-align: left; }

  .floating-contact { right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .footer-dark__inner > * { flex: 1 1 100%; margin-right: 0 !important; }
  .split-section__stats > * { flex: 1 1 100%; max-width: 100%; margin-right: 0; }
}

/* ============================================
   MODALS & FORMS
   ============================================ */
.modal {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  align-items: center; justify-content: center;
}
.modal.active { display: flex; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(8,19,37,0.6);
  backdrop-filter: blur(2px);
}
.modal__content {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 90%; max-width: 460px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-bg-soft); border: none; cursor: pointer;
  font-size: 22px; color: var(--color-text-muted);
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.modal__title { font-size: 22px; font-weight: 800; color: var(--color-navy); margin-bottom: 10px; }
.modal__subtitle { font-size: 14px; color: var(--color-text-muted); margin-bottom: 24px; line-height: 1.5; }
.modal__policy { font-size: 12px; color: var(--color-text-muted); margin-top: 14px; line-height: 1.5; text-align: center; }
.modal__policy a { color: var(--color-blue); text-decoration: underline; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--color-navy); margin-bottom: 6px; }
.field input {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font-family: var(--font-main); font-size: 15px; color: var(--color-text);
  background: var(--color-bg-soft);
}
.field input:focus { outline: none; border-color: var(--color-blue); background: #fff; }
.btn-block { width: 100%; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: none;
}
.form-status.success { display: block; color: #1A8F4C; }
.form-status.error { display: block; color: var(--color-red); }

/* Price-bar accordion */
.price-bar__head { cursor: pointer; }
.price-bar:hover { box-shadow: 0 8px 24px rgba(11,31,58,0.06); }
.price-bar__caret { transition: transform 0.2s ease; }
.price-bar.active .price-bar__caret { transform: rotate(180deg); }
.price-bar__details {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}
.price-bar.active .price-bar__details { display: block; }
.price-bar__details table { width: 100%; border-collapse: collapse; }
.price-bar__details td { padding: 10px 0; font-size: 14.5px; color: var(--color-text-muted); border-bottom: 1px solid var(--color-border); }
.price-bar__details td:last-child { text-align: right; font-weight: 700; color: var(--color-navy); white-space: nowrap; padding-left: 16px; }
.price-bar__details tr:last-child td { border-bottom: none; }

/* FAQ accordion */
.faq-item { cursor: pointer; transition: box-shadow 0.2s ease; flex-direction: column; align-items: stretch; }
.faq-item:hover { box-shadow: 0 8px 24px rgba(11,31,58,0.06); }
.faq-item__head { display: flex; justify-content: space-between; align-items: center; }
.faq-item__caret { transition: transform 0.2s ease; color: var(--color-blue); flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-item__caret { transform: rotate(180deg); }
.faq-item__body {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-size: 14.5px; color: var(--color-text-muted); line-height: 1.6;
}
.faq-item.active .faq-item__body { display: block; }