/* ——— Design tokens ——— */
:root {
  --font: "Segoe UI Variable Text", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, sans-serif;
  --bg: #f5f3ff;
  --bg-elevated: #ffffff;
  --text: #0f172a;
  --text-soft: #475569;
  --muted: #64748b;
  --line: rgba(99, 102, 241, 0.1);
  --line-strong: rgba(99, 102, 241, 0.15);
  --accent: #6366f1;
  --accent-2: #06b6d4;
  --accent-glow: rgba(99, 102, 241, 0.45);
  --navy: #0b1220;
  --navy-mid: #1e1b4b;
  --hero-fg: #f1f5f9;
  --hero-muted: rgba(241, 245, 249, 0.72);
  --violet: #8b5cf6;
  --violet-bright: #a78bfa;
  --white: #fff;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
  --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 24px 80px rgba(99, 102, 241, 0.18);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 74px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.header-row {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  transition:
    width 0.42s var(--ease-out),
    min-height 0.35s var(--ease-out),
    padding 0.35s var(--ease-out),
    transform 0.42s var(--ease-out),
    border-color 0.35s var(--ease-out),
    border-radius 0.42s var(--ease-out),
    background 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.site-header.is-scrolled .header-row {
  width: min(1100px, calc(100% - 32px));
  min-height: 60px;
  padding: 0 16px;
  transform: translateY(9px);
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.14),
    0 2px 8px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 205px;
  transition: min-width 0.35s var(--ease-out), gap 0.35s var(--ease-out), opacity 0.2s var(--ease-out);
}

.brand:hover {
  opacity: 0.82;
}

.brand-copy {
  display: block;
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out);
}

.brand b {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.15;
  white-space: nowrap;
  transition: font-size 0.35s var(--ease-out);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-self: stretch;
  gap: 1px;
  align-items: center;
  margin-left: auto;
}

.nav > a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-soft);
  padding: 0 10px;
  touch-action: manipulation;
  transition: color 0.2s var(--ease-out), padding 0.35s var(--ease-out), font-size 0.35s var(--ease-out);
}

.nav > a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s var(--ease-out);
}

.nav > a:hover {
  color: var(--text);
}

.nav > a:hover::after,
.nav > a.nav-active::after {
  transform: scaleX(1);
}

.nav > a.nav-active {
  color: var(--accent);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
  transition: gap 0.35s var(--ease-out), margin 0.35s var(--ease-out);
}

.header-avito,
.nav-mobile-avito {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s var(--ease-out), gap 0.35s var(--ease-out), font-size 0.35s var(--ease-out);
}

.header-avito:hover,
.nav-mobile-avito:hover {
  color: #00aaff;
}

.avito-pin {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.avito-pin img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-separator {
  width: 1px;
  height: 32px;
  background: rgba(15, 23, 42, 0.1);
  transition: height 0.35s var(--ease-out);
}

.header-phone-block {
  display: flex;
  min-width: 142px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  transition: min-width 0.35s var(--ease-out), gap 0.35s var(--ease-out);
}

.header-hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 9.5px;
  font-weight: 650;
  letter-spacing: 0.015em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: visible;
  max-height: 16px;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.28s var(--ease-out), opacity 0.2s var(--ease-out), transform 0.28s var(--ease-out);
}

.header-hours i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.header-phone {
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  white-space: nowrap;
  transition: color 0.2s var(--ease-out), font-size 0.35s var(--ease-out);
}

.header-phone:hover {
  color: var(--accent);
}

.header-callback,
.nav-mobile-callback {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 15px;
  border: 0;
  border-radius: 11px;
  background: #5b52e8;
  box-shadow: 0 6px 16px rgba(91, 82, 232, 0.22);
  color: #fff;
  font: inherit;
  font-size: 12.5px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition:
    min-height 0.35s var(--ease-out),
    padding 0.35s var(--ease-out),
    border-radius 0.35s var(--ease-out),
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s var(--ease-out),
    font-size 0.35s var(--ease-out);
}

.header-callback:hover,
.nav-mobile-callback:hover {
  background: #4f46d7;
  box-shadow: 0 8px 20px rgba(91, 82, 232, 0.28);
  transform: translateY(-1px);
}

.header-callback:active,
.nav-mobile-callback:active {
  transform: translateY(0);
}

.nav-mobile-actions {
  display: none;
}

.burger {
  display: none;
  flex: 0 0 48px;
  margin-left: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  transition: box-shadow 0.2s, background 0.2s;
}

.burger:hover {
  background: #f0eeff;
  box-shadow: var(--shadow-soft);
}

.burger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--navy);
  margin: 3px 0;
  border-radius: 2px;
  transition: background 0.2s;
}

.burger-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: 3px;
  text-transform: uppercase;
  line-height: 1;
}

.brand:focus-visible,
.nav a:focus-visible,
.header-avito:focus-visible,
.header-phone:focus-visible,
.header-callback:focus-visible,
.nav-mobile-callback:focus-visible,
.burger:focus-visible {
  outline: 3px solid rgba(99, 102, 241, 0.28);
  outline-offset: 3px;
}

.site-header.is-scrolled .brand {
  min-width: 180px;
  gap: 8px;
}

.site-header.is-scrolled .brand-logo {
  width: 36px;
  height: 36px;
}

.site-header.is-scrolled .brand b {
  font-size: 14.5px;
}

.site-header.is-scrolled .nav > a {
  padding-right: 8px;
  padding-left: 8px;
  font-size: 12.5px;
}

.site-header.is-scrolled .nav > a::after {
  right: 8px;
  left: 8px;
}

.site-header.is-scrolled .header-actions {
  gap: 9px;
  margin-left: 4px;
}

.site-header.is-scrolled .header-avito {
  gap: 6px;
  font-size: 11.5px;
}

.site-header.is-scrolled .header-avito .avito-pin {
  width: 30px;
  height: 30px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.site-header.is-scrolled .header-separator {
  height: 26px;
}

.site-header.is-scrolled .header-phone-block {
  min-width: 126px;
  gap: 0;
}

.site-header.is-scrolled .header-actions .header-hours {
  max-height: 0;
  opacity: 0;
  transform: translateY(-3px);
  visibility: hidden;
}

.site-header.is-scrolled .header-phone {
  font-size: 14.5px;
}

.site-header.is-scrolled .header-callback {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11.5px;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header * {
    transition-duration: 0.01ms !important;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  touch-action: manipulation;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #06b6d4 0%, #6366f1 55%, #8b5cf6 100%);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, filter 0.2s, opacity 0.25s;
}

.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn:active {
  transform: translateY(0);
}

.btn-outline {
  background: var(--bg-elevated);
  color: var(--navy);
  border: 2px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.btn-outline:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12);
  filter: none;
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(94, 234, 212, 0.55);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
}

.btn-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 12px;
}

.btn-wide {
  width: 100%;
}

/* ——— Hero (home) ——— */
.hero {
  position: relative;
  z-index: 1;
  padding: 88px 0 56px;
  overflow: hidden;
  border-radius: 0 0 52px 52px;
  color: var(--hero-fg);
  background: linear-gradient(155deg, #070b12 0%, #0f172a 38%, #1e1b4b 72%, #0f0c29 100%);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(6, 182, 212, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(139, 92, 246, 0.2), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(99, 102, 241, 0.15), transparent 45%);
  pointer-events: none;
  will-change: transform;
  animation: hero-breathe 14s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

@keyframes hero-breathe {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-2%, 1%) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  column-gap: 48px;
  row-gap: 24px;
  align-items: stretch;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.eyebrow {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
  margin-bottom: 14px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}

.lead,
.page-hero p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--hero-muted);
  max-width: 34rem;
  margin: 0;
  line-height: 1.65;
}

.hero .lead {
  color: var(--hero-muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: auto 0 0;
  padding-top: 28px;
}

.hero-benefits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-benefit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: background 0.25s var(--ease-out);
}

.hero-benefit + .hero-benefit {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-benefit-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.hero-benefit-icon svg {
  width: 26px;
  height: 26px;
}

.hero-benefit--plain .hero-benefit-icon {
  color: #a5b4fc;
  filter: drop-shadow(0 7px 12px rgba(99, 102, 241, 0.3));
}

.hero-benefit-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hero-benefit-copy b {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-benefit:hover {
  background: rgba(255, 255, 255, 0.055);
}

.hero-benefit:hover .hero-benefit-icon {
  transform: translateY(-2px);
}

.hero-stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

/* ——— Hero service van ——— */
.hero-van-card {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 10;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #101a3e;
  box-shadow: var(--shadow-glow);
}

.hero-van-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 24, 0.06) 45%, rgba(4, 9, 24, 0.66) 100%);
  pointer-events: none;
}

.hero-van-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/hero-service-van.71aec8821816.webp");
  background-position: center 52%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.1);
  transition: transform 0.65s var(--ease-out), filter 0.35s var(--ease-out);
}

.hero-van-card:hover .hero-van-card__image {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.115);
}

.hero-van-card__top {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-van-status,
.hero-van-location {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 10, 28, 0.64);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.hero-van-status i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.16);
}

.hero-van-location {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.68);
  color: #1e293b;
}

.hero-van-features {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(5, 10, 28, 0.7);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-van-features span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 2px 10px;
  color: #67e8f9;
}

.hero-van-features span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-van-features svg {
  flex: 0 0 auto;
}

.hero-van-features b {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
  font-size: 10.5px;
  font-weight: 750;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-van-card {
    width: 100%;
    height: clamp(240px, 72vw, 290px);
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 20px;
  }

  .hero-van-card__image {
    background-position: center 52%;
    transform: scale(1.035);
  }

  .hero-van-card:hover .hero-van-card__image {
    transform: scale(1.045);
  }

  .hero-van-card__top {
    top: 14px;
    right: 14px;
    left: 14px;
  }

  .hero-van-features {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 52px;
    padding: 7px 4px;
  }

  .hero-van-features span {
    flex-direction: column;
    gap: 3px;
    padding: 2px 4px;
    text-align: center;
  }

  .hero-van-features b {
    overflow: visible;
    font-size: 9px;
    line-height: 1.15;
    text-overflow: clip;
    white-space: normal;
  }
}

@media (max-width: 400px) {
  .hero-van-location {
    display: none;
  }

  .hero-van-card__top {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-van-card__image {
    transition: none;
  }

  .hero-van-card:hover .hero-van-card__image {
    transform: scale(1.1);
  }
}

/* ——— Hero media card ——— */
.hero-media-card {
  position: relative;
  isolation: isolate;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #111827;
  box-shadow: var(--shadow-glow);
}

.hero-media-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 18, 0.12) 0%, rgba(7, 11, 18, 0.08) 34%, rgba(7, 11, 18, 0.9) 100%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.22), transparent 58%);
  pointer-events: none;
}

.hero-media-card::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero-media-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.015);
  transition: transform 0.7s var(--ease-out), filter 0.4s var(--ease-out);
}

.hero-media-card:hover .hero-media-card__image {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.055);
}

.hero-media-card__top {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-media-badge,
.hero-media-location {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.68);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.hero-media-badge i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.16);
}

.hero-media-location {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.72);
  color: #1e293b;
}

.hero-media-copy {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 22px;
  max-width: calc(100% - 240px);
  color: #fff;
}

.hero-media-copy span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: #67e8f9;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-media-copy strong {
  display: block;
  max-width: 15rem;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.hero-media-inset {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  width: 188px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  color: var(--navy);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-media-inset img {
  display: block;
  width: 100%;
  height: 72px;
  border-radius: 11px;
  object-fit: cover;
  object-position: center;
}

.hero-media-inset div {
  padding: 7px 7px 6px;
}

.hero-media-inset span,
.hero-media-inset strong {
  display: block;
}

.hero-media-inset span {
  margin-bottom: 3px;
  color: #4f46e5;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-media-inset strong {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

@media (max-width: 640px) {
  .hero-media-card {
    min-height: 390px;
    border-radius: 20px;
  }

  .hero-media-card__top {
    top: 14px;
    right: 14px;
    left: 14px;
  }

  .hero-media-copy {
    right: 18px;
    bottom: 126px;
    left: 18px;
    max-width: none;
  }

  .hero-media-copy strong {
    max-width: 18rem;
    font-size: 18px;
  }

  .hero-media-inset {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 4px;
  }

  .hero-media-inset img {
    height: 76px;
  }
}

@media (max-width: 400px) {
  .hero-media-location {
    display: none;
  }

  .hero-media-card__top {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media-card__image {
    transition: none;
  }

  .hero-media-card:hover .hero-media-card__image {
    transform: scale(1.015);
  }
}

/* ——— Service scene (CSS illustration) ——— */
.service-scene {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-lg);
  padding: 20px 20px 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.service-scene::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.08));
  pointer-events: none;
}

.scene-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.badge-live {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444, #f97316);
  color: #fff;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.45);
  animation: pulse-badge 2.4s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.35);
  }
  50% {
    box-shadow: 0 0 28px rgba(239, 68, 68, 0.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge-live {
    animation: none;
  }
}

.scene-phone {
  font-weight: 800;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

.pipe-line {
  display: flex;
  gap: 6px;
  margin: 0 0 12px 4px;
  position: relative;
  z-index: 1;
}

.pipe-line span {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #334155, #475569);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  position: relative;
  overflow: hidden;
}

.pipe-line span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.55), transparent);
  animation: flow 2.2s linear infinite;
}

.pipe-line span:nth-child(2)::after {
  animation-delay: 0.4s;
}

.pipe-line span:nth-child(3)::after {
  animation-delay: 0.8s;
}

@keyframes flow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pipe-line span::after {
    animation: none;
  }
}

.van {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0;
  height: 56px;
  margin: 8px 0 0 8px;
  z-index: 2;
}

.van-cab {
  width: 38px;
  height: 40px;
  background: linear-gradient(180deg, #f8fafc 0%, #cbd5e1 100%);
  border-radius: 10px 6px 6px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.van-box {
  width: 72px;
  height: 44px;
  margin-left: -4px;
  background: linear-gradient(180deg, #4c1d95 0%, #4338ca 45%, #3730a3 100%);
  border-radius: 6px 12px 12px 6px;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
  position: relative;
}

.van-box::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  right: 10px;
  height: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.van-light {
  position: absolute;
  left: 28px;
  bottom: 14px;
  width: 10px;
  height: 6px;
  background: #fef08a;
  border-radius: 2px;
  box-shadow: 0 0 12px #facc15;
}

.wheel {
  position: absolute;
  bottom: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #64748b, #1e293b);
  box-shadow: 0 2px 0 #0f172a;
}

.wheel-a {
  left: 22px;
}

.wheel-b {
  left: 78px;
}

.tool-card {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  max-width: 140px;
}

.tool-card b {
  display: block;
  font-size: 12px;
  color: #fff;
  margin-bottom: 2px;
}

.tool-card small {
  font-size: 10px;
  color: rgba(148, 163, 184, 0.95);
  line-height: 1.3;
}

.tool-card-a {
  right: 12px;
  top: 52px;
}

.tool-card-b {
  left: 12px;
  bottom: 18px;
}

.service-scene-small {
  min-height: 180px;
}

.compact-van {
  height: 48px;
  margin-top: 20px;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 40px;
  align-items: center;
}

/* ——— Panels & forms ——— */
.hero-panel,
.side-card,
.contact-card {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-panel::before,
.side-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.4), transparent 40%, rgba(139, 92, 246, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-panel h2,
.side-card h2 {
  margin-top: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form .field {
  display: grid;
  gap: 7px;
}

.field-label {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.field-label span {
  color: var(--muted);
  font-weight: 500;
}

.field input:not([type="checkbox"]),
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  background: #f8fafc;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #ef4444;
  background: #fff7f7;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.lead-form__status {
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.lead-form__status.is-success {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #166534;
}

.lead-form__status.is-error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.lead-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* Consent checkbox */
.field-consent {
  margin-top: 4px;
}

.consent-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(99,102,241,0.4);
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}

.consent-label input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #06b6d4, #6366f1);
  border-color: #6366f1;
}

.consent-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.consent-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.consent-label a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-label a:hover {
  color: var(--violet);
}

.field-error {
  font-size: 12px;
  color: #ef4444;
  margin: 4px 0 0;
}

.messages {
  padding-top: 16px;
}

.message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  font-weight: 500;
}

.message.error {
  background: #fef2f2;
  border-color: #fecaca;
}

/* ——— Sections ——— */
.section {
  padding: 80px 0;
}

.compact {
  padding-top: 36px;
}

.band {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head h2,
.cta h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  max-width: 28rem;
}

.section-head a {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  padding: 8px 0;
  border-bottom: 2px solid rgba(99, 102, 241, 0.25);
  transition: border-color 0.2s, color 0.2s;
}

.section-head a:hover {
  border-color: var(--accent);
  color: #4338ca;
}

/* ——— Cards ——— */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.25s;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(99, 102, 241, 0.2);
}

.card:hover::after {
  opacity: 1;
}

.card h2,
.card h3 {
  margin-top: 0;
  letter-spacing: -0.02em;
}

.card p {
  color: var(--text-soft);
  margin-bottom: 0;
}

.card-icon {
  font-weight: 900;
  font-size: 28px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-weight: 700;
}

.card-actions a {
  color: var(--accent);
  position: relative;
}

.card-actions a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease-out);
}

.card-actions a:hover::after {
  width: 100%;
}

/* Service card art */
.service-art {
  position: relative;
  height: 120px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  background: linear-gradient(145deg, #ede9fe 0%, #f5f3ff 50%, #e0e7ff 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
  overflow: hidden;
}

.art-pipe {
  position: absolute;
  left: 18%;
  top: 50%;
  width: 64%;
  height: 12px;
  margin-top: -6px;
  background: linear-gradient(90deg, #94a3b8, #cbd5e1);
  border-radius: 999px;
}

.art-flow {
  position: absolute;
  left: 18%;
  top: 50%;
  width: 30%;
  height: 12px;
  margin-top: -6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.7), transparent);
  animation: flow 2.5s linear infinite;
}

.art-tool {
  position: absolute;
  right: 14%;
  top: 22%;
  width: 28px;
  height: 56px;
  background: linear-gradient(180deg, #6366f1, #3730a3);
  border-radius: 4px 4px 8px 8px;
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.25);
}

.service-art-2 .art-flow {
  animation-duration: 3.2s;
}

.service-art-3 {
  background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
}

.service-art-3 .art-tool {
  background: linear-gradient(180deg, #8b5cf6, #6366f1);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.why-us-section {
  background: var(--bg);
}

.section.why-us-section {
  padding: 32px 0 68px;
}

.section.services-section {
  padding-top: 56px;
  padding-bottom: 32px;
}

.why-us-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  overflow: hidden;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 8%, rgba(99, 102, 241, 0.25), transparent 34%),
    radial-gradient(circle at 8% 100%, rgba(6, 182, 212, 0.13), transparent 34%),
    linear-gradient(145deg, #09111f 0%, #111a32 48%, #1b1948 100%);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.why-us-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(105deg, transparent 2%, rgba(0, 0, 0, 0.78) 52%, transparent 100%);
  -webkit-mask-image: linear-gradient(105deg, transparent 2%, rgba(0, 0, 0, 0.78) 52%, transparent 100%);
  pointer-events: none;
}

.why-us-intro {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.why-us-label {
  display: block;
  width: fit-content;
  margin-bottom: 18px;
  color: #67e8f9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.why-us-label::before {
  display: none;
}

.why-us-intro h2 {
  max-width: 9ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.why-us-quote {
  max-width: 31rem;
  margin: 22px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(226, 232, 240, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.why-us-promise {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.why-us-promise__icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #67e8f9;
}

.why-us-promise > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.why-us-promise b,
.why-us-promise small {
  display: block;
}

.why-us-promise b {
  color: rgba(255, 255, 255, 0.94);
  font-size: 12.5px;
  font-weight: 750;
  line-height: 1.3;
}

.why-us-promise small {
  color: rgba(203, 213, 225, 0.62);
  font-size: 10.5px;
  line-height: 1.45;
}

.why-us-shell .why-benefit-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.why-benefit-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 178px;
  overflow: hidden;
  flex-direction: column;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: transform 0.25s var(--ease-out), border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.why-benefit-card::after {
  content: "";
  position: absolute;
  top: -54px;
  right: -54px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.16);
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
  pointer-events: none;
}

.why-benefit-card:hover {
  border-color: rgba(165, 180, 252, 0.26);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.why-benefit-card:hover::after {
  opacity: 1;
}

.why-benefit-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.why-benefit-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.25));
}

.why-benefit-icon--speed { color: #67e8f9; }
.why-benefit-icon--exp { color: #a5b4fc; }
.why-benefit-icon--tool { color: #7dd3fc; }
.why-benefit-icon--price { color: #86efac; }

.why-benefit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.why-benefit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(203, 213, 225, 0.68);
  font-size: 12.5px;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .why-us-shell {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 42px;
  }

  .why-us-intro h2 {
    max-width: 13ch;
  }

  .why-us-promise {
    max-width: 34rem;
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  .section.why-us-section {
    padding: 24px 0 42px;
  }

  .section.services-section {
    padding-top: 38px;
    padding-bottom: 20px;
  }

  .why-us-shell {
    gap: 28px;
    padding: 27px 22px 22px;
    border-radius: 24px;
  }

  .why-us-intro h2 {
    max-width: none;
    font-size: 2rem;
  }

  .why-us-quote {
    margin-top: 18px;
    font-size: 14px;
  }

  .why-us-promise {
    align-items: flex-start;
    margin-top: 24px;
    padding: 15px;
  }

  .why-us-shell .why-benefit-grid {
    grid-template-columns: 1fr;
  }

  .why-benefit-card {
    min-height: 0;
    padding: 20px;
  }
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefit-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}

.benefit-card:hover {
  box-shadow: var(--shadow-soft);
  border-color: rgba(99, 102, 241, 0.22);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.benefit-icon--speed { background: #fef3c7; color: #d97706; }
.benefit-icon--exp   { background: #ede9fe; color: #7c3aed; }
.benefit-icon--tool  { background: #e0f2fe; color: #0284c7; }
.benefit-icon--price { background: #dcfce7; color: #16a34a; }
.benefit-icon--geo   { background: #fee2e2; color: #dc2626; }

.benefit-card b {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

.benefit-card span {
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.5;
}

.steps {
  display: flex;
  gap: 0;
  counter-reset: step;
  position: relative;
  padding: 8px 0 4px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-2), var(--accent));
  opacity: 0.25;
  z-index: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  padding: 0 6px;
}

.step-num {
  counter-increment: step;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.28);
  border: 3px solid var(--bg);
  flex-shrink: 0;
}

.step-num::before {
  content: counter(step);
}

.step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

/* ——— Home workflow: pipe with moving water ——— */
.section.workflow-section {
  padding: 64px 0 48px;
}

.workflow-head {
  margin-bottom: 26px;
}

.workflow-head > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workflow-head h2 {
  margin: 0;
}

.workflow-kicker {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.workflow-head p {
  max-width: 21rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.workflow-scroll {
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-color: rgba(99, 102, 241, 0.28) transparent;
  scrollbar-width: thin;
}

.workflow-steps {
  position: relative;
  display: grid;
  min-width: 720px;
  grid-template-columns: repeat(6, minmax(112px, 1fr));
  gap: 0;
  padding: 14px 0 8px;
}

.workflow-steps::before {
  display: none;
}

.workflow-pipe {
  position: absolute;
  z-index: 0;
  top: 33px;
  right: calc(100% / 12);
  left: calc(100% / 12);
  height: 24px;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.38);
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fafc 0%, #cbd5e1 18%, #64748b 50%, #cbd5e1 82%, #f8fafc 100%);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.8), inset 0 -1px 2px rgba(15, 23, 42, 0.28);
}

.workflow-pipe span {
  position: absolute;
  inset: 5px 4px;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(180deg, #e0f7ff 0%, #7dd3fc 14%, #38bdf8 30%, #0284c7 62%, #075985 82%, #22d3ee 100%);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.65), inset 0 -2px 4px rgba(3, 105, 161, 0.5), 0 0 12px rgba(34, 211, 238, 0.42);
}

.workflow-pipe span::before,
.workflow-pipe span::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.workflow-pipe span::before {
  inset: 0 -80px;
  background-image:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0 1.2px, rgba(224, 247, 255, 0.48) 1.6px, transparent 2.2px),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.58) 0 0.8px, transparent 1.7px);
  background-position: 0 2px, 18px 7px;
  background-size: 38px 10px, 61px 12px;
  opacity: 0.9;
  animation: workflow-bubbles-horizontal 1.8s linear infinite;
}

.workflow-pipe span::after {
  top: 1px;
  right: -120px;
  left: -120px;
  height: 3px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.7) 30px 52px, transparent 66px 118px);
  background-position: 0 0;
  background-size: 118px 100%;
  filter: blur(0.35px);
  animation: workflow-highlight-horizontal 1.35s linear infinite;
}

@keyframes workflow-bubbles-horizontal {
  to {
    background-position: 76px 2px, 140px 7px;
  }
}

@keyframes workflow-highlight-horizontal {
  to {
    background-position: 118px 0;
  }
}

.workflow-steps .step {
  z-index: 1;
  min-width: 0;
  flex: none;
  gap: 14px;
  padding: 0 9px;
}

.workflow-steps .step-num {
  position: relative;
  width: 62px;
  height: 62px;
  border: 6px solid #dbeafe;
  background: radial-gradient(circle at 34% 26%, #67e8f9 0%, #0ea5e9 42%, #4f46e5 100%);
  box-shadow: 0 0 0 2px #64748b, 0 10px 26px rgba(79, 70, 229, 0.3), inset 0 2px 5px rgba(255, 255, 255, 0.45), inset 0 -4px 8px rgba(30, 27, 75, 0.3);
}

.workflow-steps .step-num::before {
  position: relative;
  z-index: 1;
}

.workflow-steps .step-num::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.workflow-steps .step-title {
  max-width: 9.5rem;
  font-size: 12.5px;
  font-weight: 750;
}

@media (max-width: 768px) {
  .section.workflow-section {
    padding: 48px 0 36px;
  }

  .workflow-head {
    margin-bottom: 20px;
  }

  .workflow-head p {
    font-size: 13px;
  }

  .workflow-scroll {
    overflow: visible;
    padding-bottom: 0;
  }

  .workflow-steps {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 4px 0;
  }

  .workflow-pipe {
    top: 34px;
    right: auto;
    bottom: 34px;
    left: 19px;
    width: 24px;
    height: auto;
  }

  .workflow-pipe span {
    inset: 4px 5px;
    background: linear-gradient(90deg, #e0f7ff 0%, #7dd3fc 14%, #38bdf8 30%, #0284c7 62%, #075985 82%, #22d3ee 100%);
  }

  .workflow-pipe span::before {
    inset: -80px 0;
    background-position: 2px 0, 7px 18px;
    background-size: 10px 38px, 12px 61px;
    animation-name: workflow-bubbles-vertical;
  }

  .workflow-pipe span::after {
    top: -120px;
    right: auto;
    bottom: -120px;
    left: 1px;
    width: 3px;
    height: auto;
    background: repeating-linear-gradient(180deg, transparent 0 18px, rgba(255, 255, 255, 0.7) 30px 52px, transparent 66px 118px);
    background-position: 0 0;
    background-size: 100% 118px;
    animation-name: workflow-highlight-vertical;
  }

  @keyframes workflow-bubbles-vertical {
    to {
      background-position: 2px 76px, 7px 140px;
    }
  }

  @keyframes workflow-highlight-vertical {
    to {
      background-position: 0 118px;
    }
  }

  .workflow-steps .step {
    min-height: 62px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 17px;
    padding: 0;
    text-align: left;
  }

  .workflow-steps .step-title {
    max-width: none;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-pipe span::before,
  .workflow-pipe span::after {
    animation: none;
  }
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 42px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #6366f1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  transform: translateY(-50%);
}

.section.assistance-section {
  padding: 12px 0 44px;
}

.assistance-grid {
  align-items: start;
  gap: 56px;
}

.assistance-copy {
  padding-top: 8px;
}

.assistance-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 3.4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section.gallery-section {
  padding-top: 48px;
}

.work-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.work-scenario-card {
  min-width: 0;
  overflow: hidden;
  padding: 10px 10px 15px;
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}

.work-scenario-card:hover {
  border-color: rgba(99, 102, 241, 0.24);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.work-scenario-media {
  position: relative;
  isolation: isolate;
  height: 184px;
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.96) 36%, rgba(224, 231, 255, 0.9) 100%);
}

.work-scenario-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

.work-scenario-media::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 12%;
  bottom: 8px;
  left: 12%;
  height: 18px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.14);
  filter: blur(10px);
}

.work-scenario-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 7px 8px 1px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 15px rgba(15, 23, 42, 0.18));
  transition: transform 0.4s var(--ease-out), filter 0.3s;
}

.work-scenario-card:hover .work-scenario-media img {
  filter: drop-shadow(0 15px 18px rgba(15, 23, 42, 0.22));
  transform: scale(1.035);
}

.work-scenario-caption {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0;
  padding: 14px 7px 1px;
}

.work-scenario-caption h3 {
  min-width: 0;
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

@media (max-width: 640px) {
  .section.assistance-section {
    padding: 8px 0 32px;
  }

  .assistance-grid {
    gap: 30px;
  }

  .assistance-copy {
    padding-top: 0;
  }

  .assistance-copy h2 {
    margin-bottom: 18px;
    font-size: 1.85rem;
  }

  .assistance-copy .check-list li {
    padding: 10px 0 10px 36px;
    font-size: 16px;
  }

  .assistance-copy .check-list li::before {
    width: 14px;
    height: 14px;
  }

  .section.gallery-section {
    padding-top: 40px;
  }

  .work-preview {
    grid-template-columns: 1fr;
  }

  .work-scenario-media {
    height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-scenario-card,
  .work-scenario-media img {
    transition: none;
  }

  .work-scenario-card:hover,
  .work-scenario-card:hover .work-scenario-media img {
    transform: none;
  }
}

/* Photo placeholder */
.photo-placeholder {
  width: 100%;
  height: 160px;
  display: block;
  border-radius: var(--radius);
  margin-bottom: 18px;
  background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 50%, #d1c4e9 100%);
  border: none;
}

.photo-placeholder--large {
  height: 240px;
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
}

/* Service photos */
.service-card-img {
  width: 100%;
  height: 160px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
  display: block;
}

.service-detail-img {
  width: 100%;
  max-height: 360px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  display: block;
  box-shadow: var(--shadow-soft);
}

/* Gallery */
.gallery-section {
  position: relative;
}

/* Нижние секции главной идут одним непрерывным потоком без цветных полос. */
.home-lower-flow {
  position: relative;
  background:
    radial-gradient(circle at 92% 20%, rgba(99, 102, 241, 0.09), transparent 25%),
    radial-gradient(circle at 8% 68%, rgba(6, 182, 212, 0.07), transparent 27%),
    linear-gradient(180deg, #f5f3ff 0%, #f8fafc 32%, #f7f7ff 67%, #f5f3ff 100%);
}

.home-lower-flow > .section,
.home-lower-flow > .section.band {
  position: relative;
  background: transparent;
}

.home-lower-flow > .section {
  padding: 56px 0;
}

.home-lower-flow > .section:not(:last-child) {
  padding-bottom: 36px;
}

.home-lower-flow > .section + .section {
  padding-top: 36px;
}

.home-lower-flow > .section .section-head {
  margin-bottom: 28px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-strip--reels {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-strip article {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.gallery-strip article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.gallery-img {
  display: block;
  height: 160px;
  width: 100%;
}

.gallery-a {
  background: linear-gradient(160deg, #1e293b 0%, #334155 40%, #4338ca 100%);
}

.gallery-b {
  background: linear-gradient(160deg, #312e81 0%, #4f46e5 50%, #a5b4fc 100%);
}

.gallery-c {
  background: linear-gradient(160deg, #164e63 0%, #4c1d95 45%, #a5b4fc 100%);
}

.gallery-reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: #0f172a;
}

.gallery-reel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.reel-play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}

.reel-play-btn.is-playing {
  opacity: 0;
  pointer-events: none;
}

.reel-play-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  transition: transform 0.2s var(--ease-out), background 0.2s;
  padding-left: 4px;
}

.reel-play-btn:hover .reel-play-circle {
  transform: scale(1.12);
  background: rgba(99, 102, 241, 0.55);
  border-color: rgba(255, 255, 255, 0.6);
}

.gallery-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: #0f172a;
}

.gallery-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.gallery-real-img {
  display: block;
  width: 100%;
  height: 200px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.gallery-placeholder {
  display: block;
  height: 200px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.gallery-color-1 { background: linear-gradient(160deg, #1e293b 0%, #334155 40%, #4338ca 100%); }
.gallery-color-2 { background: linear-gradient(160deg, #312e81 0%, #4f46e5 50%, #a5b4fc 100%); }
.gallery-color-3 { background: linear-gradient(160deg, #164e63 0%, #4c1d95 45%, #a5b4fc 100%); }
.gallery-color-4 { background: linear-gradient(160deg, #1e3a5f 0%, #2563eb 50%, #06b6d4 100%); }
.gallery-color-5 { background: linear-gradient(160deg, #1a1a2e 0%, #6366f1 50%, #a5b4fc 100%); }
.gallery-color-6 { background: linear-gradient(160deg, #0f172a 0%, #7c3aed 50%, #c4b5fd 100%); }

.gallery-strip h3 {
  margin: 18px 20px 8px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.gallery-strip p {
  margin: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .home-lower-flow {
    background:
      radial-gradient(circle at 100% 18%, rgba(99, 102, 241, 0.08), transparent 22%),
      radial-gradient(circle at 0 70%, rgba(6, 182, 212, 0.06), transparent 24%),
      linear-gradient(180deg, #f5f3ff 0%, #f8fafc 38%, #f5f3ff 100%);
  }

  .home-lower-flow > .section {
    padding: 42px 0;
  }

  .home-lower-flow > .section:not(:last-child) {
    padding-bottom: 26px;
  }

  .home-lower-flow > .section + .section {
    padding-top: 26px;
  }

  .home-lower-flow > .section .section-head {
    margin-bottom: 22px;
  }
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: none;
  align-items: start;
}

.faq details {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s;
}

.faq details[open] {
  border-color: rgba(99, 102, 241, 0.25);
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  padding: 18px 22px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease-out);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
}

.faq p {
  color: var(--text-soft);
  margin: 0;
  padding: 0 22px 20px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .faq {
    grid-template-columns: 1fr;
  }
}

/* CTA */
.cta {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 50%, #312e81 100%);
  color: #e2e8f0;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(6, 182, 212, 0.2), transparent 55%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: rgba(226, 232, 240, 0.78);
  max-width: 32rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 40px;
  align-items: center;
}

.cta .lead-form {
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta .btn-wide {
  margin-top: 4px;
}

/* Page hero (inner) */
.page-hero {
  padding: 72px 0 64px;
  background: linear-gradient(165deg, #f5f3ff 0%, #ede9fe 45%, #fff 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  color: var(--text);
}

.page-hero p {
  color: var(--text-soft);
}

.service-hero {
  background: linear-gradient(165deg, #ede9fe 0%, #f5f3ff 55%, #fff 100%);
}

.service-hero .service-scene {
  background: linear-gradient(165deg, rgba(99, 102, 241, 0.06) 0%, rgba(139, 92, 246, 0.08) 100%);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: var(--shadow-soft);
}

.service-hero .scene-phone,
.service-hero .tool-card b {
  color: inherit;
}

.service-hero .tool-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  color: var(--text);
}

.service-hero .tool-card b {
  color: var(--text);
}

.service-hero .tool-card small {
  color: var(--muted);
}

.service-hero .scene-phone {
  color: var(--navy);
  font-weight: 800;
}

.service-hero .pipe-line span {
  background: linear-gradient(90deg, #cbd5e1, #94a3b8);
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 18px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--accent);
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Prices & reviews */
.price-list {
  display: grid;
  gap: 14px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.25s;
}

.price-row:hover {
  box-shadow: var(--shadow-soft);
}

.price-row h2 {
  margin: 0;
  font-size: 1.15rem;
}

.price-row p {
  margin: 8px 0 0;
  color: var(--muted);
}

.price-row strong {
  font-size: 1.5rem;
  color: var(--navy);
  white-space: nowrap;
  font-weight: 800;
}

.price-row span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.stars {
  display: block;
  color: #f59e0b;
  margin: 8px 0;
  letter-spacing: 2px;
}

.review-list {
  display: grid;
  gap: 16px;
}

.pagination {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.coverage-block {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #eef2ff, #f0fdfa);
  border: 1px solid rgba(99, 102, 241, 0.15);
  padding: 40px 32px;
  text-align: center;
}
.coverage-icon {
  width: 52px;
  height: 52px;
  color: var(--accent);
  margin-bottom: 4px;
  opacity: 0.9;
}
.coverage-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.coverage-city {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}
.coverage-region {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 4px;
}
.coverage-tag {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--navy-mid);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}
.coverage-note {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.4;
}

.legal .container {
  max-width: 860px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.legal h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.5rem;
}

.legal h2:first-of-type {
  margin-top: 1rem;
}

.legal p,
.legal li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.legal ul {
  padding-left: 1.4em;
  margin: 0.5rem 0 1rem;
}

.legal ul li {
  margin-bottom: 0.3rem;
}

.legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover {
  color: var(--violet);
}

/* Footer */
.footer {
  padding: 52px 0 40px;
  background: linear-gradient(180deg, #0b1220 0%, #060a10 100%);
  color: #e2e8f0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer h3,
.footer h4 {
  margin-top: 0;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer p {
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}

.footer a,
.footer span {
  display: block;
  color: #cbd5e1;
  margin: 10px 0;
  font-size: 14px;
  transition: color 0.2s;
}

.footer a:hover {
  color: #a5b4fc;
}

.footer-lead-btn {
  margin-top: 14px;
  padding: 10px 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: #a5b4fc;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-align: left;
}

.footer-lead-btn:hover {
  color: #c4b5fd;
}

.mobile-call {
  display: none;
}

/* ——— Responsive ——— */
@media (max-width: 1120px) {
  .site-header {
    height: 72px;
  }

  .header-row {
    min-height: 72px;
  }

  .site-header.is-scrolled .header-row {
    width: min(1040px, calc(100% - 24px));
    min-height: 58px;
    padding-right: 13px;
    padding-left: 13px;
    transform: translateY(7px);
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 50;
    display: none;
    width: min(320px, calc(100vw - 28px));
    max-height: calc(100vh - 96px);
    margin: 0;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 9px;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
  }

  .nav.is-open {
    display: flex;
  }

  .nav > a {
    height: auto;
    padding: 11px 13px;
    border-radius: 9px;
    font-size: 14.5px;
  }

  .nav > a:hover,
  .nav > a.nav-active {
    background: #f5f3ff;
    color: var(--accent);
  }

  .nav > a::after {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .burger {
    display: flex;
    margin-left: 0;
  }
}

@media (max-width: 840px) {
  .header-actions {
    display: none;
  }

  .burger {
    margin-left: auto;
  }

  .site-header.is-scrolled .header-row {
    width: calc(100% - 20px);
    min-height: 56px;
    padding-right: 11px;
    padding-left: 11px;
  }

  .nav-mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-top: 7px;
    padding: 13px 8px 4px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .nav-mobile-avito {
    margin-bottom: 5px;
  }

  .nav-mobile-phone {
    padding: 0;
    color: var(--navy);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.03em;
  }

  .nav-mobile-callback {
    width: 100%;
    min-height: 46px;
    margin-top: 3px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .cta-grid,
  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    flex-wrap: wrap;
    gap: 24px 0;
  }
  .step {
    flex: 0 0 33.333%;
  }
  .steps::before {
    display: none;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip--reels {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) {
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip--reels {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .price-list {
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    height: 66px;
  }

  .header-row {
    min-height: 66px;
  }

  .site-header.is-scrolled .header-row {
    width: calc(100% - 16px);
    min-height: 54px;
    transform: translateY(6px);
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand b {
    font-size: 15px;
  }

  .hero {
    padding: 48px 0 38px;
    border-radius: 0 0 30px 30px;
  }

  .page-hero {
    padding: 48px 0 56px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.75rem;
  }

  .lead,
  .page-hero p {
    font-size: 1rem;
  }

  /* Кнопки в hero — на всю ширину */
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-benefits,
  .cards,
  .benefit-grid,
  .work-preview,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-benefit + .hero-benefit {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .hero-benefit {
    justify-content: flex-start;
  }

  .steps {
    flex-wrap: wrap;
    gap: 20px 0;
  }

  .step {
    flex: 0 0 50%;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head h2,
  .cta h2,
  .cta-banner-copy h2 {
    font-size: 1.5rem;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  /* Цена в строку с названием на мобиле */
  .price-row strong {
    font-size: 1.15rem;
    padding-top: 2px;
  }

  .tool-card-a,
  .tool-card-b {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    max-width: none;
    margin-top: 10px;
  }

  .service-scene {
    min-height: auto;
  }

  .van {
    margin-bottom: 8px;
  }

  /* Галерея рилсов — одна колонка */
  .gallery-strip--reels {
    grid-template-columns: 1fr;
  }

  /* CTA-баннер — кнопка на всю ширину */
  .cta-banner-btn {
    width: 100%;
  }

  /* Side card — отступ когда стакается */
  .side-card-cta {
    margin-top: 8px;
  }

  /* Карточки на странице услуг */
  .service-card-img,
  .gallery-real-img {
    height: 180px;
  }

  .mobile-call {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 35;
    min-height: 56px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4 0%, #6366f1 60%, #8b5cf6 100%);
    color: #fff;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    touch-action: manipulation;
  }

  body {
    padding-bottom: 82px;
  }

  /* iOS: предотвращает зум при фокусе на input если font-size < 16px */
  .field input:not([type="checkbox"]),
  .field textarea,
  .field select {
    font-size: 16px;
  }
}

/* ——— Modal sheets (заявка / отзыв) ——— */
body.is-sheet-open {
  overflow: hidden;
}

.site-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 28px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease-out), visibility 0.32s;
}

.site-sheet.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 30, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-sheet__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: min(92vh, 720px);
  overflow-y: auto;
  overflow-x: hidden;
  margin: auto;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 24px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.06),
    0 32px 80px rgba(15, 23, 42, 0.28),
    0 0 120px rgba(6, 182, 212, 0.12);
  transform: translateY(18px) scale(0.97);
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 0.38s var(--ease-out),
    opacity 0.32s var(--ease-out);
}

.site-sheet.is-open .site-sheet__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .site-sheet,
  .site-sheet__panel {
    transition-duration: 0.01ms;
  }
}

.site-sheet__glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(2px);
}

.site-sheet__glow--violet {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.28) 0%, transparent 65%);
}

.site-sheet__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.06);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.15s;
}

.site-sheet__close:hover {
  background: rgba(15, 23, 42, 0.1);
}

.site-sheet__close:active {
  transform: scale(0.94);
}

.site-sheet__close span {
  display: block;
  width: 16px;
  height: 16px;
  position: relative;
}

.site-sheet__close span::before,
.site-sheet__close span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
}

.site-sheet__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-sheet__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-sheet__head {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-right: 40px;
}

.site-sheet__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-sheet__eyebrow--violet {
  color: #7c3aed;
}

.site-sheet__title {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.site-sheet__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.site-sheet__body {
  position: relative;
  z-index: 2;
}

.site-sheet__body .lead-form {
  gap: 14px;
}

.site-sheet__body .field input,
.site-sheet__body .field textarea,
.site-sheet__body .field select {
  background: #fff;
}

.site-sheet--review .site-sheet__panel {
  width: min(100%, 440px);
}

button.btn {
  font: inherit;
}

.header-actions .btn {
  cursor: pointer;
}

/* CTA полоса с кнопкой вместо встроенной формы */
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-banner-copy {
  flex: 1;
  min-width: min(100%, 280px);
}

.cta-banner-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cta-banner-copy p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  max-width: 36rem;
  line-height: 1.55;
}

.cta-banner-btn {
  flex-shrink: 0;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.35);
}

/* Герой: панель без формы */
.hero-panel-list {
  margin: 0 0 18px;
  padding-left: 1.15rem;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.hero-panel-footnote {
  margin-top: 12px;
}

.hero-panel-cta .btn-wide {
  width: auto;
  margin: 0;
}

.hero-panel-cta {
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 22px 22px 22px 24px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(99, 102, 241, 0.24), transparent 48%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(20, 25, 58, 0.78));
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-panel-cta::before {
  display: none;
}

.hero-panel-cta__copy {
  min-width: 0;
}

.hero-panel-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  color: #67e8f9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-panel-cta__label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.1);
}

.hero-panel-cta h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.hero-panel-cta p {
  max-width: 29rem;
  margin: 0;
  color: rgba(226, 232, 240, 0.72);
  font-size: 13.5px;
  line-height: 1.5;
}

.hero-panel-cta__button {
  flex: 0 0 auto;
  min-width: 190px;
  gap: 10px;
  padding-inline: 20px;
  white-space: nowrap;
}

.hero-panel-cta__button svg {
  flex: 0 0 auto;
  transition: transform 0.2s var(--ease-out);
}

.hero-panel-cta__button:hover svg {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .hero-panel-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 21px;
  }

  .hero-panel-cta .btn-wide {
    width: 100%;
  }

  .hero-panel-cta__button {
    min-width: 0;
  }
}

/* Кнопки-ссылки в карточках */
.card-actions {
  align-items: center;
}

.card-actions-trigger {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  text-align: left;
  position: relative;
}

.card-actions-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease-out);
}

.card-actions-trigger:hover::after {
  width: 100%;
}

/* ——— Связанные услуги ——— */
.rel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.rel-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
}

.rel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.45;
  transition: opacity 0.3s;
}

.rel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(99, 102, 241, 0.22);
}

.rel-card:hover::before {
  opacity: 1;
}

.rel-card-body {
  padding: 26px 24px 16px;
  flex: 1;
}

.rel-card-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.35;
}

.rel-card-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.rel-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px 20px;
  border-top: 1px solid var(--line);
}

.rel-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.rel-card-link svg {
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out);
}

.rel-card-link:hover svg {
  transform: translateX(4px);
}

.rel-card-cta {
  margin-left: auto;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s var(--ease-out);
}

.rel-card-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .rel-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .rel-cards {
    grid-template-columns: 1fr;
  }

  .rel-card-body {
    padding: 20px 18px 12px;
  }

  .rel-card-footer {
    padding: 12px 18px 18px;
  }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  filter: none;
}

.service-card .btn-ghost {
  background: var(--bg-elevated);
  color: var(--navy);
  border: 1px solid var(--line-strong);
}

.service-card .btn-ghost:hover {
  border-color: rgba(99, 102, 241, 0.35);
}

.side-card-lede {
  color: var(--text-soft);
  margin-top: 0;
  line-height: 1.55;
}

.side-card-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  color: #15803d;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}
.side-card-phone:hover {
  background: #dcfce7;
  border-color: #86efac;
}

.side-card-perks {
  margin: 0 0 18px;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.review-cta-card p {
  color: var(--text-soft);
  line-height: 1.55;
}

.review-sheet-form .field select {
  width: 100%;
}

@media (max-width: 640px) {
  .cta-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner-btn {
    width: 100%;
    min-width: 0;
  }

  .site-sheet__panel {
    border-radius: 20px;
    padding: 22px 18px;
  }
}

/* ——— Страница цен ——— */
.prices-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.prices-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.18);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.4;
  transition: opacity 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(99, 102, 241, 0.22);
}

.price-card:hover::before {
  opacity: 1;
}

.price-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.price-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.price-card-desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
}

.price-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.price-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.price-val--contract {
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-unit {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.price-card-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  touch-action: manipulation;
  transition: opacity 0.2s, transform 0.15s var(--ease-out);
}

.price-card-cta:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

/* Факторы цены */
.price-factors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-factor {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-factor-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1));
  color: var(--accent);
}

.price-factor b {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.price-factor span {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .price-factors {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .price-cards {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 22px 18px;
  }

  .price-card-footer {
    flex-wrap: wrap;
    gap: 14px;
  }

  .price-card-cta {
    width: 100%;
    padding: 12px;
    text-align: center;
  }

  .price-factors {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .price-factor {
    padding: 18px 16px;
  }
}

/* ——— Mobile layout hardening ——— */
@media (max-width: 840px) {
  body.is-menu-open {
    overflow: hidden;
  }

  .nav {
    max-height: calc(100dvh - 88px);
    overscroll-behavior: contain;
    background: #ffffff;
  }

  .header-actions {
    display: none;
  }

  .burger {
    margin-left: auto;
  }

  .nav-mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-top: 7px;
    padding: 13px 8px 4px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .nav-mobile-avito,
  .nav-mobile-phone {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .workflow-scroll {
    overflow: visible;
  }

  .footer-grid {
    gap: 28px 24px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .hero {
    padding: 38px 0 34px;
  }

  .hero::before {
    animation: none;
    will-change: auto;
  }

  .hero-grid {
    row-gap: 20px;
  }

  .hero-grid > *,
  .hero-copy,
  .hero-stack,
  .hero-benefits {
    width: 100%;
    min-width: 0;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .hero h1,
  .page-hero h1 {
    overflow-wrap: break-word;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(1.65rem, 7.15vw, 1.9rem);
    line-height: 1.07;
    letter-spacing: -0.04em;
  }

  .hero .lead {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 10px;
    padding-top: 22px;
  }

  .hero-actions .btn {
    min-height: 52px;
  }

  .hero-stack {
    gap: 14px;
  }

  .hero-van-card {
    height: clamp(240px, 62vw, 380px);
  }

  .hero-van-card__top {
    top: 12px;
    right: 12px;
    left: 12px;
  }

  .hero-van-status,
  .hero-van-location {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 9.5px;
  }

  .hero-van-features {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .hero-panel-cta {
    gap: 16px;
    padding: 20px;
  }

  .hero-panel-cta p {
    font-size: 13px;
  }

  .hero-benefits {
    border-radius: 18px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-benefit {
    min-width: 0;
    gap: 10px;
    padding: 12px 16px;
  }

  .hero-benefit-icon {
    width: 30px;
    height: 30px;
  }

  .hero-benefit-icon svg {
    width: 23px;
    height: 23px;
  }

  .hero-benefit-copy b {
    overflow: visible;
    font-size: 12.5px;
    text-overflow: clip;
    white-space: normal;
  }

  .section {
    padding: 46px 0;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 22px;
  }

  .section-head p {
    font-size: 14px;
    line-height: 1.55;
  }

  .cards {
    gap: 14px;
  }

  .card,
  .side-card,
  .contact-card {
    padding: 20px;
    border-radius: 18px;
  }

  .card,
  .side-card,
  .contact-card,
  .legal,
  .footer {
    overflow-wrap: anywhere;
  }

  .service-card-img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .gallery-real-img,
  .gallery-placeholder {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .service-card .card-actions a,
  .service-card .card-actions-trigger,
  .pagination a,
  .rel-card-link,
  .rel-card-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .why-us-shell {
    gap: 24px;
    padding: 25px 20px 20px;
  }

  .why-us-intro h2 {
    font-size: clamp(1.8rem, 8vw, 2rem);
  }

  .why-us-quote {
    font-size: 13.5px;
    line-height: 1.62;
  }

  .why-us-promise {
    gap: 11px;
    margin-top: 22px;
    padding: 14px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .why-us-promise__icon {
    width: 32px;
    height: 32px;
  }

  .why-benefit-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 13px;
    row-gap: 6px;
    align-items: start;
    padding: 17px;
    border-radius: 17px;
  }

  .why-benefit-card__top {
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
  }

  .why-benefit-icon {
    width: 32px;
    height: 32px;
  }

  .why-benefit-card h3 {
    grid-column: 2;
    margin: 1px 0 0;
    font-size: 14.5px;
  }

  .why-benefit-card p {
    grid-column: 2;
    font-size: 12px;
  }

  .section.workflow-section {
    padding: 44px 0 34px;
  }

  .workflow-head {
    margin-bottom: 18px;
  }

  .section.assistance-section {
    padding: 10px 0 30px;
  }

  .assistance-grid {
    gap: 26px;
  }

  .assistance-copy h2 {
    font-size: 1.75rem;
  }

  .assistance-copy .check-list li {
    padding: 9px 0 9px 34px;
    font-size: 15px;
  }

  .work-preview {
    gap: 14px;
  }

  .work-scenario-card {
    padding: 9px 9px 14px;
    border-radius: 19px;
  }

  .work-scenario-media {
    height: clamp(172px, 54vw, 210px);
  }

  .home-lower-flow > .section {
    padding: 38px 0;
  }

  .home-lower-flow > .section:not(:last-child) {
    padding-bottom: 24px;
  }

  .home-lower-flow > .section + .section {
    padding-top: 24px;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-strip--reels {
    display: grid;
    grid-template-columns: none;
    grid-auto-columns: min(82vw, 300px);
    grid-auto-flow: column;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 12px;
    scroll-padding-inline: 2px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .gallery-strip--reels article {
    scroll-snap-align: start;
  }

  .faq {
    gap: 10px;
  }

  .faq summary {
    min-height: 54px;
    padding: 15px 17px;
    font-size: 14px;
  }

  .faq p {
    padding: 0 17px 17px;
    font-size: 14px;
  }

  .cta {
    padding: 52px 0;
  }

  .cta-banner-inner {
    gap: 22px;
  }

  .footer {
    padding: 44px 0 calc(104px + env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 30px;
  }

  .page-hero {
    padding: 42px 0 46px;
  }

  .page-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(1.65rem, 7vw, 1.85rem);
    line-height: 1.1;
  }

  .page-hero p {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .breadcrumbs {
    overflow-wrap: anywhere;
    font-size: 12px;
    line-height: 1.55;
  }

  .coverage-block {
    min-height: 0;
    padding: 32px 18px;
  }

  .legal .container {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .legal h2 {
    font-size: 17px;
    line-height: 1.35;
  }

  .legal p,
  .legal li {
    font-size: 14px;
    line-height: 1.65;
  }

  .price-factors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-factor {
    min-width: 0;
  }

  .site-sheet {
    align-items: end;
    padding:
      max(8px, env(safe-area-inset-top))
      max(8px, env(safe-area-inset-right))
      max(8px, env(safe-area-inset-bottom))
      max(8px, env(safe-area-inset-left));
  }

  .site-sheet__panel {
    width: 100%;
    max-height: calc(100dvh - max(16px, calc(env(safe-area-inset-top) + env(safe-area-inset-bottom))));
    overscroll-behavior: contain;
    border-radius: 22px;
    padding: 22px 18px;
  }

  .site-sheet__backdrop {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .mobile-call {
    left: auto;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: auto;
    min-width: 146px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .mobile-call.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.is-sheet-open .mobile-call,
  body.is-menu-open .mobile-call {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
  }

  .mobile-call svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }
}

@media (max-width: 420px) {
  .mobile-call {
    width: 54px;
    min-width: 54px;
    min-height: 54px;
    padding: 0;
  }

  .mobile-call span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .price-factors {
    grid-template-columns: 1fr;
  }

  .price-factor {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 3px;
    align-items: center;
  }

  .price-factor-icon {
    grid-row: 1 / 3;
  }

  .price-factor b,
  .price-factor > span:last-child {
    grid-column: 2;
  }
}

@media (max-width: 350px) {
  .container {
    width: calc(100% - 24px);
  }

  .brand {
    gap: 7px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand b {
    font-size: 14px;
  }

  .burger {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .hero-panel-cta,
  .card,
  .side-card,
  .contact-card {
    padding: 18px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .card:hover,
  .why-benefit-card:hover,
  .work-scenario-card:hover,
  .gallery-strip article:hover,
  .rel-card:hover,
  .price-card:hover {
    transform: none;
  }
}
