:root {
  --action-red: #e30613;
  --action-red-dark: #bf0611;
  --anchor-navy: #0a1647;
  --anchor-navy-deep: #070f35;
  --core-blue: #283583;
  --highlight-blue: #009fe3;
  --ink: #0b1748;
  --muted: #6f6c90;
  --muted-strong: #4e5172;
  --surface: #fbfbff;
  --surface-cool: #f4f6fb;
  --line: #dde2ef;
  --line-dark: rgba(246, 248, 255, 0.18);
  --paper: #fffffd;
  --paper-tint: #f9fbff;
  --white-tint: #fbfdff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 24px 70px rgba(10, 22, 71, 0.11);
  --shadow-dark: 0 28px 80px rgba(1, 6, 29, 0.34);
  --font: "Poppins", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--white-tint);
  background: var(--action-red);
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  clip: auto;
  margin: 16px;
  padding: 12px 16px;
  color: var(--white-tint);
  background: var(--anchor-navy);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--white-tint);
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), padding 180ms var(--ease-out);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 15, 53, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-mark__logo {
  display: block;
  width: clamp(82px, 7vw, 104px);
  aspect-ratio: 80.1782 / 48.5714;
  height: auto;
  min-height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
}

.site-nav a,
.phone-link {
  color: rgba(251, 253, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.site-nav a:hover,
.phone-link:hover {
  color: var(--white-tint);
}

.site-nav a:focus-visible,
.phone-link:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible,
.wizard-steps button:focus-visible {
  outline: 3px solid rgba(0, 159, 227, 0.75);
  outline-offset: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  display: grid;
  gap: 2px;
  min-width: 78px;
  line-height: 1.18;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(251, 253, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0;
  background: var(--white-tint);
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out), color 160ms var(--ease-out), border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.button:active {
  transform: scale(0.97);
}

.button--small {
  min-height: 40px;
  padding: 11px 16px;
  font-size: 12px;
}

.button--red {
  color: var(--white-tint);
  background: var(--action-red);
  box-shadow: 0 14px 34px rgba(227, 6, 19, 0.28);
}

.button--red:hover {
  background: var(--action-red-dark);
}

.button--light {
  color: var(--anchor-navy);
  background: var(--white-tint);
}

.button--light:hover {
  background: #edf5ff;
}

.button--ghost-light {
  color: var(--white-tint);
  border-color: var(--line-dark);
  background: rgba(251, 253, 255, 0.07);
}

.button--ghost-light:hover {
  background: rgba(251, 253, 255, 0.13);
}

.button--navy {
  color: var(--white-tint);
  background: var(--anchor-navy);
}

.button--navy:hover {
  background: var(--core-blue);
}

.button--line {
  color: var(--anchor-navy);
  border-color: var(--line);
  background: var(--paper);
}

.button--line:hover {
  border-color: var(--anchor-navy);
}

.section-dark {
  color: var(--white-tint);
  background: var(--anchor-navy-deep);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(128px, 16vw, 190px) clamp(20px, 5vw, 80px) clamp(76px, 8vw, 110px);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(40, 53, 131, 0.4), transparent 34%),
    linear-gradient(90deg, rgba(7, 15, 53, 0.95) 0%, rgba(7, 15, 53, 0.82) 43%, rgba(7, 15, 53, 0.5) 100%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supergraphic {
  position: absolute;
  top: 3vh;
  right: -8vw;
  color: rgba(251, 253, 255, 0.055);
  font-size: clamp(440px, 62vw, 960px);
  font-weight: 900;
  line-height: 0.75;
  pointer-events: none;
}

.supergraphic--small {
  top: -15%;
  left: -5%;
  right: auto;
  font-size: clamp(280px, 38vw, 620px);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.52fr);
  align-items: end;
  gap: clamp(40px, 6vw, 98px);
  max-width: 1380px;
  margin: 0 auto;
}

.hero__copy,
.command-panel {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--action-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white-tint);
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
}

.hero__lead {
  max-width: 710px;
  margin: 34px 0 0;
  color: rgba(251, 253, 255, 0.74);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
}

.hero__lead strong {
  color: var(--white-tint);
}

.hero__actions,
.final-cta__actions,
.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.command-panel {
  align-self: stretch;
  min-height: 430px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(8, 17, 57, 0.74);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(10px);
}

.command-panel__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--white-tint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--action-red);
  box-shadow: 0 0 0 7px rgba(227, 6, 19, 0.18);
}

.command-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.command-panel div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.command-panel dt {
  color: rgba(251, 253, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.command-panel dd {
  margin: 0;
  color: var(--white-tint);
  font-size: 15px;
  font-weight: 700;
}

.command-panel p {
  margin: 36px 0 0;
  color: rgba(251, 253, 255, 0.68);
  line-height: 1.7;
}

.emergency-command {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--action-red);
}

.emergency-command a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 78px;
  padding: 16px clamp(18px, 3vw, 44px);
  color: var(--white-tint);
  transition: background-color 160ms var(--ease-out);
}

.emergency-command a + a {
  border-left: 1px solid rgba(251, 253, 255, 0.23);
}

.emergency-command a:hover {
  background: rgba(7, 15, 53, 0.16);
}

.emergency-command svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.emergency-command span {
  display: grid;
  gap: 2px;
  font-size: 13px;
}

.emergency-command strong {
  font-size: 15px;
}

.section {
  padding: clamp(82px, 10vw, 144px) clamp(20px, 5vw, 80px);
}

.section-intro {
  max-width: 980px;
  margin-bottom: clamp(42px, 6vw, 74px);
}

.section-intro--compact {
  max-width: 680px;
}

.section-intro h2,
.proof-copy h2,
.owner-card h2,
.recruiting-copy h2,
.report-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--anchor-navy);
  font-size: clamp(36px, 5.4vw, 78px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-intro p:not(.eyebrow),
.proof-copy p,
.owner-card p,
.recruiting-copy p,
.report-copy p {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.partner-section {
  background: var(--surface);
}

.audience-lanes {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 0.95fr;
  gap: 18px;
  max-width: 1380px;
}

.audience-lane {
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.audience-lane--wide {
  transform: translateY(42px);
  background: var(--paper-tint);
}

.audience-lane--dark {
  color: var(--white-tint);
  background: var(--anchor-navy);
}

.audience-lane span,
.service-pillar__head span,
.process-track span {
  color: var(--action-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.audience-lane h3 {
  margin: 80px 0 18px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.audience-lane p {
  color: var(--muted);
  line-height: 1.7;
}

.audience-lane--dark p {
  color: rgba(251, 253, 255, 0.68);
}

.audience-lane a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--action-red);
  font-weight: 900;
}

.service-system {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 94px);
  background: var(--paper);
}

.service-system__visual {
  position: relative;
}

.service-system__visual::before {
  content: "";
  position: absolute;
  inset: 8% -4% -7% 9%;
  border-radius: var(--radius-lg);
  background: var(--surface-cool);
  transform: rotate(-2deg);
}

.service-system__visual img {
  position: relative;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.service-pillars {
  display: grid;
  gap: 14px;
}

.service-pillar {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-pillar__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.service-pillar__head a {
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
}

.service-pillar h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
}

.service-pillar p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.process-section {
  background: var(--anchor-navy);
}

.process-section .section-intro h2 {
  color: var(--white-tint);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 1px;
  max-width: 1500px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-track li {
  min-height: 330px;
  padding: 30px;
  background: var(--anchor-navy-deep);
}

.process-track h3 {
  margin: 86px 0 14px;
  color: var(--white-tint);
  font-size: 25px;
}

.process-track p {
  margin: 0;
  color: rgba(251, 253, 255, 0.65);
  line-height: 1.65;
}

.proof-section {
  background: var(--surface-cool);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.62fr 0.78fr;
  align-items: end;
  gap: clamp(18px, 3vw, 34px);
}

.proof-copy {
  align-self: center;
}

.proof-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.proof-media img {
  width: 100%;
  height: clamp(360px, 52vw, 620px);
  object-fit: cover;
}

.proof-media--ceravogue {
  transform: translateY(52px);
}

.owner-section {
  background: var(--paper);
}

.owner-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.owner-card__portrait {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--anchor-navy);
  box-shadow: var(--shadow-soft);
}

.owner-card__portrait img {
  width: 100%;
  height: clamp(520px, 64vw, 720px);
  object-fit: cover;
  object-position: center 18%;
}

blockquote {
  margin: 32px 0 0;
  color: var(--anchor-navy);
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.22;
}

.owner-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.owner-facts span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--anchor-navy);
  background: var(--surface);
  font-size: 12px;
  font-weight: 800;
}

.certificates-section {
  background: var(--surface);
}

.certificate-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.certificate-strip img {
  width: 100%;
  height: clamp(210px, 28vw, 360px);
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.recruiting-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  color: var(--white-tint);
  background: var(--anchor-navy-deep);
  overflow: hidden;
}

.recruiting-section::before {
  content: "PROFI";
  position: absolute;
  left: -4vw;
  bottom: -4vw;
  color: rgba(251, 253, 255, 0.05);
  font-size: clamp(180px, 24vw, 420px);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.recruiting-media,
.recruiting-copy {
  position: relative;
  z-index: 1;
}

.recruiting-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.recruiting-media img {
  width: 100%;
  height: clamp(420px, 58vw, 640px);
  object-fit: cover;
}

.recruiting-copy h2,
.recruiting-copy p,
.final-cta h2 {
  color: var(--white-tint);
}

.recruiting-copy p {
  color: rgba(251, 253, 255, 0.7);
}

.report-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  background: var(--paper);
}

.damage-wizard {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.wizard-steps button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
  transition: transform 160ms var(--ease-out), color 160ms var(--ease-out), background-color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.wizard-steps button:active {
  transform: scale(0.97);
}

.wizard-steps button.is-active {
  color: var(--white-tint);
  border-color: var(--anchor-navy);
  background: var(--anchor-navy);
}

.wizard-panel {
  display: none;
}

.wizard-panel.is-active {
  display: grid;
  gap: 16px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--anchor-navy);
  font-size: 13px;
  font-weight: 800;
}

fieldset {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

legend {
  padding: 0 6px;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--anchor-navy);
  background: var(--paper);
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--highlight-blue);
  box-shadow: 0 0 0 4px rgba(0, 159, 227, 0.14);
}

textarea {
  resize: vertical;
}

.wizard-confirm {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.wizard-contact a {
  color: var(--action-red);
  font-weight: 900;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 12vw, 160px) clamp(20px, 5vw, 80px);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.final-cta h2 {
  max-width: 1000px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(210px, 0.55fr) minmax(180px, 0.45fr);
  gap: clamp(28px, 5vw, 76px);
  padding: 58px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper-tint);
}

.site-footer p,
.site-footer address {
  margin: 0;
  line-height: 1.7;
  font-style: normal;
}

.footer-brand p {
  max-width: 530px;
  margin-top: 24px;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: var(--anchor-navy);
  font-weight: 700;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.stub-page {
  min-height: 100vh;
  color: var(--anchor-navy);
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 159, 227, 0.12), transparent 32%),
    linear-gradient(135deg, var(--surface), var(--paper-tint));
}

.stub-page .brand-mark__logo {
  width: 108px;
}

.stub-shell {
  display: grid;
  align-content: center;
  gap: 24px;
  width: min(760px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 72px 0;
}

.stub-shell h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 86px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.stub-shell p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.stub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: flex !important;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 140;
    grid-column: 3;
    justify-self: end;
    border-color: rgba(251, 253, 255, 0.28);
    background: rgba(227, 6, 19, 0.92);
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: grid;
  }

  .site-header.is-open .site-nav {
    justify-content: stretch;
    gap: 0;
  }

  .site-header.is-open .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 18px;
  }

  .site-header.is-open .header-actions {
    align-items: stretch;
    margin-top: 10px;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero__grid,
  .service-system,
  .proof-grid,
  .owner-card,
  .recruiting-section,
  .report-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .command-panel {
    min-height: auto;
  }

  .audience-lanes {
    grid-template-columns: 1fr;
  }

  .audience-lane--wide {
    transform: none;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
  }

  .proof-media--ceravogue {
    transform: none;
  }
}

@media (max-width: 720px) {
  .phone-link {
    display: none;
  }

  .hero {
    min-height: 880px;
    padding-top: 118px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12.6vw, 50px);
    letter-spacing: -0.04em;
  }

  .hero__copy {
    max-width: min(100%, 330px);
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 10px;
    line-height: 1.5;
    white-space: normal;
  }

  .hero__lead {
    max-width: 320px;
    font-size: 17px;
  }

  .hero__actions,
  .final-cta__actions,
  .proof-actions,
  .wizard-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .command-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .emergency-command,
  .process-track,
  .certificate-strip {
    grid-template-columns: 1fr;
  }

  .emergency-command a + a {
    border-left: 0;
    border-top: 1px solid rgba(251, 253, 255, 0.23);
  }

  .audience-lane {
    min-height: 280px;
  }

  .audience-lane h3,
  .process-track h3 {
    margin-top: 52px;
  }

  .wizard-steps {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
