/* QUANTUM LABS — лендинг студии. Стиль повторяет главную Мультиграмма:
   светлый фон #f8f5fc, тёмно-фиолетовые геро-секции, градиенты #6e48aa→#9d50bb
   и #c084fc→#ec4899, белые карточки со скруглением и мягкой фиолетовой тенью. */

:root {
  --ink: #1a1530;
  --ink-2: #4a3565;
  --muted: #7a6b8d;
  --muted-2: #6a5d7f;
  --bg: #f8f5fc;
  --card: #ffffff;
  --line: rgba(168, 85, 247, 0.1);
  --violet: #9d50bb;
  --violet-deep: #6e48aa;
  --grad: linear-gradient(135deg, #6e48aa, #9d50bb);
  --grad-bright: linear-gradient(135deg, #9d50bb, #c084fc);
  --grad-accent: linear-gradient(135deg, #c084fc, #ec4899);
  --dark: linear-gradient(135deg, #1a0f33 0%, #2b1846 60%, #1a0f33 100%);
  --radius: 20px;
  --shadow: 0 4px 16px rgba(110, 72, 170, 0.06);
  --shadow-hover: 0 14px 32px rgba(110, 72, 170, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }

.gradText {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ════════════════ КНОПКИ ════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px; border: none;
  font-size: 15px; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: transform .12s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btnPrimary { background: var(--grad-bright); color: #fff; box-shadow: 0 6px 20px rgba(157, 80, 187, .45); }
.btnPrimary:hover { box-shadow: 0 10px 26px rgba(157, 80, 187, .55); }
.btnGhost { background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .25); backdrop-filter: blur(8px); }
.btnGhost:hover { background: rgba(255, 255, 255, .18); }
.btnSoft { background: #f3eefb; color: var(--violet-deep); }
.btnSoft:hover { background: #ebe1f9; }
.btnSmall { padding: 9px 16px; font-size: 13px; border-radius: 10px; }

/* ════════════════ НАВИГАЦИЯ ════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 85, 247, .08);
}
.navInner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logoMark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--grad);
  color: #fff; font-weight: 900; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(110, 72, 170, .3);
}
.logoImg { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.logoText { display: flex; flex-direction: column; line-height: 1.05; }
.logoName {
  font-size: 15px; font-weight: 900; letter-spacing: 1px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.logoTag { font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: .3px; }
.navLinks { display: flex; gap: 22px; flex: 1; justify-content: center; }
.navLinks a { color: var(--ink-2); font-size: 14px; font-weight: 500; white-space: nowrap; transition: color .15s; }
.navLinks a:hover { color: var(--violet); }
.navRight { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.langSwitch { display: flex; background: #f3eefb; border-radius: 10px; padding: 3px; }
.langSwitch button {
  border: none; background: transparent; color: var(--ink-2);
  font-size: 12px; font-weight: 800; padding: 6px 10px; border-radius: 8px; cursor: pointer;
}
.langSwitch button.active { background: #fff; color: var(--violet-deep); box-shadow: 0 2px 6px rgba(110, 72, 170, .15); }

/* ════════════════ ГЕРО ════════════════ */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(circle at 25% 20%, rgba(168, 85, 247, .35), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(236, 72, 153, .2), transparent 50%),
    var(--dark);
  padding-block: 72px 96px;
}
.heroGrid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
  font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  color: rgba(255, 255, 255, .9); margin-bottom: 22px;
}
.chipDot { width: 7px; height: 7px; border-radius: 50%; background: #ec4899; box-shadow: 0 0 10px #ec4899; }
.heroTitle { font-size: 52px; font-weight: 800; line-height: 1.06; letter-spacing: -1.2px; margin: 0 0 22px; }
.heroDesc { font-size: 18px; line-height: 1.55; color: rgba(255, 255, 255, .86); margin: 0 0 8px; }
.heroSub { font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, .62); margin: 0 0 32px; }
.heroCtas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.heroFacts { display: flex; flex-wrap: wrap; gap: 26px; }
.heroFact b { display: block; font-size: 22px; font-weight: 800; }
.heroFact span { font-size: 12.5px; color: rgba(255, 255, 255, .65); }

.heroVisual { position: relative; min-height: 440px; }
.heroGlow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(192, 132, 252, .45), transparent 70%); filter: blur(24px);
}
.pipeline {
  position: relative; margin: 0 auto; max-width: 440px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px; padding: 22px; backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}
.pipelineHead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pipelineTitle { font-size: 13px; font-weight: 700; color: rgba(255, 255, 255, .8); letter-spacing: .4px; }
.dots { display: flex; gap: 5px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .25); }
.dots i:first-child { background: #ec4899; }
.pipeStep {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, .96); color: var(--ink);
  border-radius: 14px; padding: 12px 14px; margin-bottom: 10px;
  animation: pipeIn .6s both;
}
.pipeStep:nth-child(2) { animation-delay: .08s; margin-left: 18px; }
.pipeStep:nth-child(3) { animation-delay: .16s; margin-left: 36px; }
.pipeStep:nth-child(4) { animation-delay: .24s; margin-left: 18px; }
.pipeStep:nth-child(5) { animation-delay: .32s; margin-bottom: 0; }
@keyframes pipeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.pipeNum {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: var(--grad); color: #fff; font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.pipeText b { display: block; font-size: 14px; }
.pipeText span { font-size: 12px; color: var(--muted); }
.floatBadge {
  position: absolute; right: -6px; bottom: -18px;
  background: #fff; color: var(--ink); border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}
.floatBadge small { display: block; font-size: 10px; font-weight: 800; color: var(--violet); letter-spacing: .5px; text-transform: uppercase; }
.floatBadge b { font-size: 18px; }

/* ════════════════ СЕКЦИИ ════════════════ */
.section { padding-block: 84px; }
.sectionHead { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--violet); background: #f3eefb; border-radius: 999px; padding: 6px 14px; margin-bottom: 14px;
}
.sectionTitle { font-size: 38px; font-weight: 800; letter-spacing: -.6px; line-height: 1.15; margin: 0 0 14px; }
.sectionLead { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0; }

/* что мы делаем */
.introCard {
  margin-top: -56px; position: relative; z-index: 5;
  background: #fff; border-radius: 24px; padding: 34px 38px;
  box-shadow: 0 16px 40px rgba(110, 72, 170, .12); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center;
}
.introCard h2 { font-size: 28px; font-weight: 800; letter-spacing: -.4px; margin: 0 0 12px; line-height: 1.2; }
.introCard p { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 0 0 8px; }
.introFlow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.introFlowItem { background: #f8f5fc; border-radius: 14px; padding: 14px; border: 1px solid var(--line); }
.introFlowItem b { display: block; font-size: 14px; margin-bottom: 3px; }
.introFlowItem span { font-size: 12.5px; color: var(--muted); line-height: 1.45; }
.introFlowItem .ico { font-size: 20px; margin-bottom: 6px; }

/* карточки */
.grid { display: grid; gap: 20px; }
.grid5 { grid-template-columns: repeat(5, 1fr); }
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid2 { grid-template-columns: repeat(2, 1fr); }
.grid4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.cardNum { font-size: 13px; font-weight: 800; color: var(--violet); letter-spacing: .5px; margin-bottom: 12px; }
.cardIcon {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  background: linear-gradient(135deg, rgba(168, 85, 247, .14), rgba(236, 72, 153, .1));
}
.cardTitle { font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
.cardText { font-size: 13.5px; line-height: 1.55; color: var(--muted-2); margin: 0 0 16px; flex: 1; }
.price { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.price b {
  font-size: 20px; font-weight: 900;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* продукты */
.productCard { position: relative; overflow: hidden; padding: 30px; }
.productCard::after {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  right: -70px; top: -70px; background: radial-gradient(circle, rgba(192, 132, 252, .22), transparent 70%);
}
.productLabel { font-size: 12px; font-weight: 800; letter-spacing: 1.2px; color: var(--violet); margin-bottom: 10px; }
.productName { font-size: 26px; font-weight: 900; letter-spacing: .5px; margin: 0 0 10px; }
.productLogo { width: 52px; height: 52px; margin-bottom: 16px; border-radius: 14px; object-fit: contain; }
.centerCta { text-align: center; margin-top: 34px; }

/* ════════════════ КЕЙСЫ ════════════════ */
.caseSection {
  color: #fff; position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(168, 85, 247, .3), transparent 45%),
    radial-gradient(circle at 90% 90%, rgba(236, 72, 153, .16), transparent 45%),
    var(--dark);
}
.caseGrid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; }
.caseGrid.reverse { grid-template-columns: 1.05fr 1fr; }
.caseGrid.reverse .caseText { order: 2; }
.caseGrid.reverse .caseVisual { order: 1; }
.caseLabel {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1.2px;
  padding: 6px 12px; border-radius: 999px; background: rgba(236, 72, 153, .18); color: #f9a8d4; margin-bottom: 14px;
}
.caseName { font-size: 46px; font-weight: 900; letter-spacing: 1px; margin: 0 0 8px; line-height: 1.05; }
.caseTagline { font-size: 19px; font-weight: 600; color: rgba(255, 255, 255, .85); margin: 0 0 24px; line-height: 1.4; }
.caseBlock { margin-bottom: 18px; }
.caseBlock h4 { font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #c4b5fd; margin: 0 0 8px; }
.caseBlock p { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .82); margin: 0; }
.checkList { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px; }
.checkList li { font-size: 14px; line-height: 1.45; color: rgba(255, 255, 255, .86); display: flex; gap: 8px; }
.checkList li::before { content: "✓"; color: #f0abfc; font-weight: 900; flex-shrink: 0; }
.resultBox {
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px; padding: 16px 18px; margin: 22px 0 26px;
}
.resultBox h4 { margin-bottom: 6px; }
.resultBox p { font-size: 16px; font-weight: 700; color: #fff; }

/* визуал Мультиграмма — макеты экранов */
.caseVisual { position: relative; min-height: 460px; }
.mgBanner {
  position: absolute; inset: 40px 0 auto 0; border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45); border: 1px solid rgba(255, 255, 255, .1);
}
.phone {
  position: absolute; width: 210px; background: #f8f5fc; color: var(--ink);
  border-radius: 30px; padding: 10px; border: 6px solid #120a24;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}
.phoneA { right: 8%; top: 150px; transform: rotate(4deg); }
.phoneB { left: 4%; top: 190px; transform: rotate(-5deg); }
.phoneBar { display: flex; align-items: center; gap: 6px; padding: 4px 4px 8px; }
.phoneBar img { width: 18px; height: 18px; }
.phoneBar b { font-size: 11px; font-weight: 800; }
.phoneCard { background: #fff; border-radius: 14px; padding: 9px; margin-bottom: 7px; box-shadow: 0 2px 8px rgba(110, 72, 170, .08); }
.phoneCard small { display: block; font-size: 8.5px; font-weight: 800; color: var(--violet); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 3px; }
.phoneCard b { display: block; font-size: 10.5px; line-height: 1.3; margin-bottom: 5px; }
.phoneRow { display: flex; align-items: center; gap: 5px; }
.av { width: 18px; height: 18px; border-radius: 50%; background: var(--grad-accent); flex-shrink: 0; }
.av.b { background: linear-gradient(135deg, #3b82f6, #6e48aa); }
.av.c { background: linear-gradient(135deg, #22c55e, #16a34a); }
.bar { height: 5px; border-radius: 4px; background: #ede4fb; flex: 1; }
.liveTag { font-size: 8px; font-weight: 900; color: #fff; background: #e0245e; border-radius: 5px; padding: 2px 5px; }
.miniBtn { font-size: 8.5px; font-weight: 800; color: #fff; background: var(--grad); border-radius: 6px; padding: 4px 7px; margin-left: auto; }
.cover { height: 64px; border-radius: 10px; margin-bottom: 6px; background: linear-gradient(135deg, #2b1846, #9d50bb 60%, #ec4899); }

/* визуал MediaCenter */
.mcVisual img { border-radius: 22px; box-shadow: 0 30px 70px rgba(0, 0, 0, .45); border: 1px solid rgba(255, 255, 255, .1); }
.flow {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px; padding: 14px; margin-top: 18px;
}
.flowSource {
  display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px;
  background: var(--grad-bright); border-radius: 12px; padding: 10px 14px; box-shadow: 0 6px 18px rgba(157, 80, 187, .45);
}
.flowArrow { font-size: 20px; color: #f0abfc; font-weight: 900; }
.flowOut { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }
.flowOut span { font-size: 12.5px; font-weight: 700; background: rgba(255, 255, 255, .95); color: var(--ink); border-radius: 9px; padding: 6px 10px; }

/* связка кейсов */
.bridge { text-align: center; }
.bridgeTitle { font-size: 44px; font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin: 0 0 30px; }
.bridgeGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto 30px; text-align: left; }
.bridgeItem { background: #fff; border-radius: 18px; padding: 22px; border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; gap: 14px; }
.bridgeItem b { display: block; font-size: 16px; margin-bottom: 4px; }
.bridgeItem span { font-size: 14px; color: var(--muted-2); line-height: 1.5; }
.bridgeNow { font-size: 20px; font-weight: 700; color: var(--ink-2); margin: 0 0 22px; }

/* готовые решения */
.solutionCard { position: relative; }
.solutionTop { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.solutionNum { font-size: 13px; font-weight: 900; color: #c9b5e8; }
.solutionPrice {
  font-size: 12.5px; font-weight: 800; color: var(--violet-deep); background: #f3eefb;
  border-radius: 999px; padding: 5px 11px; white-space: nowrap;
}
.solutionCard .cardTitle { font-size: 16px; letter-spacing: .4px; text-transform: uppercase; }
.solutionActions { display: flex; gap: 8px; flex-wrap: wrap; }
.caseTag { font-size: 11.5px; font-weight: 700; color: var(--violet); margin: -8px 0 14px; }

/* шаги */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; }
.steps::before {
  content: ""; position: absolute; left: 10%; right: 10%; top: 31px; height: 2px;
  background: linear-gradient(90deg, rgba(168, 85, 247, .15), rgba(236, 72, 153, .35), rgba(168, 85, 247, .15));
}
.step { text-align: center; position: relative; padding: 0 6px; }
.stepNum {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 16px;
  background: #fff; border: 2px solid rgba(168, 85, 247, .25);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: var(--violet);
  box-shadow: 0 8px 20px rgba(110, 72, 170, .12);
}
.step b { display: block; font-size: 16px; margin-bottom: 6px; }
.step span { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* для кого */
.audienceCard .cardIcon { width: 56px; height: 56px; font-size: 26px; }
.pains { margin-top: 26px; }
.pain {
  background: #fff; border-radius: 16px; padding: 18px; border: 1px dashed rgba(157, 80, 187, .35);
  font-size: 14.5px; line-height: 1.5; color: var(--ink-2);
}
.pain b { display: block; font-size: 12px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: var(--violet); margin-bottom: 6px; }

/* ════════════════ ФИНАЛ + ФОРМА ════════════════ */
.finalSection { color: #fff; background:
  radial-gradient(circle at 20% 30%, rgba(168, 85, 247, .35), transparent 50%),
  radial-gradient(circle at 85% 75%, rgba(236, 72, 153, .22), transparent 50%),
  var(--dark); }
.finalGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.finalTitle { font-size: 42px; font-weight: 900; line-height: 1.1; letter-spacing: -.8px; margin: 0 0 16px; }
.finalText { font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, .82); margin: 0 0 18px; }
.offerBox { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); border-radius: 18px; padding: 18px 20px; }
.offerBox b { display: block; font-size: 17px; margin-bottom: 6px; }
.offerBox p { font-size: 14.5px; line-height: 1.55; color: rgba(255, 255, 255, .78); margin: 0 0 8px; }
.fromPrice { display: inline-block; margin-top: 18px; font-size: 15px; font-weight: 800; padding: 9px 16px; border-radius: 999px; background: rgba(236, 72, 153, .2); color: #fbcfe8; }

.form { background: #fff; color: var(--ink); border-radius: 24px; padding: 28px; box-shadow: 0 30px 80px rgba(0, 0, 0, .35); }
.form h3 { font-size: 22px; font-weight: 800; margin: 0 0 6px; }
.form .formLead { font-size: 13.5px; color: var(--muted); margin: 0 0 18px; line-height: 1.5; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid rgba(157, 80, 187, .22); background: #faf7fe;
  border-radius: 12px; padding: 12px 14px; font-size: 15px; font-family: inherit; color: var(--ink);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #9d50bb; box-shadow: 0 0 0 3px rgba(157, 80, 187, .15); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { width: 100%; margin-top: 6px; }
.formNote { font-size: 11.5px; color: var(--muted); margin: 10px 0 0; text-align: center; }
.formStatus { font-size: 14px; font-weight: 700; margin-top: 12px; text-align: center; min-height: 20px; }
.formStatus.ok { color: #16a34a; }
.formStatus.err { color: #dc2626; }

/* ════════════════ ФУТЕР ════════════════ */
.footer { background: #120a24; color: rgba(255, 255, 255, .7); padding-block: 32px; font-size: 13.5px; }
.footerInner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer a { color: #d8b4fe; }

/* ════════════════ МОДАЛКА РЕШЕНИЯ ════════════════ */
.modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 16px; background: rgba(18, 10, 36, .7); backdrop-filter: blur(4px); }
.modal[hidden] { display: none; }
.modalBox { background: #fff; border-radius: 24px; max-width: 560px; width: 100%; max-height: calc(100vh - 32px); overflow: auto; padding: 30px; position: relative; animation: pipeIn .25s both; }
.modalClose { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; border: none; background: #f3eefb; color: var(--ink-2); font-size: 18px; cursor: pointer; }
.modalBox h3 { font-size: 24px; font-weight: 900; margin: 6px 0 8px; padding-right: 30px; }
.modalBox .solutionPrice { display: inline-block; }
.modalBox p { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0 0 14px; }
.modalBox h4 { font-size: 12px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--violet); margin: 16px 0 8px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags span { font-size: 13px; font-weight: 600; background: #f3eefb; color: var(--ink-2); border-radius: 9px; padding: 6px 10px; }
.modalBox .btn { width: 100%; margin-top: 20px; }

/* ════════════════ АДАПТИВ ════════════════ */
@media (max-width: 1080px) {
  .grid5 { grid-template-columns: repeat(3, 1fr); }
  .navLinks { display: none; }
  .heroTitle { font-size: 44px; }
}
@media (max-width: 900px) {
  .heroGrid, .caseGrid, .caseGrid.reverse, .finalGrid, .introCard { grid-template-columns: 1fr; }
  .caseGrid.reverse .caseText, .caseGrid.reverse .caseVisual { order: initial; }
  .heroVisual { min-height: 0; margin-top: 10px; }
  .grid3, .grid4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .steps::before { display: none; }
  .step { display: flex; text-align: left; gap: 14px; align-items: center; background: #fff; border-radius: 16px; padding: 12px; border: 1px solid var(--line); }
  .stepNum { margin: 0; width: 48px; height: 48px; font-size: 15px; flex-shrink: 0; }
  .caseVisual { min-height: 420px; }
  .section { padding-block: 64px; }
  .sectionTitle, .bridgeTitle { font-size: 32px; }
  .caseName { font-size: 38px; }
  .finalTitle { font-size: 34px; }
}
@media (max-width: 600px) {
  .container { padding-inline: 16px; }
  .grid5, .grid3, .grid2, .grid4, .bridgeGrid { grid-template-columns: 1fr; }
  .heroTitle { font-size: 34px; letter-spacing: -.6px; }
  .heroDesc { font-size: 16px; }
  .hero { padding-block: 44px 80px; }
  .navRight .btn { display: none; }
  .logoTag { display: none; }
  .introCard { padding: 24px 20px; margin-top: -48px; }
  .introFlow { grid-template-columns: 1fr; }
  .checkList { grid-template-columns: 1fr; }
  .caseVisual { min-height: 380px; }
  .phone { width: 168px; }
  .phoneA { right: 0; top: 120px; }
  .phoneB { left: 0; top: 160px; }
  .pipeStep:nth-child(n) { margin-left: 0; }
  .floatBadge { right: 8px; }
  .sectionTitle, .bridgeTitle { font-size: 27px; }
  .caseName { font-size: 32px; }
  .finalTitle { font-size: 28px; }
  .form { padding: 22px 18px; }
  .btn { white-space: normal; text-align: center; }
}
