/* ===== Tokens ===== */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --bg-dark: #0b1530;
  --ink: #0b1530;
  --ink-soft: #3b4663;
  --ink-mute: #6b7590;
  --line: #e5eaf3;
  --brand: #1f4dd8;
  --brand-2: #3a7bff;
  --brand-grad: linear-gradient(135deg, #1a3aa8 0%, #3a7bff 100%);
  --accent: #3a7bff;
  --shadow-sm: 0 2px 8px rgba(11, 21, 48, 0.06);
  --shadow-md: 0 8px 28px rgba(11, 21, 48, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 21, 48, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; color: var(--ink); }
p { margin: 0 0 1em; color: var(--ink-soft); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 8px 20px rgba(31, 77, 216, .28);
}
.btn--primary:hover { box-shadow: 0 12px 26px rgba(31, 77, 216, .35); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--bg-alt); }
.btn--lg { padding: 16px 28px; font-size: 16px; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 88px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .02em;
}
.brand:hover { text-decoration: none; }
.brand__logo {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
}
.brand__name--accent {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
}
.nav a:hover { color: var(--brand); text-decoration: none; }
.header__cta { margin-left: 8px; }

.burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.mobile-nav a {
  color: var(--ink);
  font-weight: 500;
  padding: 6px 0;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 64px 0 80px;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(58,123,255,.16), transparent 60%),
    radial-gradient(700px 360px at -10% 110%, rgba(31,77,216,.10), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(31,77,216,.08);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.accent {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.hero__stats span {
  color: var(--ink-mute);
  font-size: 13px;
}
.hero__pitch {
  background: rgba(31, 77, 216, .06);
  border-left: 3px solid var(--brand);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 580px;
}
.hero__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}
.hero__channels li {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
}
.hero__channels li::before {
  content: "●";
  color: var(--brand);
  margin-right: 6px;
  font-size: 10px;
  vertical-align: middle;
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__visual img {
  max-width: 360px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: #0b1530;
}

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(58,123,255,.18), transparent 60%),
    radial-gradient(800px 460px at 0% 100%, rgba(31,77,216,.14), transparent 60%),
    var(--bg-dark);
  color: #fff;
}
.section--dark .section__title { color: #fff; }
.section--dark .section__lead { color: #cbd3e6; }
.section__title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 14px;
}
.section__title--left { text-align: left; }
.section__lead {
  text-align: center;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto 48px;
}

/* ===== Pains ===== */
.pains__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pain {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.pain__num {
  font-size: 36px;
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.pain p { margin: 0; font-size: 15px; }

/* ===== Capabilities ===== */
.cap-group { margin-bottom: 56px; }
.cap-group:last-of-type { margin-bottom: 0; }
.cap-group__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  text-align: left;
  max-width: 760px;
}
.cap-group__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.cap-group__tag--clients {
  background: rgba(31, 77, 216, .10);
  color: var(--brand);
}
.cap-group__tag--exec {
  background: rgba(11, 21, 48, .85);
  color: #fff;
}
.cap-group__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0;
}
.cap-group__lead {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 720px;
}
.cap-group--exec {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-top: 8px;
}
.cap-group--exec .cap-group__title { color: #fff; }
.cap-group--exec .cap-group__lead { color: #cbd3e6; }
.cap-group--exec .cap {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  color: #e6ebf6;
  box-shadow: none;
}
.cap-group--exec .cap h4 { color: #fff; }
.cap-group--exec .cap p { color: #b9c3dc; }
.cap-group--exec .cap:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(58,123,255,.4);
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease;
}
.cap:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cap__ico {
  font-size: 28px;
  margin-bottom: 12px;
}
.cap h3, .cap h4 { font-size: 18px; margin: 0 0 8px; }
.cap p { margin: 0; font-size: 15px; }
.capabilities__foot {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-mute);
  font-size: 14px;
}

/* ===== Screenshots ===== */
.screens__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.screen {
  margin: 0;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.screen__pill {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.screen__pill--clients {
  background: rgba(58, 123, 255, .18);
  color: #9fbfff;
}
.screen__pill--exec {
  background: #fff;
  color: var(--bg-dark);
}
.screen__frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.screen img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  background: #000;
}
.screen figcaption {
  color: #cbd3e6;
  font-size: 14px;
  text-align: center;
  line-height: 1.45;
  margin-top: auto;
}

/* ===== Cases ===== */
.niche-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin: -24px 0 40px;
}
.niche-nav__label {
  color: var(--ink-mute);
  font-size: 14px;
}
.niche-nav a {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
  transition: border-color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.niche-nav a:hover {
  text-decoration: none;
  border-color: var(--brand);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}
.case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.case__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
}
.case__niche {
  background: rgba(31,77,216,.08);
  color: var(--brand);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.case__niche--exec {
  background: rgba(11, 21, 48, .85);
  color: #fff;
}
.case--exec {
  background: linear-gradient(160deg, #ffffff 0%, #f1f5ff 100%);
  border-color: rgba(31, 77, 216, .2);
}
.case__term {
  color: var(--ink-mute);
}
.case h3 { font-size: 19px; margin-bottom: 10px; }
.case p { font-size: 15px; }
.case__results {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 6px 0 14px;
  padding-left: 0;
}
.case__results li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink-soft);
}
.case__results li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--brand);
  font-weight: 800;
}
.case__results strong { color: var(--ink); }
.case__stack {
  margin-top: auto;
  font-size: 13px;
  color: var(--ink-mute);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

/* ===== Featured case (niche landings) ===== */
.case-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  background: linear-gradient(135deg, #fff 0%, #f1f5ff 100%);
  border: 1px solid rgba(31, 77, 216, .15);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  align-items: start;
}
.case-hero__left p { font-size: 16px; }
.case-hero__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(31, 77, 216, .10);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.case-hero__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 16px;
}
.case-hero__stack {
  font-size: 13px;
  color: var(--ink-mute);
  padding: 12px 0;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.case-hero__term {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.case-hero__right {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 28px 26px;
  color: #fff;
}
.case-hero__results {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.case-hero__results li {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.case-hero__results li:last-child { border-bottom: 0; padding-bottom: 0; }
.case-hero__metric {
  font-size: 26px;
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.case-hero__desc {
  font-size: 14px;
  color: #cbd3e6;
}

/* ===== Process ===== */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.process__num {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
  letter-spacing: .08em;
}
.process h3 { font-size: 17px; margin-bottom: 6px; }
.process p { font-size: 14px; margin: 0; }

/* ===== Roadmap ===== */
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.roadmap::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(58,123,255,.6) 15%, rgba(58,123,255,.6) 85%, transparent 100%);
  z-index: 0;
}
.roadmap__step {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}
.roadmap__step:hover {
  transform: translateY(-3px);
  border-color: rgba(58,123,255,.4);
  background: rgba(255,255,255,.06);
}
.roadmap__when {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--brand-grad);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.roadmap__title {
  font-size: 18px;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: -.01em;
}
.roadmap__lead {
  font-size: 14px;
  color: #b9c3dc;
  margin: 0 0 14px;
}
.roadmap__step ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 16px;
}
.roadmap__step li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #cbd3e6;
  line-height: 1.45;
}
.roadmap__step li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--brand-2);
  font-weight: 700;
}
.roadmap__effect {
  margin-top: auto;
  padding: 10px 12px;
  background: rgba(58,123,255,.12);
  border: 1px solid rgba(58,123,255,.25);
  border-radius: 8px;
  font-size: 13px;
  color: #e6ebf6;
  font-weight: 500;
}
.roadmap__foot {
  text-align: center;
  margin-top: 32px;
  color: #8e9ab8;
  font-size: 14px;
}

/* ===== Support ===== */
.support {
  margin-top: 48px;
  background: linear-gradient(135deg, #fff 0%, #f1f5ff 100%);
  border: 1px solid rgba(31, 77, 216, .15);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px 48px;
  box-shadow: var(--shadow-md);
}
.support__main { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 12px; }
.support__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.support__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(31, 77, 216, .10);
  padding: 6px 12px;
  border-radius: 999px;
}
.support__price {
  font-size: 28px;
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.support__price span {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-mute);
  -webkit-text-fill-color: var(--ink-mute);
}
.support__title {
  font-size: 24px;
  margin: 0;
  letter-spacing: -.01em;
}
.support__lead {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 760px;
}
.support__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin: 4px 0 0;
}
.support__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.support__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
}
.support__list strong { color: var(--ink); font-weight: 600; }
.support__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  align-self: end;
}
.support__cta p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-mute);
}

/* ===== Pricing ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.plan h3 { font-size: 20px; margin-bottom: 8px; }
.plan__price {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
}
.plan li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink-soft);
}
.plan li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--brand);
  font-weight: 800;
}
.plan .btn { margin-top: auto; align-self: flex-start; }
.plan--featured {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--brand-grad) border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow-md);
}
.plan__badge {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--brand-grad);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.pricing__foot {
  text-align: center;
  margin-top: 24px;
  color: var(--ink-mute);
  font-size: 14px;
}

/* ===== About ===== */
.about__inner {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 48px;
  align-items: center;
}
.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.about__chips span {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
}
.about__visual img {
  max-width: 280px;
  margin: 0 auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

/* ===== Contact ===== */
.section--cta {
  background:
    radial-gradient(700px 420px at 0% 0%, rgba(58,123,255,.18), transparent 60%),
    radial-gradient(700px 420px at 100% 100%, rgba(31,77,216,.18), transparent 60%),
    var(--bg-dark);
  color: #fff;
}
.section--cta .section__title { color: #fff; }
.section--cta p { color: #cbd3e6; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact__list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.contact__list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  align-items: center;
}
.contact__list li:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
.contact__list span {
  color: #8e9ab8;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact__list a {
  color: #fff;
  font-weight: 600;
  font-size: 17px;
}
.contact__list a:hover { color: var(--brand-2); text-decoration: none; }

.form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__row span { font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231f4dd8' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(31,77,216,.15);
}
.form textarea { resize: vertical; min-height: 100px; }
.form__submit { align-self: flex-start; }
.form__note { font-size: 12px; color: var(--ink-mute); margin: 0; }
.form__success {
  margin: 0;
  padding: 12px 14px;
  background: rgba(31, 159, 96, .1);
  color: #1f9f60;
  border: 1px solid rgba(31, 159, 96, .3);
  border-radius: 10px;
  font-weight: 500;
}
.form__failure {
  margin: 0;
  padding: 12px 14px;
  background: rgba(216, 69, 52, .1);
  color: #c62828;
  border: 1px solid rgba(216, 69, 52, .3);
  border-radius: 10px;
  font-weight: 500;
}
.form__failure a { color: #c62828; text-decoration: underline; }

/* ===== Footer ===== */
.footer {
  background: #07102a;
  color: #cbd3e6;
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
}
.footer__brand img { width: 48px; height: 48px; border-radius: 8px; background: #fff; }
.footer__meta p { margin: 0; font-size: 13px; color: #8e9ab8; }
.footer__meta p + p { margin-top: 4px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .mobile-nav.is-open { display: flex; }

  .hero { padding: 48px 0 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { order: -1; }
  .hero__visual img { max-width: 280px; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero__stats strong { font-size: 18px; }

  .section { padding: 64px 0; }

  .pains__grid { grid-template-columns: repeat(2, 1fr); }
  .capabilities { grid-template-columns: repeat(2, 1fr); }
  .cap-group--exec { padding: 28px 22px; }
  .screens__grid { grid-template-columns: 1fr; gap: 20px; }
  .screen img { aspect-ratio: auto; max-height: 560px; object-fit: contain; }
  .cases { grid-template-columns: 1fr; }
  .case-hero { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .roadmap { grid-template-columns: repeat(2, 1fr); }
  .roadmap::before { display: none; }
  .pricing { grid-template-columns: 1fr; }
  .support { grid-template-columns: 1fr; padding: 28px 24px; gap: 20px; }
  .support__list { grid-template-columns: 1fr; gap: 12px; }

  .about__inner { grid-template-columns: 1fr; }
  .about__visual { order: -1; }

  .contact__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .pains__grid, .capabilities, .process, .roadmap { grid-template-columns: 1fr; }
  .hero__title { font-size: 30px; }
  .form { padding: 22px; }
  .footer__inner { flex-direction: column; text-align: center; }
}
