/* ——— Design tokens ——— */
:root {
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", 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;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}

.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  transition: opacity 0.2s var(--ease-out);
}

.brand:hover {
  opacity: 0.88;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand b {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.2;
}

.brand small {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav a {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-soft);
  padding: 10px 14px;
  border-radius: 12px;
  touch-action: manipulation;
  transition: color 0.2s, background 0.2s var(--ease-out);
}

.nav a:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.05);
}

.nav a.nav-active {
  color: var(--accent);
  background: rgba(99, 102, 241, 0.08);
}

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

.header-phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.header-phone {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.header-avito {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px 6px 5px;
  min-height: 44px;
  border-radius: 20px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
}
.header-avito:hover {
  background: #c8e6c9;
  color: #1b5e20;
}

.burger {
  display: none;
  margin-left: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  width: 56px;
  height: 56px;
  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;
}

/* ——— 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;
  padding: 88px 0 96px;
  overflow: hidden;
  color: var(--hero-fg);
  background: linear-gradient(155deg, #070b12 0%, #0f172a 38%, #1e1b4b 72%, #0f0c29 100%);
}

.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;
  gap: 48px;
  align-items: start;
}

.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: 28px 0;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.hero-benefits span {
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.25s var(--ease-out), border-color 0.25s, transform 0.2s;
}

.hero-benefits span:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(94, 234, 212, 0.35);
  transform: translateY(-2px);
}

.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ——— 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;
}

.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);
}

.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-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-us-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

.why-us-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.why-us-intro h2 {
  margin: 0;
}

.why-us-quote {
  margin: 0;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(99, 102, 241, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
  font-style: normal;
}

.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;
}

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

.check-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  color: var(--text-soft);
}

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

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

.work-preview div,
.visual-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.work-preview div:hover,
.visual-grid div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.visual-grid div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  border: 1px solid rgba(6, 182, 212, 0.12);
  overflow: hidden;
}

.mini-scene svg {
  width: 100%;
  height: 100%;
  display: block;
}

.scene-kitchen {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.scene-house {
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
}

.scene-cafe {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.scene-outdoor {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

/* 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;
}

.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;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
  max-width: 800px;
}

.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;
}

/* 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;
}

.mobile-call span,
[data-phone-alt] span {
  transition: opacity 0.25s;
}

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

  .hero-benefits {
    grid-template-columns: 1fr 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;
  }

  .header-actions {
    display: none;
  }

  .header-row {
    position: relative;
  }

  .nav {
    position: absolute;
    right: 0;
    left: auto;
    top: calc(100% + 6px);
    min-width: 220px;
    z-index: 50;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .nav a {
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
  }

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

  .burger {
    display: flex;
  }
}

@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);
  }

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

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .header-phone {
    font-size: 14px;
  }

  .hero,
  .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;
  }

  .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 {
  margin-top: 4px;
}

/* Кнопки-ссылки в карточках */
.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;
  }
}
