:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --surface-muted: #edf4fa;
  --ink: #121821;
  --muted: #607080;
  --line: #d8e2ea;
  --accent: #1f6f9f;
  --accent-strong: #1c5f90;
  --accent-2: #163f5f;
  --dark: #0f2538;
  --blue: #163f5f;
  --warm: #bf6a3c;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(27, 31, 29, .10);
  --shadow-soft: 0 10px 30px rgba(27, 31, 29, .08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 3px;
}
img { max-width: 100%; height: auto; display: block; }
body:not(.logged-in) .site-main,
body:not(.logged-in) .site-footer,
body:not(.logged-in) .site-header {
  -webkit-user-select: none;
  user-select: none;
}
body:not(.logged-in) input,
body:not(.logged-in) textarea,
body:not(.logged-in) select,
body:not(.logged-in) [contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}
body:not(.logged-in) img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 247, 244, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}
.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; }
.menu, .footer-menu { list-style: none; display: flex; gap: 18px; padding: 0; margin: 0; }
.primary-nav { justify-self: end; }
.primary-nav a { color: var(--muted); font-weight: 650; }
.primary-nav a:hover { color: var(--ink); }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 750;
  border: 1px solid var(--accent);
  box-shadow: 0 10px 24px rgba(52, 152, 219, .20);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, .header-cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(52, 152, 219, .24);
}
.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.button.secondary:hover { background: #fff; }
.text-link { color: var(--accent); font-weight: 800; }
.nav-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; padding: 8px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 0; }
.hero-section, .page-hero {
  padding: 42px 0 30px;
  background:
    linear-gradient(135deg, rgba(52,152,219,.12), rgba(22,63,95,.08) 46%, rgba(191,106,60,.07)),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero.compact { padding: 58px 0 42px; }
.not-found-hero {
  padding: 78px 0;
  background:
    radial-gradient(circle at 80% 22%, rgba(52,152,219,.14), transparent 30%),
    linear-gradient(135deg, rgba(52,152,219,.10), rgba(22,63,95,.06) 48%, rgba(191,106,60,.06)),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.not-found-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: 56px;
  align-items: center;
}
.not-found-copy h1 {
  max-width: 720px;
}
.not-found-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  border: 1px solid rgba(52,152,219,.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 22%, rgba(52,152,219,.18), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(237,244,250,.72)),
    var(--surface-muted);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.not-found-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(52,152,219,.12);
  border-radius: var(--radius);
}
.not-found-visual span {
  position: relative;
  z-index: 1;
  color: rgba(28,95,144,.18);
  font-size: clamp(112px, 16vw, 188px);
  line-height: 1;
  font-weight: 900;
}
.not-found-visual div {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 9px;
  width: 42%;
}
.not-found-visual i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}
.not-found-visual i:nth-child(2) { width: 76%; opacity: .7; }
.not-found-visual i:nth-child(3) { width: 54%; opacity: .45; }
.case-archive-hero {
  overflow: hidden;
}
.case-archive-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 48px;
  align-items: center;
}
.case-archive-visual {
  position: relative;
  min-height: 218px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(52,152,219,.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 20%, rgba(52,152,219,.12), transparent 34%),
    linear-gradient(145deg, rgba(237,244,250,.58), rgba(216,226,234,.62)),
    var(--surface-muted);
  box-shadow: var(--shadow-soft);
}
.archive-chart-card {
  position: relative;
  z-index: 1;
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(52,152,219,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.62);
  box-shadow: 0 14px 36px rgba(15,37,56,.08);
  overflow: hidden;
}
.archive-chart-head,
.archive-chart-legend,
.archive-chart-months {
  position: relative;
  z-index: 2;
}
.archive-chart-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.archive-chart-head strong {
  color: var(--ink);
  font-size: 16px;
}
.archive-chart-head span {
  padding: 6px 10px;
  border: 1px solid rgba(52,152,219,.16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 750;
}
.archive-chart-legend {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}
.archive-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.archive-chart-legend span::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}
.archive-chart-legend span:nth-child(2)::before {
  background: repeating-linear-gradient(90deg, rgba(52,152,219,.38) 0 8px, transparent 8px 14px);
}
.archive-growth-chart {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 10px;
  overflow: visible;
}
.chart-grid line {
  stroke: rgba(96,112,128,.13);
  stroke-width: 1;
}
.chart-y text,
.chart-months text {
  fill: #607080;
  font-size: 12px;
  font-weight: 700;
}
.chart-months text {
  text-anchor: middle;
}
.chart-prev-line,
.chart-current-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chart-prev-line {
  stroke: rgba(52,152,219,.38);
  stroke-width: 4;
  stroke-dasharray: 9 9;
}
.chart-current-line {
  stroke: var(--accent);
  stroke-width: 5;
}
.chart-dots circle {
  fill: var(--accent);
  stroke: #fff;
  stroke-width: 3;
  filter: drop-shadow(0 4px 8px rgba(52,152,219,.22));
}
.thankyou-hero {
  padding: 76px 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(52,152,219,.15), transparent 30%),
    linear-gradient(135deg, rgba(52,152,219,.10), rgba(22,63,95,.06) 48%, rgba(191,106,60,.05)),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.thankyou-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .52fr);
  gap: 52px;
  align-items: center;
}
.thankyou-copy h1 {
  max-width: 780px;
}
.thankyou-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.thankyou-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 86% 18%, rgba(52,152,219,.14), transparent 34%);
  pointer-events: none;
}
.thankyou-check {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(52,152,219,.24);
}
.thankyou-card h2,
.thankyou-card ul {
  position: relative;
  z-index: 1;
}
.thankyou-card h2 {
  margin: 0 0 18px;
  font-size: 28px;
}
.thankyou-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.thankyou-card li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--muted);
  font-weight: 750;
}
.thankyou-next {
  padding-top: 68px;
}
.thankyou-next .outcome-card {
  display: grid;
  align-content: start;
  gap: 12px;
}
.thankyou-next .outcome-card h3,
.thankyou-next .outcome-card p {
  margin: 0;
}
.thankyou-next .text-link {
  margin-top: 8px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .72fr);
  gap: 52px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; margin: 0; }
h1 { font-size: 58px; max-width: 900px; }
h2 { font-size: clamp(30px, 3.6vw, 48px); }
h3 { font-size: 22px; }
.lead { font-size: 20px; color: var(--muted); max-width: 700px; margin: 18px 0 0; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.hero-panel {
  min-height: 392px;
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(52,152,219,.24), transparent 42%),
    var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
  display: grid;
  align-content: stretch;
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  pointer-events: none;
}
.foundation-visual {
  position: relative;
  display: grid;
  gap: 12px;
  z-index: 1;
}
.foundation-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 4px;
}
.foundation-head span {
  color: #a9c9df;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 850;
}
.foundation-head strong {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(52,152,219,.18);
  color: #dcefff;
  font-size: 13px;
}
.foundation-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 102px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.045)),
    rgba(255,255,255,.04);
}
.foundation-card h2 {
  color: #fff;
  font-size: 20px;
  margin: 0 0 8px;
}
.foundation-card p {
  color: #cddceb;
  font-size: 14px;
  line-height: 1.38;
  margin: 0;
}
.foundation-icon {
  display: grid;
  min-height: 74px;
  padding: 10px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(237,244,250,.88)),
    var(--surface-muted);
  border: 1px solid rgba(52,152,219,.16);
  overflow: hidden;
}
.foundation-strategy .foundation-icon {
  grid-template-columns: 1fr;
  align-content: center;
  gap: 7px;
}
.foundation-strategy .foundation-icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  min-height: 16px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.foundation-strategy .foundation-icon span:nth-child(1),
.foundation-strategy .foundation-icon span:nth-child(2),
.foundation-strategy .foundation-icon span:nth-child(3) {
  height: 16px;
}
.foundation-strategy .foundation-icon span:nth-child(1) { width: 62%; }
.foundation-strategy .foundation-icon span:nth-child(2) { width: 80%; }
.foundation-strategy .foundation-icon span:nth-child(3) { width: 100%; }
.foundation-strategy .foundation-icon span:nth-child(1) { opacity: .72; }
.foundation-strategy .foundation-icon span:nth-child(2) { opacity: .86; }
.foundation-channels .foundation-icon {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 7px;
}
.foundation-channels .foundation-icon span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 16px;
  padding: 0 9px 0 22px;
  border-radius: 999px;
  background: #e8f4fd;
  border: 1px solid rgba(52,152,219,.16);
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}
.foundation-channels .foundation-icon span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--accent);
  opacity: .82;
}
.foundation-sales .foundation-icon {
  align-content: center;
  gap: 8px;
}
.foundation-sales .foundation-icon span {
  display: flex;
  align-items: center;
  height: 18px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}
.foundation-sales .foundation-icon span:nth-child(1) { width: 92%; }
.foundation-sales .foundation-icon span:nth-child(2) { width: 68%; opacity: .75; }
.foundation-sales .foundation-icon span:nth-child(3) { width: 82%; opacity: .55; }
.foundation-card:hover {
  border-color: rgba(52,152,219,.34);
  background:
    linear-gradient(180deg, rgba(52,152,219,.12), rgba(255,255,255,.045)),
    rgba(255,255,255,.05);
}
.hero-media img, .hero-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.content-section { padding: 76px 0; }
.content-section.muted { background: var(--surface-muted); }
.home-band-base { background: var(--bg); }
.cases-section,
.outcomes-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.18)),
    var(--surface-muted);
}
.steps-section {
  background: #fff;
}
.pricing-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(247,247,244,.9)),
    var(--bg);
}
.services-section {
  background:
    linear-gradient(180deg, rgba(237,244,250,.7), rgba(237,244,250,.95)),
    var(--surface-muted);
}
.about-section {
  padding: 82px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .72fr);
  gap: 52px;
  align-items: center;
}
.about-copy h2 {
  max-width: 760px;
}
.about-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.about-facts article {
  min-height: 128px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
}
.about-facts strong,
.about-facts span {
  display: block;
}
.about-facts strong {
  color: var(--accent-strong);
  font-size: 24px;
  line-height: 1.15;
}
.about-facts span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}
.about-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: visible;
  background: transparent;
}
.about-photo img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(96%, 420px);
  max-height: 100%;
  transform: translateX(-50%);
  object-fit: contain;
}
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.section-heading h2 + p { max-width: 680px; }
.section-heading.with-action {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  max-width: none;
}
.section-footer-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.case-grid, .service-grid, .feature-grid, .steps-grid, .pricing-grid, .card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.case-card, .service-card, .feature-card, .step-card, .price-card, .content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.steps-grid-home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.step-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
}
.step-card-top {
  display: grid;
  grid-template-columns: 116px minmax(220px, 1fr);
  gap: 18px;
  align-items: start;
}
.step-number {
  color: var(--accent-strong);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .04em;
}
.step-card h3 {
  margin: 0;
}
.step-card p {
  margin: 0;
}
.step-visual {
  height: 106px;
  min-height: 106px;
  width: 100%;
  border: 1px solid #dbeaf5;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(237,244,250,.8)),
    var(--surface-muted);
  position: relative;
  overflow: hidden;
}
.step-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(52,152,219,.16), transparent 34%);
  pointer-events: none;
}
.step-visual-diagnostics {
  display: grid;
  grid-template-columns: repeat(2, minmax(76px, 1fr)) minmax(76px, .9fr);
  gap: 10px;
  padding: 14px;
  align-items: stretch;
}
.metric-tile {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 72px;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(52,152,219,.12);
}
.metric-tile strong {
  color: var(--accent-strong);
  font-size: 22px;
  line-height: 1;
}
.metric-tile span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}
.visual-bars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 72px;
}
.visual-bars span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
}
.visual-bars span:nth-child(1) { height: 34%; opacity: .45; }
.visual-bars span:nth-child(2) { height: 58%; opacity: .7; }
.visual-bars span:nth-child(3) { height: 86%; }
.step-visual-plan {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 52px;
  gap: 12px;
  padding: 14px;
  align-items: stretch;
}
.slide-card {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(52,152,219,.14);
}
.slide-card strong {
  display: block;
  color: var(--accent-strong);
  font-size: 16px;
  margin-bottom: 12px;
}
.slide-card span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #cdddeb;
  margin-top: 8px;
}
.slide-card span:nth-child(3) { width: 74%; }
.slide-card span:nth-child(4) { width: 48%; }
.slide-stack {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 7px;
}
.slide-stack span {
  height: 24px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(52,152,219,.14);
}
.step-visual-kanban {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  align-items: stretch;
}
.kanban-col {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(52,152,219,.12);
}
.kanban-col strong {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
}
.kanban-col span {
  display: block;
  height: 18px;
  border-radius: 5px;
  background: #d7e8f5;
}
.kanban-col:nth-child(2) span { background: #bfe1f7; }
.kanban-col:nth-child(3) span { background: #9fd3f3; }
.step-visual-growth {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 78px;
  gap: 14px;
  align-items: end;
  padding: 14px;
}
.growth-chart {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 10px;
  height: 72px;
  padding: 0 8px;
  border-bottom: 1px solid #bfd4e5;
  border-left: 1px solid #bfd4e5;
}
.growth-chart span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
}
.growth-chart span:nth-child(1) { height: 28%; opacity: .45; }
.growth-chart span:nth-child(2) { height: 44%; opacity: .58; }
.growth-chart span:nth-child(3) { height: 68%; opacity: .78; }
.growth-chart span:nth-child(4) { height: 94%; }
.growth-kpi {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 12px 10px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(52,152,219,.14);
  text-align: center;
}
.growth-kpi strong {
  display: block;
  color: var(--accent-strong);
  font-size: 20px;
  line-height: 1;
}
.growth-kpi span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}
.problems-strip-section .section-heading {
  max-width: 920px;
}
.problem-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
}
.problem-strip::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 43px;
  height: 1px;
  background: var(--line);
}
.problem-strip .feature-card {
  display: grid;
  justify-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  text-align: center;
}
.problem-strip .feature-card::before {
  display: none;
}
.problem-strip .feature-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}
.problem-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 92px;
  height: 86px;
  margin-bottom: 22px;
  border: 1px solid #dbeaf5;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(52,152,219,.2), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(237,244,250,.9)),
    var(--surface-muted);
  color: var(--accent);
  font-size: 36px;
  box-shadow: 0 0 0 10px var(--bg), var(--shadow-soft);
}
.problem-icon::before {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.problem-strip h3 {
  max-width: 260px;
  margin: 0 0 8px;
  font-size: 18px;
}
.problem-strip p {
  max-width: 310px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}
.feature-card {
  position: relative;
  min-height: 210px;
}
.feature-card::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  margin-bottom: 22px;
}
.case-card:hover, .service-card:hover, .feature-card:hover, .step-card:hover, .price-card:hover, .content-card:hover {
  transform: translateY(-3px);
  border-color: rgba(52,152,219,.34);
  box-shadow: var(--shadow);
}
.service-card a, .content-card a { display: block; height: 100%; }
.case-card {
  display: grid;
  grid-template-rows: auto 1fr;
}
.case-card-media-link {
  display: block;
}
.case-card-media {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 18% 20%, rgba(52,152,219,.24), transparent 28%),
    linear-gradient(135deg, #eaf4fb, #d9e8f3);
  margin: 0;
  overflow: hidden;
}
.case-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-card-media span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(28,95,144,.28);
  font-size: 92px;
  font-weight: 850;
}
.case-card-body, .service-card, .feature-card, .step-card, .price-card, .content-card { padding: 24px; }
.case-card-body {
  display: grid;
  align-content: start;
  gap: 16px;
}
.case-card h2, .case-card h3, .service-card h2, .service-card h3, .content-card h2 { font-size: 23px; margin: 0; }
.case-card h3 a:hover { color: var(--accent-strong); }
.case-card p, .service-card p, .feature-card p, .step-card p, .price-card p, .content-card p { color: var(--muted); }
.service-card a {
  display: grid;
  align-content: start;
}
.service-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}
.service-card-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(52,152,219,.10);
  color: var(--accent-strong);
  font-size: 22px;
  line-height: 1;
}
.case-card .term-row { margin-bottom: 0; }
.case-card-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}
.case-card-metrics div {
  min-height: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}
.case-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(52, 152, 219, .18);
}
.case-card:hover .case-card-link {
  background: var(--accent-strong);
}
.term-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.term-row span, .term-row a, .filter-chip {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  background: rgba(255,255,255,.65);
}
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-chip.active, .filter-chip:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.case-breadcrumbs {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.56);
}
.case-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}
.case-breadcrumbs a:hover { color: var(--accent-strong); }
.case-breadcrumbs strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
}
.case-hero-v2 {
  padding: 52px 0 46px;
  background:
    radial-gradient(circle at 84% 18%, rgba(52,152,219,.16), transparent 30%),
    linear-gradient(180deg, #fff, var(--bg));
}
.case-hero-card {
  display: grid;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.case-hero-heading {
  min-width: 0;
}
.case-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.case-kicker .eyebrow,
.case-kicker .term-row {
  margin: 0;
}
.case-kicker .term-row a {
  padding: 6px 10px;
}
.case-hero-heading h1 { max-width: 1060px; }
.case-hero-heading .lead { max-width: 920px; }
.case-hero-actions .button-row { margin-top: 0; }
.case-hero-summary {
  display: grid;
  grid-template-columns: minmax(260px, 318px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 26px;
}
.case-metrics-wrap {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.case-hero-media {
  position: relative;
  min-height: 360px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #eaf4fb, #d9e8f3);
}
.case-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}
.case-metrics article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
}
.case-metrics strong {
  display: block;
  color: var(--accent-strong);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}
.case-metrics span {
  display: block;
  color: var(--ink);
  font-weight: 850;
}
.case-metrics p {
  margin: 8px 0 0;
  color: var(--muted);
}
.case-detail-section {
  padding: 78px 0;
  background: #fff;
}
.case-detail-grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 820px);
  gap: 48px;
  align-items: start;
}
.case-sidebar {
  position: sticky;
  top: 104px;
}
.case-sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow-soft);
}
.case-sidebar-card dl {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
}
.case-sidebar-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.case-sidebar-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 400;
}
.case-article {
  min-width: 0;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: #27313a;
}
.case-article > *:first-child {
  margin-top: 0;
}
.case-article-intro {
  padding-bottom: 26px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.case-article h2,
.case-article h3,
.case-article h4 {
  margin: 38px 0 16px;
  color: var(--ink);
}
.case-article h2 { font-size: clamp(28px, 3vw, 40px); }
.case-article h3,
.case-article h4 { font-size: 25px; }
.case-article p,
.case-article li {
  color: #343c45;
  font-size: 18px;
  line-height: 1.75;
}
.case-article p { margin: 0 0 14px; }
.case-article ul,
.case-article ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 0 0 22px;
}
.case-article img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.case-article figure {
  margin: 30px 0;
}
.case-evidence {
  margin: 34px 0;
  padding: 26px;
  border: 1px solid rgba(28, 95, 144, .14);
  border-radius: var(--radius);
  background:
    url('../img/case-artifacts/evidence-card-bg-v1.png') center / cover,
    #f7f9fb;
  box-shadow: var(--shadow-soft);
}
.case-evidence__heading { margin-bottom: 20px; }
.case-evidence__label {
  display: inline-block;
  margin: 0 0 8px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(229, 243, 251, .92);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.case-evidence h3 { margin: 0; }
.case-evidence__body {
  display: grid;
  grid-template-columns: minmax(145px, .32fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}
.case-evidence__metric {
  padding: 18px;
  border: 1px solid rgba(28, 95, 144, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .8);
}
.case-evidence__metric strong {
  display: block;
  color: var(--accent-strong);
  font-size: clamp(34px, 5vw, 58px);
  line-height: .95;
  letter-spacing: -.05em;
}
.case-evidence__metric span { color: var(--muted); font-size: 14px; font-weight: 700; }
.case-evidence__body img {
  width: 100%;
  margin: 0;
  border: 1px solid rgba(28, 95, 144, .12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(26, 77, 112, .12);
}
.case-evidence figcaption { margin-top: 14px; color: var(--muted); font-size: 14px; }
.case-evidence--full {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}
.case-evidence--full .case-evidence__heading,
.case-evidence--full .case-evidence__metric { display: none; }
.case-evidence--full .case-evidence__body { display: block; }
.case-evidence-section { margin-top: 46px; }
.case-artifact-gallery { margin-top: 52px; }
.case-artifact-gallery > h2 { margin: 0 0 24px; }
.case-artifact-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}
.case-artifact-gallery__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(28, 95, 144, .14);
  border-radius: 18px;
  background:
    url('../img/case-artifacts/evidence-card-bg-v1.png') center / cover,
    #f7f9fb;
  box-shadow: var(--shadow-soft);
}
.case-artifact-gallery__item > img {
  display: grid;
  width: 100%;
  min-height: 190px;
  border-radius: 11px;
  background: #fff;
  object-fit: contain;
}
.case-artifact-gallery__item img {
  display: block;
  width: 100%;
  max-height: 430px;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}
.case-artifact-gallery__item figcaption { margin: 11px 2px 0; color: var(--muted); font-size: 13px; }
.case-article hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 36px 0;
}
.case-article blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface-muted);
}
.case-back-link {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.case-related-section .section-heading { margin-bottom: 26px; }
.step-card .step-number, .service-number {
  display: block;
  color: var(--accent-strong);
  font-weight: 900;
  margin-bottom: 18px;
}
.step-card {
  display: grid;
  align-content: start;
}
.feature-card h3, .step-card h3, .price-card h3 { margin-bottom: 12px; }
.price-card strong {
  display: block;
  font-size: 30px;
  margin: 24px 0;
}
.cta-section {
  padding: 74px 0 76px;
  background: var(--bg);
  color: #fff;
}
.cta-section {
  scroll-margin-top: 96px;
}

.cta-frame {
  position: relative;
  min-height: 470px;
  padding: 48px 44px 38px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 100%, rgba(52,152,219,.42), transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(52,152,219,.26), transparent 32%),
    linear-gradient(155deg, rgba(52,152,219,.16), rgba(15,37,56,.08) 34%, rgba(52,152,219,.24) 100%),
    var(--dark);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,37,56,.98), rgba(15,37,56,.84) 55%, rgba(15,37,56,.2) 100%);
  pointer-events: none;
}
.cta-frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(45%, 520px);
  height: 82%;
  background: linear-gradient(150deg, rgba(52,152,219,.18), rgba(52,152,219,.04));
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.cta-copy {
  position: relative;
  z-index: 3;
  width: min(720px, 66%);
}
.cta-copy .eyebrow { color: #9fd3f3; }
.cta-copy h2 {
  max-width: 700px;
  color: #fff;
  font-size: clamp(38px, 4.3vw, 56px);
  line-height: 1.12;
}
.cta-copy p {
  max-width: 610px;
  color: #d6e5ef;
  font-size: 19px;
}
.cta-photo-cutout {
  position: absolute;
  right: 20px;
  bottom: 24px;
  z-index: 2;
  width: min(36vw, 420px);
  margin: 0;
  pointer-events: none;
  filter: drop-shadow(0 34px 34px rgba(3,12,20,.34));
}
.cta-photo-cutout img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}
@media (min-width: 901px) {
  .cta-section-case .cta-photo-cutout {
    right: 58px;
    width: min(34vw, 400px);
  }
  .cta-section-case .cta-frame::after {
    right: 28px;
    width: min(42%, 500px);
  }
  .cta-section-inner .cta-frame {
    min-height: 500px;
  }
  .cta-section-inner .cta-photo-cutout {
    right: 58px;
    bottom: 0;
    width: min(33vw, 390px);
  }
  .cta-section-inner .cta-frame::after {
    right: 28px;
    width: min(42%, 500px);
  }
}
.form-box {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.lead-form { display: grid; gap: 14px; }
.lead-form-compact {
  max-width: 850px;
  margin-top: 24px;
}
.lead-form-row {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(220px, 280px) minmax(180px, 230px);
  gap: 14px;
  align-items: stretch;
}
.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 750;
}
.lead-form-compact label { color: #fff; }
.lead-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 58px;
  padding: 0 24px;
  font: inherit;
  color: var(--ink);
  background: #f9faf7;
}
.lead-form textarea {
  border-radius: var(--radius);
  padding: 18px 24px;
}
.lead-form .button {
  border-radius: var(--radius);
}
.lead-form-compact input,
.lead-form-compact select,
.lead-form-compact .button {
  min-height: 64px;
  border-radius: var(--radius);
  padding: 0 30px;
}
.lead-form-compact select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #607080 50%) calc(100% - 29px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, #607080 50%, transparent 50%) calc(100% - 24px) 50% / 7px 7px no-repeat,
    #fff;
  font-weight: 750;
}
.lead-form-compact input { font-weight: 750; }
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: 2px solid rgba(52,152,219,.18);
  border-color: var(--accent);
}
.lead-form textarea { min-height: 112px; resize: vertical; }
.consent-check {
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 13px;
  font-weight: 500 !important;
  line-height: 1.42;
}
.lead-form-compact .consent-check {
  margin-top: 0;
  color: #d6e5ef !important;
  max-width: 760px;
}
.lead-form-compact .consent-check a { color: #73c5ff; }
.consent-check input {
  width: 18px;
  height: 18px;
  min-height: 18px !important;
  margin: 0;
  padding: 0 !important;
  border-radius: 4px !important;
  accent-color: var(--accent);
}
.consent-check a { color: var(--accent); text-decoration: underline; }
.lead-form .button:disabled,
.lead-form .button.is-disabled {
  cursor: not-allowed;
  opacity: .52;
  transform: none;
  box-shadow: none;
}
.cta-frame .ff-el-form-control,
.fluentform .ff-el-form-control {
  border-radius: var(--radius) !important;
  min-height: 58px;
  padding: 0 24px !important;
  font: inherit;
}
.cta-frame textarea.ff-el-form-control,
.fluentform textarea.ff-el-form-control {
  border-radius: var(--radius) !important;
  min-height: 112px;
  padding: 18px 24px !important;
}
.cta-frame .ff-btn-submit,
.fluentform .ff-btn-submit {
  min-height: 58px;
  border-radius: var(--radius) !important;
  padding: 0 28px !important;
}
.form-note { font-size: 13px; color: var(--muted) !important; }
.form-note a { color: var(--accent); text-decoration: underline; }
.content-narrow { max-width: 820px; }
.content-wide { max-width: 1180px; }
.content-narrow p, .content-narrow li { font-size: 18px; color: #343834; }
.content-narrow h2 { font-size: 34px; margin-top: 42px; }
.page-content-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: #27313a;
}
.page-content-card > *:first-child {
  margin-top: 0;
}
.page-content-card p,
.page-content-card li {
  color: #343c45;
  font-size: 18px;
  line-height: 1.75;
}
.page-content-card h2,
.page-content-card h3,
.page-content-card h4 {
  margin: 38px 0 16px;
  color: var(--ink);
}
.page-content-card h2 {
  font-size: 34px;
}
.page-content-card a {
  color: var(--accent);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content-card ul,
.page-content-card ol {
  padding-left: 24px;
}
.price-page-content {
  display: grid;
  gap: 34px;
}
.price-page-content .price-format-grid {
  margin-top: 20px;
}
.price-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: 42px;
  align-items: center;
}
.price-page-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
}
.price-page-copy h2,
.price-page-copy p {
  margin: 0;
}
.price-page-copy .price-action {
  margin-top: 6px;
}
.price-page-intro .button {
  justify-self: start;
}
.price-page-content .button {
  color: #fff;
  text-decoration: none;
}
.price-page-visual {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(52,152,219,.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(52,152,219,.18), transparent 34%),
    linear-gradient(145deg, rgba(237,244,250,.92), rgba(255,255,255,.86));
  box-shadow: var(--shadow-soft);
}
.price-visual-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(52,152,219,.16);
}
.price-visual-head span,
.price-visual-row span,
.price-visual-cards span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.price-visual-head strong {
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 13px;
}
.price-visual-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
}
.price-visual-row i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}
.price-visual-row:nth-child(3) i {
  width: 78%;
  opacity: .78;
}
.price-visual-row:nth-child(4) i {
  width: 58%;
  opacity: .56;
}
.price-visual-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.price-visual-cards span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid rgba(52,152,219,.14);
  border-radius: var(--radius);
  background: #fff;
  color: var(--accent-strong);
}
.price-format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.price-format-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, rgba(237,244,250,.65));
  box-shadow: var(--shadow-soft);
}
.price-format-card h2 {
  margin: 0;
  font-size: 26px;
}
.price-format-card .price-value {
  margin: 0;
  color: var(--accent-strong);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}
.price-format-card h3 {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.price-format-card ul {
  margin: 0;
}
.price-result {
  margin: 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(52,152,219,.10);
  color: var(--ink);
  font-weight: 750;
}
.price-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.price-info-card,
.price-final-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.price-info-card h2,
.price-final-card h2 {
  margin-top: 0;
}
.price-final-card {
  display: grid;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(52,152,219,.12), rgba(22,63,95,.06)),
    var(--surface);
}
.price-final-card .button {
  justify-self: start;
}
.price-content-section {
  padding-bottom: 30px;
}
.price-content-section + .cta-section {
  padding-top: 34px;
}
.service-archive-hero-grid,
.service-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .66fr);
  gap: 48px;
  align-items: center;
}
.service-detail-hero .button {
  margin-top: 18px;
}
.service-archive-visual,
.service-detail-visual {
  padding: 24px;
  border: 1px solid rgba(52,152,219,.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 20%, rgba(52,152,219,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(237,244,250,.74));
  box-shadow: var(--shadow-soft);
}
.service-visual-head,
.audit-widget-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(52,152,219,.16);
}
.service-visual-head span,
.audit-widget-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.service-visual-head strong,
.audit-widget-head strong {
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 13px;
}
.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.service-visual-grid span {
  display: grid;
  place-items: center;
  min-height: 68px;
  border: 1px solid rgba(52,152,219,.14);
  border-radius: var(--radius);
  background: #fff;
  color: var(--accent-strong);
  font-weight: 850;
}
.service-visual-bars,
.audit-widget-metrics {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}
.service-visual-bars i,
.audit-widget-metrics i {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}
.service-visual-bars i:nth-child(2),
.audit-widget-metrics i:nth-child(4) {
  width: 78%;
  opacity: .74;
}
.service-visual-bars i:nth-child(3),
.audit-widget-metrics i:nth-child(6) {
  width: 58%;
  opacity: .48;
}
.audit-widget {
  display: grid;
  gap: 18px;
}
.audit-widget-metrics {
  grid-template-columns: 74px 1fr;
  align-items: center;
}
.audit-widget-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.audit-widget-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.audit-widget-list span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid rgba(52,152,219,.14);
  border-radius: var(--radius);
  background: #fff;
  color: var(--accent-strong);
  font-weight: 850;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.service-detail-card,
.service-check-grid article,
.service-process article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.service-detail-card-accent {
  background:
    linear-gradient(145deg, rgba(52,152,219,.10), rgba(255,255,255,.86)),
    var(--surface);
}
.service-detail-card h2,
.service-check-grid h3,
.service-process h3 {
  margin-top: 0;
}
.service-detail-card ul {
  margin: 18px 0 0;
  padding-left: 22px;
}
.service-detail-card li {
  margin-bottom: 10px;
  color: #343c45;
}
.service-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-check-grid .dashicons {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(52,152,219,.10);
  color: var(--accent-strong);
  font-size: 24px;
}
.service-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-process span {
  display: block;
  margin-bottom: 20px;
  color: var(--accent-strong);
  font-weight: 900;
}
.service-process p,
.service-check-grid p {
  color: var(--muted);
}
.story-hero {
  padding: 54px 0 58px;
  background:
    radial-gradient(circle at 84% 22%, rgba(52,152,219,.16), transparent 30%),
    linear-gradient(135deg, rgba(52,152,219,.10), rgba(22,63,95,.06) 48%, rgba(191,106,60,.06)),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.story-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: center;
}
.story-hero-copy {
  min-width: 0;
}
.story-hero-copy h1 {
  max-width: 720px;
}
.story-hero-media {
  margin: 0;
  border: 1px solid rgba(52,152,219,.12);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.story-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-content-section {
  padding: 72px 0;
  background: #fff;
}
.story-content-grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 820px);
  gap: 48px;
  align-items: start;
}
.story-side-card {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow-soft);
}
.story-side-card img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(52,152,219,.10);
}
.story-side-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
}
.story-side-card p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--muted);
}
.story-article {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: #27313a;
}
.story-article > *:first-child {
  margin-top: 0;
}
.story-article p,
.story-article li {
  color: #343c45;
  font-size: 18px;
  line-height: 1.75;
}
.story-article h2,
.story-article h3,
.story-article h4 {
  margin: 38px 0 16px;
  color: var(--ink);
}
.story-article h2 {
  font-size: 34px;
}
.story-article img {
  border-radius: var(--radius);
}
.story-next-section {
  padding-top: 68px;
}
.story-next-card a {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.story-next-card a:hover {
  transform: translateY(-3px);
  border-color: rgba(52,152,219,.34);
  box-shadow: var(--shadow);
}
.story-next-card figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-muted);
}
.story-next-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.story-next-card h3 {
  max-width: 620px;
  margin: 0 0 20px;
  font-size: 32px;
}
.faq-list { display: grid; gap: 10px; }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.faq-list summary { cursor: pointer; font-weight: 800; }
.story-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.story-card {
  min-width: 0;
}
.story-card a {
  display: grid;
  align-content: start;
  gap: 18px;
  height: 100%;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.story-card a:hover {
  transform: translateY(-3px);
  border-color: rgba(52,152,219,.34);
  box-shadow: var(--shadow);
}
.story-card h2 {
  min-height: 70px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.16;
}
.story-card-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-muted);
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(52,152,219,.10);
}
.story-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(52, 152, 219, .18);
}
.story-card-link::before {
  content: ">";
  margin-right: 8px;
  font-weight: 900;
}
.story-card a:hover .story-card-link {
  background: var(--accent-strong);
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-card {
  min-width: 0;
}
.blog-card a {
  display: grid;
  align-content: start;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.blog-card a:hover {
  transform: translateY(-3px);
  border-color: rgba(52,152,219,.34);
  box-shadow: var(--shadow);
}
.blog-card-media {
  display: grid;
  place-items: center;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 24%, rgba(52,152,219,.22), transparent 30%),
    linear-gradient(135deg, #eaf4fb, #d9e8f3);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-media span {
  color: rgba(28,95,144,.28);
  font-size: 76px;
  line-height: 1;
  font-weight: 900;
}
.blog-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}
.blog-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.14;
}
.blog-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}
.blog-empty {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.blog-empty h2,
.blog-empty p {
  margin: 0;
}
.blog-empty p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
}
.blog-hero {
  padding: 54px 0 58px;
  background:
    radial-gradient(circle at 84% 22%, rgba(52,152,219,.16), transparent 30%),
    linear-gradient(135deg, rgba(52,152,219,.10), rgba(22,63,95,.06) 48%, rgba(191,106,60,.06)),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, .82fr);
  gap: 46px;
  align-items: center;
}
.blog-hero-copy h1 {
  max-width: 760px;
}
.blog-hero-copy .lead {
  margin-bottom: 16px;
}
.blog-hero-copy .lead + .eyebrow {
  margin-top: 0;
}
.blog-hero-media {
  display: grid;
  place-items: center;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(52,152,219,.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 22%, rgba(52,152,219,.18), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(237,244,250,.72)),
    var(--surface-muted);
  box-shadow: var(--shadow);
}
.blog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-hero-media div {
  display: grid;
  gap: 10px;
  text-align: center;
}
.blog-hero-media span {
  color: rgba(28,95,144,.18);
  font-size: clamp(88px, 11vw, 142px);
  line-height: 1;
  font-weight: 900;
}
.blog-hero-media strong {
  color: var(--accent-strong);
  font-size: 18px;
}
.blog-content-section {
  padding: 72px 0;
  background: #fff;
}
.blog-content-grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 820px);
  gap: 48px;
  align-items: start;
}
.blog-toc-card {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow-soft);
}
.blog-toc-card nav {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
}
.blog-toc-card a:not(.text-link) {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}
.blog-toc-card a:not(.text-link):hover {
  border-color: rgba(52,152,219,.34);
  color: var(--accent-strong);
}
.blog-toc-card a.is-child {
  margin-left: 12px;
  color: var(--muted);
  font-size: 13px;
}
.blog-toc-card p:not(.eyebrow) {
  color: var(--muted);
}
.blog-article h2,
.blog-article h3 {
  scroll-margin-top: 104px;
}
.blog-related-section .section-heading {
  margin-bottom: 26px;
}
.blog-list-related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.system-section {
  padding: 84px 0;
  background: var(--dark);
  color: #fff;
}
.system-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}
.system-copy {
  position: sticky;
  top: 104px;
}
.system-copy p:not(.eyebrow) {
  color: #cdd6d1;
  font-size: 19px;
  max-width: 560px;
}
.system-copy .eyebrow { color: #9fd3f3; }
.system-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.system-map article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(52,152,219,.12), rgba(255,255,255,.055)),
    rgba(255,255,255,.04);
  position: relative;
  overflow: hidden;
}
.system-map article::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(52,152,219,.22);
  background: radial-gradient(circle at 35% 35%, rgba(52,152,219,.38), transparent 58%);
}
.system-map .system-number {
  display: block;
  color: #9fd3f3;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.system-map h3 { color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.system-map p { color: #cdd6d1; margin: 0; position: relative; z-index: 1; }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.outcome-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.outcome-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}
.outcome-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8f4fd;
  color: var(--accent-strong);
  font-weight: 900;
  margin-bottom: 18px;
}
.outcome-card h3 { margin-bottom: 12px; }
.outcome-card p { color: var(--muted); margin: 0; }
.outcomes-section .outcome-card {
  min-height: 220px;
  border-color: rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(52,152,219,.12), rgba(255,255,255,.055)),
    var(--dark);
  color: #fff;
}
.outcomes-section .outcome-card::before {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}
.outcomes-section .outcome-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(52,152,219,.22);
  background: radial-gradient(circle at 35% 35%, rgba(52,152,219,.38), transparent 58%);
}
.outcomes-section .outcome-number {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  background: rgba(52,152,219,.14);
  color: #9fd3f3;
  border: 1px solid rgba(159,211,243,.20);
}
.outcomes-section .outcome-card h3 {
  position: relative;
  z-index: 1;
  color: #fff;
}
.outcomes-section .outcome-card p {
  position: relative;
  z-index: 1;
  color: #cdd6d1;
}
.site-footer {
  padding: 48px 0;
  background: #151515;
  color: #fff;
}
.home-newsletter-section {
  padding: 28px 0 32px;
  background: var(--bg);
}
.home-newsletter-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .78fr);
  gap: 32px;
  align-items: center;
  min-height: 172px;
  padding: 28px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 22%, rgba(52,152,219,.14), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(237,244,250,.78)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.home-newsletter-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 24%, rgba(255,255,255,.38) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 74%, rgba(52,152,219,.18) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 34%, rgba(52,152,219,.22) 0 2px, transparent 3px),
    linear-gradient(28deg, transparent 10%, rgba(52,152,219,.10) 10.3%, transparent 10.8%),
    linear-gradient(142deg, transparent 34%, rgba(52,152,219,.10) 34.3%, transparent 34.8%),
    linear-gradient(78deg, transparent 66%, rgba(52,152,219,.10) 66.3%, transparent 66.8%);
  opacity: .7;
  pointer-events: none;
}
.home-newsletter-copy,
.home-newsletter-form {
  position: relative;
  z-index: 1;
}
.home-newsletter-copy h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.1;
}
.home-newsletter-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.home-newsletter-form {
  display: grid;
  gap: 12px;
}
.home-newsletter-form .lead-field {
  min-width: 0;
  color: var(--muted);
}
.home-newsletter-form input[type="email"] {
  min-height: 46px;
  padding: 0;
  border-width: 0 0 1px;
  border-radius: 0;
  border-color: rgba(52,152,219,.36);
  background: transparent;
  color: var(--ink);
}
.home-newsletter-form input[type="email"]::placeholder {
  color: rgba(96,112,128,.72);
}
.home-newsletter-form .button {
  min-height: 50px;
  width: 100%;
  padding: 0 22px;
}
.home-newsletter-form .newsletter-consent {
  color: var(--muted) !important;
}
.home-newsletter-form .newsletter-consent a {
  color: var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 32px;
}
.site-footer p, .site-footer a, .site-footer small { color: #c8cbc7; }
.site-footer h2 { font-size: 18px; margin-bottom: 14px; }
.footer-company {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  color: #c8cbc7;
  font-style: normal;
  font-size: 14px;
  line-height: 1.45;
}
.footer-menu { display: grid; gap: 8px; }
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(680px, calc(100% - 36px));
  padding: 14px;
  border: 1px solid rgba(18,24,33,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 50px rgba(15,37,56,.22);
  backdrop-filter: blur(12px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(12px);
}
.cookie-banner-text {
  min-width: 0;
}
.cookie-banner p {
  margin: 0;
  color: #343c45;
  font-size: 12px;
  line-height: 1.4;
}
.cookie-banner a {
  color: var(--accent);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-button {
  min-height: 42px;
  padding: 9px 16px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto auto; }
  .header-cta { display: none; }
  .nav-toggle { display: block; justify-self: end; }
  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding-bottom: 16px;
  }
  .primary-nav.open { display: block; }
  .menu { display: grid; gap: 12px; }
  .hero-grid, .footer-grid, .home-newsletter-panel { grid-template-columns: 1fr; }
  .not-found-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .thankyou-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .not-found-visual {
    min-height: 240px;
  }
  .case-archive-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-archive-hero-grid,
  .service-detail-hero-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-check-grid,
  .service-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-archive-visual {
    min-height: 206px;
  }
  .case-hero-card,
  .case-hero-summary,
  .case-detail-grid,
  .story-hero-grid,
  .story-content-grid,
  .story-next-card a,
  .blog-hero-grid,
  .blog-content-grid {
    grid-template-columns: 1fr;
  }
  .case-hero-media { min-height: 300px; }
  .case-evidence { padding: 20px; }
  .case-evidence__body { grid-template-columns: 1fr; }
  .case-artifact-gallery__grid { grid-template-columns: 1fr; }
  .case-sidebar { position: static; }
  .story-side-card { position: static; }
  .blog-toc-card { position: static; }
  .price-page-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .cta-frame { padding: 40px 26px 286px; min-height: auto; }
  .cta-frame::before {
    background: linear-gradient(180deg, rgba(15,37,56,.98), rgba(15,37,56,.86) 64%, rgba(15,37,56,.34) 100%);
  }
  .cta-frame::after {
    width: 100%;
    height: 44%;
    clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
  }
  .cta-copy { width: 100%; }
  .cta-photo-cutout {
    width: min(340px, 78%);
    right: 50%;
    bottom: -34px;
    transform: translateX(50%);
  }
  .lead-form-row { grid-template-columns: 1fr; }
  .lead-form-compact input,
  .lead-form-compact select,
  .lead-form-compact .button { min-height: 58px; }
  .hero-panel {
    min-height: auto;
  }
  .case-grid,
  .service-grid,
  .feature-grid,
  .steps-grid,
  .pricing-grid,
  .card-grid,
  .case-metrics,
  .price-format-grid,
  .price-info-grid {
    grid-template-columns: 1fr;
  }
  .step-card-top {
    grid-template-columns: 84px minmax(0, 1fr);
  }
  .about-grid,
  .about-facts,
  .problem-strip {
    grid-template-columns: 1fr;
  }
  .about-photo {
    min-height: 460px;
    order: -1;
  }
  .problem-strip {
    gap: 26px;
  }
  .problem-strip::before {
    left: 43px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }
  .problem-strip .feature-card {
    grid-template-columns: 92px 1fr;
    justify-items: start;
    column-gap: 20px;
    text-align: left;
  }
  .problem-icon {
    margin: 0;
    box-shadow: 0 0 0 10px var(--bg), var(--shadow-soft);
  }
  .problem-strip h3,
  .problem-strip p {
    max-width: none;
  }
  .problem-strip h3 {
    grid-column: 2;
  }
  .problem-strip p {
    grid-column: 2;
  }
  .system-grid, .system-map, .outcome-grid { grid-template-columns: 1fr; }
  .system-copy { position: static; }
  .section-heading.with-action { align-items: start; flex-direction: column; }
  .story-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-list,
  .blog-list-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cookie-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: min(600px, calc(100% - 24px));
  }
  .cookie-banner-button {
    width: auto;
  }
  .story-hero-grid {
    gap: 30px;
  }
  .story-content-grid {
    gap: 28px;
  }
  h1 { font-size: 42px; }
  .lead { font-size: 18px; }
  .hero-section, .page-hero { padding: 54px 0 42px; }
  .thankyou-hero {
    padding: 54px 0;
  }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1180px); }
  .cookie-banner {
    gap: 10px;
    padding: 10px;
    border-radius: var(--radius);
  }
  .cookie-banner p {
    font-size: 12px;
    line-height: 1.35;
  }
  .cookie-banner .cookie-banner-button {
    width: auto;
    min-height: 40px;
    padding: 8px 12px;
  }
  .button, .header-cta { width: 100%; }
  .button-row { width: 100%; }
  .home-newsletter-panel {
    padding: 18px;
  }
  .home-newsletter-copy h2 {
    font-size: 24px;
  }
  .service-check-grid,
  .service-process,
  .audit-widget-list {
    grid-template-columns: 1fr;
  }
  .service-archive-visual,
  .service-detail-visual,
  .service-detail-card,
  .service-check-grid article,
  .service-process article {
    padding: 18px;
  }
.service-card-icon {
    margin: 0;
  }
  .brand strong { font-size: 15px; }
  .brand small { display: none; }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .case-breadcrumbs .container { font-size: 13px; }
  .case-hero-v2 { padding: 34px 0 32px; }
  .case-hero-card { padding: 22px; gap: 22px; }
  .case-hero-media { min-height: 220px; }
  .case-metrics article { padding: 18px; }
  .case-detail-section { padding: 54px 0; }
  .case-article {
    padding: 18px;
  }
  .case-article p,
  .case-article li { font-size: 16px; }
  .case-article h3,
  .case-article h4 { font-size: 22px; }
  .content-section { padding: 54px 0; }
  .story-hero,
  .story-content-section,
  .story-next-section {
    padding: 42px 0;
  }
  .story-article,
  .page-content-card,
  .story-side-card,
  .story-next-card a {
    padding: 18px;
  }
  .story-article p,
  .story-article li,
  .page-content-card p,
  .page-content-card li {
    font-size: 16px;
  }
  .story-next-card h3 {
    font-size: 24px;
  }
  .about-section { padding: 56px 0; }
  .about-grid { gap: 28px; }
  .about-copy > p:not(.eyebrow) { font-size: 16px; }
  .about-facts article { min-height: auto; padding: 18px; }
  .about-photo { min-height: 380px; }
  .about-photo img { width: min(92%, 320px); }
  .step-card {
    min-height: auto;
  }
  .step-card-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .step-visual {
    height: 116px;
    min-height: 116px;
  }
  .step-visual-diagnostics,
  .step-visual-plan,
  .step-visual-growth {
    grid-template-columns: 1fr;
  }
  .step-visual-kanban {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-section, .page-hero { padding: 34px 0 28px; }
  .not-found-hero { padding: 48px 0 54px; }
  .thankyou-hero {
    padding: 42px 0;
  }
  .thankyou-card {
    padding: 20px;
  }
  .thankyou-next {
    padding-top: 48px;
  }
  .story-list { grid-template-columns: 1fr; }
  .blog-list,
  .blog-list-related {
    grid-template-columns: 1fr;
  }
  .blog-hero,
  .blog-content-section {
    padding: 42px 0;
  }
  .blog-hero-media {
    min-height: 220px;
  }
  .blog-toc-card {
    padding: 18px;
  }
  .story-card h2 { min-height: 0; font-size: 23px; }
  .case-archive-visual {
    padding: 14px;
  }
  .archive-visual-main {
    grid-template-columns: 1fr;
  }
  .archive-funnel {
    display: none;
  }
  .hero-panel { padding: 18px; }
  .foundation-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .foundation-icon {
    min-height: 86px;
  }
  .foundation-channels .foundation-icon {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: stretch;
    gap: 8px;
  }
  .foundation-channels .foundation-icon span {
    display: grid;
    place-items: center;
    min-height: 0;
    padding: 0;
    border-radius: 50%;
    font-size: 9px;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
  }
  .foundation-channels .foundation-icon span::after {
    inset: 8px;
    width: auto;
    height: auto;
    transform: none;
    opacity: .16;
  }
  .foundation-head {
    align-items: start;
    flex-direction: column;
  }
  .cta-section { padding: 54px 0 58px; }
  .cta-frame { padding: 30px 18px 278px; }
  .cta-copy h2 { font-size: 34px; }
  .cta-copy p { font-size: 16px; }
  .cta-photo-cutout {
    bottom: -38px;
    width: min(270px, 82%);
  }
}
