:root {
  --bg: #eef2f8;
  --card: rgba(255, 255, 255, 0.96);
  --ink: #242942;
  --muted: #606780;
  --line: rgba(36, 41, 66, 0.1);
  --accent: #18d8d2;
  --accent-2: #00b8c8;
  --navy: #2a2d50;
  --navy-2: #1e2038;
  --shadow: 0 28px 80px rgba(42, 45, 80, 0.1);
  --r-xl: 34px;
  --r-lg: 26px;
  --r-md: 20px;
  --wrap: 1440px;
}

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

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(24, 216, 210, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(42, 45, 80, 0.1), transparent 24%),
    linear-gradient(180deg, #f8f9fc 0%, #eef2f8 100%);
  color: var(--ink);
  font: 500 16px/1.45 "Onest", "Segoe UI", sans-serif;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
section[id] { scroll-margin-top: 110px; }

.shell { width: min(calc(100% - 28px), var(--wrap)); margin: 18px auto 34px; }
.main, .section { display: grid; gap: 20px; }
.card, .header, .footer, .faq-item { border: 1px solid var(--line); box-shadow: var(--shadow); }
.card, .footer, .contacts, .header { background: var(--card); border-radius: var(--r-xl); }

.header {
  position: sticky;
  top: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 22px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  border-radius: 999px;
}
.brand img { width: 140px; height: auto; flex-shrink: 0; }
.nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 14px; }
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.actions { display: flex; gap: 10px; }
.menu {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(42,45,80,.08);
}
.menu span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
}
.btn--ghost {
  background: rgba(42,45,80,.06);
  border-color: rgba(42,45,80,.1);
  color: var(--ink);
}
.btn--light {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow--light { color: rgba(255,255,255,.7); }
.head { display: grid; gap: 10px; max-width: 840px; }
.head.center { margin: 0 auto; text-align: center; }
.head h2, .hero h1, .calc-media h2, .contact-copy h2, .faq-note h2 { margin: 0; font-size: clamp(36px, 4vw, 64px); line-height: .96; letter-spacing: -.05em; }
.head h2 span, .hero h1 span, .calc-media h2 span, .contact-copy h2 span, .foot-brand span, .faq-note h2 span { color: var(--accent); }
.lead { margin: 0; font-size: 20px; font-weight: 700; }
.muted, .fine { margin: 0; color: var(--muted); }
.light, .calc-media .muted { color: rgba(255,255,255,.78); }

.hero { grid-template-columns: 1fr; }
.hero-banner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: -80px;
  padding-top: 80px;
}
.hero-banner > img { width: 100%; height: auto; display: block; }
.pill {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(42,45,80,.18));
}
.pill img { height: 56px; width: auto; display: block; }
.pill--1 { left: 28%; top: 52%; }
.pill--2 { left: 8%; top: 58%; }
.pill--3 { left: 34%; top: 32%; }
.pill--4 { right: 14%; bottom: 14%; }
.pill--5 { right: 28%; bottom: 22%; }
.pill--6 { right: 8%; top: 48%; }
.hero-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  padding: 36px 10px 10px;
}
.hero-left { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.hero-right { display: flex; flex-direction: column; gap: 18px; }
.hero-right .lead { font-size: 22px; font-weight: 700; margin: 0; }
.hero-right .lead span { color: var(--accent); }
.chips, .list { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.chips { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.chips li { position: relative; padding-left: 30px; font-weight: 600; font-size: 15px; }
.chips li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.list li { position: relative; padding-left: 28px; }
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: url("./assets/check.svg") center/contain no-repeat;
}
.hero-bottom { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 4px; }
.hero-bottom .btn svg { margin-right: 6px; }
.timer-inline {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 0 4px;
  font-variant-numeric: tabular-nums;
}
.timer-inline strong { font-size: 18px; font-weight: 800; color: var(--navy); }
.timer-inline span { font-size: 11px; color: var(--muted); margin-right: 2px; }
.timer-inline i { font-style: normal; color: var(--muted); font-size: 16px; margin: 0 2px; }

.hero-art { overflow: hidden; }
.hero-visual {
  position: relative;
  min-height: 700px;
  height: 100%;
  padding: 24px;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 25% 20%, rgba(24,216,210,.24), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,248,252,.92));
}
.visual {
  position: absolute;
  padding: 22px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 60px rgba(42,45,80,.12);
}
.visual img { width: 100%; height: 100%; object-fit: contain; }
.visual--wide { inset: 36px 152px 214px 24px; }
.visual--tall { top: 128px; right: 28px; width: 234px; height: 350px; }
.badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 34px rgba(42,45,80,.12);
  font-size: 14px;
  font-weight: 700;
}
.badge img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.badge--a { left: 18px; top: 88px; }
.badge--b { right: 160px; top: 44px; }
.badge--c { right: 64px; bottom: 70px; }

.grid { display: grid; gap: 18px; }
.packages { grid-template-columns: 1.1fr repeat(3, minmax(0,1fr)); }
.solutions { grid-template-columns: repeat(4, minmax(0,1fr)); }
.cases { grid-template-columns: repeat(2, minmax(0,1fr)); }
.logos {
  grid-template-columns: repeat(7, 1fr);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: 24px;
  gap: 0;
}
.team { grid-template-columns: repeat(6, minmax(0,1fr)); }
.stories { grid-template-columns: repeat(3, minmax(0,1fr)); }

.packages > *, .solutions > *, .cases > *, .logos > *, .team > *, .stories > *, .audience, .mini, .saving { padding: 26px; }
.pack-intro { display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.pack-intro img { width: min(100%, 230px); margin: 0 auto; }
.pack h3, .solution h3, .story h3, .pack-intro h3, .saving h3 { margin: 0; font-size: 30px; line-height: 1; letter-spacing: -.04em; }
.price { margin: 0; font-size: 38px; font-weight: 800; line-height: .95; letter-spacing: -.05em; }
.price span { font-size: 15px; font-weight: 600; color: var(--muted); }
.pack { display: grid; grid-template-rows: auto 1fr auto; gap: 18px; }
.pack.featured { border-color: rgba(24,216,210,.5); }
.pack.dark { background: linear-gradient(180deg, #2f325c 0%, #21243f 100%); color: #fff; }
.pack.dark .muted, .pack.dark li, .pack.dark .price span { color: rgba(255,255,255,.78); }

.split { grid-template-columns: minmax(360px,.9fr) minmax(0,1.1fr); align-items: stretch; }
.photo { overflow: hidden; padding: 0; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.service-copy { display: grid; gap: 18px; }
.audience-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.audience .top { display: flex; justify-content: space-between; align-items: end; margin-bottom: 16px; }
.audience .top span { font-size: 22px; font-weight: 700; line-height: 1.1; }
.audience .top b { color: rgba(42,45,80,.18); font-size: 50px; line-height: 1; }

.solution { display: grid; grid-template-rows: 150px auto 1fr auto; gap: 14px; }
.solution img { height: 150px; margin: 0 auto; object-fit: contain; }
.solution a { font-weight: 700; color: var(--navy); }

.audit-v2 {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(280px,.55fr) minmax(0,.55fr);
  gap: 18px;
  padding: 26px;
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, #2c3056 0%, #21243f 100%);
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.audit-left { display: grid; gap: 16px; align-content: start; }
.audit-left h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: .96; letter-spacing: -.04em; }
.audit-left h2 span { color: var(--accent); }
.audit-left .muted { color: rgba(255,255,255,.72); }
.audit-left b { color: var(--accent); }
.audit-center {
  display: grid;
  gap: 12px;
  align-content: start;
}
.audit-center label { display: grid; gap: 6px; }
.audit-center span { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.8); }
.audit-center input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
}
.audit-center input::placeholder { color: rgba(255,255,255,.4); }
.audit-center .btn { width: 100%; }
.audit-center .fine { color: rgba(255,255,255,.5); font-size: 13px; }
.audit-center .fine a { color: var(--accent); text-decoration: underline; }
.audit-right { display: grid; gap: 14px; align-content: start; }
.audit-right-title { margin: 0; font-size: 15px; font-weight: 700; color: rgba(255,255,255,.9); }
.audit-benefit { display: flex; gap: 10px; }
.audit-benefit b { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.audit-benefit strong { display: block; font-size: 15px; margin-bottom: 4px; }
.audit-benefit p { margin: 0; color: rgba(255,255,255,.65); font-size: 13px; }
.audit-grid b { display: block; margin-bottom: 8px; font-size: 18px; }
.audit-grid p { margin: 0; color: rgba(255,255,255,.72); }
.audit-form { display: grid; gap: 12px; padding: 26px; background: rgba(255,255,255,.96); color: var(--ink); }
.audit-form label, .wizard-form label { display: grid; gap: 8px; }
.audit-form span, .wizard-form span { font-size: 14px; font-weight: 700; }
.audit-form input, .wizard-form input, .wizard-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(36,41,66,.12);
  border-radius: 16px;
  background: #f4f7fb;
  color: var(--ink);
}
.wizard-form textarea { min-height: 110px; resize: vertical; }
.fine { font-size: 14px; }

.case-layout { display: grid; grid-template-columns: minmax(220px,.42fr) minmax(0,1.58fr); gap: 18px; }
.bubble-set { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; align-content: start; }
.bubble {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(36,41,66,.08);
  box-shadow: var(--shadow);
}
.bubble.small { min-height: 100px; }
.bubble img { max-width: 100px; object-fit: contain; }
.cases { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cases article:last-child { grid-column: 1 / -1; }
.logos > * { display: grid; place-items: center; min-height: 120px; padding: 16px; background: transparent; border: none; box-shadow: none; overflow: hidden; }
.logos img { height: 90px; width: auto; max-width: 100%; object-fit: contain; }

.calculator { grid-template-columns: minmax(360px,.84fr) minmax(0,1.16fr); }
.calc-media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 0;
  background: #111625;
}
.calc-media > img { width: 100%; height: 100%; object-fit: cover; }
.calc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,22,37,.08), rgba(17,22,37,.78)); }
.calc-media > div { position: absolute; left: 26px; right: 26px; bottom: 26px; z-index: 1; display: grid; gap: 10px; color: #fff; }
.calc-panel { display: grid; gap: 18px; padding: 26px; }
.wizard-tabs { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 8px; }
.w-tab { padding: 12px 10px; border-radius: 14px; background: rgba(42,45,80,.04); color: var(--muted); font-size: 13px; font-weight: 700; text-align: center; }
.w-tab.active { background: rgba(24,216,210,.14); color: var(--navy); }
.w-tab.done { background: rgba(42,45,80,.08); color: var(--ink); }
.wizard-body { display: grid; gap: 16px; min-height: 330px; }
.wizard-body h3 { margin: 0; font-size: 40px; line-height: .96; letter-spacing: -.04em; }
.wizard-options { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.w-option {
  display: grid;
  gap: 14px;
  min-height: 124px;
  padding: 18px;
  border: 1px solid rgba(36,41,66,.08);
  border-radius: 20px;
  background: #f5f7fb;
  text-align: left;
}
.w-option b {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(42,45,80,.22);
  border-radius: 50%;
}
.w-option.active { border-color: rgba(24,216,210,.55); background: rgba(24,216,210,.08); }
.w-option.active b { border-color: var(--accent-2); box-shadow: inset 0 0 0 5px var(--accent-2); }
.w-option span { font-size: 22px; font-weight: 700; line-height: 1.1; }
.wizard-summary { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px; border-radius: 20px; background: rgba(42,45,80,.04); }
.chip { display: inline-flex; align-items: center; min-height: 34px; padding: 0 14px; border: 1px solid rgba(36,41,66,.08); border-radius: 999px; background: #fff; font-size: 14px; font-weight: 700; }
.wizard-actions { display: flex; justify-content: space-between; gap: 12px; }
.wizard-result { padding: 16px; border-radius: 18px; background: rgba(24,216,210,.1); color: var(--navy); font-weight: 700; }

.efficiency { grid-template-columns: minmax(0,.72fr) minmax(0,.62fr) minmax(340px,.66fr); align-items: start; }
.eff-copy, .perks { display: grid; gap: 18px; }
.mini { min-height: 164px; }
.perk-icon { width: 44px; height: 44px; border-radius: 14px; background: rgba(24,216,210,.12); color: var(--accent-2); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.mini b, .box b { display: block; margin-bottom: 10px; font-size: 24px; line-height: 1; letter-spacing: -.03em; }
.saving { display: grid; gap: 14px; }
.saving h3 { font-size: 32px; }
.box { padding: 16px; border-radius: 22px; background: #f6f8fb; }
.box--red { outline: 2px dashed rgba(235,92,92,.65); outline-offset: -10px; }
.box--green { border: 1px solid rgba(24,216,210,.4); }
.box ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.box li { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 14px; }
.total { margin: 12px 0 0; color: var(--accent-2); font-size: 19px; font-weight: 800; }

.team-card { display: grid; gap: 14px; align-content: start; }
.team-card img { width: 100%; border-radius: 22px; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.team-card .list li { padding-left: 16px; font-size: 13px; }
.team-card .list li::before { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); top: 7px; left: 0; }
.team-card .list { gap: 6px; }
.role { color: var(--accent-2); font-size: 12px; font-weight: 700; }
.team-card h3 { margin: 0; font-size: 20px; line-height: 1.15; letter-spacing: -.03em; }

.story { display: grid; gap: 16px; align-content: start; min-height: 320px; }
.story .meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 14px; font-weight: 700; }
.story strong { font-size: 16px; }
.story-logo { width: 110px; height: 110px; object-fit: contain; margin-top: auto; border-radius: 12px; }
.stories { grid-template-columns: repeat(3, minmax(280px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; }
.stories > * { scroll-snap-align: start; }
.story.accent { background: linear-gradient(160deg, #2d3158 0%, #20233e 100%); color: #fff; }
.story.accent p, .story.accent li span { color: rgba(255,255,255,.74); }
.story.accent img { width: 120px; }
.story.accent ul { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.story.accent li { display: flex; gap: 10px; align-items: baseline; }
.story.accent li b { font-size: 30px; line-height: 1; }

.faq-wrap { grid-template-columns: minmax(300px,.42fr) minmax(0,.58fr); }
.faq-note, .contacts, .footer { padding: 26px; }
.faq-note { display: grid; gap: 16px; align-content: start; }
.art { display: grid; place-items: center; min-height: 180px; border-radius: 26px; background: radial-gradient(circle at center, rgba(24,216,210,.14), transparent 56%), linear-gradient(180deg, #f7f8fb 0%, #eef2f8 100%); }
.art img { width: min(100%, 170px); }
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border-radius: 22px; background: rgba(255,255,255,.96); }
.faq-q {
  position: relative;
  width: 100%;
  padding: 20px 56px 20px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  text-align: left;
}
.faq-q::after { content: "+"; position: absolute; top: 50%; right: 22px; transform: translateY(-50%); font-size: 28px; color: var(--muted); }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; padding: 0 22px; color: var(--muted); transition: max-height .2s ease, padding-bottom .2s ease; }
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 20px; }

.contacts { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(340px,.7fr); gap: 18px; }
.map { margin: 0; overflow: hidden; border-radius: 26px; min-height: 400px; }
.map img { width: 100%; height: 100%; object-fit: cover; }
.map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; border-radius: 26px; display: block; }
.contact-copy { display: grid; gap: 18px; align-content: start; }
.contact-copy dl { display: grid; gap: 14px; padding: 0; margin: 0; }
.contact-copy dl div { padding-top: 14px; border-top: 1px solid rgba(36,41,66,.08); }
.contact-copy dt { margin-bottom: 6px; color: var(--muted); font-size: 14px; font-weight: 700; }
.contact-copy dd { margin: 0; font-size: 24px; font-weight: 700; letter-spacing: -.03em; }

.footer { display: grid; gap: 0; margin-top: 22px; padding: 0; }
.foot-top { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 22px; padding: 26px 26px 22px; }
.foot-brand { display: grid; gap: 16px; align-content: start; }
.foot-brand img { width: 130px; }
.foot-brand p { margin: 0; color: var(--muted); font-size: 18px; font-weight: 700; }
.foot-col { display: grid; gap: 8px; align-content: start; }
.foot-col h3 { margin: 0 0 4px; font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.foot-col a { color: var(--muted); font-size: 15px; }
.foot-bottom { padding: 16px 26px; border-top: 1px solid var(--line); }
.foot-bottom .fine { margin: 0; color: var(--muted); font-size: 13px; }

.menu { display: none; }

/* ── Services V2 ── */
.services-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}
.sv2-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.sv2-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sv2-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(17,22,37,.75) 100%);
  color: #fff;
  display: grid;
  gap: 10px;
}
.sv2-overlay h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: .96;
  letter-spacing: -.04em;
}
.sv2-overlay h2 span { color: var(--accent); }
.sv2-overlay .muted { color: rgba(255,255,255,.78); }
.sv2-overlay .eyebrow { color: rgba(255,255,255,.7); }
.sv2-cards {
  display: grid;
  gap: 18px;
  align-content: start;
}

/* ── Audit V2 ── */
.audit-v2 {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(280px,.55fr) minmax(0,.55fr);
  gap: 18px;
  padding: 26px;
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, #2c3056 0%, #21243f 100%);
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.audit-left { display: grid; gap: 16px; align-content: start; }
.audit-left h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: .96; letter-spacing: -.04em; }
.audit-left h2 span { color: var(--accent); }
.audit-left .muted { color: rgba(255,255,255,.72); }
.audit-left b { color: var(--accent); }
.audit-center { display: grid; gap: 12px; align-content: start; }
.audit-center label { display: grid; gap: 6px; }
.audit-center span { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.8); }
.audit-center input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
}
.audit-center input::placeholder { color: rgba(255,255,255,.4); }
.audit-center .btn { width: 100%; }
.audit-center .fine { color: rgba(255,255,255,.5); font-size: 13px; }
.audit-center .fine a { color: var(--accent); text-decoration: underline; }
.audit-right { display: grid; gap: 14px; align-content: start; }
.audit-right-title { margin: 0; font-size: 15px; font-weight: 700; color: rgba(255,255,255,.9); }
.audit-benefit { display: flex; gap: 10px; }
.audit-benefit b { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.audit-benefit strong { display: block; font-size: 15px; margin-bottom: 4px; }
.audit-benefit p { margin: 0; color: rgba(255,255,255,.65); font-size: 13px; }

/* ── Team Banner ── */
.team-banner { padding: 0; }
.tb-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 480px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.tb-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.tb-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(17,22,37,.72) 100%);
  color: #fff;
  display: grid;
  gap: 14px;
}
.tb-logo { width: 160px; filter: brightness(0) invert(1); }
.tb-overlay h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
  font-style: italic;
  max-width: 680px;
}
.tb-overlay h2 span { color: var(--accent); }
.tb-overlay .muted { color: rgba(255,255,255,.7); }

/* ── Perk icons ── */
.perk-icon { width: 44px; height: 44px; border-radius: 14px; background: rgba(24,216,210,.12); color: var(--accent-2); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }

/* ── Story logos ── */
.story-logo { width: 110px; height: 110px; object-fit: contain; margin-top: auto; border-radius: 12px; }

/* ── Cases layout ── */
.case-layout .cases article h3 { margin: 0; font-size: 20px; font-weight: 700; }
.case-layout .cases article a { font-weight: 700; color: var(--accent-2); font-size: 14px; }

@media (max-width: 1280px) {
  .packages,
  .solutions,
  .team { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stories { grid-template-columns: repeat(2, minmax(280px, 1fr)); }
  .logos { grid-template-columns: repeat(4, 1fr); }
  .audit-v2,
  .efficiency,
  .contacts,
  .calculator,
  .services-v2,
  .faq-wrap,
  .foot-top { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .shell { width: min(calc(100% - 24px), var(--wrap)); }
  .header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 28px;
  }
  .menu { display: inline-block; }
  .nav,
  .actions {
    display: none;
    grid-column: 1 / -1;
  }
  .header.open .nav { display: flex; flex-direction: column; align-items: flex-start; }
  .header.open .actions { display: flex; flex-wrap: wrap; }
  .hero-banner { margin-top: 0; padding-top: 0; }
  .hero-text,
  .packages,
  .solutions,
  .cases,
  .team,
  .stories,
  .logos,
  .wizard-options,
  .chips { grid-template-columns: 1fr; }
  .hero-text { padding-inline: 0; }
  .case-layout { grid-template-columns: 1fr; }
  .bubble-set { order: 2; }
  .sv2-media,
  .calc-media,
  .tb-wrap { min-height: 420px; }
}

@media (max-width: 768px) {
  :root {
    --r-xl: 26px;
    --r-lg: 22px;
    --r-md: 18px;
  }

  .shell { margin: 12px auto 28px; }
  .header { top: 12px; padding: 12px 14px; }
  .brand img { width: 118px; }
  .head h2,
  .hero h1,
  .calc-media h2,
  .contact-copy h2,
  .faq-note h2 { font-size: clamp(30px, 9vw, 44px); }
  .hero-right .lead { font-size: 18px; }
  .timer-inline {
    width: 100%;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(42,45,80,.05);
  }
  .pill { display: none; }
  .packages > *,
  .solutions > *,
  .cases > *,
  .logos > *,
  .team > *,
  .stories > *,
  .audience,
  .mini,
  .saving,
  .faq-note,
  .contacts,
  .footer,
  .calc-panel { padding: 20px; }
  .audit-v2 { padding: 20px; }
  .contact-copy dd { font-size: 20px; }
  .wizard-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wizard-body h3 { font-size: 30px; }
  .bubble { min-height: 110px; }
  .tb-overlay,
  .sv2-overlay { padding: 24px; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 16px), var(--wrap)); }
  .header,
  .card,
  .footer,
  .faq-item,
  .contacts { border-radius: 22px; }
  .hero-bottom,
  .wizard-actions,
  .actions,
  .audit-center { grid-template-columns: 1fr; }
  .hero-bottom,
  .wizard-actions,
  .actions { display: grid; }
  .btn,
  .btn--ghost { width: 100%; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: 1fr; }
  .stories { grid-template-columns: 1fr; }
  .wizard-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-q { font-size: 17px; padding: 18px 48px 18px 18px; }
  .contact-copy dd { font-size: 18px; }
}
