:root {
  --black: #050505;
  --black-soft: #0b0d11;
  --ink: #111319;
  --muted: #606672;
  --line: #dfe3e8;
  --paper: #ffffff;
  --paper-soft: #f5f6f7;
  --blue: #145fcc;
  --blue-bright: #4ca8ff;
  --green: #79f24a;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--black);
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--paper);
}

.nav-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 28px;
}

.brand { display: inline-flex; width: max-content; align-items: center; }
.brand img { width: 172px; height: auto; }

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a,
.site-footer a { color: rgba(255, 255, 255, 0.76); }

.primary-nav a:hover,
.site-footer a:hover { color: var(--paper); }

.header-cta { justify-self: end; }
.nav-toggle { display: none; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 18px; font-size: 14px; }
.button-outline { border-color: rgba(255, 255, 255, 0.4); color: var(--paper); }
.button-outline:hover { border-color: var(--paper); background: rgba(255, 255, 255, 0.08); }
.button-light { background: var(--paper); color: var(--black); }
.button-light:hover { background: #eaf2ff; }
.button-blue { background: var(--blue); color: var(--paper); }
.button-blue:hover { background: #0f51b0; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link-light { color: var(--paper); text-decoration-color: rgba(255, 255, 255, 0.38); }
.text-link:hover { text-decoration-color: currentColor; }

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 92px;
  background:
    radial-gradient(circle at 82% 28%, rgba(47, 125, 255, 0.24), transparent 33%),
    linear-gradient(135deg, #030303 0%, #070a10 55%, #07152a 100%);
  color: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.8fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #175fd4;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light { color: #7fc1ff; }

h1, h2, h3 {
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  text-wrap: balance;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.5rem, 6.25vw, 5.55rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.hero-intro {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 34px; }

.partner-row { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.google-partner { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 800; }
.google-partner img { width: 24px; }
.microsoft-partner { width: 126px; height: auto; }

.hero-proof {
  position: relative;
  width: 100%;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(17, 26, 42, 0.88), rgba(5, 8, 14, 0.94));
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.48);
}

.hero-proof::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--green));
}

.proof-topline { display: flex; justify-content: space-between; gap: 16px; color: rgba(255, 255, 255, 0.58); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.proof-value { margin: 30px 0 2px; font-family: "Space Grotesk", Inter, sans-serif; font-size: clamp(3.5rem, 6vw, 5.25rem); font-weight: 700; letter-spacing: -0.065em; line-height: 1; }
.proof-label { max-width: 310px; margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 15px; }
.proof-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.13); }
.proof-metrics div { min-width: 0; }
.proof-metrics strong, .proof-metrics span { display: block; }
.proof-metrics strong { font-family: "Space Grotesk", Inter, sans-serif; font-size: 20px; }
.proof-metrics span { margin-top: 5px; color: rgba(255, 255, 255, 0.56); font-size: 12px; line-height: 1.35; }
.proof-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; color: #a9d6ff; font-size: 13px; font-weight: 800; }
.proof-link:hover { color: var(--paper); }

.credibility { border-bottom: 1px solid var(--line); background: var(--paper); }
.credibility-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.credibility-grid > div { min-width: 0; padding: 28px 24px; border-left: 1px solid var(--line); }
.credibility-grid > div:last-child { border-right: 1px solid var(--line); }
.credibility strong, .credibility span { display: block; }
.credibility strong { font-family: "Space Grotesk", Inter, sans-serif; font-size: 17px; }
.credibility span { margin-top: 3px; color: var(--muted); font-size: 13px; }

.section { padding: 104px 0; }
.section-light { background: var(--paper); }
.section-heading { max-width: 740px; margin-bottom: 48px; }
.section-heading h2, .case-copy h2, .about-copy h2, .testimonial-grid h2, .contact-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr); gap: 72px; align-items: end; }
.split-heading > p { max-width: 530px; margin: 0 0 3px; color: var(--muted); font-size: 17px; }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.service-card { min-width: 0; min-height: 290px; padding: 30px 26px; background: var(--paper); }
.service-card + .service-card { border-left: 1px solid var(--line); }
.card-number { color: #8c929c; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; }
.service-card h3 { margin: 74px 0 13px; font-size: 22px; letter-spacing: -0.035em; line-height: 1.05; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.case-feature { position: relative; overflow: hidden; background: var(--black); color: var(--paper); }
.case-feature::after { content: ""; position: absolute; width: 500px; height: 500px; right: -180px; bottom: -280px; border-radius: 50%; background: rgba(47, 125, 255, 0.22); filter: blur(100px); }
.case-feature-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.8fr); gap: clamp(58px, 8vw, 112px); align-items: center; }
.case-copy h2 { max-width: 670px; }
.case-copy > p:not(.eyebrow) { max-width: 650px; margin: 24px 0 0; color: rgba(255, 255, 255, 0.7); font-size: 17px; }
.case-copy .button { margin-top: 34px; }

.case-metrics { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius-lg); overflow: hidden; background: rgba(255, 255, 255, 0.04); }
.metric { min-height: 146px; padding: 26px; }
.metric:nth-child(2) { border-left: 1px solid rgba(255, 255, 255, 0.14); }
.metric-primary { grid-column: 1 / -1; min-height: 190px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.metric strong, .metric span { display: block; }
.metric strong { font-family: "Space Grotesk", Inter, sans-serif; font-size: 38px; letter-spacing: -0.05em; line-height: 1; }
.metric-primary strong { font-size: clamp(3.2rem, 6vw, 5rem); }
.metric span { margin-top: 10px; color: rgba(255, 255, 255, 0.6); font-size: 13px; }
.case-metrics > p { grid-column: 1 / -1; margin: 0; padding: 19px 26px; border-top: 1px solid rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.55); font-size: 12px; }
.case-secondary-card { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(310px, .65fr) auto; gap: 36px; align-items: center; margin-top: 66px; padding: 30px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.055); }
.case-secondary-card h3 { max-width: 680px; margin: 0; font-size: clamp(1.8rem, 3vw, 2.75rem); letter-spacing: -.045em; line-height: 1.02; }
.case-secondary-card > div > p:not(.eyebrow) { max-width: 720px; margin: 16px 0 0; color: rgba(255, 255, 255, .68); font-size: 15px; }
.case-secondary-card dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border: 1px solid rgba(255, 255, 255, .13); border-radius: 12px; overflow: hidden; }
.case-secondary-card dl > div { min-width: 0; padding: 18px; }
.case-secondary-card dl > div + div { border-left: 1px solid rgba(255, 255, 255, .13); }
.case-secondary-card dt { min-height: 34px; color: rgba(255, 255, 255, .55); font-size: 12px; line-height: 1.35; }
.case-secondary-card dd { margin: 12px 0 0; font-family: "Space Grotesk", Inter, sans-serif; font-size: 25px; font-weight: 700; letter-spacing: -.035em; }
.case-secondary-card .button { white-space: nowrap; }

.about-grid { display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.15fr); gap: clamp(60px, 9vw, 128px); align-items: center; }
.about-photo-wrap { position: relative; width: min(100%, 420px); }
.about-photo-wrap > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; border-radius: var(--radius-lg); filter: saturate(0.86); }
.about-caption { position: absolute; left: 24px; right: -32px; bottom: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border: 1px solid rgba(255, 255, 255, 0.34); border-radius: 12px; background: rgba(5, 5, 5, 0.9); color: var(--paper); box-shadow: var(--shadow); }
.about-caption strong, .about-caption span { display: block; }
.about-caption span { color: rgba(255, 255, 255, 0.65); font-size: 12px; text-align: right; }
.about-copy { max-width: 670px; }
.about-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 18px; }
.plain-checks { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.plain-checks li { position: relative; padding-left: 28px; font-weight: 700; }
.plain-checks li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 13px; height: 2px; background: var(--blue); }

.testimonial-section { background: var(--paper-soft); }
.testimonial-grid { display: grid; grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr); gap: clamp(52px, 8vw, 112px); align-items: start; }
.testimonial-grid h2 { font-size: clamp(2.2rem, 3.7vw, 3.55rem); }
.testimonial-card { margin: 0; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06); }
.testimonial-card blockquote { margin: 0; }
.testimonial-card blockquote p { margin: 0; font-family: "Space Grotesk", Inter, sans-serif; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.42; letter-spacing: -0.025em; }
.testimonial-card blockquote p + p { margin-top: 20px; }
.testimonial-card figcaption { display: flex; gap: 10px; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); }
.testimonial-card figcaption strong, .testimonial-card figcaption span { display: block; }
.testimonial-card figcaption span { color: var(--muted); }

.process-section { background: var(--paper); }
.process-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; counter-reset: steps; }
.process-list li { min-width: 0; display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 20px; padding: 34px 34px 0 0; }
.process-list li + li { padding-left: 34px; border-left: 1px solid var(--line); }
.step-number { display: grid; place-items: center; width: 42px; height: 42px; border: 2px solid var(--black); border-radius: 50%; font-weight: 800; line-height: 1; }
.process-list h3 { margin: 4px 0 10px; font-size: 21px; line-height: 1.15; }
.process-list p { max-width: 300px; margin: 0; color: var(--muted); font-size: 15px; }

.contact-section { background: linear-gradient(135deg, #050505, #071326); color: var(--paper); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1fr); gap: clamp(54px, 8vw, 110px); align-items: start; }
.contact-copy { max-width: 560px; }
.contact-copy > p:not(.eyebrow) { margin: 26px 0 0; color: rgba(255, 255, 255, 0.7); font-size: 18px; }
.contact-alternative { font-size: 14px !important; }
.contact-alternative a { color: var(--paper); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

.review-form { padding: 32px; border-radius: var(--radius-lg); background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cfd4dc; border-radius: var(--radius-sm); background: var(--paper); color: var(--ink); }
.field input, .field select { min-height: 50px; padding: 0 13px; }
.field textarea { min-height: 112px; resize: vertical; padding: 11px 13px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47, 125, 255, 0.16); }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.form-note a { color: #145dcc; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

.site-footer { padding: 64px 0 30px; background: var(--black); color: var(--paper); }
.footer-grid { display: grid; grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(140px, 0.65fr)); gap: 48px; }
.footer-brand p { max-width: 390px; margin: 16px 0 0; color: rgba(255, 255, 255, 0.58); font-size: 14px; }
.site-footer h2 { margin: 0 0 16px; font: 800 13px/1.2 Inter, sans-serif; }
.site-footer a { display: block; width: max-content; max-width: 100%; margin-bottom: 9px; font-size: 13px; overflow-wrap: anywhere; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.62); font-size: 12px; }

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: none;
  width: min(520px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: #0a0a0a;
  color: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.cookie-banner p { margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 13px; line-height: 1.5; }
.cookie-banner a { color: var(--paper); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; margin-top: 14px; }
.cookie-btn { min-height: 42px; flex: 1; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 7px; background: transparent; color: var(--paper); font-size: 13px; font-weight: 800; cursor: pointer; }
.cookie-btn.primary { border-color: var(--paper); background: var(--paper); color: var(--black); }

@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: minmax(150px, 1fr) auto minmax(205px, 1fr); gap: 18px; }
  .primary-nav { gap: 22px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr); gap: 42px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .service-card:nth-child(4) { border-top: 1px solid var(--line); }
  .case-feature-grid { grid-template-columns: 1fr 420px; gap: 50px; }
}

@media (max-width: 900px) {
  .site-header.nav-open { background: rgba(5, 5, 5, 0.98); }
  .nav-shell { position: relative; grid-template-columns: 1fr auto; min-height: 72px; }
  .brand img { width: 158px; }
  .nav-toggle { display: inline-flex; min-width: 68px; min-height: 44px; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.38); border-radius: 7px; background: transparent; color: var(--paper); font-size: 14px; font-weight: 800; cursor: pointer; }
  .primary-nav { display: none; position: absolute; left: -24px; right: -24px; top: 72px; padding: 18px 24px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.15); background: rgba(5, 5, 5, 0.98); }
  .site-header.nav-open .primary-nav { display: grid; gap: 0; }
  .primary-nav a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .header-cta { display: none; }
  .hero { min-height: 0; padding: 128px 0 76px; }
  .hero-grid, .case-feature-grid, .about-grid, .testimonial-grid, .contact-grid, .split-heading { grid-template-columns: 1fr; }
  .hero-grid { gap: 54px; }
  .hero-copy { max-width: 760px; }
  .hero-proof { max-width: 640px; }
  .split-heading { gap: 24px; }
  .case-feature-grid, .about-grid, .testimonial-grid, .contact-grid { gap: 54px; }
  .case-metrics { max-width: 620px; }
  .about-photo-wrap { width: min(100%, 380px); }
  .about-caption { right: -22px; }
  .review-form { max-width: 680px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 32px, 1180px); }
  .primary-nav { left: -16px; right: -16px; }
  .section { padding: 76px 0; }
  .hero { padding-top: 116px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); line-height: 0.97; }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; justify-content: space-between; }
  .partner-row { gap: 26px; }
  .hero-proof { padding: 24px; }
  .credibility-grid { grid-template-columns: 1fr 1fr; }
  .credibility-grid > div:nth-child(3) { border-top: 1px solid var(--line); }
  .credibility-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card + .service-card { border-left: 0; border-top: 1px solid var(--line); }
  .service-card h3 { margin-top: 38px; }
  .case-metrics { grid-template-columns: 1fr; }
  .metric-primary, .metric { grid-column: auto; min-height: 130px; }
  .metric:nth-child(2) { border-left: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .metric-primary { min-height: 160px; }
  .case-metrics > p { grid-column: auto; }
  .about-caption { position: static; margin: -22px 14px 0; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { padding: 28px 0; }
  .process-list li + li { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .process-list p { max-width: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .review-form { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  .hero { padding-bottom: 60px; }
  .hero h1 { font-size: 2.65rem; }
  .proof-topline { flex-direction: column; gap: 4px; }
  .proof-value { margin-top: 22px; font-size: 3.2rem; }
  .proof-metrics { gap: 8px; }
  .proof-metrics strong { font-size: 17px; }
  .proof-metrics span { font-size: 12px; }
  .credibility-grid { grid-template-columns: 1fr; }
  .credibility-grid > div { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .credibility-grid > div:first-child { border-top: 0; }
  .partner-row { align-items: flex-start; flex-direction: column; gap: 16px; }
  .cookie-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.study-hero {
  padding: 132px 0 104px;
  background:
    radial-gradient(circle at 78% 34%, rgba(47, 125, 255, 0.22), transparent 29%),
    linear-gradient(135deg, #030303, #071326);
  color: var(--paper);
}

.back-link {
  display: inline-flex;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.back-link:hover { color: var(--paper); }

.study-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.62fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: end;
}

.study-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3rem, 5.45vw, 5.25rem);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.study-intro {
  max-width: 790px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
}

.study-summary {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.study-summary-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.study-summary dl { margin: 0; }
.study-summary dl > div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 12px 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.study-summary dt { color: rgba(255, 255, 255, 0.58); font-size: 12px; }
.study-summary dd { margin: 0; font-family: "Space Grotesk", Inter, sans-serif; font-size: 18px; font-weight: 700; text-align: right; }
.study-summary > p:last-child { margin: 18px 0 0; color: #8dcaff; font-size: 12px; font-weight: 800; }

.study-section { padding: 96px 0; background: var(--paper); }
.study-narrow { max-width: 1040px; }
.study-heading { max-width: 760px; margin-bottom: 42px; }
.study-heading h2, .pmax-grid h2, .measurement-grid h2, .study-cta h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.25vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.prose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.prose-grid p { margin: 0; color: var(--muted); font-size: 18px; }

.change-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 58px 0 0; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; list-style: none; }
.change-list li { min-height: 126px; display: grid; grid-template-columns: 44px minmax(0, 1fr); align-items: start; gap: 18px; padding: 26px; }
.change-list li:nth-child(even) { border-left: 1px solid var(--line); }
.change-list li:nth-child(n+3) { border-top: 1px solid var(--line); }
.change-list span { color: #7d8490; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; }
.change-list strong { font-family: "Space Grotesk", Inter, sans-serif; font-size: 19px; line-height: 1.25; }

.study-results-section { background: var(--paper-soft); }
.table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.table-wrap:focus-visible { outline-offset: 5px; }
.results-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.results-table th, .results-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: right; vertical-align: middle; }
.results-table thead th { background: var(--black); color: var(--paper); font-size: 12px; font-weight: 800; }
.results-table th:first-child, .results-table td:first-child { text-align: left; }
.results-table tbody th { font-size: 14px; }
.results-table tbody td { color: #333944; font-size: 14px; font-variant-numeric: tabular-nums; }
.results-table tbody tr:last-child th, .results-table tbody tr:last-child td { border-bottom: 0; }
.results-table .positive { color: #176e31; font-weight: 800; }

.result-explanation { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 28px; }
.result-explanation > div { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.result-explanation h3 { margin: 0 0 10px; font-size: 20px; }
.result-explanation p { margin: 0; color: var(--muted); font-size: 15px; }

.pmax-section { background: var(--black); color: var(--paper); }
.pmax-grid { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1fr); gap: 80px; align-items: center; }
.pmax-metrics { display: grid; grid-template-columns: 1.35fr 1fr 1fr; margin: 0; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius); overflow: hidden; }
.pmax-metrics > div { min-width: 0; padding: 26px 22px; }
.pmax-metrics > div + div { border-left: 1px solid rgba(255, 255, 255, 0.14); }
.pmax-metrics dt { color: rgba(255, 255, 255, 0.54); font-size: 12px; line-height: 1.35; }
.pmax-metrics dd { margin: 14px 0 0; font-family: "Space Grotesk", Inter, sans-serif; font-size: clamp(1.55rem, 2.8vw, 2.35rem); font-weight: 700; letter-spacing: -0.045em; line-height: 1; overflow-wrap: anywhere; }

.study-testimonial { background: var(--paper); }
.study-testimonial figure { margin: 0; padding-left: 46px; border-left: 5px solid var(--blue); }
.study-testimonial blockquote { margin: 0; }
.study-testimonial blockquote p { max-width: 940px; margin: 0; font-family: "Space Grotesk", Inter, sans-serif; font-size: clamp(1.65rem, 3.15vw, 2.65rem); letter-spacing: -0.035em; line-height: 1.28; }
.study-testimonial blockquote p + p { margin-top: 24px; }
.study-testimonial figcaption { display: flex; gap: 10px; margin-top: 34px; }
.study-testimonial figcaption strong, .study-testimonial figcaption span { display: block; }
.study-testimonial figcaption span { color: var(--muted); }

.measurement-section { border-top: 1px solid var(--line); background: var(--paper-soft); }
.measurement-grid { display: grid; grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1fr); gap: 76px; align-items: start; }
.measurement-grid h2 { font-size: clamp(2.1rem, 3.4vw, 3.2rem); }
.measurement-grid > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.study-cta { padding: 84px 0; background: linear-gradient(135deg, #06152d, #0b3971); color: var(--paper); }
.study-cta-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 64px; align-items: end; }
.study-cta h2 { max-width: 780px; }
.study-cta p:not(.eyebrow) { max-width: 680px; margin: 22px 0 0; color: rgba(255, 255, 255, 0.72); font-size: 17px; }
.study-cta-actions { display: grid; justify-items: stretch; gap: 18px; min-width: 300px; }
.study-cta-actions .text-link { justify-content: center; font-size: 13px; }

@media (max-width: 960px) {
  .study-hero-grid, .pmax-grid, .measurement-grid, .study-cta-grid { grid-template-columns: 1fr; }
  .study-summary { max-width: 600px; }
  .pmax-grid, .measurement-grid, .study-cta-grid { gap: 44px; }
  .pmax-metrics { max-width: 720px; }
  .study-cta-actions { min-width: 0; max-width: 420px; }
  .case-secondary-card { grid-template-columns: 1fr; align-items: start; }
  .case-secondary-card dl { max-width: 520px; }
  .case-secondary-card .button { width: fit-content; }
}

@media (max-width: 720px) {
  .study-hero { padding: 112px 0 72px; }
  .back-link { margin-bottom: 38px; }
  .study-hero h1 { font-size: clamp(2.6rem, 12.5vw, 4rem); }
  .study-intro { font-size: 17px; }
  .study-section { padding: 72px 0; }
  .prose-grid, .change-list, .result-explanation { grid-template-columns: 1fr; }
  .prose-grid { gap: 20px; }
  .change-list li:nth-child(even) { border-left: 0; }
  .change-list li + li { border-top: 1px solid var(--line); }
  .pmax-metrics { grid-template-columns: 1fr; }
  .pmax-metrics > div + div { border-top: 1px solid rgba(255, 255, 255, 0.14); border-left: 0; }
  .study-testimonial figure { padding-left: 24px; }
  .study-cta { padding: 72px 0; }
  .study-cta-actions { max-width: none; }
  .case-secondary-card { margin-top: 48px; padding: 24px 22px; }
  .case-secondary-card dl { grid-template-columns: 1fr; width: 100%; }
  .case-secondary-card dl > div + div { border-top: 1px solid rgba(255, 255, 255, .13); border-left: 0; }
  .case-secondary-card dt { min-height: 0; }
  .case-secondary-card .button { width: 100%; white-space: normal; }
}

.simple-header { background: var(--black); }
.simple-header .nav-shell { grid-template-columns: 1fr; }
.thanks-main { min-height: 100vh; display: grid; place-items: center; padding: 130px 0 70px; background: radial-gradient(circle at 75% 28%, rgba(47, 125, 255, 0.24), transparent 30%), linear-gradient(135deg, #030303, #071326); color: var(--paper); }
.thanks-card { max-width: 820px; }
.thanks-card h1 { max-width: 760px; margin: 0; font-size: clamp(3rem, 6vw, 5.4rem); line-height: 0.96; letter-spacing: -0.065em; }
.thanks-card > p:not(.eyebrow) { max-width: 680px; margin: 28px 0 0; color: rgba(255, 255, 255, 0.7); font-size: 18px; }
.thanks-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 36px; }
@media (max-width: 620px) { .thanks-actions { align-items: stretch; flex-direction: column; } .thanks-actions .text-link { justify-content: center; } }

/* Merchant Center suspension recovery */
.suspension-feature {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 30%, rgba(76, 168, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #061326, #0a3264);
  color: var(--paper);
}

.suspension-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.suspension-home-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: clamp(56px, 9vw, 124px);
  align-items: center;
}

.suspension-home-copy h2,
.suspension-section-heading h2,
.diagnosis-intro h2,
.deliverables-grid h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.7vw, 4.45rem);
  letter-spacing: -.058em;
  line-height: .97;
}

.suspension-home-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}

.suspension-home-copy .suspension-service-note {
  margin-top: 18px;
  color: #8dcaff;
  font-size: 13px;
  font-weight: 800;
}

.suspension-home-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 34px; }

.suspension-evidence-preview {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  background: rgba(2,6,12,.68);
  box-shadow: 0 36px 90px rgba(0,0,0,.4);
}

.suspension-evidence-preview > a { display: block; color: inherit; text-decoration: none; }
.suspension-evidence-preview .outcome-card-label { display: block; padding: 8px 10px 14px; color: rgba(255,255,255,.58); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.suspension-evidence-image { display: block; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; background: #fff; }
.suspension-evidence-image img { display: block; width: 100%; height: auto; transition: transform .24s ease; }
.suspension-evidence-preview figcaption { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 10px 8px; }
.suspension-evidence-preview figcaption strong { font-family: "Space Grotesk", Inter, sans-serif; font-size: 15px; line-height: 1.25; }
.suspension-evidence-preview figcaption span { flex: 0 0 auto; color: #8dcaff; font-size: 12px; font-weight: 800; }
.suspension-evidence-preview a:hover .suspension-evidence-image img { transform: scale(1.015); }
.suspension-evidence-preview a:focus-visible { outline: 3px solid #8dcaff; outline-offset: 5px; border-radius: 10px; }

.suspension-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 100px;
  background:
    radial-gradient(circle at 82% 32%, rgba(47,125,255,.29), transparent 31%),
    linear-gradient(135deg, #020304, #061326 58%, #092551);
  color: var(--paper);
}

.suspension-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 95%);
}

.suspension-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .58fr);
  gap: clamp(58px, 8vw, 116px);
  align-items: center;
}

.suspension-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3.3rem, 6.1vw, 5.65rem);
  letter-spacing: -.067em;
  line-height: .94;
}

.suspension-hero-copy > p:not(.eyebrow):not(.suspension-hero-note):not(.suspension-scope-note) {
  max-width: 730px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 19px;
}

.suspension-scope-note {
  max-width: 720px;
  margin: 18px 0 0;
  color: #9bcfff;
  font-size: 13px;
  font-weight: 700;
}

.suspension-hero-note {
  max-width: 710px;
  margin: 30px 0 0;
  padding-left: 18px;
  border-left: 3px solid #79f24a;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.review-warning { border-bottom: 1px solid var(--line); background: #e9f3ff; }
.review-warning-grid { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 54px; align-items: center; padding-top: 28px; padding-bottom: 28px; }
.review-warning .eyebrow { margin: 0; }
.review-warning p:last-child { max-width: 820px; margin: 0; color: #334258; font-weight: 600; }

.suspension-section { padding: 104px 0; }
.suspension-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .7fr); gap: clamp(56px, 8vw, 110px); align-items: end; margin-bottom: 54px; }
.suspension-section-heading > p { margin: 0 0 3px; color: var(--muted); font-size: 17px; }
.compact-heading { margin-bottom: 44px; }

.evidence-section { background: var(--paper-soft); }
.review-evidence { margin: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); box-shadow: 0 22px 65px rgba(14,29,52,.09); }
.review-evidence > a { position: relative; display: block; border-bottom: 1px solid var(--line); background: #fff; }
.review-evidence > a:hover .evidence-open-label { background: var(--black); }
.review-evidence > a:focus-visible { outline: 0; box-shadow: inset 0 0 0 4px var(--blue); }
.review-evidence > a:focus-visible .evidence-open-label { background: var(--blue); }
.review-evidence img { width: 100%; height: auto; }
.evidence-open-label { position: absolute; right: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border-radius: 7px; background: rgba(5,5,5,.88); color: #fff; font-size: 12px; font-weight: 800; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.review-evidence figcaption { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr); gap: 40px; padding: 24px 28px; }
.review-evidence figcaption span { color: #343944; font-size: 14px; }
.review-evidence figcaption strong { color: var(--muted); font-size: 12px; line-height: 1.6; }

.diagnosis-section { background: var(--black); color: var(--paper); }
.diagnosis-grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(62px, 9vw, 130px); align-items: start; }
.diagnosis-intro { position: sticky; top: 32px; }
.diagnosis-intro h2 { font-size: clamp(2.6rem, 4.4vw, 4.1rem); }
.diagnosis-intro > p:not(.eyebrow) { margin: 26px 0 0; color: rgba(255,255,255,.65); font-size: 17px; }
.diagnosis-list { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); overflow: hidden; list-style: none; }
.diagnosis-list li { min-width: 0; min-height: 178px; display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 14px; padding: 26px 22px; }
.diagnosis-list li:nth-child(even) { border-left: 1px solid rgba(255,255,255,.14); }
.diagnosis-list li:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.14); }
.diagnosis-list li > span { color: #7fc1ff; font-size: 12px; font-weight: 800; }
.diagnosis-list strong { font-family: "Space Grotesk", Inter, sans-serif; font-size: 19px; }
.diagnosis-list p { margin: 9px 0 0; color: rgba(255,255,255,.57); font-size: 14px; }

.recovery-process-section { background: var(--paper); }
.recovery-steps { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); margin: 0; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; list-style: none; }
.recovery-steps li { min-width: 0; min-height: 250px; padding: 26px 22px; }
.recovery-steps li + li { border-left: 1px solid var(--line); }
.recovery-steps li > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: #e9f3ff; color: #0c56bd; font-size: 13px; font-weight: 800; }
.recovery-steps h3 { margin: 52px 0 10px; font-size: 21px; }
.recovery-steps p { margin: 0; color: var(--muted); font-size: 14px; }

.deliverables-section { background: var(--paper-soft); }
.deliverables-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(370px, .68fr); gap: clamp(60px, 9vw, 126px); align-items: center; }
.deliverables-grid h2 { max-width: 720px; }
.deliverables-list { display: grid; gap: 0; margin: 40px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.deliverables-list li { position: relative; padding: 16px 0 16px 34px; border-bottom: 1px solid var(--line); font-weight: 700; }
.deliverables-list li::before { content: ""; position: absolute; left: 2px; top: 1.55em; width: 15px; height: 2px; background: var(--blue); }
.eligibility-card { padding: 34px; border-radius: var(--radius-lg); background: linear-gradient(145deg, #050505, #0b203f); color: var(--paper); box-shadow: var(--shadow); }
.eligibility-card h3 { margin: 0; font-size: 30px; letter-spacing: -.045em; line-height: 1.05; }
.eligibility-card > p:not(.eyebrow) { margin: 22px 0 0; color: rgba(255,255,255,.64); font-size: 15px; }
.eligibility-card > p:last-child { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.52); font-size: 13px; }

.suspension-testimonial { background: var(--paper); }
.suspension-testimonial > .shell > .eyebrow { margin-bottom: 32px; }

.faq-section { background: var(--paper-soft); }
.faq-grid { display: grid; grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr); gap: clamp(60px, 9vw, 130px); align-items: start; }
.faq-heading { position: sticky; top: 32px; }
.faq-heading h2 { font-size: clamp(2.4rem, 4vw, 3.75rem); }
.faq-list { border-top: 1px solid #cfd5dd; }
.faq-list details { border-bottom: 1px solid #cfd5dd; }
.faq-list summary { position: relative; padding: 23px 46px 23px 0; font-family: "Space Grotesk", Inter, sans-serif; font-size: 19px; font-weight: 700; line-height: 1.3; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; color: var(--blue); font: 500 28px/1 "Space Grotesk", sans-serif; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -2px 0 24px; padding-right: 40px; color: var(--muted); font-size: 15px; }

.assessment-trust-list { display: grid; gap: 10px; margin: 30px 0 0; padding: 0; list-style: none; }
.assessment-trust-list li { position: relative; padding-left: 28px; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 700; }
.assessment-trust-list li::before { content: "✓"; position: absolute; left: 0; top: -.05em; color: var(--green); font-weight: 800; }
.form-required-note { margin: 0 0 22px; padding: 11px 13px; border-radius: 7px; background: #eef4fc; color: #4d5664; font-size: 13px; }
.field-help { margin: -1px 0 9px; color: #5e6672; font-size: 12px; line-height: 1.5; }
.optional-label { color: #626a75; font-weight: 500; }

@media (max-width: 1080px) {
  .suspension-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(310px, .54fr); gap: 48px; }
  .recovery-steps { grid-template-columns: repeat(3, 1fr); }
  .recovery-steps li:nth-child(4) { border-left: 0; }
  .recovery-steps li:nth-child(n+4) { border-top: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .suspension-home-grid,
  .suspension-hero-grid,
  .suspension-section-heading,
  .diagnosis-grid,
  .deliverables-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .suspension-home-grid,
  .suspension-hero-grid,
  .diagnosis-grid,
  .deliverables-grid,
  .faq-grid { gap: 52px; }
  .suspension-evidence-preview { width: 100%; max-width: 600px; }
  .suspension-section-heading { gap: 22px; }
  .review-warning-grid { grid-template-columns: 230px minmax(0,1fr); gap: 34px; }
  .diagnosis-intro,
  .faq-heading { position: static; }
}

@media (max-width: 720px) {
  .suspension-home-actions,
  .suspension-hero .hero-actions { align-items: stretch; flex-direction: column; }
  .suspension-home-actions .button,
  .suspension-home-actions .text-link,
  .suspension-hero .hero-actions .button,
  .suspension-hero .hero-actions .text-link { width: 100%; justify-content: space-between; }
  .suspension-hero { padding: 122px 0 76px; }
  .suspension-hero h1 { font-size: clamp(2.8rem, 13vw, 4.1rem); }
  .suspension-hero-copy > p:not(.eyebrow):not(.suspension-hero-note):not(.suspension-scope-note) { font-size: 17px; }
  .review-warning-grid { grid-template-columns: 1fr; gap: 10px; padding-top: 24px; padding-bottom: 24px; }
  .suspension-section { padding: 76px 0; }
  .review-evidence > a { overflow: hidden; }
  .review-evidence img { width: 180%; max-width: none; transform: translateX(-22%); }
  .evidence-open-label { right: 12px; bottom: 12px; }
  .review-evidence figcaption { grid-template-columns: 1fr; gap: 12px; padding: 21px; }
  .diagnosis-list { grid-template-columns: 1fr; }
  .diagnosis-list li { min-height: 0; }
  .diagnosis-list li:nth-child(even) { border-left: 0; }
  .diagnosis-list li + li { border-top: 1px solid rgba(255,255,255,.14); }
  .recovery-steps { grid-template-columns: 1fr; }
  .recovery-steps li { min-height: 0; }
  .recovery-steps li + li,
  .recovery-steps li:nth-child(4) { border-top: 1px solid var(--line); border-left: 0; }
  .recovery-steps h3 { margin-top: 30px; }
  .eligibility-card { padding: 28px 24px; }
  .faq-list summary { font-size: 17px; }
  .faq-list details p { padding-right: 12px; }
  .suspension-evidence-preview figcaption { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 600px) {
  .suspension-hero h1 {
    font-size: clamp(2.4rem, 10.5vw, 2.65rem);
    letter-spacing: -.055em;
  }
}

/* Recovery case summaries */
.recovery-cases-section { background: var(--paper); }
.recovery-case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.recovery-case-card { display: flex; min-width: 0; flex-direction: column; padding: 30px 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-soft); }
.case-number { margin: 0 0 30px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .09em; }
.case-type { margin: 0 0 9px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.recovery-case-card h3 { min-height: 93px; margin: 0 0 25px; font-size: 24px; letter-spacing: -.035em; line-height: 1.14; }
.recovery-case-card dl { display: grid; gap: 0; margin: auto 0 0; }
.recovery-case-card dl > div { padding: 18px 0; border-top: 1px solid #d5dbe2; }
.recovery-case-card dt { margin: 0 0 6px; color: #3e4652; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.recovery-case-card dd { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.58; }
.recovery-case-card .case-outcome { margin: 4px -12px -12px; padding: 18px 12px 12px; border-top-color: #b7d6bf; border-radius: 0 0 12px 12px; background: #eaf6ed; }
.recovery-case-card .case-outcome dt { color: #176e31; }
.recovery-case-card .case-outcome dd { color: #23402b; font-weight: 700; }
.recovery-case-note { max-width: 780px; margin: 28px 0 0; color: var(--muted); font-size: 13px; }

/* Audit example lead magnet */
.audit-example-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #050505, #071a33 65%, #0b3971); color: var(--paper); }
.audit-example-section::after { content: ""; position: absolute; right: -140px; top: -190px; width: 520px; height: 520px; border-radius: 50%; background: rgba(76,168,255,.12); pointer-events: none; }
.audit-example-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1fr); gap: clamp(60px, 9vw, 126px); align-items: center; }
.audit-example-copy h2 { max-width: 680px; margin: 0; font-size: clamp(2.8rem, 5vw, 4.8rem); letter-spacing: -.06em; line-height: .96; }
.audit-example-copy > p:not(.eyebrow) { max-width: 650px; margin: 26px 0 0; color: rgba(255,255,255,.68); font-size: 17px; }
.audit-example-copy ul { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.audit-example-copy li { position: relative; padding-left: 28px; color: rgba(255,255,255,.84); font-size: 14px; font-weight: 700; }
.audit-example-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green); }
.audit-download-form { max-width: 620px; justify-self: end; }

/* Privacy policy */
.legal-hero { padding: 150px 0 78px; background: radial-gradient(circle at 82% 25%, rgba(47,125,255,.24), transparent 30%), linear-gradient(135deg, #030303, #071a33); color: var(--paper); }
.legal-hero-inner { max-width: 980px; }
.legal-hero h1 { margin: 0; font-size: clamp(3.5rem, 7vw, 6.6rem); letter-spacing: -.068em; line-height: .92; }
.legal-hero p:not(.eyebrow) { max-width: 720px; margin: 24px 0 0; color: rgba(255,255,255,.7); font-size: 19px; }
.legal-hero span { display: block; margin-top: 28px; color: #8dcaff; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.legal-content-section { padding: 96px 0 110px; background: var(--paper); }
.legal-layout { display: grid; grid-template-columns: minmax(270px, .55fr) minmax(0, 1fr); gap: clamp(60px, 9vw, 130px); align-items: start; }
.legal-summary { position: sticky; top: 32px; padding: 28px; border-radius: var(--radius); background: var(--paper-soft); }
.legal-summary h2 { margin: 0; font-size: 25px; letter-spacing: -.04em; line-height: 1.15; }
.legal-summary > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 14px; }
.legal-copy { max-width: 800px; }
.legal-copy h2 { margin: 46px 0 12px; font-size: 25px; letter-spacing: -.035em; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p, .legal-copy li { color: #4c5460; font-size: 16px; line-height: 1.75; }
.legal-copy p { margin: 0 0 15px; }
.legal-copy ul { margin: 4px 0 18px; padding-left: 22px; }
.legal-copy a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.thanks-small { max-width: 700px !important; margin-top: 26px !important; color: rgba(255,255,255,.48) !important; font-size: 12px !important; }

@media (max-width: 980px) {
  .recovery-case-grid { grid-template-columns: 1fr; }
  .recovery-case-card { max-width: 760px; }
  .recovery-case-card h3 { min-height: 0; }
  .audit-example-grid, .legal-layout { grid-template-columns: 1fr; }
  .audit-download-form { width: 100%; max-width: 680px; justify-self: start; }
  .legal-summary { position: static; max-width: 680px; }
}

@media (max-width: 720px) {
  .recovery-case-card { padding: 26px 22px; }
  .audit-example-grid { gap: 46px; }
  .audit-example-copy h2 { font-size: clamp(2.5rem, 11vw, 3.7rem); }
  .legal-hero { padding: 124px 0 68px; }
  .legal-hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .legal-content-section { padding: 72px 0 84px; }
  .legal-layout { gap: 48px; }
}
