:root {
  --ink: #101827;
  --muted: #53637a;
  --line: #dbe4f0;
  --paper: #ffffff;
  --white: #ffffff;
  --navy: #101827;
  --blue: #3164e0;
  --blue-dark: #2556d6;
  --blue-soft: #edf4ff;
  --teal: #0f766e;
  --gold: #ffb84d;
  --sage: #14a765;
  --mint: #f5f8fc;
  --mint-soft: #f8fbff;
  --orange: #3164e0;
  --violet: #c190ff;
  --violet-soft: #f3ecff;
  --error: #9f2d2d;
  --success: #286449;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  --shadow-soft: 0 14px 38px rgba(15, 23, 42, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1100px, calc(100% - 48px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 226px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 33px;
  color: #344156;
  font-size: 15px;
  font-weight: 760;
}

.nav-menu.static {
  display: flex;
}

.nav-menu a {
  padding: 10px 0;
}

.nav-menu a:hover {
  color: var(--navy);
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 11px 17px !important;
  color: var(--white) !important;
  background: var(--blue);
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(49, 100, 224, 0.24);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid rgba(23, 26, 34, 0.14);
  border-radius: 999px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 74px);
  padding: 72px 0 70px;
  background:
    radial-gradient(circle at 22% 18%, rgba(49, 100, 224, 0.05), transparent 28%),
    linear-gradient(115deg, #f8fbff 0%, #f4f8fd 50%, #eef5fb 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 464px);
  align-items: start;
  gap: 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 40px;
  padding: 8px 14px;
  color: var(--blue);
  background: #edf4ff;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  font-size: 13px;
  text-transform: none;
}

.hero .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--blue);
  border-radius: 50%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 50px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-subtitle,
.section-heading p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 18px;
}

.hero-subtitle {
  max-width: 580px;
  margin-bottom: 30px;
  color: #34445d;
  font-size: 19px;
  font-weight: 520;
  line-height: 1.5;
}

.hero-proof {
  max-width: 580px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0 0 24px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  color: #172033;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.hero-proof span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--sage);
  border-radius: 50%;
}

.framework-badges {
  max-width: 660px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.framework-badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  color: #171a22;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 26, 34, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-assurance {
  max-width: 590px;
  margin: 0;
  color: #66748a;
  font-size: 15px;
  font-weight: 600;
}

.mobile-proof {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(49, 100, 224, 0.25);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(23, 26, 34, 0.14);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  gap: 12px;
  margin: 0;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(217, 210, 193, 0.9);
  border-radius: 8px;
}

.hero-metrics dt {
  font-size: 28px;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-panel {
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.brief-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px 14px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 7px;
  font-weight: 800;
}

.brief-header div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brief-header strong {
  color: var(--violet);
  font-size: 14px;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 100, 45, 0.22);
}

.brief-title {
  padding: 14px;
  margin-bottom: 10px;
  background: var(--violet-soft);
  border: 1px solid #decbff;
  border-radius: 7px;
}

.plan-progress {
  padding: 14px;
  margin-bottom: 10px;
  background: var(--violet-soft);
  border: 1px solid #decbff;
  border-radius: 7px;
}

.plan-progress div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.plan-progress span {
  color: #424a45;
  font-size: 14px;
  font-weight: 800;
}

.plan-progress strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.progress-track {
  height: 12px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--violet));
  border-radius: inherit;
}

.plan-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.plan-stats div {
  min-height: 84px;
  padding: 12px;
  background: #f8fbfa;
  border: 1px solid rgba(23, 26, 34, 0.08);
  border-radius: 7px;
}

.plan-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.plan-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.plan-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.plan-chips span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  color: var(--ink);
  background: #fff4ee;
  border: 1px solid rgba(255, 100, 45, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.brief-title p,
.brief-footer span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.brief-title p {
  margin-bottom: 6px;
}

.brief-title strong {
  display: block;
  font-size: 24px;
  line-height: 1.14;
}

.readiness-list {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.readiness-list div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  background: #f8fbfa;
  border: 1px solid rgba(23, 26, 34, 0.08);
  border-radius: 7px;
}

.readiness-list span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.readiness-list p {
  margin: 0;
  color: #424a45;
  font-size: 14px;
}

.brief-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.brief-footer div {
  padding: 11px;
  background: #fff4ee;
  border: 1px solid rgba(255, 100, 45, 0.2);
  border-radius: 7px;
}

.brief-footer strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.22;
}

.evidence-list ul,
.deliverables ul {
  margin: 0;
  padding-left: 20px;
}

.logo-strip {
  width: min(1216px, calc(100% - 36px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.logo-strip span {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 11px 14px;
  color: #171a22;
  background: var(--white);
  border: 1px solid rgba(23, 26, 34, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.logo-strip strong {
  font-weight: 900;
  line-height: 1.15;
}

.logo-strip small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.section {
  width: min(1216px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 720px;
}

.intro-grid,
.service-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.service-card,
.industry-grid div,
.framework-list article,
.faq-list details {
  background: var(--white);
  border: 1px solid rgba(23, 26, 34, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.intro-grid article,
.industry-grid div {
  padding: 28px;
}

.intro-grid p,
.service-card p,
.framework-list p,
.industry-grid p,
.timeline p,
.faq-list p {
  color: var(--muted);
}

.services,
.faq {
  width: 100%;
  max-width: none;
  padding: 92px max(18px, calc((100% - 1216px) / 2));
  background:
    linear-gradient(135deg, rgba(193, 144, 255, 0.14), rgba(255, 255, 255, 0) 36%),
    #f9f7ff;
  border-top: 1px solid rgba(23, 26, 34, 0.06);
  border-bottom: 1px solid rgba(23, 26, 34, 0.06);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 255px;
  padding: 28px;
  background: #ffffff;
  border-top: 4px solid var(--violet);
}

.service-card:nth-child(2n) {
  border-top-color: var(--orange);
}

.service-card:nth-child(3n) {
  border-top-color: var(--sage);
}

.card-number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.framework-list {
  display: grid;
  gap: 14px;
}

.framework-list article {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  padding: 26px;
}

.framework-title h3 {
  margin-bottom: 4px;
}

.framework-title span {
  color: var(--sage);
  font-weight: 800;
}

.process {
  border-top: 1px solid rgba(23, 26, 34, 0.06);
}

.timeline {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.timeline li {
  min-height: 250px;
  padding: 26px;
  background: var(--mint-soft);
  border: 1px solid rgba(23, 26, 34, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.timeline span {
  display: block;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding-top: 0;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.deliverables ul {
  padding: 28px 28px 28px 48px;
  background: var(--white);
  border: 1px solid rgba(23, 26, 34, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.deliverables li + li {
  margin-top: 12px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
  background: #ffffff;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.faq-list p {
  margin: 14px 0 0;
}

.contact-section {
  width: min(1216px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 98px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  gap: 54px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-notes {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-notes span {
  padding: 14px 16px;
  background: var(--mint-soft);
  border: 1px solid rgba(23, 26, 34, 0.08);
  border-radius: 7px;
  font-weight: 750;
}

.lead-form {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-lead-form {
  padding: 28px;
  align-self: start;
}

.form-kicker {
  margin: 0 0 8px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-form-title {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.12;
}

.compact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-lead-form .form-row {
  margin-bottom: 16px;
}

.hero-lead-form textarea {
  min-height: 88px;
}

.hero-lead-form .form-status {
  margin-top: 10px;
}

.hero-lead-form .form-status:empty {
  display: none;
}

.hero-lead-form .privacy-note {
  margin-top: 18px;
  color: #94a2b8;
  font-size: 12px;
  text-align: center;
}

.hero-lead-form label,
.hero-lead-form legend {
  margin-bottom: 7px;
  font-size: 13px;
}

.hero-lead-form input,
.hero-lead-form select,
.hero-lead-form textarea {
  min-height: 46px;
  padding: 11px 13px;
}

.form-intro {
  margin: 0 0 20px;
  color: #424a45;
  font-size: 15px;
  font-weight: 700;
}

.form-row,
fieldset {
  margin: 0 0 18px;
}

label,
legend {
  display: block;
  margin-bottom: 8px;
  color: #171a22;
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid #d5dfec;
  border-radius: 6px;
  font: inherit;
}

.field-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.field-heading legend {
  margin: 0;
}

.field-heading span {
  color: #91a0b7;
  font-size: 12px;
}

.framework-picker {
  margin-bottom: 16px;
}

.framework-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
}

.framework-options label {
  position: relative;
  margin: 0;
}

.framework-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  opacity: 0;
}

.framework-options span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  color: #172033;
  background: #f8fbff;
  border: 1px solid #d5dfec;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.framework-options input:checked + span {
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-color: #9bbaff;
  box-shadow: 0 0 0 3px rgba(49, 100, 224, 0.1);
}

textarea {
  min-height: 136px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.nav-toggle:focus-visible,
.framework-options input:focus-visible + span {
  outline: 3px solid rgba(49, 100, 224, 0.22);
  outline-offset: 2px;
}

fieldset {
  padding: 0;
  border: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkbox-grid label {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 10px;
  background: #f8fbfa;
  border: 1px solid #d7e6e1;
  border-radius: 6px;
}

.checkbox-grid input {
  width: 18px;
  min-height: 18px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-weight: 800;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

.privacy-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 44px max(18px, calc((100% - 1216px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  color: #f3f7f6;
  background: #171a22;
}

.legal-page {
  max-width: 900px;
}

.legal-page h1 {
  font-size: 64px;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
}

.site-footer img {
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 8px;
  filter: none;
}

.site-footer p {
  max-width: 680px;
  margin: 10px 0 0;
  color: #cad5d2;
}

.footer-links {
  display: flex;
  gap: 22px;
  align-items: start;
  font-weight: 800;
}

.fine-print {
  grid-column: 1 / -1;
  font-size: 13px !important;
}

@media (max-width: 980px) {
  .nav {
    min-height: 70px;
  }

  .brand img {
    width: 205px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-menu.static {
    position: static;
    display: flex;
    padding: 0;
    flex-direction: row;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 11px 8px;
  }

  .hero-inner,
  .contact-section,
  .proof {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 34px;
  }

  h1 {
    font-size: 48px;
  }

  h2,
  .legal-page h1 {
    font-size: 42px;
  }

  .hero-panel {
    max-width: 680px;
  }

  .intro-grid,
  .service-grid,
  .industry-grid,
  .timeline,
  .deliverables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .framework-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-copy {
    position: static;
  }

  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  h2,
  .legal-page h1 {
    font-size: 34px;
  }

  .hero-subtitle {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .framework-badges,
  .hero-proof {
    gap: 6px;
    margin-bottom: 16px;
  }

  .framework-badges span,
  .hero-proof span {
    min-height: 30px;
    padding: 5px 9px;
    font-size: 12px;
  }

  .hero-actions {
    margin-bottom: 14px;
  }

  .hero-actions .secondary,
  .hero-assurance {
    display: none;
  }

  .hero-proof,
  .hero-lead-form .privacy-note {
    display: none;
  }

  .mobile-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-width: 390px;
  }

  .mobile-proof span {
    min-height: 62px;
    padding: 10px 8px;
    color: #424a45;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(23, 26, 34, 0.1);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
  }

  .mobile-proof strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.1;
  }

  .hero-metrics,
  .intro-grid,
  .service-grid,
  .industry-grid,
  .timeline,
  .deliverables,
  .checkbox-grid,
  .logo-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .lead-form {
    padding: 20px;
  }

  .compact-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .logo-strip span {
    flex-basis: calc(50% - 5px);
  }

  .control-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .services,
  .faq,
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
