:root {
  --brand-navy:#082E65;
  --brand-navy-dark:#05234D;
  --brand-navy-soft:#EDF3FA;
  --brand-orange:#F4611F;
  --brand-orange-dark:#D94D12;
  --brand-orange-soft:#FFF1EA;
  --text-primary:#242424;
  --text-secondary:#5B626B;
  --text-muted:#7C848E;
  --surface-white:#FFFFFF;
  --surface-soft:#F6F7F9;
  --surface-muted:#EEF1F4;
  --border-subtle:#E3E7EC;
  --success:#257A4A;
  --warning:#A96316;
  --error:#B93434;
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --content-width:1200px;
  --reading-width:760px;
  --motion-fast:140ms;
  --motion-normal:220ms;
  --motion-slow:400ms;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:120px;
}

body {
  margin:0;
  color:var(--text-primary);
  background:var(--surface-white);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:16px;
  line-height:1.65;
}

button,input,textarea,select {
  font:inherit;
}

button,a,input,textarea {
  -webkit-tap-highlight-color:transparent;
}

button,a {
  touch-action:manipulation;
}

button {
  cursor:pointer;
}

a {
  color:var(--brand-navy);
}

a:hover {
  text-decoration-thickness:2px;
}

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

svg {
  width:28px;
  height:28px;
}

h1,h2,h3,p,figure {
  margin:0;
}

h1,h2,h3 {
  color:var(--brand-navy);
  line-height:1.13;
  letter-spacing:-.04em;
}

h1 {
  font-size:clamp(2.65rem,4.25vw,3.8rem);
  font-weight:720;
  line-height:1.12;
}

h2 {
  font-size:clamp(2rem,3.7vw,3rem);
  font-weight:680;
}

h3 {
  font-size:1.45rem;
  font-weight:650;
  letter-spacing:-.025em;
}

p+p {
  margin-top:1rem;
}

p {
  color:var(--text-secondary);
}

:focus-visible {
  outline:3px solid var(--brand-navy);
  outline-offset:5px;
}

section[id] {
  scroll-margin-top:20px;
}

.container {
  max-width:calc(var(--content-width) + 48px);
  padding-inline:24px;
  margin-inline:auto;
}

.section {
  padding-block:100px;
}

.eyebrow {
  font-size:.75rem;
  letter-spacing:.14em;
  font-weight:700;
  color:var(--brand-navy);
  margin-bottom:23px;
}

.button {
  min-height:50px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  padding:13px 21px;
  border:1px solid transparent;
  border-radius:var(--radius-sm);
  font-size:.9rem;
  font-weight:650;
  line-height:1.5;
  text-decoration:none;
  transition:background var(--motion-fast),transform var(--motion-fast);
  text-align:center;
}

.button:hover {
  transform:translateY(-1px);
}

.button span {
  font-size:1.3rem;
  line-height:1;
}

.primary {
  background:var(--brand-orange);
  color:var(--brand-navy-dark);
}

.primary:hover {
  background:var(--brand-orange-soft);
  border-color:var(--brand-orange);
}

.secondary {
  background:var(--surface-white);
  color:var(--brand-navy);
  border-color:var(--border-subtle);
}

.secondary:hover {
  background:var(--brand-navy-soft);
  border-color:var(--brand-navy);
}

.button:disabled {
  cursor:wait;
  opacity:.65;
  transform:none;
}

.text-link {
  display:inline-flex;
  gap:12px;
  align-items:center;
  min-height:44px;
  text-decoration:underline;
  text-underline-offset:5px;
  background:none;
  border:0;
  padding:4px 0;
  font-weight:600;
  color:var(--brand-navy);
  font-size:.95rem;
}

.small {
  font-size:.8rem;
}

.skip-link {
  position:fixed;
  left:16px;
  top:-100px;
  z-index:100;
  background:var(--surface-white);
  padding:12px;
}

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

.site-header {
  position:sticky;
  top:0;
  z-index:20;
  background:var(--surface-white);
  border-bottom:1px solid var(--border-subtle);
}

.header-inner {
  min-height:98px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand {
  width:268px;
  flex-shrink:0;
  display:block;
}

.brand img {
  width:100%;
  height:auto;
}

.site-header nav {
  display:flex;
  align-items:center;
  gap:26px;
}

.site-header nav>a:not(.button) {
  font-size:.875rem;
  text-decoration:none;
  font-weight:550;
  padding-block:12px;
}

.site-header nav>a:hover {
  color:var(--brand-navy-dark);
  text-decoration:underline;
  text-underline-offset:6px;
}

.menu-toggle,.mobile-contact {
  display:none;
}

.hero {
  display:grid;
  grid-template-columns:1.08fr 1fr;
  align-items:center;
  gap:28px;
  padding-block:80px 70px;
}

.hero .eyebrow {
  font-size:.75rem;
  letter-spacing:.12em;
}

.underline-accent {
  text-decoration:underline;
  text-decoration-color:var(--brand-orange);
  text-decoration-thickness:4px;
  text-underline-offset:9px;
  text-decoration-skip-ink:none;
}

.hero .hero-support {
  margin-top:24px;
  color:var(--brand-navy);
  font-size:clamp(1.25rem,2.2vw,1.75rem);
  font-weight:600;
  line-height:1.35;
}

.hero .intro {
  font-size:1.06rem;
  line-height:1.75;
  max-width:525px;
  margin-top:27px;
}

.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.hero-actions .secondary {
  border:0;
  padding-inline:0;
}

.hero .reassurance {
  margin-top:18px;
  font-size:.76rem;
}

.reassurance span {
  color:var(--brand-navy);
  margin-right:5px;
}

.hero-visual {
  align-self:center;
  margin-right:-10px;
}

.hero-media {
  position:relative;
  aspect-ratio:3/2;
}

.hero-media>img,.hero-media>video {
  width:100%;
  height:100%;
  object-fit:contain;
}

.hero-media>video {
  position:absolute;
  inset:0;
  background:var(--surface-white);
}

.video-toggle {
  margin:0 auto;
  display:block;
  font-size:.8rem;
  background:var(--surface-white);
  color:var(--brand-navy);
  border:1px solid var(--border-subtle);
  border-radius:var(--radius-sm);
  min-height:44px;
  padding:8px 15px;
}

.hero-visual figcaption {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  color:var(--brand-navy);
  font-size:.9rem;
  margin-top:14px;
}

.caption-line {
  width:32px;
  height:2px;
  background:var(--brand-orange);
}

.recognition {
  background:var(--surface-soft);
  padding-block:68px;
}

.recognition-layout {
  display:grid;
  grid-template-columns:.8fr 1.3fr;
  gap:100px;
}

.recognition h2 {
  margin-bottom:22px;
}

.recognition p:not(.eyebrow) {
  max-width:270px;
  font-size:.95rem;
}

.problem-list {
  padding:0;
  margin:0;
  list-style:none;
}

.problem-list li {
  display:flex;
  align-items:center;
  gap:26px;
  border-bottom:1px solid var(--border-subtle);
  padding:18px 0;
  font-size:1rem;
  color:var(--brand-navy);
}

.problem-list li:first-child {
  padding-top:3px;
}

.problem-list li:last-child {
  border:0;
  padding-bottom:0;
}

.list-number {
  color:var(--text-secondary);
  font-size:.75rem;
  font-weight:600;
}

.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  margin-bottom:48px;
}

.section-heading>p {
  font-size:1rem;
  max-width:350px;
}

.services {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.service {
  padding:25px 0 12px;
  border-top:1px solid var(--border-subtle);
}

.icon-box {
  display:flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
  background:var(--brand-navy-soft);
  color:var(--brand-navy);
  border-radius:var(--radius-sm);
  margin-bottom:24px;
}

.service:nth-child(4) .icon-box {
  background:var(--brand-orange-soft);
}

.service-label {
  font-size:.76rem;
  color:var(--text-secondary);
  margin-bottom:12px;
}

.service h3 {
  margin-bottom:17px;
  font-size:1.35rem;
}

.service>p:last-child {
  font-size:1rem;
  line-height:1.75;
}

.service-note {
  display:flex;
  gap:24px;
  align-items:center;
  background:var(--surface-soft);
  padding:23px 30px;
  border-radius:var(--radius-sm);
  margin-top:35px;
}

.service-note>span {
  font-size:2.1rem;
  color:var(--brand-orange);
}

.service-note p {
  font-size:.9rem;
}

.service-note strong {
  color:var(--brand-navy);
}

.examples {
  background:var(--surface-soft);
}

.case-list {
  display:grid;
  gap:22px;
}

.case {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  border:1px solid var(--border-subtle);
  border-radius:var(--radius-md);
  background:var(--surface-white);
  padding:36px 42px;
}

.case-heading {
  position:relative;
}

.case-number {
  position:absolute;
  right:0;
  top:0;
  font-size:.85rem;
  color:var(--text-secondary);
}

.case-icon {
  color:var(--brand-navy);
  margin-bottom:18px;
}

.case-icon svg {
  width:32px;
  height:32px;
}

.case .eyebrow {
  font-size:.75rem;
  margin-bottom:12px;
}

.case h3 {
  max-width:340px;
  font-size:1.75rem;
  line-height:1.2;
  margin-bottom:15px;
}

.case-support {
  color:var(--brand-navy);
  font-weight:600;
  margin-bottom:15px;
}

.case-story {
  margin:0;
  display:grid;
  gap:16px;
  font-size:1rem;
}

.case-story dt {
  font-weight:650;
  color:var(--brand-navy);
  margin-bottom:2px;
}

.case-story dd {
  margin:0;
  color:var(--text-secondary);
  line-height:1.6;
}

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

.step-number {
  display:flex;
  align-items:center;
  gap:18px;
  color:var(--brand-navy);
  font-size:1rem;
  font-weight:650;
  margin-bottom:30px;
}

.step-number:after {
  content:'';
  height:1px;
  background:var(--border-subtle);
  flex:1;
}

.process h3 {
  font-size:1.25rem;
  margin-bottom:16px;
}

.process p {
  font-size:1rem;
}

.contact-section {
  background:var(--brand-navy-soft);
}

.contact-layout {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:85px;
  align-items:start;
}

.contact-copy {
  padding-top:18px;
}

.contact-copy>p:not(.eyebrow) {
  margin-top:25px;
  max-width:370px;
}

.contact-reassurance {
  display:flex;
  gap:18px;
  align-items:center;
  margin-top:30px;
}

.contact-reassurance>span {
  color:var(--brand-orange-dark);
  font-size:2.5rem;
}

.contact-reassurance p {
  font-size:.9rem;
}

.contact-copy>.text-link {
  display:flex;
  width:fit-content;
  margin-top:15px;
}

.wizard {
  background:var(--surface-white);
  border-radius:var(--radius-lg);
  padding:35px;
  min-width:0;
  border:1px solid var(--border-subtle);
}

.wizard-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  font-size:.8rem;
  color:var(--text-secondary);
  margin-bottom:12px;
}

.reset-button {
  padding:5px 0;
  background:none;
  border:0;
  color:var(--text-secondary);
  font-size:.8rem;
  min-height:44px;
  text-decoration:underline;
  text-underline-offset:4px;
}

.progress-track {
  display:flex;
  gap:5px;
  margin-bottom:28px;
}

.progress-track span {
  height:4px;
  background:var(--surface-muted);
  flex:1;
  border-radius:3px;
}

.progress-track .complete {
  background:var(--brand-orange);
}

.wizard h3 {
  font-size:1.5rem;
  line-height:1.3;
  letter-spacing:-.025em;
}

.wizard h3:focus {
  outline:none;
}

.wizard-help {
  font-size:.86rem;
  margin-top:8px;
  margin-bottom:22px;
}

.wizard fieldset {
  border:0;
  padding:0;
  margin:0;
  min-width:0;
}

.choices {
  display:grid;
  gap:10px;
}

.choice {
  display:flex;
  align-items:center;
  gap:12px;
  min-height:52px;
  border:1px solid var(--border-subtle);
  border-radius:var(--radius-sm);
  padding:12px 15px;
  cursor:pointer;
  color:var(--brand-navy);
  font-size:.92rem;
  transition:background var(--motion-fast);
}

.choice:hover {
  background:var(--surface-soft);
}

.choice:has(input:checked) {
  background:var(--brand-orange-soft);
  border-color:var(--brand-orange);
}

.choice:has(input:focus-visible) {
  outline:3px solid var(--brand-navy);
  outline-offset:3px;
}

.choice input {
  margin:0;
  width:19px;
  height:19px;
  accent-color:var(--brand-navy);
  flex-shrink:0;
}

.choice input:focus-visible {
  outline:none;
}

.field {
  display:block;
  margin-bottom:17px;
}

.field>span {
  display:block;
  font-size:.875rem;
  font-weight:600;
  color:var(--brand-navy);
  margin-bottom:7px;
}

.field input,.field textarea {
  width:100%;
  padding:12px 14px;
  min-height:48px;
  border:1px solid var(--text-muted);
  border-radius:var(--radius-sm);
  background:var(--surface-white);
  color:var(--text-primary);
}

.field textarea {
  resize:vertical;
  min-height:90px;
}

.field input[aria-invalid=true] {
  border:2px solid var(--error);
}

.field-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 15px;
}

.wizard .optional-note {
  font-size:.78rem;
  display:block;
  color:var(--text-secondary);
  margin-top:6px;
}

.wizard-actions {
  display:flex;
  justify-content:space-between;
  gap:14px;
  margin-top:25px;
  border-top:1px solid var(--border-subtle);
  padding-top:22px;
}

.wizard-actions .button {
  min-width:106px;
}

.wizard-actions .next-only {
  margin-left:auto;
}

.error-message {
  color:var(--error);
  font-size:.9rem;
  margin-top:14px;
  font-weight:550;
}

.error-message:empty {
  display:none;
}

.context-note {
  border-left:3px solid var(--brand-orange);
  padding:8px 13px;
  margin-bottom:20px;
  font-size:.86rem;
  background:var(--brand-orange-soft);
}

.context-note p {
  color:var(--brand-navy);
}

.review {
  margin:20px 0;
  background:var(--surface-soft);
  border-radius:var(--radius-sm);
  padding:20px;
}

.review dl {
  margin:0;
  font-size:.85rem;
}

.review dt {
  font-weight:650;
  color:var(--brand-navy);
  margin-top:13px;
}

.review dt:first-child {
  margin:0;
}

.review dd {
  margin:3px 0 0;
  overflow-wrap:anywhere;
  color:var(--text-secondary);
}

.review details summary {
  cursor:pointer;
  min-height:44px;
  color:var(--brand-navy);
  font-weight:600;
}

.form-privacy {
  font-size:.78rem;
  margin-top:14px;
}



.delivery-message {
  background:var(--brand-orange-soft);
  border:1px solid var(--brand-orange);
  border-radius:var(--radius-sm);
  padding:20px;
  margin-top:20px;
}

.delivery-message p {
  font-size:.9rem;
  color:var(--text-primary);
}

.delivery-message strong {
  color:var(--brand-navy);
}

.delivery-message .button {
  margin-top:15px;
}

.honeypot {
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.success-icon {
  width:48px;
  height:48px;
  background:var(--brand-navy-soft);
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:1.4rem;
  color:var(--success);
  margin-bottom:24px;
}

.about {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:85px;
}

.about-lead {
  font-size:1.25rem;
  color:var(--brand-navy);
  line-height:1.6;
}

.about .button {
  margin-top:25px;
}

/* Positioning uses the existing two-column layout, type scale and palette. */
.positioning-reading {
  max-width:var(--reading-width);
}

.positioning-intro .caption-line {
  display:block;
  margin-bottom:24px;
}

.positioning-intro h2,
.positioning h2,
.positioning h3 {
  margin-bottom:28px;
}

.positioning-statement {
  border-left:3px solid var(--brand-orange);
  padding-left:22px;
  margin-top:32px;
  color:var(--brand-navy);
  font-size:1.25rem;
  line-height:1.6;
  font-weight:650;
}

.positioning-visual {
  margin-top:36px;
}

.positioning-visual img {
  width:100%;
  height:auto;
}

.positioning-principle {
  background:var(--surface-soft);
}

footer {
  --footer-logo-width:244px;
  --footer-icon-size:calc(var(--footer-logo-width) * 197 / 906);
  border-top:1px solid var(--border-subtle);
  padding:30px 0 0;
}

.footer-main {
  display:flex;
  align-items:center;
  gap:32px;
}

.footer-main .brand {
  flex-shrink:0;
  width:var(--footer-logo-width);
}

.footer-main h3 {
  margin-right:auto;
}

.footer-main>a:not(.brand) {
  font-size:.85rem;
  min-height:44px;
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-bottom {
  border-top:1px solid var(--border-subtle);
  padding-top:20px;
  margin-top:24px;
  display:flex;
  justify-content:space-between;
  font-size:.75rem;
  color:var(--text-secondary);
}

.privacy {
  max-width:808px;
}

.privacy>.text-link {
  margin-bottom:35px;
}

.privacy h1 {
  margin-bottom:25px;
}

.privacy h2 {
  font-size:1.5rem;
  margin-top:35px;
  margin-bottom:14px;
}

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

.note-field {
  margin-top:22px;
}

@media(min-width:1500px) {
  .hero {
    padding-block:100px 90px;
  }
}

@media(max-width:1100px) {
  .site-header nav {
    gap:16px;
  }
  .brand {
    width:238px;
  }
  .nav-cta {
    font-size:.8rem;
    padding-inline:14px;
  }
  .hero {
    gap:16px;
  }
  .hero h1 {
    font-size:3.1rem;
  }
  .services {
    grid-template-columns:repeat(2,1fr);
    gap:32px;
  }
  .contact-layout {
    gap:45px;
  }
  .case {
    gap:40px;
  }
  .hero .intro {
    font-size:1rem;
  }
  .header-inner {
    gap:15px;
  }
  .section {
    padding-block:80px;
  }
}

@media(max-width:900px) {
  .header-inner {
    min-height:85px;
  }
  .menu-toggle {
    display:flex;
    gap:12px;
    align-items:center;
    border:1px solid var(--border-subtle);
    background:var(--surface-white);
    color:var(--brand-navy);
    border-radius:var(--radius-sm);
    padding:9px 15px;
    min-height:44px;
  }
  .site-header nav {
    display:none;
    position:absolute;
    inset:85px 0 auto;
    background:var(--surface-white);
    padding:16px 24px 24px;
    border-bottom:1px solid var(--border-subtle);
    box-shadow:0 12px 36px rgb(8 46 101 / 8%);
    max-height:calc(100dvh - 85px);
    overflow:auto;
  }
  .site-header nav.open {
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:3px;
  }
  .site-header nav>a:not(.button) {
    padding:12px 8px;
  }
  .mobile-contact {
    display:block;
  }
  .nav-cta {
    margin-top:10px;
  }
  .hero h1 {
    font-size:2.75rem;
  }
  .hero {
    padding-block:55px;
  }
  .hero-visual {
    margin:0;
  }
  .hero-actions .button {
    font-size:.875rem;
  }
  .hero .eyebrow {
    font-size:.75rem;
  }
  .recognition-layout {
    gap:45px;
  }
  .process {
    grid-template-columns:1fr 1fr;
    gap:35px;
  }
  .contact-layout {
    gap:30px;
    grid-template-columns:.8fr 1.2fr;
  }
  .wizard {
    padding:25px;
  }
  .contact-copy h2 {
    font-size:2.3rem;
  }
  .case h3 {
    font-size:1.5rem;
  }
  .about {
    gap:40px;
  }
  .footer-main {
    flex-wrap:wrap;
    gap:15px 25px;
  }
  .footer-main h3 {
    flex:1;
  }
}

@media(max-width:650px) {
  html {
    scroll-padding-top:105px;
  }
  .container {
    padding-inline:24px;
  }
  .section {
    padding-block:60px;
  }
  .header-inner {
    min-height:80px;
  }
  .brand {
    width:225px;
  }
  .site-header nav {
    top:80px;
  }
  .hero {
    grid-template-columns:1fr;
    gap:20px;
    padding-top:38px;
    padding-bottom:32px;
  }
  .hero h1 {
    font-size:clamp(2.4rem,8.5vw,3.2rem);
    max-width:510px;
    line-height:1.12;
  }
  .hero .eyebrow {
    font-size:.75rem;
    margin-bottom:18px;
    letter-spacing:.1em;
  }
  .hero .intro {
    font-size:1rem;
    line-height:1.65;
    margin-top:24px;
  }
  .hero-actions {
    gap:9px;
    margin-top:23px;
  }
  .hero-actions .button {
    font-size:.875rem;
  }
  .hero-actions .secondary {
    justify-content:flex-start;
    padding-block:9px;
    min-height:44px;
  }
  .hero .reassurance {
    font-size:.75rem;
    margin-top:9px;
  }
  .hero-visual {
    max-width:440px;
    justify-self:center;
    width:100%;
    margin-top:0;
  }
  .hero-visual figcaption {
    font-size:.8rem;
    margin-top:0;
  }
  .recognition-layout {
    grid-template-columns:1fr;
    gap:28px;
  }
  .recognition h2 br {
    display:none;
  }
  .recognition p:not(.eyebrow) {
    max-width:100%;
  }
  .recognition h2 {
    margin-bottom:14px;
  }
  .eyebrow {
    font-size:.75rem;
    margin-bottom:17px;
  }
  .problem-list li {
    font-size:1rem;
    gap:17px;
    padding-block:17px;
  }
  .section-heading {
    display:block;
    margin-bottom:32px;
  }
  .section-heading>p {
    margin-top:22px;
    font-size:1rem;
  }
  .services {
    gap:27px;
    grid-template-columns:1fr;
  }
  .service {
    display:grid;
    grid-template-columns:50px 1fr;
    gap:0 18px;
    padding-top:24px;
  }
  .service .icon-box {
    grid-row:1/4;
    margin-bottom:0;
  }
  .service .service-label {
    margin-bottom:8px;
  }
  .service h3 {
    font-size:1.35rem;
    margin-bottom:13px;
  }
  .service-note {
    gap:15px;
    padding:20px;
    margin-top:25px;
    align-items:flex-start;
  }
  .service-note>span {
    line-height:1;
  }
  .case {
    grid-template-columns:1fr;
    gap:20px;
    padding:26px;
  }
  .case h3 {
    font-size:1.55rem;
    max-width:100%;
    padding-right:15px;
  }
  .case-icon {
    margin-bottom:13px;
  }
  .case-story {
    border-top:1px solid var(--border-subtle);
    padding-top:22px;
    gap:13px;
  }
  .case .text-link {
    font-size:.9rem;
  }
  .process {
    grid-template-columns:1fr;
    gap:29px;
  }
  .process li {
    display:grid;
    grid-template-columns:40px 1fr;
    column-gap:16px;
  }
  .step-number {
    grid-row:1/3;
    align-items:start;
    margin:0;
  }
  .step-number:after {
    display:none;
  }
  .process h3 {
    margin-bottom:9px;
  }
  .contact-layout {
    grid-template-columns:1fr;
    gap:30px;
  }
  .contact-copy {
    padding:0;
  }
  .contact-copy h2 br {
    display:none;
  }
  .contact-copy>p:not(.eyebrow) {
    max-width:100%;
    margin-top:20px;
  }
  .contact-reassurance {
    margin-top:20px;
  }
  .wizard {
    padding:22px;
    border-radius:var(--radius-md);
  }
  .wizard h3 {
    font-size:1.35rem;
  }
  .wizard-actions {
    gap:10px;
  }
  .wizard-actions .button {
    font-size:.875rem;
    padding-inline:15px;
    min-width:0;
  }
  .field-grid {
    grid-template-columns:1fr;
  }
  .about {
    grid-template-columns:1fr;
    gap:25px;
  }
  .about h2 br {
    display:none;
  }
  .about-lead {
    font-size:1.12rem;
  }
  .footer-main {
    align-items:flex-start;
    gap:18px 26px;
  }
  footer { --footer-logo-width:225px; }
  .footer-main h3 {
    flex-basis:100%;
    order:1;
  }
  .footer-main>a:not(.brand) {
    order:2;
  }
  .footer-bottom {
    font-size:.75rem;
    margin-top:20px;
  }
  .privacy h1 {
    font-size:2.8rem;
  }
  .contact-section .container {
    padding-inline:20px;
  }
}

@media (max-width:360px) {
  .header-inner {
    gap:10px;
  }
  .brand {
    width:185px;
  }
  .menu-toggle {
    padding-inline:12px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    animation:none!important;
    transition:none!important;
  }
  .button:hover {
    transform:none;
  }
}

/* Client originals retain their artwork and proportions. */
.client-list {
  --logo-columns:7;
  --logo-gap:28px;
  list-style:none;
  padding:0;
  margin:44px 0 0;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:24px var(--logo-gap);
}
.client-list>li {
  flex:0 0 calc((100% - (var(--logo-columns) - 1) * var(--logo-gap)) / var(--logo-columns));
  min-width:0;
}
.client-logo {
  height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.client-logo img {
  width:auto;
  max-width:calc(100% / max(1, var(--logo-scale,1)));
  height:48px;
  object-fit:contain;
  transform:scale(var(--logo-scale,1));
  filter:grayscale(100%) brightness(var(--logo-brightness,1));
  opacity:var(--logo-opacity,.75);
  transition:opacity var(--motion-fast);
}
a.client-logo:hover img,
a.client-logo:focus-visible img {
  opacity:1;
}
.case[id] {
  scroll-margin-top:110px;
}
.case-story dd>p {
  margin-top:1rem;
}
@media (max-width:1100px) {
  .client-list { --logo-columns:4; --logo-gap:32px; }
}
@media (max-width:600px) {
  .client-list { --logo-columns:2; --logo-gap:28px; gap:14px var(--logo-gap); }
  .client-logo { height:80px; }
  .client-logo img { height:44px; }
}
@media (hover:none) {
  .client-logo img { opacity:max(.85,var(--logo-opacity,.75)); }
}
@media (prefers-reduced-motion:reduce) {
  .client-logo img { transition:none; }
}

.process-privacy { margin-top:36px; max-width:var(--reading-width); }
.process-privacy h3 { font-size:1.1rem; margin-bottom:10px; }
.privacy .missing-detail { color:var(--text-secondary); font-size:.9rem; }

/* Small, non-modal analytics choice; both choices have the same weight. */
.analytics-consent[hidden], [data-privacy-choice][hidden] { display:none; }
.analytics-consent { position:fixed; z-index:100; bottom:0; left:0; right:0; background:var(--surface-white); border-top:1px solid var(--border-subtle); padding:20px 0; }
.analytics-consent-inner { display:flex; align-items:center; gap:32px; }
.analytics-consent h2 { font-size:1rem; margin:0 0 6px; }
.analytics-consent p { font-size:.8rem; line-height:1.5; margin:0; max-width:760px; }
.analytics-consent-actions { display:flex; gap:12px; flex-shrink:0; }
.analytics-consent-actions .button { font-size:.8rem; padding:12px 16px; min-height:44px; }
.privacy-choice { font:inherit; color:var(--brand-navy); background:none; border:0; text-decoration:underline; cursor:pointer; padding:0; min-height:44px; }
.footer-bottom { align-items:center; gap:16px; }
@media (max-width:900px) {
  .analytics-consent-inner { flex-direction:column; align-items:stretch; gap:14px; }
  .analytics-consent-actions .button { flex:1; }
  .analytics-consent { padding:16px 0; max-height:70vh; overflow:auto; }
  .footer-bottom { flex-wrap:wrap; }
}

.footer-details { display:flex; align-items:center; justify-content:flex-end; gap:24px; margin-top:20px; }
.footer-company { margin:0; font-size:.8rem; color:var(--text-secondary); }
.footer-social { display:flex; align-items:center; gap:20px; flex-shrink:0; }
.footer-social a { display:block; width:var(--footer-icon-size); height:var(--footer-icon-size); min-width:44px; min-height:44px; color:var(--brand-navy); }
.footer-social svg { display:block; width:100%; height:100%; }
.footer-social a:hover { color:var(--brand-orange-dark); }
@media (max-width:650px) { .footer-details { flex-wrap:wrap; } }

.company h1 { font-size:clamp(1.7rem,5.5vw,3.6rem); overflow-wrap:anywhere; }
.analytics-consent-inner { flex-wrap:wrap; gap:16px; }
.consent-options { display:flex; flex-wrap:wrap; gap:12px 24px; margin-top:12px; }
.consent-options label { display:flex; align-items:center; gap:8px; font-size:.85rem; min-height:44px; }
.consent-options input { width:20px; height:20px; accent-color:var(--primary-navy); }
.analytics-consent-actions { flex-wrap:wrap; }

/* Reading rhythm for the long privacy policy, without changing other pages. */
.privacy-policy > p:not(.eyebrow) { line-height:1.75; overflow-wrap:break-word; }
.privacy-policy > h2 { line-height:1.3; margin-top:40px; margin-bottom:16px; text-wrap:balance; }
.privacy-policy > h3 { line-height:1.3; margin-top:28px; margin-bottom:12px; text-wrap:balance; }
.privacy-policy > p + p { margin-top:18px; }
.privacy-policy > .small:last-child { margin-top:28px; }

.back-to-top { position:fixed; right:24px; bottom:calc(24px + env(safe-area-inset-bottom)); z-index:50; display:grid; place-items:center; width:48px; height:48px; padding:0; border:0; border-radius:50%; background:var(--brand-orange); color:var(--brand-navy); }
.back-to-top[hidden] { display:none; }
.back-to-top:hover { background:var(--brand-orange-dark); }
.back-to-top svg { width:26px; height:26px; }
@media(max-width:650px) { .back-to-top { right:16px; bottom:calc(16px + env(safe-area-inset-bottom)); } }

.footer-bar { background:var(--surface-soft); border-top:1px solid var(--border-subtle); margin-top:24px; }
.footer-bar .footer-bottom { border-top:0; margin-top:0; padding-block:20px 22px; }
@media(max-width:650px) { .footer-bar { margin-top:20px; } }
