:root {
  --brand: #0C479C;
  --brand-accent: #FFB020;
  --brand-support: #066FE5;
  --n-50: #F3F7FC;
  --n-100: #E5EEF8;
  --n-200: #CFDEF0;
  --n-300: #B0C8E6;
  --n-400: #83A7D7;
  --n-500: #5786C7;
  --n-600: #2F67B7;
  --n-700: #0C479C;
  --n-800: #042E74;
  --n-900: #071F4D;
  --n-950: #07132B;
  --a-300: #FCDB9F;
  --a-500: #FFB020;
  --a-600: #E89719;
  --a-700: #C67712;
  --a-800: #A35C18;
  --surface-1: #FFFFFF;
  --surface-2: var(--n-50);
  --surface-3: var(--n-100);
  --text-1: var(--n-950);
  --text-2: var(--n-800);
  --text-3: var(--n-700);
  --text-mute: var(--n-600);
  --line: var(--n-200);
  --line-control: var(--n-600);
  --focus-ring: var(--brand-support);
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-full: 999px;
  --e-1: 0 1px 2px rgba(7, 19, 43, .06);
  --e-2: 0 2px 8px rgba(7, 19, 43, .08);
  --e-3: 0 8px 24px rgba(7, 19, 43, .10);
  --t-micro: 120ms cubic-bezier(.2, 0, .2, 1);
  --t-base: 180ms cubic-bezier(.2, 0, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-1);
  background: var(--surface-1);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: var(--brand-support);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--brand);
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text-1);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.5rem, 1.32rem + .7vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 1.17rem + .35vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin: 0;
  color: var(--text-2);
  max-width: 68ch;
}

.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;
}

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

.narrow {
  max-width: 920px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: var(--sp-5);
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  background: var(--surface-1);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t-base);
}

.site-header.is-scrolled {
  box-shadow: var(--e-2);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 92px;
  min-height: 56px;
  text-decoration: none;
}

.brand img {
  width: 82px;
  height: 52px;
  object-fit: contain;
}

.primary-nav,
.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.primary-nav {
  justify-content: center;
  gap: var(--sp-5);
}

.primary-nav a,
.header-actions a,
.service-menu a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.primary-nav > a:hover,
.nav-group > a:hover {
  color: var(--brand);
  box-shadow: inset 0 -2px 0 var(--brand-support);
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  inset-inline: -16px;
  top: 100%;
  height: 14px;
}

.service-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  z-index: 80;
  display: grid;
  min-width: 260px;
  padding: var(--sp-2);
  background: var(--surface-1);
  border-radius: var(--r-md);
  box-shadow: var(--e-3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity var(--t-base), transform var(--t-base);
}

.service-menu-services,
.service-menu-areas {
  min-width: 280px;
}

.service-menu-resources {
  left: 50%;
  width: min(560px, calc(100vw - 48px));
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  transform: translate(-50%, -4px);
}

.nav-group:hover .service-menu-resources,
.nav-group:focus-within .service-menu-resources {
  transform: translate(-50%, 0);
}

.service-menu-resources a:nth-child(-n + 2) {
  color: var(--brand);
  font-weight: 700;
}

.nav-group:hover .service-menu,
.nav-group:focus-within .service-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-group:hover .service-menu-resources,
.nav-group:focus-within .service-menu-resources {
  transform: translate(-50%, 0);
}

.service-menu a {
  padding: 0 var(--sp-4);
  border-radius: var(--r-sm);
}

.service-menu a:hover {
  color: var(--brand);
  background: var(--n-50);
}

.header-actions {
  gap: var(--sp-4);
  justify-content: flex-end;
}

.header-actions .btn-primary {
  color: var(--n-950);
}

.language-switch {
  gap: var(--sp-2);
  min-height: 44px;
  padding-inline: var(--sp-2);
}

.language-switch a[aria-current="page"] {
  color: var(--brand);
  font-weight: 600;
}

.language-switch a {
  justify-content: center;
}

.pending-inline {
  color: var(--text-mute) !important;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px var(--sp-5);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background var(--t-micro), border-color var(--t-micro), transform var(--t-micro);
}

.btn-primary {
  color: var(--n-950);
  background: var(--a-500);
  border: 1.5px solid var(--a-500);
}

.btn-primary:hover {
  color: var(--n-950);
  background: var(--a-600);
  border-color: var(--a-600);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--brand);
  background: transparent;
  border: 1.5px solid var(--line-control);
}

.btn-secondary:hover {
  color: var(--n-800);
  background: var(--n-50);
  border-color: var(--n-800);
}

.btn-secondary.on-dark {
  color: var(--surface-1);
  border-color: rgba(255, 255, 255, .82);
}

.btn-secondary.on-dark:hover {
  color: var(--n-950);
  background: var(--surface-1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--surface-1);
  border: 1.5px solid var(--line-control);
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--e-1);
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  display: block;
  background: var(--brand);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--n-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 43, .86) 0%, rgba(7, 19, 43, .72) 42%, rgba(7, 19, 43, .45) 100%),
    linear-gradient(135deg, var(--n-900), var(--n-700));
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.washer-wall {
  position: absolute;
  inset: 12% 4% 8% 40%;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: var(--sp-5);
  opacity: .78;
}

.washer-wall span,
.machine-large {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.04);
}

.washer-wall span::before,
.machine-large::before {
  content: "";
  position: absolute;
  inset: 24%;
  border: 10px solid rgba(229, 238, 248, .68);
  border-radius: var(--r-full);
  background: rgba(7, 19, 43, .58);
}

.washer-wall span::after,
.machine-large::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 10px;
  border-radius: var(--r-full);
  background: rgba(255, 176, 32, .74);
}

.photo-token {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 32px;
  max-width: 290px;
  padding: var(--sp-3) var(--sp-4);
  color: var(--n-950);
  background: color-mix(in srgb, var(--a-300) 70%, white);
  border: 1.5px dashed var(--a-600);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-block: var(--sp-10);
}

.hero-copy {
  max-width: 720px;
}

.hero__title {
  color: var(--surface-1);
  font-size: clamp(2.125rem, 1.44rem + 2.85vw, 3.5rem);
  letter-spacing: -.02em;
  line-height: 1.08;
}

.hero__lede {
  margin-top: var(--sp-4);
  color: var(--n-100);
  font-size: clamp(1.0625rem, 1rem + .25vw, 1.1875rem);
  line-height: 1.6;
  max-width: 56ch;
}

.hero-actions,
.section-actions,
.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
}

.hero-actions {
  margin-top: var(--sp-6);
}

.hero-support {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  margin-top: var(--sp-5);
  color: var(--n-100);
  font-size: 14px;
}

.chip,
.swap,
.footer-token {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 2px 10px;
  border-radius: var(--r-sm);
  font-size: 14px;
  line-height: 1.5;
}

.chip {
  color: var(--text-2);
  background: var(--n-50);
  border: 1px solid var(--line);
  text-decoration: none;
}

a.chip {
  min-height: 44px;
}

.chip-dark {
  color: var(--surface-1);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
}

.swap {
  color: var(--n-950);
  background: color-mix(in srgb, var(--a-300) 45%, white);
  border: 1.5px dashed var(--a-600);
  font-family: ui-monospace, monospace;
}

.trust-strip {
  background: var(--surface-2);
  padding-block: var(--sp-5);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

.trust-inner p {
  color: var(--text-2);
  font-weight: 500;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.section {
  padding-block: var(--sp-9);
}

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

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

.section-head {
  max-width: 760px;
  margin-bottom: var(--sp-6);
}

.section-head p {
  margin-top: var(--sp-3);
  font-size: 18px;
}

.section-head.align-left {
  margin-inline: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-6);
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-5);
  color: var(--text-2);
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.service-card:hover {
  color: var(--text-2);
  box-shadow: var(--e-1);
  transform: translateY(-2px);
}

.service-card svg,
.pillar-grid svg {
  width: 24px;
  height: 24px;
  color: var(--brand-support);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-picture-icon {
  width: clamp(78px, 8vw, 112px);
  height: clamp(78px, 8vw, 112px);
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(7, 58, 134, .14));
  transition:
    filter var(--t-base),
    transform var(--t-base);
}

.service-card:hover .site-picture-icon,
.info-card:hover .site-picture-icon {
  filter: drop-shadow(0 18px 26px rgba(7, 58, 134, .20));
  transform: translateY(-4px) rotate(-2deg) scale(1.045);
}

.service-card h3,
.pillar-grid h3 {
  color: var(--brand);
}

.service-card p {
  flex: 1;
}

.service-card span {
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.5;
}

.service-card b {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 7px 2px;
  border-radius: var(--r-full);
  background: var(--n-400);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: var(--sp-7);
  align-items: center;
}

.split-layout h2 + p,
.oversized-section h2 + p,
.location-section h2 + p {
  margin-top: var(--sp-3);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: var(--sp-4);
  color: var(--brand-support);
  font-weight: 600;
}

.text-link.on-tint {
  color: var(--n-800);
}

.board-wrap {
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.board-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums lining-nums;
}

.board-table caption {
  padding: var(--sp-4);
  color: var(--text-2);
  text-align: left;
  font-weight: 600;
}

.board-table th,
.board-table td {
  padding: var(--sp-4);
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.board-table th {
  color: var(--text-2);
  background: var(--surface-3);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}

.board-table td:last-child,
.board-table th:last-child {
  text-align: right;
}

.board-table a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-6);
}

.pillar-grid article {
  display: grid;
  gap: var(--sp-3);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-6);
  counter-reset: step;
}

.steps article {
  position: relative;
  padding-top: var(--sp-5);
}

.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  left: 54px;
  right: -18px;
  height: 1px;
  background: var(--line);
}

.steps article > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--brand);
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.steps h3 + p {
  margin-top: var(--sp-2);
}

.section-actions {
  margin-top: var(--sp-6);
}

.oversized-section .split-layout,
.location-section .split-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.oversized-art,
.map-card {
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.oversized-art {
  position: relative;
  display: block;
  padding: 0;
  background: linear-gradient(135deg, var(--n-50), var(--n-200));
}

.oversized-art img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.machine-large {
  width: min(320px, 78%);
  aspect-ratio: 1;
  background: linear-gradient(180deg, var(--surface-1), var(--n-100));
  border-color: var(--n-300);
  box-shadow: inset 0 0 0 12px rgba(12, 71, 156, .04);
}

.machine-large::before {
  border-color: var(--n-300);
  background: var(--n-950);
}

.machine-large::after {
  background: var(--a-500);
}

.machine-large span {
  position: absolute;
  inset: 42% 32% 32%;
  border-radius: var(--r-full);
  background: var(--n-100);
}

.oversized-art p {
  margin-top: var(--sp-5);
  color: var(--text-mute);
  font-size: 14px;
  font-weight: 600;
}

.oversized-art figcaption {
  position: absolute;
  left: var(--sp-4);
  bottom: var(--sp-4);
  max-width: calc(100% - var(--sp-8));
  padding: 6px 10px;
  color: var(--n-950);
  background: rgba(255, 255, 255, .86);
  border: 1px dashed var(--a-600);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
}

.map-card {
  background: var(--surface-1);
}

.map-grid {
  position: relative;
  min-height: inherit;
  background:
    linear-gradient(104deg, transparent 0 28%, rgba(12,71,156,.16) 28% 31%, transparent 31%),
    linear-gradient(17deg, transparent 0 42%, rgba(12,71,156,.18) 42% 45%, transparent 45%),
    linear-gradient(152deg, transparent 0 58%, rgba(12,71,156,.13) 58% 61%, transparent 61%),
    radial-gradient(circle at 22% 26%, rgba(255,255,255,.92) 0 6%, transparent 6.3%),
    radial-gradient(circle at 78% 72%, rgba(255,255,255,.9) 0 7%, transparent 7.2%),
    var(--n-50);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: var(--sp-2) var(--sp-4);
  color: var(--surface-1);
  background: var(--brand);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: var(--e-2);
}

.faq-list {
  margin-block: var(--sp-5);
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  color: var(--text-1);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--brand-support);
  border-bottom: 2px solid var(--brand-support);
  transform: rotate(45deg);
  transition: transform var(--t-base);
}

details[open] summary::after {
  transform: rotate(225deg);
}

details p {
  padding: 0 40px var(--sp-5) 0;
}

.conversion-band {
  padding-block: var(--sp-8);
  background: var(--surface-3);
}

.conversion-inner {
  display: grid;
  justify-items: center;
  gap: var(--sp-5);
  text-align: center;
}

.site-footer {
  padding-block: var(--sp-8) var(--sp-4);
  color: var(--n-100);
  background: var(--n-950);
}

.site-footer p,
.site-footer a,
.site-footer h2 {
  color: var(--n-100);
}

.site-footer a {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--n-300);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: var(--sp-7);
}

.site-footer img {
  width: 88px;
  height: 64px;
  object-fit: contain;
  margin-bottom: var(--sp-4);
  background: var(--surface-1);
  border-radius: var(--r-sm);
}

.site-footer h2 {
  margin-bottom: var(--sp-3);
  font-size: 18px;
  line-height: 1.35;
}

.footer-token {
  color: var(--n-950);
  background: color-mix(in srgb, var(--a-300) 65%, white);
  border: 1.5px dashed var(--a-600);
}

.footer-language-links {
  display: grid;
  justify-items: start;
  gap: var(--sp-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(229, 238, 248, .22);
  font-size: 13px;
}

.footer-bottom nav {
  display: flex;
  gap: var(--sp-4);
}

.mobile-action-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  min-height: 64px;
  padding: var(--sp-2) var(--sp-4) calc(var(--sp-2) + env(safe-area-inset-bottom));
  background: var(--surface-1);
  border-top: 1px solid var(--line);
  box-shadow: var(--e-2);
}

/* Homepage visual pass: richer bands, stronger contrast, and restrained motion. */
.home-page {
  --home-sky: #DDF1FF;
  --home-mint: #E7FAEF;
  --home-lilac: #F0ECFF;
  --home-coral: #FFE9DF;
  --home-lemon: #FFF8D8;
  --home-teal: #DFF8F7;
  --home-rose: #FFEAF1;
  --home-blue-border: #8DCBFF;
  --home-mint-border: #8CDDAF;
  --home-lilac-border: #B9A9FF;
  --home-coral-border: #FFB394;
  background: #F7FCFF;
}

.home-page main {
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 176, 32, .20), transparent 24%),
    radial-gradient(circle at 92% 16%, rgba(141, 203, 255, .42), transparent 27%),
    linear-gradient(180deg, #F7FCFF 0%, #FFFFFF 38%, #F2FAFF 100%);
  background-size: 96px 100%;
}

.home-page .section,
.home-page .trust-strip,
body.home-page main .conversion-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid rgba(12, 71, 156, .16);
}

.home-page .section::before,
.home-page .conversion-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.home-page .section h2,
.home-page .conversion-band h2 {
  color: var(--n-950);
}

.home-page .section h2::before,
.home-page .conversion-band h2::before {
  content: none;
}

.home-page .hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(141, 203, 255, .50), transparent 28%),
    linear-gradient(135deg, #FFF8D8 0%, #E4F5FF 52%, #F0ECFF 100%);
  border-bottom: 3px solid var(--home-blue-border);
}

.home-page .hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -32%;
  width: 52vw;
  min-width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(12, 71, 156, .14);
  border-radius: var(--r-full);
  background: radial-gradient(circle, rgba(255, 176, 32, .24), transparent 60%);
  animation: homePulse 7s ease-in-out infinite;
  pointer-events: none;
}

.home-page .hero-media {
  background:
    linear-gradient(90deg, rgba(247, 252, 255, .92) 0%, rgba(247, 252, 255, .78) 42%, rgba(247, 252, 255, .34) 100%),
    linear-gradient(135deg, #DDF1FF 0%, #F0ECFF 48%, #FFE9DF 100%);
}

.home-page .hero__title {
  color: var(--n-950);
  text-shadow: none;
}

.home-page .hero__lede,
.home-page .hero-support {
  color: var(--ink-blue);
}

.home-page .hero .btn-secondary.on-dark {
  color: var(--brand);
  background: rgba(255, 255, 255, .48);
  border-color: var(--home-blue-border);
}

.home-page .hero .btn-secondary.on-dark:hover {
  color: var(--n-950);
  background: var(--home-lemon);
  border-color: var(--a-600);
}

.home-page .hero .chip-dark {
  color: var(--brand);
  background: rgba(255, 255, 255, .68);
  border-color: var(--home-blue-border);
}

.home-page .washer-wall {
  opacity: .95;
}

.home-page .washer-wall span {
  border-color: rgba(12, 71, 156, .24);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(221,241,255,.78)),
    var(--home-sky);
  box-shadow: 0 18px 34px rgba(12, 71, 156, .12), inset 0 0 0 8px rgba(255,255,255,.42);
}

.home-page .washer-wall span::before,
.home-page .machine-large::before {
  animation: drumTurn 8s linear infinite;
  background:
    conic-gradient(from 0deg, color-mix(in srgb, var(--brand-support) 18%, transparent), rgba(12,71,156,.44), rgba(255,255,255,.80), rgba(12,71,156,.30)),
    #E8F2FF;
}

.home-page .washer-wall span:nth-child(2n)::before {
  animation-duration: 10s;
}

.home-page .photo-token {
  box-shadow: 0 12px 28px rgba(7, 19, 43, .22);
}

.home-page .trust-strip {
  background:
    linear-gradient(90deg, var(--home-coral-border) 0 14px, transparent 14px),
    linear-gradient(135deg, var(--home-lemon) 0%, var(--home-mint) 42%, var(--home-sky) 100%);
}

.home-page .trust-inner {
  padding: var(--sp-4);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(12, 71, 156, .18);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 30px rgba(7, 19, 43, .06);
}

.home-page .trust-inner p::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: var(--sp-2);
  vertical-align: middle;
  border-radius: var(--r-sm);
  background:
    linear-gradient(90deg, var(--a-500) 0 7px, transparent 7px),
    radial-gradient(circle at 62% 52%, var(--surface-1) 0 5px, transparent 5.5px),
    var(--brand);
}

.home-page .services-section {
  background:
    linear-gradient(180deg, #FFFFFF 0%, var(--home-sky) 100%);
}

.home-page .services-section::before {
  background:
    linear-gradient(135deg, transparent 0 78%, rgba(255, 176, 32, .18) 78% 80%, transparent 80%),
    radial-gradient(circle at 90% 12%, rgba(6,111,229,.12), transparent 30%);
}

.home-page .services-section .section-head {
  margin-inline: auto;
  text-align: center;
}

.home-page .service-card {
  position: relative;
  border-color: var(--home-blue-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.98)),
    var(--home-sky);
  box-shadow: 0 14px 34px rgba(12, 71, 156, .08);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base), background var(--t-base);
}

.home-page .service-card:nth-child(2) {
  border-color: var(--home-mint-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.98)),
    var(--home-mint);
}

.home-page .service-card:nth-child(3) {
  border-color: var(--home-lilac-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.98)),
    var(--home-lilac);
}

.home-page .service-card:nth-child(4) {
  border-color: var(--home-coral-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.98)),
    var(--home-coral);
}

.home-page .service-card:nth-child(5) {
  border-color: #D8C064;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.98)),
    var(--home-lemon);
}

.home-page .service-card:nth-child(6) {
  border-color: #F4A8C2;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.98)),
    var(--home-rose);
}

.home-page .service-card:hover {
  transform: translateY(-7px) scale(1.012);
  border-color: var(--a-600);
  box-shadow: 0 22px 48px rgba(12, 71, 156, .16);
}

.home-page .service-card svg,
.home-page .pillar-grid svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: var(--brand);
  background: var(--n-100);
  border: 1px solid var(--n-200);
  border-radius: var(--r-md);
}

.home-page .service-card-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(7, 58, 134, .14));
  transition:
    filter var(--t-base),
    transform var(--t-base);
}

.home-page .service-card:hover svg {
  color: var(--n-950);
  background: var(--a-500);
  border-color: var(--a-600);
}

.home-page .service-card:hover .service-card-icon {
  filter: drop-shadow(0 18px 26px rgba(7, 58, 134, .20));
  transform: translateY(-4px) rotate(-2deg) scale(1.045);
}

.home-page .board-section {
  background:
    linear-gradient(120deg, var(--home-lemon) 0%, #FFFFFF 46%, var(--home-lilac) 100%);
}

.home-page .board-section::before {
  background:
    linear-gradient(118deg, transparent 0 18%, rgba(141,203,255,.22) 18% 20%, transparent 20% 44%, rgba(255,176,32,.18) 44% 46%, transparent 46%),
    radial-gradient(circle at 86% 20%, rgba(140,221,175,.28), transparent 30%);
  mask-image: linear-gradient(90deg, black, transparent 88%);
}

.home-page .board-section h2,
.home-page .board-section p {
  color: var(--n-950);
}

.home-page .board-section .text-link {
  color: var(--brand);
}

.home-page .board-section .board-wrap {
  border-color: var(--home-lilac-border);
  box-shadow: 0 22px 50px rgba(12, 71, 156, .12);
}

.home-page .board-section .board-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  animation: boardSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

.home-page .board-section .board-wrap {
  position: relative;
}

.home-page .pillar-grid article {
  padding: var(--sp-5);
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.96)),
    var(--home-mint);
  border: 1px solid var(--home-mint-border);
  border-radius: var(--r-lg);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.home-page .pillar-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.96)),
    var(--home-lemon);
  border-color: #D8C064;
}

.home-page .pillar-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.96)),
    var(--home-coral);
  border-color: var(--home-coral-border);
}

.home-page .pillar-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--brand-support);
  box-shadow: 0 18px 42px rgba(12, 71, 156, .14);
}

.home-page .steps-section {
  background:
    linear-gradient(180deg, var(--home-sky) 0%, var(--home-mint) 100%);
}

.home-page .steps-section::before {
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(6, 111, 229, .11) 12% 88%, transparent 88%),
    linear-gradient(120deg, transparent 0 60%, rgba(255, 176, 32, .18) 60% 62%, transparent 62%);
}

.home-page .steps article {
  padding: var(--sp-5);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 36px rgba(12, 71, 156, .08);
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
}

.home-page .steps article:nth-child(2) {
  border-color: var(--home-mint-border);
}

.home-page .steps article:nth-child(3) {
  border-color: var(--home-lilac-border);
}

.home-page .steps article:nth-child(4) {
  border-color: var(--home-coral-border);
}

.home-page .steps article:hover {
  transform: translateY(-5px);
  background: #FFFFFF;
  box-shadow: 0 22px 46px rgba(12, 71, 156, .14);
}

.home-page .steps article:not(:last-child)::after {
  background: linear-gradient(90deg, var(--brand), var(--a-500), var(--brand));
  background-size: 200% 100%;
  animation: flowLine 2.8s linear infinite;
}

.home-page .steps article > span {
  color: var(--n-950);
  background: var(--a-500);
  border-color: var(--a-600);
}

.steps p .swap {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-top: var(--sp-2);
  line-height: 1.25;
}

.home-page .oversized-section {
  background:
    radial-gradient(circle at 17% 50%, rgba(255, 176, 32, .20), transparent 31%),
    radial-gradient(circle at 84% 20%, rgba(240, 236, 255, .90), transparent 28%),
    linear-gradient(120deg, #FFFFFF 0%, var(--home-teal) 100%);
}

.home-page .oversized-art {
  border-color: rgba(12, 71, 156, .26);
  box-shadow: 0 18px 44px rgba(7, 19, 43, .10);
}

.home-page .machine-large {
  animation: machineBreathe 4.8s ease-in-out infinite;
}

.home-page .location-section {
  background:
    linear-gradient(135deg, var(--home-coral) 0%, #FFFFFF 42%, var(--home-lemon) 100%);
}

.home-page .map-card {
  border-color: rgba(12, 71, 156, .26);
  box-shadow: 0 18px 42px rgba(7, 19, 43, .09);
}

.home-page .map-pin {
  animation: pinPulse 2.4s ease-in-out infinite;
}

.home-page .faq-section {
  background:
    linear-gradient(180deg, var(--home-lilac), #FFFFFF 48%, var(--home-sky));
}

.home-page .faq-section .narrow {
  padding: var(--sp-6);
  background: var(--surface-1);
  border: 1px solid var(--home-lilac-border);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 44px rgba(7, 19, 43, .07);
}

.home-page details {
  background: linear-gradient(90deg, rgba(6, 111, 229, .045), transparent);
}

body.home-page main .conversion-band {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 176, 32, .28), transparent 26%),
    radial-gradient(circle at 82% 0%, rgba(141, 203, 255, .44), transparent 30%),
    linear-gradient(135deg, var(--home-lemon), var(--home-sky));
}

.home-page .conversion-band h2 {
  color: var(--n-950);
}

.home-page .conversion-band .btn-secondary {
  color: var(--brand);
  background: rgba(255,255,255,.36);
  border-color: var(--home-blue-border);
}

.home-page .conversion-band .btn-secondary:hover {
  color: var(--n-950);
  background: var(--surface-1);
}

.home-page .site-footer {
  color: var(--n-950);
  background:
    linear-gradient(135deg, var(--home-teal) 0%, #FFFFFF 46%, var(--home-lilac) 100%);
  border-top: 1px solid var(--home-blue-border);
}

.home-page .site-footer p,
.home-page .site-footer a,
.home-page .site-footer h2 {
  color: var(--n-950);
}

.home-page .site-footer a {
  color: var(--brand);
}

.home-page .footer-bottom {
  border-top-color: rgba(12, 71, 156, .18);
}

.home-page .home-icon-strip {
  padding: var(--sp-5) 0;
  background:
    linear-gradient(90deg, var(--home-surface-blue), #FFFFFF 48%, var(--home-surface-gold));
  border-block: 1px solid rgba(19, 88, 184, .16);
}

.home-page .home-icon-strip-grid {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: var(--sp-2);
  scrollbar-width: thin;
  scrollbar-color: var(--home-royal) transparent;
}

.home-page .home-icon-tile {
  display: grid;
  flex: 0 0 auto;
  width: 200px;
  justify-items: center;
  align-content: start;
  gap: var(--sp-2);
  padding: var(--sp-4);
  color: var(--home-blue-ink);
  text-align: center;
  text-decoration: none;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(19, 88, 184, .18);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 28px rgba(7, 58, 134, .08);
  scroll-snap-align: start;
  transition:
    background var(--t-base),
    border-color var(--t-base),
    box-shadow var(--t-base),
    transform var(--t-base);
}

.home-page .home-icon-tile img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(7, 58, 134, .13));
  transition: transform var(--t-base);
}

.home-page .home-icon-tile span {
  font: 700 .92rem/1.2 var(--font-display);
}

.home-page .home-icon-tile p {
  margin: 0;
  color: var(--text-2);
  font-size: .8125rem;
  line-height: 1.4;
}

.home-page .home-icon-tile:hover {
  color: var(--home-blue-ink);
  background: #FFFFFF;
  border-color: var(--home-yellow-rich);
  box-shadow: 0 18px 36px rgba(7, 58, 134, .13);
  transform: translateY(-4px);
}

.home-page .home-icon-tile:hover img {
  transform: scale(1.08) rotate(-3deg);
}

.home-page .scroll-reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(28px) scale(.985);
  transition:
    opacity .72s cubic-bezier(.2, .8, .2, 1),
    filter .72s cubic-bezier(.2, .8, .2, 1),
    transform .72s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.home-page .scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

/* Homepage cobalt pass: richer contrast without black/brown, and fewer card-like groups. */
.home-page {
  --home-cobalt: #1358B8;
  --home-royal: #0C6FE8;
  --home-blue-deep: #17479E;
  --home-blue-ink: #073A86;
  --home-gold-deep: #D89500;
  --home-yellow-rich: #F7BD16;
  --home-surface-blue: #E4F2FF;
  --home-surface-gold: #FFF1BC;
  --home-surface-mint: #DCF7E9;
  --home-surface-lilac: #EAE5FF;
  --home-surface-coral: #FFE1D4;
  background: #F5FAFF;
}

.home-page main {
  background:
    radial-gradient(circle at 10% 6%, rgba(247, 189, 22, .22), transparent 24%),
    radial-gradient(circle at 92% 14%, rgba(12, 111, 232, .22), transparent 28%),
    linear-gradient(180deg, #F5FAFF 0%, #FFFFFF 36%, #EEF7FF 100%);
}

.home-page .hero {
  min-height: clamp(620px, calc(100vh - 120px), 690px);
  background:
    linear-gradient(110deg, rgba(19, 88, 184, .96) 0%, rgba(12, 111, 232, .88) 46%, rgba(247, 189, 22, .28) 100%),
    linear-gradient(135deg, var(--home-cobalt), var(--home-royal));
  border-bottom-color: var(--home-yellow-rich);
}

.home-page .hero-content {
  align-items: flex-start;
  padding-block: clamp(72px, 8vh, 104px) var(--sp-7);
}

.home-page .hero-media {
  background:
    linear-gradient(90deg, rgba(19, 88, 184, .94) 0%, rgba(19, 88, 184, .74) 43%, rgba(12, 111, 232, .30) 100%),
    radial-gradient(circle at 88% 18%, rgba(247, 189, 22, .32), transparent 28%),
    linear-gradient(135deg, var(--home-cobalt), var(--home-royal));
}

.home-page .hero__title,
.home-page .hero__lede,
.home-page .hero-support {
  color: #FFFFFF;
}

.home-page .hero__lede,
.home-page .hero-support {
  color: #EAF4FF;
}

.home-page .hero .btn-secondary.on-dark {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .70);
}

.home-page .hero .btn-secondary.on-dark:hover {
  color: var(--home-blue-ink);
  background: #FFFFFF;
  border-color: #FFFFFF;
}

.home-page .hero .chip-dark {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .54);
}

.home-page .washer-wall span {
  border-color: rgba(255, 255, 255, .34);
  background:
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(228,242,255,.20)),
    rgba(255, 255, 255, .12);
  box-shadow: 0 22px 42px rgba(7, 58, 134, .20), inset 0 0 0 8px rgba(255,255,255,.14);
}

.home-page .trust-strip {
  background:
    linear-gradient(90deg, var(--home-gold-deep) 0 16px, transparent 16px),
    linear-gradient(135deg, var(--home-surface-gold) 0%, var(--home-surface-mint) 48%, var(--home-surface-blue) 100%);
}

.home-page .trust-inner {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding-block: var(--sp-4);
  border-block: 2px solid rgba(19, 88, 184, .18);
}

.home-page .services-section {
  background:
    linear-gradient(180deg, #FFFFFF 0%, var(--home-surface-blue) 100%);
}

.home-page .services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 2px solid rgba(19, 88, 184, .24);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 46px rgba(19, 88, 184, .12);
}

.home-page .service-card,
.home-page .service-card:nth-child(n) {
  min-height: 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .service-card:nth-child(odd) {
  border-right: 1px solid rgba(19, 88, 184, .18);
}

.home-page .service-card:not(:nth-last-child(-n + 2)) {
  border-bottom: 1px solid rgba(19, 88, 184, .18);
}

.home-page .service-card:nth-child(1) {
  background: linear-gradient(90deg, rgba(228, 242, 255, .78), rgba(255,255,255,.92));
}

.home-page .service-card:nth-child(2) {
  background: linear-gradient(90deg, rgba(220, 247, 233, .82), rgba(255,255,255,.92));
}

.home-page .service-card:nth-child(3) {
  background: linear-gradient(90deg, rgba(234, 229, 255, .84), rgba(255,255,255,.92));
}

.home-page .service-card:nth-child(4) {
  background: linear-gradient(90deg, rgba(255, 225, 212, .82), rgba(255,255,255,.92));
}

.home-page .service-card:nth-child(5) {
  background: linear-gradient(90deg, rgba(255, 241, 188, .86), rgba(255,255,255,.92));
}

.home-page .service-card:nth-child(6) {
  background: linear-gradient(90deg, rgba(228, 242, 255, .70), rgba(255,255,255,.92));
}

.home-page .service-card:hover {
  transform: none;
  background:
    linear-gradient(90deg, rgba(247, 189, 22, .18), rgba(255,255,255,.96));
  box-shadow: inset 0 0 0 2px rgba(216, 149, 0, .44);
}

.home-page .service-card svg,
.home-page .pillar-grid svg {
  color: #FFFFFF;
  background: var(--home-cobalt);
  border-color: var(--home-royal);
}

.home-page .service-card:hover svg {
  color: var(--home-blue-ink);
  background: var(--home-yellow-rich);
  border-color: var(--home-gold-deep);
  transform: rotate(-5deg) scale(1.08);
}

.home-page .service-card h3,
.home-page .service-card p,
.home-page .service-card span {
  grid-column: 2;
}

.home-page .service-card svg {
  grid-row: 1 / span 3;
}

.home-page .board-section {
  background:
    linear-gradient(120deg, var(--home-cobalt) 0%, var(--home-royal) 58%, var(--home-surface-gold) 58% 100%);
}

.home-page .board-section h2,
.home-page .board-section p {
  color: #FFFFFF;
}

.home-page .board-section .text-link {
  color: #FFFFFF;
}

.home-page .board-section .board-wrap {
  border-color: rgba(255, 255, 255, .50);
  box-shadow: 0 26px 60px rgba(7, 58, 134, .24);
}

.home-page .pillar-grid {
  gap: 0;
  background:
    linear-gradient(90deg, rgba(19, 88, 184, .12), transparent 24%),
    #FFFFFF;
  border-block: 2px solid rgba(19, 88, 184, .18);
}

.home-page .pillar-grid article,
.home-page .pillar-grid article:nth-child(n) {
  padding: var(--sp-6);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .pillar-grid article + article {
  border-left: 1px solid rgba(19, 88, 184, .18);
}

.home-page .pillar-grid article:hover {
  transform: translateY(-3px);
  box-shadow: none;
  background: linear-gradient(180deg, rgba(247, 189, 22, .16), transparent);
}

.home-page .steps-section {
  background:
    linear-gradient(105deg, var(--home-surface-blue) 0%, var(--home-surface-mint) 58%, var(--home-surface-gold) 100%);
}

.home-page .steps {
  position: relative;
  gap: var(--sp-8);
  padding-block: var(--sp-4);
}

.home-page .steps::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 66px;
  height: 4px;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--home-cobalt), var(--home-yellow-rich), var(--home-royal));
}

.home-page .steps article,
.home-page .steps article:nth-child(n) {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .steps article:not(:last-child)::after {
  display: none;
}

.home-page .steps article > span {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  background: var(--home-blue-deep);
  border: 3px solid var(--home-yellow-rich);
  box-shadow: 0 12px 24px rgba(19, 88, 184, .18);
}

.home-page .steps article:hover {
  transform: translateY(-5px);
  background: transparent;
  box-shadow: none;
}

.home-page .steps article:hover > span {
  color: var(--home-blue-ink);
  background: var(--home-yellow-rich);
  border-color: var(--home-gold-deep);
}

.home-page .oversized-section {
  background:
    radial-gradient(circle at 14% 48%, rgba(247, 189, 22, .26), transparent 30%),
    linear-gradient(120deg, #FFFFFF 0%, var(--home-surface-blue) 54%, var(--home-surface-mint) 100%);
}

.home-page .location-section {
  background:
    linear-gradient(135deg, var(--home-surface-coral) 0%, #FFFFFF 42%, var(--home-surface-gold) 100%);
}

.home-page .faq-section {
  background:
    linear-gradient(120deg, var(--home-blue-deep) 0 28%, var(--home-surface-lilac) 28% 100%);
}

.home-page .conversion-band {
  padding-block: clamp(56px, 7vw, 86px);
  background:
    radial-gradient(circle at 18% 8%, rgba(247, 189, 22, .30), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(12, 111, 232, .20), transparent 30%),
    linear-gradient(180deg, var(--home-surface-lilac) 0%, var(--home-surface-blue) 44%, #D9EEFF 100%);
  border-top: 0;
  border-bottom: 0;
}

.home-page .conversion-inner {
  max-width: 920px;
}

.home-page .conversion-band h2 {
  display: block;
  width: 100%;
  text-align: center;
}

.home-page .conversion-band h2::before {
  display: none;
}

.home-page .conversion-band h2 {
  color: var(--home-blue-ink);
}

.home-page .conversion-actions {
  justify-content: center;
}

.home-page .conversion-band .btn-secondary {
  color: var(--home-blue-ink);
  background: rgba(255, 255, 255, .52);
  border-color: rgba(19, 88, 184, .34);
}

.home-page .conversion-band .btn-secondary:hover {
  color: var(--home-blue-ink);
  background: #FFFFFF;
}

.home-page .site-footer {
  background:
    linear-gradient(135deg, var(--home-blue-deep) 0%, var(--home-cobalt) 66%, var(--home-royal) 100%);
  border-top: 4px solid var(--home-yellow-rich);
}

.home-page .site-footer p,
.home-page .site-footer a,
.home-page .site-footer h2 {
  color: #FFFFFF;
}

.home-page .site-footer a {
  color: #EAF4FF;
}

.home-page .footer-bottom {
  border-top-color: rgba(255, 255, 255, .22);
}

@keyframes drumTurn {
  to { transform: rotate(360deg); }
}

@keyframes homePulse {
  0%, 100% { transform: scale(.96); opacity: .72; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes boardSweep {
  0%, 42% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

@keyframes flowLine {
  to { background-position: -200% 0; }
}

@keyframes machineBreathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6,111,229,.28), var(--e-2); }
  50% { box-shadow: 0 0 0 12px rgba(6,111,229,0), var(--e-2); }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-9);
  background: var(--surface-2);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -40% 44%;
  height: 420px;
  background: radial-gradient(circle, rgba(6, 111, 229, .16), transparent 68%);
  pointer-events: none;
}

/* Light photo hero: a real photo in the background, not the dark service-page treatment.
   White scrim keeps the left-hand text legible; heading/body stay black regardless of the photo.
   Every rule here needs !important: .sub-page's dark-hero theme (and its doc2-*-page panel
   variants) styles the same elements with equal-or-higher CSS specificity and wins the cascade
   otherwise, since .page-hero-photo is intentionally opting a page OUT of that shared theme. */
.page-hero-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-photo.page-hero::before {
  display: block !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .88) 34%, rgba(255, 255, 255, .55) 60%, rgba(255, 255, 255, .12) 88%, rgba(255, 255, 255, 0) 100%) !important;
}

.page-hero-photo h1,
.page-hero-photo p {
  color: #0A0A0A !important;
}

.page-hero-photo .chip {
  color: #0A0A0A !important;
  background: rgba(255, 255, 255, .9) !important;
  border-color: var(--line) !important;
}

.page-hero-photo .page-hero-panel,
.page-hero-photo .doc2-hero-panel {
  background: rgba(255, 255, 255, .92) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-lg) !important;
  box-shadow: var(--e-1) !important;
  backdrop-filter: blur(6px) !important;
}

.page-hero-photo .doc2-mini-grid > div {
  background: rgba(255, 255, 255, .85) !important;
}

@media (max-width: 720px) {
  .page-hero-photo.page-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .9) 46%, rgba(255, 255, 255, .6) 78%, rgba(255, 255, 255, .2) 100%) !important;
  }
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr);
  gap: var(--sp-7);
  align-items: center;
}

.page-hero h1 {
  max-width: 780px;
  color: var(--text-1);
  font-size: clamp(2rem, 1.55rem + 1.7vw, 2.75rem);
  line-height: 1.12;
}

.page-hero p {
  margin-top: var(--sp-4);
  font-size: clamp(1.0625rem, 1rem + .25vw, 1.1875rem);
  line-height: 1.6;
  max-width: 58ch;
}

.hero-chip-row {
  margin-top: var(--sp-5);
}

.page-hero-panel {
  min-height: 300px;
  padding: var(--sp-5);
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--e-1);
}

.page-hero-panel-image {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
}

.page-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-lines {
  display: grid;
  height: 100%;
  gap: var(--sp-4);
}

.panel-lines span {
  border-radius: var(--r-md);
  background:
    linear-gradient(90deg, var(--a-500) 0 44px, transparent 44px),
    linear-gradient(180deg, var(--n-50), var(--n-100));
  border: 1px solid var(--line);
}

.content-grid {
  display: grid;
  gap: var(--sp-6);
}

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

.content-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-card {
  display: grid;
  gap: var(--sp-3);
  min-height: 100%;
  padding: var(--sp-5);
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.info-card svg {
  width: 24px;
  height: 24px;
  color: var(--brand-support);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  color: var(--brand);
}

.story-block,
.legal-prose {
  max-width: 820px;
}

.story-block {
  padding: var(--sp-6);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.legal-prose h2 {
  margin-top: var(--sp-7);
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose h2 + p {
  margin-top: var(--sp-3);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-5);
  max-width: 920px;
}

.quote-form label {
  display: grid;
  gap: var(--sp-2);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
}

.quote-form label:has(textarea),
.quote-form .btn {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: var(--sp-3) var(--sp-4);
  color: var(--text-1);
  background: var(--surface-1);
  border: 1.5px solid var(--line-control);
  border-radius: var(--r-sm);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form small {
  grid-column: 1 / -1;
  color: var(--text-mute);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-color: var(--n-800);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 64px;
    padding-inline: 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav,
  .header-actions {
    position: fixed;
    left: 20px;
    right: 20px;
    z-index: 70;
    display: none;
    background: var(--surface-1);
  }

  .primary-nav {
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-3);
    border: 1px solid var(--line);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    box-shadow: var(--e-3);
  }

  .header-actions {
    top: min(420px, calc(100vh - 230px));
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: var(--sp-3);
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    box-shadow: var(--e-3);
  }

  body.menu-open .primary-nav,
  body.menu-open .header-actions {
    display: flex;
  }

  .primary-nav a,
  .nav-group > a {
    width: 100%;
  }

  .service-menu {
    position: static;
    min-width: 0;
    width: 100%;
    max-height: 42vh;
    overflow-y: auto;
    grid-template-columns: 1fr;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding-left: var(--sp-4);
  }

  .hero {
    min-height: 650px;
  }

  .washer-wall {
    inset: 22% -8% 8% 32%;
    grid-template-columns: repeat(2, minmax(90px, 1fr));
  }
}

@media (max-width: 899px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .container {
    width: min(100% - 40px, 1200px);
  }

  .section {
    padding-block: var(--sp-7);
  }

  .services-grid,
  .pillar-grid,
  .steps,
  .split-layout,
  .oversized-section .split-layout,
  .location-section .split-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-grid,
  .content-grid-three,
  .content-grid-four,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .page-hero-panel {
    display: none;
  }

  .trust-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -20px;
    left: 22px;
    width: 1px;
    height: 28px;
  }

  .mobile-action-bar {
    display: grid;
  }

  .hero-content {
    padding-block: 80px 96px;
  }

  .photo-token {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 599px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .hero {
    min-height: 690px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(7, 19, 43, .90) 0%, rgba(7, 19, 43, .78) 52%, rgba(7, 19, 43, .58) 100%),
      linear-gradient(135deg, var(--n-900), var(--n-700));
  }

  .washer-wall {
    inset: 48% -24% 7% 18%;
    gap: var(--sp-3);
  }

  .hero-actions,
  .conversion-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .conversion-actions .btn,
  .section-actions .btn {
    width: 100%;
  }

  .board-wrap {
    border: 0;
    background: transparent;
  }

  .board-table,
  .board-table caption,
  .board-table tbody,
  .board-table tr,
  .board-table td {
    display: block;
    width: 100%;
  }

  .board-table thead {
    display: none;
  }

  .board-table caption {
    margin-bottom: var(--sp-3);
    padding: 0;
  }

  .board-table tr {
    margin-bottom: var(--sp-3);
    padding: var(--sp-4);
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
  }

  .board-table td {
    display: flex;
    justify-content: space-between;
    gap: var(--sp-4);
    padding: var(--sp-2) 0;
    border-top: 0;
    text-align: right !important;
  }

  .board-table td::before {
    content: attr(data-label);
    color: var(--text-2);
    font-weight: 600;
    text-align: left;
  }

  summary {
    align-items: flex-start;
    padding-block: var(--sp-3);
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media (max-width: 899px) {
  .home-page .services-grid {
    grid-template-columns: 1fr;
  }

  .home-page .service-card,
  .home-page .service-card:nth-child(odd) {
    border-right: 0;
  }

  .home-page .service-card:not(:last-child) {
    border-bottom: 1px solid rgba(19, 88, 184, .18);
  }

  .home-page .pillar-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(19, 88, 184, .18);
  }

  .home-page .steps {
    gap: var(--sp-6);
    padding-left: var(--sp-5);
  }

  .home-page .steps::before {
    left: 22px;
    right: auto;
    top: 28px;
    bottom: 28px;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, var(--home-cobalt), var(--home-yellow-rich), var(--home-royal));
  }

  .home-page .steps article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: var(--sp-4);
    align-items: start;
  }

  .home-page .steps article > span {
    grid-row: 1 / span 3;
  }
}

@media (max-width: 599px) {
  .home-page .service-card,
  .home-page .service-card:nth-child(n) {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: var(--sp-4);
  }

  .home-page .service-card-icon {
    width: 36px;
    height: 36px;
  }

  .home-page .service-card svg,
  .home-page .pillar-grid svg {
    width: 38px;
    height: 38px;
    padding: 8px;
  }
}

/* Homepage generated photography integration. */
.home-page .hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(19, 88, 184, .92) 0%, rgba(19, 88, 184, .70) 38%, rgba(19, 88, 184, .18) 72%, rgba(19, 88, 184, .02) 100%),
    linear-gradient(180deg, rgba(7, 58, 134, .10), rgba(7, 58, 134, .22));
  pointer-events: none;
}

.home-page .hero-photo {
  filter: saturate(1.06) contrast(1.02);
  object-position: 64% 42%;
  transform: scale(1.035);
}

.home-page .steps-section .container {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: var(--sp-7);
  align-items: center;
}

.home-page .steps-section .section-head,
.home-page .steps-section .steps,
.home-page .steps-section .section-actions {
  grid-column: 1;
}

.home-page .pickup-photo {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--home-yellow-rich) 54%, var(--home-cobalt));
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  box-shadow: 0 24px 54px rgba(19, 88, 184, .16), inset 0 0 0 5px rgba(247, 189, 22, .18);
}

.home-page .pickup-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% center;
}

.home-page .oversized-art {
  border: 2px solid rgba(19, 88, 184, .22);
  box-shadow: 0 24px 54px rgba(19, 88, 184, .15);
}

/* Homepage spacing correction after visual review. */
.home-page .hero {
  min-height: clamp(560px, calc(100vh - 260px), 620px);
}

.home-page .hero-content {
  align-items: flex-start;
  padding-block: clamp(34px, 5vh, 58px) var(--sp-6);
}

.home-page .hero-copy {
  max-width: 760px;
}

.home-page .hero-photo {
  object-position: 66% 24%;
  transform: scale(1.09);
}

.home-page .conversion-band {
  padding-block: clamp(52px, 6vw, 78px);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 176, 32, .12), transparent 32%),
    #FFFFFF;
  border-block: 1px solid rgba(19, 88, 184, .16);
}

.home-page .conversion-band::before {
  display: none;
}

.home-page .conversion-inner {
  max-width: 980px;
  justify-items: center;
  text-align: center;
}

.home-page .conversion-band h2 {
  display: block;
  width: 100%;
  color: var(--home-blue-ink);
  text-align: center;
}

.home-page .conversion-band h2::before {
  display: none;
}

.home-page .conversion-actions {
  justify-content: center;
}

.home-page .conversion-band .btn-secondary {
  color: var(--home-blue-ink);
  background: transparent;
  border-color: rgba(19, 88, 184, .34);
}

.home-page .conversion-band .btn-secondary:hover {
  color: var(--home-blue-ink);
  background: var(--home-surface-blue);
}

.home-page .pickup-stepper-section {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, .92) 0 22%, transparent 23%),
    radial-gradient(circle at 16% 12%, rgba(247, 189, 22, .22), transparent 26%),
    linear-gradient(110deg, var(--home-surface-blue) 0%, var(--home-surface-mint) 58%, var(--home-surface-gold) 100%);
}

.home-page .pickup-stepper-section .container {
  display: block;
}

.home-page .pickup-stepper-section .section-head {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.home-page .pickup-stepper {
  position: relative;
  min-height: 690px;
  margin-top: var(--sp-7);
  display: grid;
  place-items: center;
}

.home-page .pickup-stepper::before {
  display: none;
}

.home-page .pickup-stepper::after {
  display: none;
}

.home-page .pickup-stepper-media {
  position: relative;
  z-index: 2;
  width: min(44vw, 560px);
  min-width: 420px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .86);
  border-radius: var(--r-full);
  background: var(--home-blue-deep);
  box-shadow: 0 24px 54px rgba(19, 88, 184, .20);
}

.home-page .pickup-stepper-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(19, 88, 184, .18), transparent 46%),
    linear-gradient(0deg, rgba(247, 189, 22, .10), transparent 58%);
  pointer-events: none;
}

.home-page .stepper-media-caption {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(72%, 340px);
  display: grid;
  gap: var(--sp-1);
  padding: var(--sp-4);
  color: #FFFFFF;
  text-align: center;
  justify-items: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 189, 22, .18), transparent 42%),
    rgba(7, 58, 134, .82);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--r-lg);
  opacity: 0;
  transform: translate(-50%, calc(-50% + 18px));
  transition:
    opacity .34s cubic-bezier(.2, .8, .2, 1),
    transform .34s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.home-page .stepper-media-caption.is-active {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.home-page .stepper-media-caption span {
  width: fit-content;
  padding: 4px 8px;
  color: var(--home-blue-ink);
  background: var(--home-yellow-rich);
  border-radius: var(--r-sm);
  font: 700 .85rem/1 var(--font-display);
}

.home-page .stepper-media-caption strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.12rem + .45vw, 1.5rem);
  line-height: 1.1;
}

.home-page .stepper-media-caption small {
  color: #EAF4FF;
  font-size: .95rem;
  line-height: 1.45;
}

.home-page .stepper-media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.06) contrast(1.02);
  transform: translateX(18px) scale(1.04);
  transition:
    opacity .42s cubic-bezier(.2, .8, .2, 1),
    transform .42s cubic-bezier(.2, .8, .2, 1);
}

.home-page .stepper-media-image.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.home-page .stepper-node {
  position: absolute;
  z-index: 3;
  width: min(26vw, 300px);
  display: grid;
  gap: var(--sp-2);
  color: var(--home-blue-ink);
}

.home-page .stepper-node button {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #FFFFFF;
  background: var(--home-blue-deep);
  border: 4px solid var(--home-yellow-rich);
  border-radius: var(--r-md);
  box-shadow: 0 12px 26px rgba(19, 88, 184, .18);
  font: 700 1.65rem/1 var(--font-display);
  cursor: pointer;
  transition:
    color var(--t-base),
    background var(--t-base),
    transform var(--t-base),
    box-shadow var(--t-base);
}

.home-page .stepper-node h3 {
  color: var(--home-blue-ink);
}

.home-page .stepper-node p {
  margin: 0;
  color: var(--brand);
  font-size: 1rem;
  line-height: 1.55;
}

.home-page .stepper-node.is-active button,
.home-page .stepper-node button:hover,
.home-page .stepper-node button:focus-visible {
  color: var(--home-blue-ink);
  background: var(--home-yellow-rich);
  box-shadow: 0 18px 32px rgba(19, 88, 184, .24);
  transform: translateY(-4px) scale(1.04);
}

.home-page .stepper-node-1 {
  top: 36px;
  left: 7%;
  text-align: left;
}

.home-page .stepper-node-2 {
  top: 36px;
  right: 7%;
  text-align: right;
  justify-items: end;
}

.home-page .stepper-node-3 {
  bottom: 24px;
  left: 7%;
  text-align: left;
}

.home-page .stepper-node-4 {
  right: 7%;
  bottom: 24px;
  text-align: right;
  justify-items: end;
}

.home-page .pickup-stepper-section .section-actions {
  justify-content: center;
  margin-top: var(--sp-6);
}

.home-page .btn-stepper-secondary {
  color: #FFFFFF;
  background: var(--home-cobalt);
  border-color: var(--home-royal);
}

.home-page .btn-stepper-secondary:hover {
  color: #FFFFFF;
  background: var(--home-blue-deep);
  border-color: var(--home-blue-deep);
}

.home-page .answer-station-section {
  background:
    linear-gradient(120deg, var(--home-blue-deep) 0 26%, var(--home-surface-lilac) 26% 100%);
}

.home-page .answer-station {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: var(--sp-7);
  align-items: stretch;
}

.home-page .answer-station-left {
  display: grid;
  align-content: start;
  gap: var(--sp-5);
  padding: var(--sp-6);
  color: #FFFFFF;
  background:
    radial-gradient(circle at 14% 4%, rgba(247, 189, 22, .28), transparent 28%),
    linear-gradient(145deg, var(--home-cobalt), var(--home-royal));
  border-radius: var(--r-lg);
}

.home-page .answer-station-left h2 {
  color: #FFFFFF;
}

.home-page .answer-box {
  position: relative;
  min-height: 260px;
  padding: var(--sp-5);
  overflow: hidden;
  color: var(--home-blue-ink);
  background: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, .68);
  border-radius: var(--r-lg);
}

.home-page .answer-panel {
  position: absolute;
  inset: var(--sp-5);
  display: grid;
  align-content: start;
  gap: var(--sp-3);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .28s cubic-bezier(.2, .8, .2, 1),
    transform .28s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.home-page .answer-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.home-page .answer-panel h3 {
  color: var(--home-blue-ink);
}

.home-page .answer-panel p {
  margin: 0;
  color: var(--brand);
}

.home-page .btn-answer-link {
  width: fit-content;
  color: #FFFFFF;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .66);
}

.home-page .btn-answer-link:hover {
  color: var(--home-blue-ink);
  background: #FFFFFF;
}

.home-page .fact-panels-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 189, 22, .18), transparent 24%),
    linear-gradient(180deg, #FFFFFF 0%, var(--home-surface-blue) 100%);
}

.home-page .fact-panels-section .section-head {
  margin-bottom: var(--sp-7);
}

.home-page .fact-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-5);
}

.home-page .fact-panel {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: #FFFFFF;
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-lg);
  box-shadow: 0 14px 34px rgba(12, 71, 156, .08);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.home-page .fact-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(12, 71, 156, .14);
}

.home-page .fact-copy {
  display: grid;
  gap: var(--sp-3);
}

.home-page .fact-copy h3 {
  color: var(--home-blue-ink);
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.home-page .fact-copy p {
  margin: 0;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.55;
}

.home-page .fact-structure {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, .52), transparent 30%),
    linear-gradient(135deg, var(--home-cobalt), var(--home-royal));
}

.home-page .fact-panel:nth-child(2) .fact-structure {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .62), transparent 30%),
    linear-gradient(135deg, var(--home-yellow-rich), var(--home-surface-gold));
}

.home-page .fact-panel:nth-child(3) .fact-structure {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, .52), transparent 30%),
    linear-gradient(135deg, var(--home-blue-deep), var(--home-surface-mint));
}

.home-page .fact-icon-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform var(--t-base);
}

.home-page .fact-panel:hover .fact-icon-image {
  transform: scale(1.08) rotate(-3deg);
}

.home-page .answer-question-list {
  display: grid;
  align-content: center;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: #FFFFFF;
  border: 2px solid rgba(19, 88, 184, .22);
  border-radius: var(--r-lg);
}

.home-page .answer-question {
  width: 100%;
  min-height: 72px;
  padding: var(--sp-4) var(--sp-5);
  color: var(--n-950);
  background:
    linear-gradient(90deg, rgba(6, 111, 229, .055), transparent);
  border: 1px solid rgba(19, 88, 184, .18);
  border-radius: var(--r-md);
  font: 700 clamp(1.125rem, 1.02rem + .32vw, 1.35rem)/1.25 var(--font-display);
  text-align: left;
  cursor: pointer;
  transition:
    color var(--t-base),
    background var(--t-base),
    border-color var(--t-base),
    transform var(--t-base);
}

.home-page .answer-question:hover,
.home-page .answer-question:focus-visible,
.home-page .answer-question.is-active {
  color: #FFFFFF;
  background: var(--home-cobalt);
  border-color: var(--home-royal);
  transform: translateX(6px);
}

@media (max-width: 899px) {
  .home-page .home-icon-tile {
    width: 168px;
  }

  .home-page .home-icon-tile img {
    width: 48px;
    height: 48px;
  }

  .home-page .steps-section .container {
    display: block;
  }

  .home-page .pickup-photo {
    min-height: 240px;
    margin: var(--sp-5) 0 0;
    border-radius: var(--r-lg);
  }

  .home-page .pickup-stepper {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
    place-items: stretch;
  }

  .home-page .pickup-stepper::before,
  .home-page .pickup-stepper::after {
    display: none;
  }

  .home-page .pickup-stepper-media {
    width: min(100%, 520px);
    min-width: 0;
    justify-self: center;
    border-radius: var(--r-lg);
  }

  .home-page .stepper-media-caption {
    top: 50%;
    width: calc(100% - 32px);
  }

  .home-page .stepper-node,
  .home-page .stepper-node-1,
  .home-page .stepper-node-2,
  .home-page .stepper-node-3,
  .home-page .stepper-node-4 {
    position: relative;
    inset: auto;
    width: 100%;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    column-gap: var(--sp-4);
    text-align: left;
    justify-items: start;
  }

  .home-page .stepper-node h3,
  .home-page .stepper-node p {
    grid-column: 2;
  }

  .home-page .stepper-node button {
    grid-row: 1 / span 2;
  }

  .home-page .answer-station {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .home-page .answer-station-left,
  .home-page .answer-question-list {
    padding: var(--sp-5);
  }

  .home-page .answer-box {
    min-height: 230px;
  }

  .home-page .answer-question {
    min-height: 60px;
  }

  .home-page .fact-panels {
    grid-template-columns: 1fr;
  }
}

/* Subpage system: homepage palette, editorial rails, and directory boards. */
.sub-page {
  --sub-cobalt: #1358B8;
  --sub-royal: #0C6FE8;
  --sub-blue-deep: #17479E;
  --sub-blue-ink: #073A86;
  --sub-gold: #D89500;
  --sub-yellow: #F7BD16;
  --sub-sky: #E4F2FF;
  --sub-gold-surface: #FFF1BC;
  --sub-mint: #DCF7E9;
  --sub-lilac: #EAE5FF;
  --sub-coral: #FFE1D4;
  --sub-line: rgba(19, 88, 184, .22);
  background: #F5FAFF;
}

.sub-page main {
  background:
    radial-gradient(circle at 10% 3%, rgba(247, 189, 22, .18), transparent 24%),
    radial-gradient(circle at 94% 16%, rgba(12, 111, 232, .18), transparent 30%),
    linear-gradient(180deg, #F5FAFF 0%, #FFFFFF 42%, #EEF7FF 100%);
}

.sub-page .page-hero {
  padding-block: clamp(72px, 8vw, 116px);
  color: #FFFFFF;
  background:
    linear-gradient(112deg, var(--sub-cobalt) 0%, var(--sub-royal) 62%, var(--sub-gold-surface) 62% 100%);
  border-bottom: 4px solid var(--sub-yellow);
}

.sub-page .page-hero::before {
  inset: 12% -8% auto auto;
  width: min(42vw, 560px);
  height: 560px;
  background: radial-gradient(circle, rgba(247, 189, 22, .32), transparent 64%);
}

.sub-page .page-hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(300px, .75fr);
}

.sub-page .page-hero h1,
.sub-page .page-hero p {
  color: #FFFFFF;
}

.sub-page .page-hero h1 {
  max-width: 860px;
}

.sub-page .page-hero .btn-secondary {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .68);
}

.sub-page .page-hero .btn-secondary:hover {
  color: var(--sub-blue-ink);
  background: #FFFFFF;
}

.sub-page .hero-chip-row .chip {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .48);
}

.sub-page .page-hero-panel {
  min-height: 320px;
  padding: var(--sp-5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 0;
  box-shadow: none;
}

.sub-page .page-hero-panel-image {
  min-height: 0;
  padding: 0;
  border: 4px solid rgba(255, 255, 255, .72);
  border-radius: var(--r-lg) 0 var(--r-lg) 0;
  box-shadow: 0 8px 24px rgba(7, 19, 43, .10);
}

.sub-page .page-hero-panel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12, 71, 156, .22), transparent 42%),
    linear-gradient(0deg, rgba(255, 176, 31, .16), transparent 48%);
  pointer-events: none;
}

.sub-page .page-hero-with-image {
  min-height: clamp(620px, calc(100vh - 132px), 760px);
  display: grid;
  align-items: stretch;
  padding-block: 0;
  background-color: var(--sub-cobalt);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom: 4px solid var(--sub-yellow);
}

.sub-page .page-hero-with-image::before {
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(19, 88, 184, .94) 0%, rgba(19, 88, 184, .74) 42%, rgba(12, 111, 232, .26) 72%, rgba(12, 111, 232, .08) 100%),
    linear-gradient(180deg, rgba(7, 58, 134, .10), rgba(7, 58, 134, .28));
}

.sub-page .page-hero-with-image::after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -44%;
  width: 54vw;
  min-width: 520px;
  aspect-ratio: 1;
  border-radius: var(--r-full);
  background: radial-gradient(circle, rgba(247, 189, 22, .24), transparent 62%);
  pointer-events: none;
}

.sub-page .page-hero-with-image .page-hero-grid {
  min-height: inherit;
  grid-template-columns: minmax(0, .78fr) minmax(220px, .22fr);
  align-items: center;
}

.sub-page .page-hero-with-image h1 {
  max-width: 940px;
  font-size: clamp(2.125rem, 1.44rem + 2.85vw, 3.5rem);
  line-height: 1.08;
}

.sub-page .page-hero-with-image p {
  max-width: 62ch;
  font-size: clamp(1.0625rem, 1rem + .25vw, 1.1875rem);
}

.sub-page .page-hero-bg-wash-fold {
  background-image: url("assets/service-wash-fold-hero.png");
  background-position: 68% center;
}

.sub-page .page-hero-bg-pickup-delivery {
  background-image: url("assets/service-pickup-delivery-hero.png");
  background-position: 66% center;
}

.sub-page .page-hero-bg-self-service {
  background-image: url("assets/service-self-service-hero.png");
  background-position: 68% center;
}

.sub-page .page-hero-bg-commercial {
  background-image: url("assets/service-commercial-hero.png");
  background-position: 66% center;
}

.sub-page .page-hero-bg-oversized {
  background-image: url("assets/service-oversized-hero.png");
  background-position: 68% center;
}

.sub-page .page-hero-bg-ironing-pressing {
  background-image: url("assets/service-ironing-pressing-hero.png");
  background-position: 68% center;
}

.sub-page .panel-lines {
  gap: var(--sp-3);
}

.sub-page .panel-lines span {
  border-radius: 0;
  border-color: rgba(255, 255, 255, .36);
  background:
    linear-gradient(90deg, var(--sub-yellow) 0 52px, transparent 52px),
    linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.54));
}

.sub-page .section {
  padding-block: clamp(64px, 7vw, 104px);
  border-top: 1px solid var(--sub-line);
}

.sub-page .section-white {
  background:
    linear-gradient(120deg, #FFFFFF 0%, var(--sub-sky) 100%);
}

.sub-page .section-tint {
  background:
    linear-gradient(120deg, var(--sub-mint) 0%, #FFFFFF 52%, var(--sub-gold-surface) 100%);
}

.sub-page main > .section:nth-of-type(4n) {
  background:
    linear-gradient(120deg, var(--sub-lilac) 0%, #FFFFFF 58%, var(--sub-sky) 100%);
}

.sub-page .section-head {
  max-width: 940px;
  margin-bottom: var(--sp-7);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--sub-line);
}

.sub-page .section-head h2,
.sub-page .legal-prose h2 {
  color: var(--sub-blue-ink);
}

.sub-page .section-head p {
  color: var(--sub-blue-ink);
}

.sub-page .services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 2px solid var(--sub-line);
  border-radius: 0;
  box-shadow: 0 22px 50px rgba(19, 88, 184, .12);
}

.sub-page .service-card {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-2);
  padding: var(--sp-5);
  color: var(--sub-blue-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: background var(--t-base), color var(--t-base);
}

.sub-page .service-card:nth-child(odd) {
  border-right: 1px solid var(--sub-line);
}

.sub-page .service-card:not(:nth-last-child(-n + 2)) {
  border-bottom: 1px solid var(--sub-line);
}

.sub-page .service-card:nth-child(3n + 1) {
  background: linear-gradient(90deg, rgba(228, 242, 255, .78), rgba(255,255,255,.94));
}

.sub-page .service-card:nth-child(3n + 2) {
  background: linear-gradient(90deg, rgba(220, 247, 233, .76), rgba(255,255,255,.94));
}

.sub-page .service-card:nth-child(3n) {
  background: linear-gradient(90deg, rgba(255, 241, 188, .78), rgba(255,255,255,.94));
}

.sub-page .service-card:hover {
  color: var(--sub-blue-ink);
  background:
    linear-gradient(90deg, rgba(247, 189, 22, .24), rgba(255, 255, 255, .96));
  box-shadow: inset 0 0 0 2px rgba(216, 149, 0, .35);
  transform: none;
}

.sub-page .service-card svg,
.sub-page .info-card svg {
  display: none;
}

.sub-page .service-card .site-picture-icon,
.sub-page .info-card .site-picture-icon {
  width: clamp(86px, 9vw, 124px);
  height: clamp(86px, 9vw, 124px);
  margin: -8px 0 -2px -8px;
}

.sub-page .info-card .site-picture-icon {
  width: clamp(72px, 7vw, 104px);
  height: clamp(72px, 7vw, 104px);
}

.sub-page .service-card h3,
.sub-page .info-card h3 {
  color: var(--sub-blue-deep);
}

.sub-page .service-card span {
  color: var(--sub-blue-ink);
}

.sub-page .content-grid {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .86);
  border-block: 2px solid var(--sub-line);
}

.sub-page .content-grid-three,
.sub-page .content-grid-four,
.sub-page .content-grid-auto {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sub-page .info-card {
  min-height: 0;
  padding: var(--sp-6);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.sub-page .info-card + .info-card {
  border-left: 1px solid var(--sub-line);
}

.sub-page .content-grid .info-card:nth-child(n + 4) {
  border-top: 1px solid var(--sub-line);
}

.sub-page .info-card:nth-child(3n + 1) {
  background: linear-gradient(180deg, rgba(228, 242, 255, .52), transparent);
}

.sub-page .info-card:nth-child(3n + 2) {
  background: linear-gradient(180deg, rgba(255, 241, 188, .46), transparent);
}

.sub-page .info-card:nth-child(3n) {
  background: linear-gradient(180deg, rgba(234, 229, 255, .48), transparent);
}

.sub-page .steps {
  position: relative;
  gap: var(--sp-7);
  padding-block: var(--sp-3);
}

.sub-page .steps::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 50px;
  height: 3px;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--sub-cobalt), var(--sub-yellow), var(--sub-royal));
}

.sub-page .steps article {
  position: relative;
  padding: 0;
}

.sub-page .steps article:not(:last-child)::after {
  display: none;
}

.sub-page .steps article > span {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  background: var(--sub-blue-deep);
  border: 3px solid var(--sub-yellow);
}

.sub-page .board-wrap {
  border: 2px solid var(--sub-line);
  border-radius: 0;
  box-shadow: 0 22px 50px rgba(19, 88, 184, .12);
}

.sub-page .board-table caption {
  color: var(--sub-blue-ink);
  background: var(--sub-gold-surface);
}

.sub-page .board-table th {
  color: #FFFFFF;
  background: var(--sub-blue-deep);
}

.sub-page .story-block,
.sub-page .legal-prose {
  max-width: 980px;
  padding: var(--sp-6);
  background: rgba(255,255,255,.80);
  border: 0;
  border-block: 2px solid var(--sub-line);
  border-radius: 0;
}

.sub-page .faq-list {
  max-width: 980px;
  background: rgba(255,255,255,.86);
  border-block: 2px solid var(--sub-line);
}

.sub-page details {
  padding-inline: var(--sp-4);
  background: transparent;
}

.sub-page details + details {
  border-top: 1px solid var(--sub-line);
}

.sub-page .quote-form {
  max-width: 980px;
  padding: var(--sp-6);
  background: rgba(255,255,255,.86);
  border-block: 2px solid var(--sub-line);
}

.sub-page .map-card {
  border: 2px solid var(--sub-line);
  border-radius: 0;
  box-shadow: 0 22px 50px rgba(19, 88, 184, .10);
}

.sub-page .conversion-band {
  color: #FFFFFF;
  background:
    radial-gradient(circle at 16% 0%, rgba(247, 189, 22, .34), transparent 26%),
    linear-gradient(115deg, var(--sub-cobalt), var(--sub-royal) 62%, var(--sub-blue-deep));
  border-top: 4px solid var(--sub-yellow);
}

.sub-page .conversion-band h2 {
  color: #FFFFFF;
}

.sub-page .conversion-band .btn-secondary {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .66);
}

.sub-page .conversion-band .btn-secondary:hover {
  color: var(--sub-blue-ink);
  background: #FFFFFF;
}

.sub-page .site-footer {
  background:
    linear-gradient(135deg, var(--sub-blue-deep) 0%, var(--sub-cobalt) 66%, var(--sub-royal) 100%);
  border-top: 4px solid var(--sub-yellow);
}

.sub-page .site-footer p,
.sub-page .site-footer a,
.sub-page .site-footer h2 {
  color: #FFFFFF;
}

.sub-page .site-footer a {
  color: #EAF4FF;
}

.sub-page .footer-bottom {
  border-top-color: rgba(255, 255, 255, .22);
}

@media (max-width: 899px) {
  .sub-page .page-hero-grid,
  .sub-page .services-grid,
  .sub-page .content-grid-three,
  .sub-page .content-grid-four,
  .sub-page .content-grid-auto {
    grid-template-columns: 1fr;
  }

  .sub-page .page-hero {
    background:
      linear-gradient(145deg, var(--sub-cobalt) 0%, var(--sub-royal) 78%, var(--sub-yellow) 78% 100%);
  }

  .sub-page .page-hero-with-image {
    min-height: 640px;
    background-size: cover;
  }

  .sub-page .page-hero-with-image::before {
    background:
      linear-gradient(180deg, rgba(19, 88, 184, .95) 0%, rgba(19, 88, 184, .76) 58%, rgba(12, 111, 232, .36) 100%),
      linear-gradient(90deg, rgba(7, 58, 134, .16), rgba(7, 58, 134, .30));
  }

  .sub-page .page-hero-with-image .page-hero-grid {
    min-height: inherit;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .sub-page .page-hero-bg-wash-fold,
  .sub-page .page-hero-bg-self-service,
  .sub-page .page-hero-bg-commercial,
  .sub-page .page-hero-bg-oversized,
  .sub-page .page-hero-bg-ironing-pressing {
    background-position: center;
  }

  .sub-page .page-hero-bg-pickup-delivery {
    background-position: 62% center;
  }

  .sub-page .service-card:nth-child(odd),
  .sub-page .info-card + .info-card {
    border-left: 0;
    border-right: 0;
  }

  .sub-page .service-card:not(:last-child),
  .sub-page .content-grid .info-card:nth-child(n) {
    border-bottom: 1px solid var(--sub-line);
  }

  .sub-page .content-grid .info-card:nth-child(n + 4) {
    border-top: 0;
  }

  .sub-page .steps {
    grid-template-columns: 1fr;
    padding-left: var(--sp-5);
  }

  .sub-page .steps::before {
    left: 22px;
    right: auto;
    top: 28px;
    bottom: 28px;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--sub-cobalt), var(--sub-yellow), var(--sub-royal));
  }

  .sub-page .steps article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: var(--sp-4);
  }

  .sub-page .steps article > span {
    grid-row: 1 / span 3;
  }
}

/* Homepage v4 rebuild: hero cap, short-answer block, contents list, prose measure, lite tables. */
.home-page .hero {
  min-height: max(520px, 60vh);
}

@media (max-width: 899px) {
  .home-page .hero {
    min-height: 55vh;
  }
}

@media (max-width: 599px) {
  .home-page .hero {
    min-height: max(460px, 50vh);
  }
}

.short-answer-section {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.short-answer {
  display: grid;
  gap: var(--sp-3) var(--sp-6);
  padding-block: var(--sp-6);
}

.short-answer-rows {
  display: grid;
  gap: var(--sp-2);
  flex: 1;
}

.short-answer-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--sp-3);
  align-items: baseline;
}

.short-answer-row dt {
  color: var(--text-mute);
  font: 600 14px/1.4 var(--font-display);
}

.short-answer-row dd {
  margin: 0;
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.5;
}

.short-answer-row dd a {
  color: var(--brand);
}

.short-answer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: flex-start;
}

@media (min-width: 900px) {
  .short-answer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 899px) {
  .short-answer-row {
    grid-template-columns: 1fr;
    gap: var(--sp-1);
  }

  .short-answer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .short-answer-actions .btn {
    width: 100%;
  }
}

.home-toc-section {
  background: var(--surface-1);
  border-bottom: 1px solid var(--line);
}

.home-toc {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-2) var(--sp-5);
  padding-block: var(--sp-5);
  margin: 0;
  list-style: none;
}

.home-toc a {
  display: block;
  padding: var(--sp-2) 0;
  color: var(--brand-support);
  font: 500 15px/1.4 var(--font-body);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.home-toc a:hover,
.home-toc a:focus-visible {
  border-bottom-color: currentColor;
}

@media (max-width: 899px) {
  .home-toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 599px) {
  .home-toc {
    grid-template-columns: 1fr;
    max-height: 45vh;
    overflow-y: auto;
  }
}

.home-prose {
  max-width: 68ch;
}

.home-prose p {
  margin: 0 0 var(--sp-4);
  color: var(--text-2);
  line-height: 1.65;
}

.home-prose p:last-child {
  margin-bottom: 0;
}

.home-prose h3 {
  margin: var(--sp-6) 0 var(--sp-3);
  color: var(--text-1);
}

.home-prose ul {
  color: var(--text-2);
  line-height: 1.65;
}

.home-prose ul li {
  margin-bottom: var(--sp-2);
}

.lite-table-wrap {
  max-width: 720px;
  overflow-x: auto;
}

.lite-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.lite-table th,
.lite-table td {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.lite-table th {
  color: var(--text-mute);
  font: 600 13px/1.4 var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
}

.lite-table td {
  color: var(--text-1);
}

@media (max-width: 599px) {
  .lite-table,
  .lite-table thead,
  .lite-table tbody,
  .lite-table tr,
  .lite-table td {
    display: block;
    width: 100%;
  }

  .lite-table thead {
    display: none;
  }

  .lite-table tr {
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--line);
  }

  .lite-table td {
    border-bottom: 0;
    padding: 2px 0;
  }

  .lite-table td::before {
    content: attr(data-label) ": ";
    color: var(--text-mute);
    font-weight: 600;
  }
}

.movement-gap {
  margin-top: var(--sp-9);
}

.qa-list {
  display: grid;
  gap: var(--sp-3);
}

.qa-list > div {
  padding: var(--sp-4);
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.qa-list dt {
  color: var(--brand);
  font: 600 16px/1.4 var(--font-display);
}

.qa-list dd {
  margin: var(--sp-1) 0 0;
  color: var(--text-2);
}

.good-maybe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
  margin: var(--sp-3) 0 var(--sp-5);
}

.good-maybe-grid > div {
  padding: var(--sp-4);
  border-radius: var(--r-md);
}

.good-maybe-grid .good {
  background: color-mix(in srgb, var(--brand-support) 8%, white);
  border: 1px solid color-mix(in srgb, var(--brand-support) 30%, white);
}

.good-maybe-grid .maybe {
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.good-maybe-grid dt {
  color: var(--text-mute);
  font: 600 13px/1.4 var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 4px;
}

.good-maybe-grid dd {
  margin: 0;
  color: var(--text-1);
}

@media (max-width: 599px) {
  .good-maybe-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Homepage movement restyle (index.html only, scoped to .home-page)
   Colorful bands + bordered panels replacing the plain white/tint
   prose sections. Hero, short-answer, six-services and conversion
   band are untouched. Nothing here reaches .sub-page.
   ============================================================ */

.home-page .home-movement {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-page .home-movement-sky {
  --movement-border: var(--home-blue-border);
  --movement-ink: var(--home-blue-ink);
  background:
    radial-gradient(circle at 90% 6%, rgba(141, 203, 255, .55), transparent 32%),
    linear-gradient(165deg, var(--home-sky) 0%, #FFFFFF 58%);
}

.home-page .home-movement-mint {
  --movement-border: var(--home-mint-border);
  --movement-ink: #0F6B44;
  background:
    radial-gradient(circle at 8% 92%, rgba(140, 221, 175, .48), transparent 30%),
    linear-gradient(165deg, var(--home-mint) 0%, #FFFFFF 58%);
}

.home-page .home-movement-lilac {
  --movement-border: var(--home-lilac-border);
  --movement-ink: #4B3A9E;
  background:
    radial-gradient(circle at 92% 90%, rgba(185, 169, 255, .40), transparent 30%),
    linear-gradient(165deg, var(--home-lilac) 0%, #FFFFFF 58%);
}

.home-page .home-movement-coral {
  --movement-border: var(--home-coral-border);
  --movement-ink: #A0501E;
  background:
    radial-gradient(circle at 6% 10%, rgba(255, 179, 148, .45), transparent 30%),
    linear-gradient(165deg, var(--home-coral) 0%, #FFFFFF 58%);
}

.home-page .home-movement-lemon {
  --movement-border: #D8C064;
  --movement-ink: #8A6A00;
  background:
    radial-gradient(circle at 94% 12%, rgba(247, 189, 22, .30), transparent 30%),
    linear-gradient(165deg, var(--home-lemon) 0%, #FFFFFF 58%);
}

.home-page .home-movement-teal {
  --movement-border: #6FCBC6;
  --movement-ink: #0B6E68;
  background:
    radial-gradient(circle at 8% 88%, rgba(111, 203, 198, .38), transparent 30%),
    linear-gradient(165deg, var(--home-teal) 0%, #FFFFFF 58%);
}

.home-page .home-movement-rose {
  --movement-border: #F4A8C2;
  --movement-ink: #A02458;
  background:
    radial-gradient(circle at 92% 88%, rgba(244, 168, 194, .38), transparent 30%),
    linear-gradient(165deg, var(--home-rose) 0%, #FFFFFF 58%);
}

.movement-panel {
  position: relative;
  margin-inline: auto;
  max-width: 880px;
  padding: clamp(28px, 4vw, var(--sp-7));
  background: rgba(255, 255, 255, .92);
  border: 2px solid var(--movement-border, var(--home-blue-border));
  border-radius: var(--r-lg);
  box-shadow: 0 26px 54px rgba(12, 71, 156, .13), 0 2px 8px rgba(12, 71, 156, .06);
}

.movement-panel-wide {
  max-width: 1040px;
}

.movement-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  background: linear-gradient(150deg, #FFFFFF, var(--movement-border, var(--home-blue-border)) 165%);
  border: 2px solid var(--movement-border, var(--home-blue-border));
  border-radius: var(--r-full);
  box-shadow: 0 10px 22px rgba(12, 71, 156, .16);
}

.movement-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.movement-icon-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.movement-icon-row .movement-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.movement-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  color: var(--movement-ink, var(--brand));
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--movement-border, var(--home-blue-border));
  border-radius: var(--r-full);
  font: 700 12px/1.4 var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Contents list restyled as a colorful pill/chip nav */
.home-page .home-toc-section {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--home-sky) 130%);
  border-bottom: none;
}

.home-page .home-toc {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-block: var(--sp-6);
}

.home-page .home-toc li {
  display: contents;
}

.home-page .home-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 18px;
  color: var(--home-blue-ink);
  background: #FFFFFF;
  border: 1.5px solid var(--home-blue-border);
  border-radius: var(--r-full);
  box-shadow: 0 6px 16px rgba(12, 71, 156, .09);
  font: 600 14px/1.3 var(--font-body);
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base), border-color var(--t-base);
}

.home-page .home-toc li:nth-child(6n+2) a { border-color: var(--home-mint-border); }
.home-page .home-toc li:nth-child(6n+3) a { border-color: var(--home-lilac-border); }
.home-page .home-toc li:nth-child(6n+4) a { border-color: var(--home-coral-border); }
.home-page .home-toc li:nth-child(6n+5) a { border-color: #D8C064; }
.home-page .home-toc li:nth-child(6n+0) a { border-color: #F4A8C2; }

.home-page .home-toc a:hover,
.home-page .home-toc a:focus-visible {
  color: #FFFFFF;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(12, 71, 156, .22);
  transform: translateY(-2px);
}

/* Icon-rail qa-list: which-service and guides sections */
.home-page .qa-list-rail {
  display: grid;
  gap: var(--sp-3);
}

.home-page .qa-list-rail > div {
  padding: var(--sp-4) var(--sp-5);
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 8px 20px rgba(12, 71, 156, .06);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.home-page .qa-list-rail > div:nth-child(6n+2) { border-left-color: var(--home-mint-border); }
.home-page .qa-list-rail > div:nth-child(6n+3) { border-left-color: var(--home-lilac-border); }
.home-page .qa-list-rail > div:nth-child(6n+4) { border-left-color: var(--home-coral-border); }
.home-page .qa-list-rail > div:nth-child(6n+5) { border-left-color: #D8C064; }
.home-page .qa-list-rail > div:nth-child(6n+0) { border-left-color: #F4A8C2; }

.home-page .qa-list-rail > div:hover {
  box-shadow: 0 16px 32px rgba(12, 71, 156, .12);
  transform: translateX(4px);
}

.home-page .qa-list-rail dt {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  color: var(--text-1);
  font: 600 16px/1.4 var(--font-display);
}

.home-page .qa-list-rail dt .qa-icon-img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  padding: 8px;
  object-fit: contain;
  background: var(--surface-2);
  border-radius: var(--r-full);
}

.home-page .qa-list-rail dd {
  margin: var(--sp-2) 0 0 60px;
}

@media (max-width: 599px) {
  .home-page .qa-list-rail dd {
    margin-left: 0;
  }
}

/* Icon checklist (what's on the floor) */
.home-page .amenity-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-page .amenity-checklist li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  color: var(--text-1);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  line-height: 1.4;
}

.home-page .amenity-checklist li img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
}

.home-page .amenity-checklist li .amenity-dot {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--brand-support);
  background: #FFFFFF;
  border-radius: var(--r-full);
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 599px) {
  .home-page .amenity-checklist {
    grid-template-columns: 1fr;
  }
}

/* Colorful data tables (machines, cost) */
.home-page .board-panel {
  overflow: hidden;
  background: #FFFFFF;
  border: 2px solid var(--movement-border, var(--home-blue-border));
  border-radius: var(--r-lg);
  box-shadow: 0 20px 44px rgba(12, 71, 156, .10);
}

.home-page .board-panel .lite-table-wrap {
  max-width: none;
  margin: 0;
}

.home-page .board-panel .lite-table {
  font-size: 15px;
}

.home-page .board-panel .lite-table th {
  color: #FFFFFF;
  background: var(--movement-ink, var(--brand));
  border-bottom: none;
  text-transform: none;
  font-size: 13px;
  letter-spacing: .03em;
}

.home-page .board-panel .lite-table th:first-child { border-top-left-radius: 0; }

.home-page .board-panel .lite-table td {
  border-bottom: 1px solid var(--line);
}

.home-page .board-panel .lite-table tbody tr:nth-child(odd) {
  background: var(--surface-2);
}

.home-page .board-panel .lite-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 599px) {
  .home-page .board-panel .lite-table tr {
    border-bottom: 1px solid var(--line);
  }
}

/* Split layout with map card for "getting here" */
.home-page .movement-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: var(--sp-7);
  align-items: start;
}

.home-page .movement-map-card {
  position: sticky;
  top: 96px;
  min-height: 320px;
  overflow: hidden;
  background: #FFFFFF;
  border: 2px solid var(--movement-border, var(--home-blue-border));
  border-radius: var(--r-lg);
  box-shadow: 0 22px 48px rgba(12, 71, 156, .14);
}

@media (max-width: 899px) {
  .home-page .movement-split {
    grid-template-columns: 1fr;
  }

  .home-page .movement-map-card {
    position: static;
    min-height: 220px;
    order: -1;
  }
}

/* Accordion FAQ restyle for "questions" section */
.home-page .questions-accordion.faq-list {
  margin-block: 0;
  padding: var(--sp-2) var(--sp-5);
  background: #FFFFFF;
  border: none;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 44px rgba(12, 71, 156, .10);
}

.home-page .questions-accordion details {
  border-bottom: 1px solid var(--line);
}

.home-page .questions-accordion details:last-child {
  border-bottom: none;
}

.home-page .questions-accordion summary {
  color: var(--home-blue-ink);
}

/* Businesses row chips */
.home-page .business-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.home-page .business-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4) var(--sp-2) var(--sp-2);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  color: var(--text-1);
  font: 600 14px/1.3 var(--font-body);
}

.home-page .business-chip img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 599px) {
  .home-page .home-movement .home-prose,
  .movement-panel {
    padding-inline: var(--sp-5);
  }
}

/* Service page final polish: shared by English and Spanish service pages. */
.sub-page {
  --sub-card-shadow: 0 22px 46px rgba(12, 71, 156, .12);
  --sub-soft-line: rgba(12, 71, 156, .16);
}

.sub-page main {
  background:
    linear-gradient(180deg, #F3F7FC 0%, #FFFFFF 34%, #E4F2FF 100%);
}

.sub-page .page-hero {
  overflow: hidden;
  padding-block: clamp(70px, 7vw, 104px);
  background:
    linear-gradient(112deg, var(--sub-cobalt) 0%, var(--sub-royal) 66%, var(--sub-gold-surface) 66% 100%);
}

.sub-page .page-hero::before,
.sub-page .page-hero-with-image::after,
.sub-page .conversion-band::before {
  display: none;
}

.sub-page .page-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.sub-page .page-hero h1 {
  max-width: 15ch;
  text-wrap: balance;
}

.sub-page .page-hero p {
  max-width: 58ch;
}

.sub-page .page-hero-with-image {
  min-height: clamp(480px, 58vh, 640px);
  align-items: center;
  padding-block: 0;
  background-color: var(--sub-cobalt);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 68% center;
}

.sub-page .page-hero-bg-wash-fold {
  background-image: url("assets/service-wash-fold-hero.png");
}

.sub-page .page-hero-bg-pickup-delivery {
  background-image: url("assets/service-pickup-delivery-hero.png");
}

.sub-page .page-hero-bg-self-service {
  background-image: url("assets/service-self-service-hero.png");
}

.sub-page .page-hero-bg-commercial {
  background-image: url("assets/service-commercial-hero.png");
}

.sub-page .page-hero-bg-oversized {
  background-image: url("assets/service-oversized-hero.png");
}

.sub-page .page-hero-bg-ironing-pressing {
  background-image: url("assets/service-ironing-pressing-hero.png");
}

.sub-page .page-hero-with-image::before {
  background:
    linear-gradient(90deg, rgba(7, 58, 134, .92) 0%, rgba(19, 88, 184, .76) 34%, rgba(12, 111, 232, .20) 54%, rgba(12, 111, 232, .02) 78%, transparent 100%);
}

.sub-page .page-hero-with-image .page-hero-grid {
  grid-template-columns: minmax(0, .62fr) minmax(300px, .38fr);
  min-height: inherit;
}

.sub-page .short-answer-section {
  background:
    linear-gradient(90deg, var(--sub-gold) 0 14px, transparent 14px),
    linear-gradient(120deg, var(--sub-gold-surface) 0%, var(--sub-mint) 48%, var(--sub-sky) 100%);
  border-bottom: 1px solid var(--sub-soft-line);
}

.sub-page .short-answer {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  align-items: stretch;
  gap: var(--sp-5);
  padding-block: var(--sp-6);
}

.sub-page .short-answer-rows {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
}

.sub-page .short-answer-row {
  grid-template-columns: minmax(84px, .34fr) minmax(0, 1fr);
  gap: var(--sp-3);
  align-items: center;
  min-height: 70px;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--sub-soft-line);
  border-radius: var(--r-md);
}

.sub-page .short-answer-row dt {
  color: var(--sub-blue-deep);
}

.sub-page .short-answer-row dd {
  color: var(--text-1);
}

.sub-page .short-answer-actions {
  align-content: center;
  align-items: stretch;
  justify-content: center;
  padding: var(--sp-4);
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--sub-soft-line);
  border-radius: var(--r-md);
  box-shadow: 0 14px 30px rgba(12, 71, 156, .08);
}

.sub-page .home-toc-section {
  background:
    linear-gradient(135deg, #FFFFFF 0%, var(--sub-sky) 52%, var(--sub-gold-surface) 100%);
  border-bottom: 1px solid var(--sub-soft-line);
}

.sub-page .home-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  padding-block: var(--sp-6);
}

.sub-page .home-toc li {
  display: contents;
}

.sub-page .home-toc a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 17px;
  color: var(--sub-blue-ink);
  background: #FFFFFF;
  border: 1.5px solid var(--sub-line);
  border-radius: var(--r-full);
  box-shadow: 0 8px 18px rgba(12, 71, 156, .08);
  font-weight: 600;
}

.sub-page .home-toc li:nth-child(4n + 2) a {
  border-color: color-mix(in srgb, var(--sub-mint) 66%, var(--sub-blue-deep));
}

.sub-page .home-toc li:nth-child(4n + 3) a {
  border-color: color-mix(in srgb, var(--sub-lilac) 66%, var(--sub-blue-deep));
}

.sub-page .home-toc li:nth-child(4n) a {
  border-color: color-mix(in srgb, var(--sub-coral) 64%, var(--sub-gold));
}

.sub-page .home-toc a:hover,
.sub-page .home-toc a:focus-visible {
  color: #FFFFFF;
  background: var(--sub-blue-deep);
  border-color: var(--sub-blue-deep);
  box-shadow: 0 12px 26px rgba(12, 71, 156, .18);
  transform: translateY(-2px);
}

.sub-page .section {
  padding-block: clamp(46px, 6vw, 80px);
  border-top: 1px solid var(--sub-soft-line);
}

.sub-page .section-white {
  background:
    linear-gradient(155deg, #FFFFFF 0%, #FFFFFF 54%, var(--sub-sky) 100%);
}

.sub-page .section-tint {
  background:
    linear-gradient(155deg, var(--sub-mint) 0%, #FFFFFF 50%, var(--sub-gold-surface) 100%);
}

.sub-page main > .section:nth-of-type(4n) {
  background:
    linear-gradient(155deg, var(--sub-lilac) 0%, #FFFFFF 56%, var(--sub-sky) 100%);
}

.sub-page .home-prose {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  padding: clamp(24px, 3.4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .90));
  border: 1.5px solid var(--sub-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sub-card-shadow);
}

.sub-page .home-prose h2 {
  margin-bottom: var(--sp-3);
  color: var(--sub-blue-ink);
  font-size: clamp(1.5rem, 1.32rem + .7vw, 2rem);
}

.sub-page .home-prose h3 {
  margin-top: var(--sp-6);
  color: var(--sub-blue-deep);
}

.sub-page .home-prose p,
.sub-page .home-prose ul {
  max-width: none;
  line-height: 1.72;
}

.sub-page .qa-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.sub-page .qa-list > div {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  padding: var(--sp-4);
  background:
    linear-gradient(90deg, rgba(228, 242, 255, .70), #FFFFFF 62%);
  border: 1px solid var(--sub-line);
  border-radius: var(--r-lg);
  box-shadow: none;
}

.sub-page .qa-list > div:nth-child(3n + 2) {
  background:
    linear-gradient(90deg, rgba(220, 247, 233, .70), #FFFFFF 62%);
}

.sub-page .qa-list > div:nth-child(3n) {
  background:
    linear-gradient(90deg, rgba(255, 241, 188, .76), #FFFFFF 62%);
}

.sub-page .qa-list dt {
  color: var(--sub-blue-deep);
}

.sub-page .qa-list dd {
  color: var(--text-2);
}

.sub-page .lite-table-wrap {
  max-width: none;
  margin: var(--sp-5) 0;
  background: #FFFFFF;
  border: 1.5px solid var(--sub-line);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 38px rgba(12, 71, 156, .10);
}

.sub-page .lite-table th {
  color: #FFFFFF;
  background:
    linear-gradient(90deg, var(--sub-blue-deep), var(--sub-royal));
  text-transform: none;
  letter-spacing: 0;
}

.sub-page .lite-table tbody tr:nth-child(odd) {
  background: #F3F7FC;
}

.sub-page .lite-table td:first-child {
  color: var(--sub-blue-deep);
  font-weight: 700;
}

.sub-page .good-maybe-grid {
  gap: var(--sp-3);
  margin: var(--sp-4) 0 var(--sp-5);
}

.sub-page .good-maybe-grid > div {
  border-radius: var(--r-lg);
  box-shadow: 0 12px 24px rgba(12, 71, 156, .07);
}

.sub-page .good-maybe-grid .good {
  background:
    linear-gradient(180deg, #FFFFFF, var(--sub-mint));
  border-color: color-mix(in srgb, var(--sub-mint) 58%, var(--sub-blue-deep));
}

.sub-page .good-maybe-grid .maybe {
  background:
    linear-gradient(180deg, #FFFFFF, var(--sub-gold-surface));
  border-color: rgba(216, 149, 0, .34);
}

.sub-page .services-grid,
.sub-page .content-grid,
.sub-page .board-wrap,
.sub-page .story-block,
.sub-page .legal-prose,
.sub-page .faq-list,
.sub-page .quote-form,
.sub-page .map-card {
  border-radius: var(--r-lg);
  box-shadow: var(--sub-card-shadow);
}

.sub-page .services-grid,
.sub-page .content-grid {
  border: 1.5px solid var(--sub-line);
}

.sub-page .service-card,
.sub-page .info-card {
  padding: var(--sp-5);
}

.sub-page .service-card .site-picture-icon,
.sub-page .info-card .site-picture-icon {
  margin: 0 0 var(--sp-2);
}

.sub-page .conversion-band {
  background:
    linear-gradient(115deg, var(--sub-cobalt) 0 44%, var(--sub-royal) 44% 76%, var(--sub-blue-deep) 76% 100%);
}

@media (max-width: 999px) {
  .sub-page .short-answer,
  .sub-page .short-answer-rows,
  .sub-page .qa-list {
    grid-template-columns: 1fr;
  }

  .sub-page .home-prose {
    width: min(100% - 32px, 1120px);
    padding: var(--sp-5);
  }

  .sub-page .home-toc {
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: var(--sp-5);
  }

  .sub-page .home-toc li {
    display: block;
    flex: 0 0 auto;
  }

  .sub-page .home-toc a {
    white-space: nowrap;
  }
}

@media (max-width: 599px) {
  .sub-page .page-hero {
    padding-block: clamp(54px, 14vw, 76px);
  }

  .sub-page .page-hero h1 {
    max-width: 12ch;
  }

  .sub-page .page-hero-with-image {
    min-height: 620px;
    padding-block: 0;
    background-position: center;
  }

  .sub-page .page-hero-with-image::before {
    background:
      linear-gradient(180deg, rgba(7, 58, 134, .92) 0%, rgba(19, 88, 184, .74) 52%, rgba(12, 111, 232, .18) 100%);
  }

  .sub-page .page-hero-with-image .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .sub-page .short-answer-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sub-page .short-answer-actions {
    padding: var(--sp-3);
  }

  .sub-page .home-prose {
    width: min(100% - 28px, 1120px);
    padding-inline: var(--sp-4);
  }

  .sub-page .lite-table-wrap {
    padding: var(--sp-4);
  }
}

/* Site-wide rollout: carry the approved home/service system to every subpage. */
.sub-page {
  --rollout-rule: color-mix(in srgb, var(--sub-line) 74%, #FFFFFF);
  --rollout-panel: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .90));
}

.sub-page .site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: var(--rollout-rule);
  box-shadow: 0 1px 0 rgba(255, 176, 32, .48);
  backdrop-filter: blur(10px);
}

.sub-page .page-hero-page:not(.page-hero-with-image) {
  position: relative;
  min-height: clamp(360px, 44vh, 500px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(112deg, var(--sub-cobalt) 0%, var(--sub-royal) 63%, var(--sub-gold-surface) 63% 100%);
}

.sub-page .page-hero-page:not(.page-hero-with-image)::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2));
  bottom: 0;
  width: min(34vw, 420px);
  height: 46%;
  background:
    linear-gradient(90deg, var(--sub-yellow) 0 42%, transparent 42% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .26), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .34);
  border-bottom: 0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: .62;
  pointer-events: none;
}

.sub-page .page-hero-page:not(.page-hero-with-image) .page-hero-grid {
  position: relative;
  z-index: 1;
}

.sub-page .section-head {
  max-width: 1040px;
  padding: var(--sp-5) var(--sp-6);
  background: rgba(255, 255, 255, .74);
  border: 1px solid var(--rollout-rule);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 34px rgba(12, 71, 156, .08);
}

.sub-page .section-head h2 {
  color: var(--sub-blue-ink);
  text-wrap: balance;
}

.sub-page .section-head p {
  max-width: 70ch;
  margin-top: var(--sp-2);
}

.sub-page .story-block,
.sub-page .legal-prose,
.sub-page .faq-list,
.sub-page .quote-form {
  width: min(1040px, calc(100% - 48px));
  max-width: 1040px;
  margin-inline: auto;
  padding: clamp(24px, 3.2vw, 40px);
  background: var(--rollout-panel);
  border: 1.5px solid var(--sub-line);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 38px rgba(12, 71, 156, .10);
}

.sub-page .legal-prose p,
.sub-page .legal-prose li,
.sub-page .story-block p,
.sub-page .story-block li {
  max-width: 72ch;
  line-height: 1.72;
}

.sub-page .legal-prose h2,
.sub-page .story-block h2 {
  color: var(--sub-blue-ink);
  margin-top: var(--sp-7);
}

.sub-page .legal-prose h2:first-child,
.sub-page .story-block h2:first-child {
  margin-top: 0;
}

.sub-page .legal-prose h3,
.sub-page .story-block h3 {
  color: var(--sub-blue-deep);
  margin-top: var(--sp-5);
}

.sub-page .content-grid {
  border-radius: var(--r-lg);
  box-shadow: 0 18px 38px rgba(12, 71, 156, .10);
}

.sub-page .info-card {
  display: grid;
  gap: var(--sp-3);
  min-height: 180px;
  align-content: start;
}

.sub-page .info-card p,
.sub-page .service-card p {
  max-width: none;
}

.sub-page .info-card:hover,
.sub-page .service-card:hover {
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--sub-royal) 24%, transparent);
}

.sub-page .faq-list {
  display: grid;
  gap: var(--sp-2);
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.sub-page .faq-list details {
  overflow: hidden;
  background: #FFFFFF;
  border: 1.5px solid var(--sub-line);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 26px rgba(12, 71, 156, .08);
}

.sub-page .faq-list summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: var(--sp-4) var(--sp-5);
  color: var(--sub-blue-ink);
  font-family: var(--font-display);
  font-weight: 700;
}

.sub-page .faq-list details p {
  padding: 0 var(--sp-5) var(--sp-5);
}

.sub-page .board-wrap,
.sub-page .map-card {
  overflow: hidden;
  border: 1.5px solid var(--sub-line);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 38px rgba(12, 71, 156, .10);
}

.sub-page .board-table caption {
  padding: var(--sp-4) var(--sp-5);
  color: var(--sub-blue-ink);
  background:
    linear-gradient(90deg, var(--sub-gold-surface), #FFFFFF);
  font-family: var(--font-display);
  font-weight: 700;
}

.sub-page .board-table th {
  color: #FFFFFF;
  background:
    linear-gradient(90deg, var(--sub-blue-deep), var(--sub-royal));
}

.sub-page .board-table tbody tr:nth-child(odd) {
  background: #F3F7FC;
}

.sub-page .quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
}

.sub-page .quote-form label,
.sub-page .quote-form small,
.sub-page .quote-form button {
  grid-column: 1 / -1;
}

.sub-page .quote-form input,
.sub-page .quote-form select,
.sub-page .quote-form textarea {
  background: #FFFFFF;
  border-color: var(--sub-line);
  border-radius: var(--r-md);
}

.sub-page .quote-form input:focus,
.sub-page .quote-form select:focus,
.sub-page .quote-form textarea:focus {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-color: var(--sub-royal);
}

.sub-page .conversion-band {
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--sub-yellow);
}

.sub-page .conversion-band .container {
  position: relative;
  z-index: 1;
}

.sub-page .conversion-band::after {
  content: "";
  position: absolute;
  inset: auto max(24px, calc((100vw - 1200px) / 2)) 0 auto;
  width: min(30vw, 360px);
  height: 70%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .24);
  border-bottom: 0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  pointer-events: none;
}

/* Homepage parity for the Spanish index, which uses the shared stylesheet only. */
.home-page .site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(12, 71, 156, .2);
  box-shadow: 0 1px 0 rgba(255, 176, 32, .48);
  backdrop-filter: blur(10px);
}

.home-page .hero {
  min-height: clamp(440px, 52vh, 590px);
  border-bottom: 4px solid var(--brand-accent);
}

.home-page .hero::after {
  background:
    linear-gradient(90deg, rgba(12, 71, 156, .92) 0%, rgba(12, 71, 156, .74) 38%, rgba(12, 71, 156, .20) 58%, rgba(7, 19, 43, .02) 100%),
    linear-gradient(135deg, rgba(255, 176, 32, .18) 0 12%, transparent 12% 100%);
}

.home-page .hero-copy {
  max-width: 760px;
}

.home-page .hero__title {
  max-width: 16ch;
  text-wrap: balance;
}

.home-page .hero__lede {
  max-width: 58ch;
}

.home-page .photo-token,
.home-page .swap {
  color: var(--text-1);
  background: #FFF5DD;
  border: 1px dashed var(--sub-gold, #D89500);
  border-radius: var(--r-sm);
  box-shadow: 0 4px 12px rgba(216, 149, 0, .12);
}

.home-page .short-answer-section {
  background:
    linear-gradient(90deg, var(--sub-gold, #D89500) 0 14px, transparent 14px 100%),
    linear-gradient(120deg, var(--home-lemon, #FFF8D8) 0%, var(--home-mint, #E7FAEF) 48%, var(--home-sky, #DDF1FF) 100%);
  border-bottom: 1px solid rgba(12, 71, 156, .16);
}

.home-page .short-answer {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: stretch;
  gap: var(--sp-5);
  padding-block: 30px;
}

.home-page .short-answer-rows {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
}

.home-page .short-answer-row {
  grid-template-columns: minmax(82px, .32fr) minmax(0, 1fr);
  min-height: 68px;
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(12, 71, 156, .18);
  border-radius: var(--r-md);
}

.home-page .short-answer-actions {
  align-content: center;
  align-items: stretch;
  justify-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, .70);
  border: 1px solid rgba(12, 71, 156, .18);
  border-radius: var(--r-lg);
}

.home-page .home-toc-section {
  background:
    linear-gradient(135deg, #FFFFFF 0%, #E4F2FF 52%, #FFF8D8 100%);
  border-bottom: 1px solid rgba(12, 71, 156, .16);
}

.home-page .home-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  padding-block: 28px;
}

.home-page .home-toc li {
  display: contents;
}

.home-page .home-toc a {
  min-height: 44px;
  padding: 10px 18px;
  color: #073A86;
  background: #FFFFFF;
  border: 1.5px solid #8DCBFF;
  border-radius: var(--r-full);
  box-shadow: 0 8px 20px rgba(12, 71, 156, .08);
  font-weight: 600;
}

.home-page .home-movement {
  padding-block: clamp(44px, 6vw, 78px);
  border-bottom: 1px solid rgba(12, 71, 156, .14);
}

.home-page .movement-panel,
.home-page .movement-panel-wide {
  width: min(1120px, 100%);
  max-width: none;
  padding: clamp(24px, 3.4vw, 42px);
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1.5px solid var(--movement-border, #8DCBFF);
  border-radius: var(--r-lg);
  box-shadow: 0 22px 48px rgba(12, 71, 156, .12);
}

.home-page .movement-icon {
  float: left;
  width: 58px;
  height: 58px;
  margin: 0 16px 8px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .movement-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.home-page .movement-icon-row .movement-icon {
  float: none;
  width: 50px;
  height: 50px;
  margin: 0;
}

.home-page .movement-icon-row .movement-icon img {
  width: 50px;
  height: 50px;
}

.home-page .qa-list-rail {
  clear: both;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.home-page .qa-list-rail dt .qa-icon-img {
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.home-page .qa-list-rail dd {
  margin-left: 58px;
}

.home-page .home-prose {
  max-width: none;
}

.home-page .home-prose p,
.home-page .home-prose ul {
  max-width: none;
  line-height: 1.72;
}

.home-page .board-panel,
.home-page .questions-accordion details,
.home-page .movement-map-card {
  border-radius: var(--r-lg);
  box-shadow: 0 18px 38px rgba(12, 71, 156, .10);
}

.home-page .services-grid {
  gap: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 1.5px solid #8DCBFF;
  border-radius: var(--r-lg);
  box-shadow: 0 22px 48px rgba(12, 71, 156, .12);
}

.home-page .service-card-icon {
  width: 58px;
  height: 58px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 899px) {
  .sub-page .page-hero-page:not(.page-hero-with-image)::after,
  .sub-page .conversion-band::after {
    display: none;
  }

  .sub-page .section-head,
  .sub-page .story-block,
  .sub-page .legal-prose,
  .sub-page .quote-form {
    width: min(100% - 32px, 1040px);
    padding: var(--sp-5);
  }

  .sub-page .quote-form {
    grid-template-columns: 1fr;
  }

  .home-page .short-answer,
  .home-page .short-answer-rows,
  .home-page .qa-list-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 599px) {
  .sub-page .page-hero-page:not(.page-hero-with-image) {
    min-height: 360px;
  }

  .sub-page .section-head,
  .sub-page .story-block,
  .sub-page .legal-prose,
  .sub-page .quote-form {
    width: min(100% - 28px, 1040px);
    padding-inline: var(--sp-4);
  }

  .sub-page .faq-list summary {
    padding-inline: var(--sp-4);
  }

  .sub-page .faq-list details p {
    padding-inline: var(--sp-4);
  }

  .home-page .hero {
    min-height: max(460px, 50vh);
  }

  .home-page .hero::after {
    background:
      linear-gradient(180deg, rgba(12, 71, 156, .90) 0%, rgba(12, 71, 156, .74) 62%, rgba(12, 71, 156, .24) 100%);
  }

  .home-page .home-toc {
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 18px;
  }

  .home-page .home-toc li {
    display: block;
    flex: 0 0 auto;
  }

  .home-page .home-toc a {
    white-space: nowrap;
  }

  .home-page .movement-icon {
    width: 48px;
    height: 48px;
    margin-right: 12px;
  }

  .home-page .movement-icon img {
    width: 48px;
    height: 48px;
  }
}

/* ============================================================
   Homepage section variety pass
   Scoped to the English index page structure via .home-page ids.
   Keeps copy intact while changing section rhythm and contrast.
   ============================================================ */

.home-page #what-this-is {
  background:
    linear-gradient(90deg, rgba(216, 149, 0, .20) 0 12px, transparent 12px),
    linear-gradient(135deg, #FFFFFF 0%, var(--home-surface-blue) 42%, var(--home-surface-mint) 100%);
}

.home-page #what-this-is .movement-panel {
  display: grid;
  grid-template-columns: minmax(190px, .36fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  background: #FFFFFF;
  border: 2px solid var(--home-blue-border);
}

.home-page #what-this-is .movement-icon {
  float: none;
  width: 100%;
  height: 100%;
  min-height: 420px;
  margin: 0;
  background:
    radial-gradient(circle at 44% 38%, rgba(255, 255, 255, .84), transparent 30%),
    linear-gradient(155deg, var(--home-surface-gold) 0%, var(--home-surface-blue) 48%, var(--home-royal) 100%);
}

.home-page #what-this-is .movement-icon img {
  width: min(240px, 76%);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(0, 35, 88, .22));
}

.home-page #what-this-is .home-prose {
  padding: clamp(28px, 4vw, 56px);
}

.home-page #what-this-is .home-prose h2 {
  max-width: 12ch;
  margin-bottom: var(--sp-5);
  color: var(--home-blue-ink);
  font-size: clamp(2.125rem, 1.44rem + 2.85vw, 3.5rem);
  line-height: .95;
  text-wrap: balance;
}

.home-page #what-this-is .home-prose h3 {
  width: fit-content;
  margin-top: var(--sp-7);
  padding: 10px 16px;
  color: var(--home-blue-ink);
  background: var(--home-surface-gold);
  border: 1px solid color-mix(in srgb, var(--home-yellow-rich) 62%, var(--home-gold-deep));
  border-radius: var(--r-md);
}

.home-page #getting-here {
  background:
    linear-gradient(180deg, #FFFFFF 0%, var(--home-surface-mint) 100%);
}

.home-page #getting-here .movement-split {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .56fr);
  align-items: start;
}

.home-page #getting-here .movement-panel {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--home-teal) 72%, transparent), transparent 34%),
    #FFFFFF;
  border-color: var(--home-mint-border);
}

.home-page #getting-here .movement-map-card {
  position: sticky;
  top: 112px;
  display: grid;
  min-height: 520px;
  align-self: start;
  background:
    linear-gradient(160deg, var(--home-blue-deep), var(--home-cobalt) 58%, var(--home-royal));
  border: 0;
  border-radius: var(--r-md);
  box-shadow: 0 26px 58px rgba(7, 58, 134, .24);
}

.home-page #getting-here .map-grid {
  min-height: 100%;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(118deg, transparent 0 30%, rgba(255, 255, 255, .20) 30% 31%, transparent 31%),
    linear-gradient(25deg, transparent 0 52%, rgba(247, 189, 22, .72) 52% 53%, transparent 53%),
    linear-gradient(158deg, transparent 0 62%, rgba(255, 255, 255, .18) 62% 63%, transparent 63%);
}

.home-page #getting-here .map-grid::before {
  content: "";
  position: absolute;
  inset: 36px 42px auto auto;
  width: min(170px, 42%);
  aspect-ratio: 1;
  background: url("assets/home-icons/icon-service-area-map.png") center / contain no-repeat;
  filter: drop-shadow(0 18px 22px rgba(0, 28, 79, .28));
}

.home-page #getting-here .map-grid::after {
  content: "";
  position: absolute;
  inset: auto 34px 34px 34px;
  height: 42%;
  border: 2px solid rgba(255, 255, 255, .58);
  border-top: 0;
  border-radius: 0 0 var(--r-md) var(--r-md);
}

.home-page #getting-here .map-pin {
  left: 34px;
  top: 52%;
  transform: none;
  color: var(--home-blue-ink);
  background: var(--home-yellow-rich);
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: var(--r-md);
  box-shadow: var(--e-3);
}

.home-page #ownership {
  background:
    linear-gradient(90deg, var(--home-blue-deep) 0 30%, var(--home-surface-rose, #FFEAF1) 30% 100%);
}

.home-page #ownership .movement-panel {
  background: #FFFFFF;
  border-color: #F4A8C2;
}

.home-page #ownership .home-prose {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-4);
  counter-reset: changed;
}

.home-page #ownership .home-prose h2,
.home-page #ownership .home-prose h3 {
  grid-column: 1 / -1;
}

.home-page #ownership .home-prose h2 {
  max-width: 14ch;
  color: var(--home-blue-ink);
  font-size: clamp(2.125rem, 1.44rem + 2.85vw, 3.5rem);
  line-height: 1;
}

.home-page #ownership .home-prose p:nth-of-type(-n + 3) {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 54px var(--sp-4) var(--sp-4);
  background: linear-gradient(180deg, #FFFFFF, var(--home-surface-lilac));
  border: 1px solid #F4A8C2;
  border-radius: var(--r-md);
  box-shadow: 0 14px 30px rgba(12, 71, 156, .08);
}

.home-page #ownership .home-prose p:nth-of-type(-n + 3)::before {
  counter-increment: changed;
  content: counter(changed, decimal-leading-zero);
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  color: var(--home-blue-ink);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.home-page #ownership .home-prose h3 {
  width: fit-content;
  margin-top: var(--sp-5);
  padding: 10px 16px;
  color: #FFFFFF;
  background: var(--home-blue-deep);
  border-radius: var(--r-md);
}

.home-page #ownership .home-prose p:nth-of-type(n + 4) {
  grid-column: span 3;
  max-width: 78ch;
  margin-inline: auto;
}

.home-page #first-time {
  background:
    linear-gradient(135deg, var(--home-surface-gold) 0 26%, #FFFFFF 26% 62%, var(--home-surface-blue) 62% 100%);
}

.home-page #first-time .movement-panel {
  background: rgba(255, 255, 255, .96);
  border-color: color-mix(in srgb, var(--home-yellow-rich) 55%, var(--home-blue-border));
}

.home-page #first-time .home-prose {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(280px, .28fr);
  gap: var(--sp-4) var(--sp-6);
}

.home-page #first-time .home-prose h2,
.home-page #first-time .home-prose > p:nth-of-type(-n + 3) {
  grid-column: 1;
}

.home-page #first-time .home-prose h2 {
  color: var(--home-blue-ink);
  font-size: clamp(2.125rem, 1.44rem + 2.85vw, 3.5rem);
  line-height: 1;
}

.home-page #first-time .home-prose h3 {
  grid-column: 2;
  margin: 0;
  padding: 12px 14px;
  color: var(--home-blue-ink);
  background: var(--home-surface-gold);
  border: 1px solid color-mix(in srgb, var(--home-yellow-rich) 58%, var(--home-gold-deep));
  border-radius: var(--r-md);
}

.home-page #first-time .home-prose h3 + p {
  grid-column: 2;
  margin-top: calc(var(--sp-3) * -1);
  padding: 0 14px 18px;
  border-bottom: 1px solid var(--home-blue-border);
}

body.home-page main .conversion-band {
  color: #FFFFFF;
  background:
    linear-gradient(90deg, rgba(247, 189, 22, .95) 0 10px, transparent 10px),
    radial-gradient(circle at 16% 18%, rgba(247, 189, 22, .36), transparent 24%),
    linear-gradient(135deg, var(--home-blue-deep) 0%, var(--home-cobalt) 56%, #0A7BEA 100%);
  border-top: 4px solid var(--home-yellow-rich);
  border-bottom: 4px solid var(--home-yellow-rich);
}

body.home-page main .conversion-band::before,
body.home-page main .conversion-band::after {
  display: none;
}

body.home-page main .conversion-inner {
  max-width: 980px;
  text-align: left;
}

body.home-page main .conversion-band h2,
body.home-page main .conversion-band p {
  color: #FFFFFF;
}

body.home-page main .conversion-band h2 {
  max-width: 22ch;
  font-size: clamp(2rem, 1.55rem + 1.7vw, 2.75rem);
  line-height: 1.08;
  text-wrap: balance;
}

body.home-page main .conversion-band p {
  max-width: 68ch;
  color: rgba(255, 255, 255, .88);
}

body.home-page main .conversion-actions {
  justify-content: flex-start;
}

body.home-page main .conversion-band .btn-secondary {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .58);
}

body.home-page main .conversion-band .btn-secondary:hover,
body.home-page main .conversion-band .btn-secondary:focus-visible {
  color: var(--home-blue-ink);
  background: #FFFFFF;
}

@media (max-width: 899px) {
  .home-page #what-this-is .movement-panel,
  .home-page #getting-here .movement-split,
  .home-page #first-time .home-prose {
    grid-template-columns: 1fr;
  }

  .home-page #what-this-is .movement-icon {
    min-height: 220px;
  }

  .home-page #getting-here .movement-map-card {
    position: static;
    min-height: 300px;
    order: -1;
  }

  .home-page #ownership {
    background: linear-gradient(180deg, var(--home-surface-rose, #FFEAF1), #FFFFFF);
  }

  .home-page #ownership .home-prose {
    grid-template-columns: 1fr;
  }

  .home-page #ownership .home-prose p:nth-of-type(n + 4),
  .home-page #first-time .home-prose h2,
  .home-page #first-time .home-prose > p:nth-of-type(-n + 3),
  .home-page #first-time .home-prose h3,
  .home-page #first-time .home-prose h3 + p {
    grid-column: 1;
  }
}

@media (max-width: 599px) {
  .home-page #what-this-is .home-prose {
    padding: var(--sp-5);
  }

  .home-page #what-this-is .home-prose h2,
  .home-page #ownership .home-prose h2,
  .home-page #first-time .home-prose h2,
  .home-page .conversion-band h2 {
    font-size: clamp(2rem, 1.55rem + 1.7vw, 2.75rem);
  }

  .home-page #getting-here .movement-map-card {
    min-height: 250px;
  }

  .home-page #getting-here .map-grid::before {
    inset: 24px 24px auto auto;
    width: 126px;
  }

  .home-page #getting-here .map-pin {
    left: 22px;
    top: 56%;
  }
}

/* Homepage requested redo: looked-after + first-time sections */
.home-page #what-this-is {
  background:
    linear-gradient(180deg, #FFFFFF 0%, var(--home-surface-blue) 52%, var(--home-surface-mint) 100%);
}

.home-page #what-this-is .movement-panel {
  position: relative;
  display: block;
  padding: clamp(28px, 4vw, 56px);
  background:
    linear-gradient(90deg, var(--home-surface-gold) 0 16px, transparent 16px),
    linear-gradient(135deg, #FFFFFF 0%, var(--home-surface-blue) 100%);
  border: 2px solid var(--home-blue-border);
  border-radius: var(--r-lg);
}

.home-page #what-this-is .movement-icon {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  float: none;
  width: clamp(120px, 15vw, 176px);
  height: clamp(120px, 15vw, 176px);
  min-height: 0;
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 36px rgba(12, 71, 156, .12);
}

.home-page #what-this-is .movement-icon img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(12, 71, 156, .18));
}

.home-page #what-this-is .home-prose {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-4);
  padding: 0;
}

.home-page #what-this-is .home-prose h2,
.home-page #what-this-is .home-prose h3,
.home-page #what-this-is .home-prose p:nth-of-type(-n + 4) {
  grid-column: 1 / -1;
}

.home-page #what-this-is .home-prose h2 {
  max-width: 24ch;
  padding-right: clamp(0px, 20vw, 220px);
  font-size: clamp(2rem, 1.55rem + 1.7vw, 2.75rem);
  line-height: 1.12;
}

.home-page #what-this-is .home-prose p:nth-of-type(-n + 3) {
  max-width: 72ch;
}

.home-page #what-this-is .home-prose h3 {
  width: auto;
  margin-top: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: #FFFFFF;
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-md);
}

.home-page #what-this-is .home-prose p:nth-of-type(n + 5) {
  min-height: 100%;
  margin: 0;
  padding: var(--sp-4);
  background: #FFFFFF;
  border: 1px solid var(--home-mint-border);
  border-radius: var(--r-md);
  box-shadow: 0 12px 24px rgba(12, 71, 156, .07);
}

.home-page #first-time {
  background:
    linear-gradient(180deg, var(--home-surface-blue) 0%, #FFFFFF 48%, var(--home-surface-gold) 100%);
}

.home-page #first-time .movement-panel {
  background: #FFFFFF;
  border: 2px solid var(--home-blue-border);
}

.home-page #first-time .home-prose {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
}

.home-page #first-time .home-prose h2,
.home-page #first-time .home-prose > p:nth-of-type(-n + 3) {
  grid-column: 1 / -1;
  max-width: 76ch;
}

.home-page #first-time .home-prose h2 {
  font-size: clamp(2rem, 1.55rem + 1.7vw, 2.75rem);
  line-height: 1.08;
}

.home-page #first-time .home-prose h3 {
  grid-column: auto;
  margin: var(--sp-3) 0 0;
  padding: var(--sp-4) var(--sp-4) 0;
  color: var(--home-blue-ink);
  background: var(--home-surface-gold);
  border: 1px solid color-mix(in srgb, var(--home-yellow-rich) 58%, var(--home-gold-deep));
  border-bottom: 0;
  border-radius: var(--r-md) var(--r-md) 0 0;
}

.home-page #first-time .home-prose h3 + p {
  grid-column: auto;
  margin-top: calc(var(--sp-4) * -1);
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  background: #FFFFFF;
  border: 1px solid color-mix(in srgb, var(--home-yellow-rich) 58%, var(--home-gold-deep));
  border-top: 0;
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: 0 12px 24px rgba(12, 71, 156, .07);
}

@media (max-width: 899px) {
  .home-page #what-this-is .movement-icon {
    position: static;
    width: 132px;
    height: 132px;
    margin-bottom: var(--sp-5);
  }

  .home-page #what-this-is .home-prose,
  .home-page #first-time .home-prose {
    grid-template-columns: 1fr;
  }

  .home-page #what-this-is .home-prose h2 {
    padding-right: 0;
  }
}

/* Homepage requested redo: Where we are location board */
.home-page #getting-here {
  background:
    linear-gradient(180deg, #FFFFFF 0%, var(--home-surface-blue) 42%, var(--home-surface-mint) 100%);
}

.home-page #getting-here .location-board {
  display: grid;
  gap: var(--sp-5);
  width: min(1120px, 100%);
  margin-inline: auto;
}

.home-page #getting-here .location-map-strip {
  position: relative;
  top: auto;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--home-blue-deep), var(--home-royal));
  border: 0;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 48px rgba(12, 71, 156, .18);
}

.home-page #getting-here .location-map-strip .map-grid {
  min-height: inherit;
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, .16), transparent 22%),
    linear-gradient(102deg, transparent 0 24%, rgba(255, 255, 255, .20) 24% 25.5%, transparent 25.5%),
    linear-gradient(22deg, transparent 0 48%, rgba(247, 189, 22, .88) 48% 50%, transparent 50%),
    linear-gradient(158deg, transparent 0 62%, rgba(255, 255, 255, .18) 62% 63.5%, transparent 63.5%),
    linear-gradient(90deg, rgba(255, 255, 255, .10), transparent 42%);
}

.home-page #getting-here .location-map-strip .map-grid::before {
  content: "";
  position: absolute;
  right: clamp(34px, 8vw, 100px);
  top: 36px;
  width: clamp(118px, 15vw, 170px);
  aspect-ratio: 1;
  background: url("assets/home-icons/icon-service-area-map.png") center / contain no-repeat;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .28));
}

.home-page #getting-here .location-map-strip .map-grid::after {
  content: "";
  position: absolute;
  inset: auto clamp(30px, 6vw, 78px) 34px clamp(30px, 6vw, 78px);
  height: 86px;
  border: 2px solid rgba(255, 255, 255, .48);
  border-top: 0;
  border-radius: 0 0 var(--r-md) var(--r-md);
}

.home-page #getting-here .location-map-strip .map-pin {
  left: clamp(30px, 7vw, 82px);
  top: auto;
  bottom: 42px;
  transform: none;
  color: var(--home-blue-ink);
  background: var(--home-yellow-rich);
  border: 2px solid rgba(255, 255, 255, .82);
  border-radius: var(--r-md);
  box-shadow: var(--e-3);
}

.home-page #getting-here .location-copy-panel {
  padding: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 2px solid var(--home-mint-border);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 48px rgba(12, 71, 156, .12);
}

.home-page #getting-here .location-copy-intro {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: var(--sp-5);
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(90deg, var(--home-surface-mint) 0 26%, #FFFFFF 26% 100%);
  border-bottom: 1px solid var(--home-mint-border);
}

.home-page #getting-here .location-copy-intro > .movement-icon {
  float: none;
  width: 72px;
  height: 72px;
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--home-mint-border);
  border-radius: var(--r-md);
  box-shadow: 0 12px 24px rgba(12, 71, 156, .10);
}

.home-page #getting-here .location-copy-intro > .movement-icon img {
  width: 56px;
  height: 56px;
}

.home-page #getting-here .location-copy-intro .home-prose {
  max-width: 76ch;
}

.home-page #getting-here .location-copy-intro h2 {
  margin-bottom: var(--sp-4);
  color: var(--home-blue-ink);
  font-size: clamp(2rem, 1.55rem + 1.7vw, 2.75rem);
  line-height: 1.1;
}

.home-page #getting-here .location-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
  padding: clamp(20px, 3vw, 32px);
}

.home-page #getting-here .location-info-card {
  min-height: 100%;
  padding: var(--sp-5);
  background:
    linear-gradient(180deg, #FFFFFF, var(--home-surface-blue));
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-md);
  box-shadow: 0 12px 24px rgba(12, 71, 156, .07);
}

.home-page #getting-here .location-info-card:nth-child(1) {
  background:
    linear-gradient(180deg, #FFFFFF, var(--home-surface-mint));
  border-color: var(--home-mint-border);
}

.home-page #getting-here .location-info-card:nth-child(3) {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, #FFFFFF 0%, var(--home-surface-gold) 100%);
  border-color: var(--home-yellow-rich);
}

.home-page #getting-here .location-info-card h3 {
  margin-top: 0;
  color: var(--home-blue-ink);
}

.home-page #getting-here .location-info-card .movement-icon-row {
  margin-top: 0 !important;
  margin-bottom: var(--sp-4);
}

.home-page #getting-here .location-info-card .movement-icon-row .movement-icon {
  width: 48px;
  height: 48px;
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-md);
  box-shadow: none;
}

.home-page #getting-here .location-info-card .movement-icon-row .movement-icon img {
  width: 38px;
  height: 38px;
}

.home-page #getting-here .location-info-card p {
  margin-top: var(--sp-3);
}

@media (max-width: 899px) {
  .home-page #getting-here .location-copy-intro,
  .home-page #getting-here .location-info-grid {
    grid-template-columns: 1fr;
  }

  .home-page #getting-here .location-info-card:nth-child(3) {
    grid-column: auto;
  }

  .home-page #getting-here .location-map-strip {
    min-height: 240px;
  }
}

@media (max-width: 599px) {
  .home-page #getting-here .location-copy-intro {
    padding: var(--sp-5);
  }

  .home-page #getting-here .location-map-strip {
    min-height: 210px;
  }

  .home-page #getting-here .location-map-strip .map-grid::before {
    width: 112px;
    right: 24px;
    top: 24px;
  }

  .home-page #getting-here .location-map-strip .map-pin {
    left: 22px;
    bottom: 28px;
  }
}

/* Homepage requested fix: first-time guide cards with clean borders */
.home-page #first-time .home-prose {
  display: block;
}

body.home-page #first-time .movement-panel .home-prose {
  columns: auto !important;
  column-count: auto !important;
  column-width: auto !important;
  column-gap: normal !important;
}

.home-page #first-time .home-prose > h2,
.home-page #first-time .home-prose > p:nth-of-type(-n + 3) {
  max-width: 76ch;
}

.home-page #first-time .home-prose > h2 {
  margin-bottom: var(--sp-4);
}

body.home-page #first-time .first-time-guide-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  width: 100%;
  margin-top: var(--sp-6);
}

body.home-page #first-time .first-time-guide-card {
  break-inside: avoid;
  flex: 1 1 calc(50% - var(--sp-4));
  min-height: 100%;
  width: 100%;
  padding: var(--sp-5);
  color: var(--home-blue-ink);
  background: #FFFFFF;
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-md);
  box-shadow: 0 14px 28px rgba(12, 71, 156, .08);
}

body.home-page #first-time .first-time-guide-card:nth-child(2n + 1) {
  background:
    linear-gradient(180deg, #FFFFFF, var(--home-surface-gold));
  border-color: var(--home-yellow-rich);
}

body.home-page #first-time .first-time-guide-card:nth-child(2n) {
  background:
    linear-gradient(180deg, #FFFFFF, var(--home-surface-blue));
}

body.home-page #first-time .first-time-guide-card:last-child {
  flex-basis: 100%;
  background:
    linear-gradient(135deg, #FFFFFF 0%, var(--home-surface-mint) 100%);
  border-color: var(--home-mint-border);
}

body.home-page #first-time .first-time-guide-card h3,
body.home-page #first-time .first-time-guide-card .movement-icon-row h3 {
  margin: 0;
  padding: 0;
  color: var(--home-blue-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: clamp(1.25rem, 1.17rem + .35vw, 1.5rem);
  line-height: 1.25;
}

body.home-page #first-time .first-time-guide-card p,
body.home-page #first-time .first-time-guide-card h3 + p {
  margin: var(--sp-3) 0 0;
  padding: 0;
  color: var(--text-2);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.65;
}

body.home-page #first-time .first-time-guide-card .movement-icon-row {
  margin: 0 0 var(--sp-3) !important;
  align-items: center;
}

body.home-page #first-time .first-time-guide-card .movement-icon-row .movement-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-md);
  box-shadow: none;
}

body.home-page #first-time .first-time-guide-card .movement-icon-row .movement-icon img {
  width: 34px;
  height: 34px;
}

@media (max-width: 899px) {
  body.home-page #first-time .first-time-guide-grid {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  body.home-page #first-time .first-time-guide-card:last-child {
    grid-column: auto;
  }
}

/* Homepage requested redo: quick facts strip + page navigation strip */
body.home-page main .short-answer-section {
  padding: clamp(28px, 4vw, 48px) 0;
  background:
    linear-gradient(90deg, var(--home-yellow-rich) 0 10px, transparent 10px),
    linear-gradient(135deg, var(--home-surface-gold) 0%, var(--home-surface-mint) 45%, var(--home-surface-blue) 100%);
  border-top: 4px solid var(--home-yellow-rich);
  border-bottom: 1px solid var(--home-blue-border);
}

body.home-page main .short-answer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: var(--sp-5);
  align-items: stretch;
  padding-block: 0;
}

body.home-page main .short-answer-rows {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 2px solid var(--home-blue-border);
  border-radius: var(--r-lg);
  box-shadow: 0 22px 46px rgba(12, 71, 156, .12);
}

body.home-page main .short-answer-row {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 118px;
  padding: var(--sp-5);
  background: #FFFFFF;
  border: 0;
  border-right: 1px solid var(--home-blue-border);
  border-bottom: 1px solid var(--home-blue-border);
  border-radius: 0;
}

body.home-page main .short-answer-row:nth-child(1),
body.home-page main .short-answer-row:nth-child(4),
body.home-page main .short-answer-row:nth-child(5) {
  grid-column: span 2;
}

body.home-page main .short-answer-row:nth-child(2) {
  background: linear-gradient(180deg, #FFFFFF, var(--home-surface-gold));
}

body.home-page main .short-answer-row:nth-child(3) {
  background: linear-gradient(180deg, #FFFFFF, var(--home-surface-blue));
}

body.home-page main .short-answer-row:nth-child(4) {
  background: linear-gradient(180deg, #FFFFFF, var(--home-surface-mint));
}

body.home-page main .short-answer-row:nth-child(5) {
  background: linear-gradient(180deg, #FFFFFF, var(--home-surface-lilac));
}

body.home-page main .short-answer-row dt {
  margin-bottom: var(--sp-2);
  color: var(--home-blue-ink);
  font: 700 14px/1.2 var(--font-display);
}

body.home-page main .short-answer-row dd {
  margin: 0;
  color: var(--text-1);
  font-size: clamp(1.125rem, 1rem + .25vw, 1.25rem);
  line-height: 1.42;
}

body.home-page main .short-answer-actions {
  display: grid;
  align-content: center;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background:
    radial-gradient(circle at 18% 18%, rgba(247, 189, 22, .34), transparent 32%),
    linear-gradient(145deg, var(--home-blue-deep), var(--home-cobalt));
  border: 0;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 48px rgba(12, 71, 156, .20);
}

body.home-page main .short-answer-actions .btn {
  width: 100%;
  min-height: 54px;
  box-shadow: none;
}

body.home-page main .short-answer-actions .btn-secondary {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .70);
}

body.home-page main .short-answer-actions .btn-secondary:hover,
body.home-page main .short-answer-actions .btn-secondary:focus-visible {
  color: var(--home-blue-ink);
  background: #FFFFFF;
}

body.home-page main .home-toc-section {
  padding: clamp(22px, 3vw, 34px) 0;
  background:
    linear-gradient(180deg, #FFFFFF 0%, var(--home-surface-blue) 100%);
  border-bottom: 1px solid var(--home-blue-border);
}

body.home-page main .home-toc {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--sp-2);
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: var(--sp-3);
  background: #FFFFFF;
  border: 2px solid var(--home-blue-border);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 38px rgba(12, 71, 156, .10);
}

body.home-page main .home-toc li {
  display: block;
  min-width: 0;
}

body.home-page main .home-toc a {
  display: flex;
  min-height: 58px;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: var(--home-blue-ink);
  background: var(--home-surface-blue);
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-md);
  box-shadow: none;
  text-align: center;
  font: 700 14px/1.25 var(--font-body);
  text-decoration: none;
}

body.home-page main .home-toc li:nth-child(4n + 2) a {
  background: var(--home-surface-mint);
  border-color: var(--home-mint-border);
}

body.home-page main .home-toc li:nth-child(4n + 3) a {
  background: var(--home-surface-lilac);
  border-color: var(--home-lilac-border);
}

body.home-page main .home-toc li:nth-child(4n) a {
  background: var(--home-surface-gold);
  border-color: var(--home-yellow-rich);
}

body.home-page main .home-toc a:hover,
body.home-page main .home-toc a:focus-visible {
  color: #FFFFFF;
  background: var(--home-blue-deep);
  border-color: var(--home-blue-deep);
  transform: none;
}

@media (max-width: 899px) {
  body.home-page main .short-answer {
    grid-template-columns: 1fr;
  }

  body.home-page main .short-answer-rows {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page main .home-toc {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 599px) {
  body.home-page main .short-answer-rows,
  body.home-page main .home-toc {
    grid-template-columns: 1fr;
  }

  body.home-page main .short-answer-row,
  body.home-page main .short-answer-row:nth-child(n) {
    grid-column: auto;
    min-height: auto;
    padding: var(--sp-4);
  }

  body.home-page main .home-toc a {
    min-height: 48px;
    justify-content: flex-start;
    text-align: left;
  }
}

/* ============================================================
   Service pages restyle: dark hero text on a light scrim, hero
   CTAs under the subtext, a horizontal trust/short-answer row,
   and a contrast fix for the conversion-band paragraph that was
   inheriting the dark body-text colour instead of white.
   Scoped to .sub-page .page-hero-with-image (the 6 service pages
   + their Spanish mirrors only) and .sub-page .conversion-band
   (sitewide fix for a genuine contrast bug, matching the same
   fix already applied on the homepage).
   ============================================================ */

.sub-page .page-hero.page-hero-with-image h1,
.sub-page .page-hero.page-hero-with-image p {
  color: var(--text-1);
}

.sub-page .page-hero.page-hero-with-image::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, .3) 40%, transparent 70%);
}

.sub-page .page-hero.page-hero-with-image .page-hero-grid > div:first-child {
  padding: clamp(24px, 3.2vw, 40px);
  background: rgba(255, 255, 255, .38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 54px rgba(7, 19, 43, .24);
}

@media (max-width: 599px) {
  .sub-page .page-hero.page-hero-with-image .page-hero-grid > div:first-child {
    padding: 22px;
  }
}

.sub-page .page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.sub-page .page-hero-with-image .page-hero-actions .btn-secondary {
  color: var(--brand);
  background: transparent;
  border-color: var(--line-control);
}

.sub-page .page-hero-with-image .page-hero-actions .btn-secondary:hover {
  color: var(--n-800);
  background: var(--n-50);
  border-color: var(--n-800);
}

@media (max-width: 599px) {
  .sub-page .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sub-page .page-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.sub-page .short-answer {
  grid-template-columns: 1fr;
}

.sub-page .short-answer-rows {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sub-page .conversion-band p {
  color: rgba(255, 255, 255, .88);
}

/* Section icon badges, matching the homepage movement-icon pattern */
.sub-page .section-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  background: linear-gradient(150deg, #FFFFFF, var(--sub-sky));
  border: 2px solid var(--sub-line);
  border-radius: var(--r-full);
  box-shadow: 0 10px 22px rgba(12, 71, 156, .14);
}

.sub-page .section-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.sub-page .section-icon-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.sub-page .section-icon-row .section-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Wash and fold example redesign. Scoped to one service page only. */
.service-redesign-service {
  --wf-ink: #07132B;
  --wf-blue: #0C479C;
  --wf-blue-soft: #EAF4FF;
  --wf-blue-line: #A9CDF5;
  --wf-gold: #FFB020;
  --wf-gold-soft: #FFF4D8;
  --wf-mint: #EAF8EF;
  --wf-mint-line: #9BD8B6;
  --wf-paper: #FFFFFF;
  --wf-shadow: 0 22px 54px rgba(7, 19, 43, .12);
  background: #F7FAFE;
}

.service-redesign-service main {
  background:
    linear-gradient(180deg, #F7FAFE 0%, #FFFFFF 24%, #F8FBFF 100%);
}

.service-redesign-service main > section:not(.page-hero) {
  position: relative;
}

.service-redesign-service .short-answer-section {
  padding: clamp(28px, 4vw, 48px) 0 clamp(32px, 4.5vw, 56px);
  background:
    linear-gradient(90deg, rgba(255, 176, 32, .18), transparent 30%),
    linear-gradient(180deg, #F7FBFF 0%, #FFFFFF 74%, #F7FAFE 100%);
  border-top: 1px solid rgba(12, 71, 156, .14);
  border-bottom: 1px solid rgba(12, 71, 156, .12);
}

.service-redesign-service .short-answer {
  width: min(1160px, calc(100% - 48px));
}

.service-redesign-service .short-answer-rows {
  display: grid;
  grid-template-columns: 1.08fr .95fr .98fr 1.05fr;
  gap: 0;
  margin: 0;
  padding: 10px;
  background:
    linear-gradient(90deg, rgba(12, 71, 156, .04), transparent 36%),
    #FFFFFF;
  border: 1px solid var(--wf-blue-line);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(12, 71, 156, .12);
}

.service-redesign-service .short-answer-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(82px, .42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: clamp(16px, 1.8vw, 22px);
  background: transparent;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
}

.service-redesign-service .short-answer-row:first-child {
  background:
    linear-gradient(145deg, #07377C 0%, var(--wf-blue) 100%);
  box-shadow: 0 14px 28px rgba(12, 71, 156, .2);
}

.service-redesign-service .short-answer-row:nth-child(2) {
  background: var(--wf-gold-soft);
}

.service-redesign-service .short-answer-row:first-child dt,
.service-redesign-service .short-answer-row:first-child dd,
.service-redesign-service .short-answer-row:first-child .swap {
  color: #FFFFFF;
}

.service-redesign-service .short-answer-row dt {
  margin: 0;
  color: var(--wf-blue);
  font: 800 13px/1.15 var(--font-display);
}

.service-redesign-service .short-answer-row dd {
  margin: 0;
  color: var(--wf-ink);
  font-size: clamp(.98rem, .92rem + .18vw, 1.08rem);
  line-height: 1.35;
}

.service-redesign-service .short-answer-row:not(:last-child) {
  border-right: 1px solid rgba(12, 71, 156, .14);
}

.service-redesign-service .short-answer-row:nth-child(2) {
  margin-inline: 10px;
}

.service-redesign-service .short-answer-row .swap {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  line-height: 1.15;
}

.service-redesign-service .short-answer-row a {
  color: var(--wf-blue);
  font-weight: 800;
  text-decoration-thickness: 1.5px;
}

.service-redesign-service .home-toc-section {
  padding: 18px 0 28px;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(12, 71, 156, .12);
}

.service-redesign-service .home-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 0;
}

.service-redesign-service .home-toc li {
  display: block;
}

.service-redesign-service .home-toc a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  color: var(--wf-blue);
  background: #FFFFFF;
  border: 1px solid var(--wf-blue-line);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(12, 71, 156, .07);
  font: 700 14px/1.2 var(--font-body);
  text-decoration: none;
}

.service-redesign-service .home-toc a:hover,
.service-redesign-service .home-toc a:focus-visible {
  color: var(--wf-ink);
  background: var(--wf-gold-soft);
  border-color: var(--wf-gold);
}

.service-redesign-service main > .section {
  padding: clamp(54px, 7vw, 96px) 0;
  background: transparent;
  border: 0;
}

.service-redesign-service main > .section:nth-of-type(odd) {
  background:
    linear-gradient(90deg, rgba(234, 244, 255, .68), transparent 46%);
}

.service-redesign-service main > .section:nth-of-type(even) {
  background:
    linear-gradient(270deg, rgba(255, 244, 216, .62), transparent 44%);
}

.service-redesign-service .home-prose {
  width: min(1080px, calc(100% - 48px));
  max-width: none;
  margin-inline: auto;
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(12, 71, 156, .18);
  border-radius: 16px;
  box-shadow: var(--wf-shadow);
}

.service-redesign-service .home-prose::after {
  content: "";
  display: block;
  clear: both;
}

.service-redesign-service .section-icon {
  float: right;
  width: clamp(86px, 9vw, 120px);
  height: clamp(86px, 9vw, 120px);
  margin: 0 0 22px 28px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-redesign-service .section-icon img {
  width: 100%;
  height: 100%;
}

.service-redesign-service .home-prose h2 {
  max-width: 760px;
  margin-bottom: clamp(18px, 2.4vw, 28px);
  color: var(--wf-ink);
  font-size: clamp(1.8rem, 1.35rem + 1.45vw, 3rem);
  line-height: 1.04;
}

.service-redesign-service .home-prose h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: var(--wf-blue);
  font-size: clamp(1.15rem, 1rem + .5vw, 1.45rem);
}

.service-redesign-service .home-prose p,
.service-redesign-service .home-prose li,
.service-redesign-service .home-prose dd {
  color: #12315F;
  font-size: clamp(1.02rem, .98rem + .12vw, 1.12rem);
  line-height: 1.7;
}

.service-redesign-service .home-prose p + p,
.service-redesign-service .home-prose p + ul,
.service-redesign-service .home-prose ul + p {
  margin-top: 18px;
}

.service-redesign-service .home-prose ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-redesign-service .home-prose li {
  position: relative;
  padding: 16px 18px 16px 48px;
  background: #FFFFFF;
  border: 1px solid rgba(12, 71, 156, .14);
  border-radius: 12px;
}

.service-redesign-service .home-prose li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 12px;
  height: 12px;
  background: var(--wf-gold);
  border: 3px solid var(--wf-blue);
  border-radius: 999px;
}

.service-redesign-service #pricing .home-prose,
.service-redesign-service #precio .home-prose,
.service-redesign-service #precios .home-prose,
.service-redesign-service #costo .home-prose {
  background:
    linear-gradient(145deg, #08245C 0%, #0C479C 62%, #0A62CB 100%);
  border-color: #08245C;
  box-shadow: 0 28px 64px rgba(12, 71, 156, .26);
}

.service-redesign-service #pricing .home-prose h2,
.service-redesign-service #pricing .home-prose p,
.service-redesign-service #pricing .home-prose a,
.service-redesign-service #pricing .home-prose .swap,
.service-redesign-service #precio .home-prose h2,
.service-redesign-service #precio .home-prose p,
.service-redesign-service #precio .home-prose a,
.service-redesign-service #precio .home-prose .swap,
.service-redesign-service #precios .home-prose h2,
.service-redesign-service #precios .home-prose p,
.service-redesign-service #precios .home-prose a,
.service-redesign-service #precios .home-prose .swap,
.service-redesign-service #costo .home-prose h2,
.service-redesign-service #costo .home-prose p,
.service-redesign-service #costo .home-prose a,
.service-redesign-service #costo .home-prose .swap {
  color: #FFFFFF;
}

.service-redesign-service #pricing .home-prose p:first-of-type,
.service-redesign-service #precio .home-prose p:first-of-type,
.service-redesign-service #precios .home-prose p:first-of-type,
.service-redesign-service #costo .home-prose p:first-of-type {
  max-width: 820px;
  padding: 20px 22px;
  color: var(--wf-ink);
  background: var(--wf-gold);
  border-radius: 12px;
  font-weight: 700;
}

.service-redesign-service #pricing .home-prose p:first-of-type .swap,
.service-redesign-service #precio .home-prose p:first-of-type .swap,
.service-redesign-service #precios .home-prose p:first-of-type .swap,
.service-redesign-service #costo .home-prose p:first-of-type .swap {
  color: var(--wf-ink);
}

.service-redesign-service #process .home-prose,
.service-redesign-service #proceso .home-prose,
.service-redesign-service #como-funciona .home-prose,
.service-redesign-service #faq .home-prose,
.service-redesign-service #preguntas .home-prose {
  padding-inline: clamp(18px, 3vw, 34px);
}

.service-redesign-service .lite-table-wrap {
  margin-top: 24px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-redesign-service .lite-table {
  border-collapse: separate;
  border-spacing: 0 12px;
}

.service-redesign-service .lite-table th {
  padding: 0 18px 4px;
  color: var(--wf-blue);
  background: transparent;
  border: 0;
}

.service-redesign-service .lite-table td {
  padding: 18px;
  color: #12315F;
  background: #FFFFFF;
  border-top: 1px solid rgba(12, 71, 156, .14);
  border-bottom: 1px solid rgba(12, 71, 156, .14);
}

.service-redesign-service .lite-table td:first-child {
  width: 32%;
  color: var(--wf-blue);
  border-left: 5px solid var(--wf-gold);
  border-radius: 12px 0 0 12px;
  font-weight: 800;
}

.service-redesign-service .lite-table td:last-child {
  border-right: 1px solid rgba(12, 71, 156, .14);
  border-radius: 0 12px 12px 0;
}

.service-redesign-service #included .home-prose,
.service-redesign-service #incluido .home-prose {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 52px);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(12, 71, 156, .18);
  background: #FFFFFF;
}

.service-redesign-service #included .home-prose::before,
.service-redesign-service #incluido .home-prose::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 35%;
  background:
    radial-gradient(circle at 28% 16%, rgba(255, 176, 32, .36), transparent 34%),
    linear-gradient(150deg, #07132B 0%, #0C479C 100%);
}

.service-redesign-service #included .section-icon,
.service-redesign-service #incluido .section-icon {
  float: none;
  grid-column: 1;
  grid-row: 1;
  width: clamp(150px, 16vw, 220px);
  height: clamp(150px, 16vw, 220px);
  margin: clamp(30px, 4vw, 48px) 0 0 clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle, rgba(255, 255, 255, .42) 0%, rgba(255, 255, 255, .16) 44%, transparent 70%);
  filter: drop-shadow(0 24px 28px rgba(7, 19, 43, .26));
}

.service-redesign-service #included .section-icon img,
.service-redesign-service #incluido .section-icon img {
  padding: 14px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 22px;
}

.service-redesign-service #included h2,
.service-redesign-service #incluido h2 {
  grid-column: 1;
  grid-row: 1;
  max-width: 320px;
  margin: 0;
  padding: 0 clamp(24px, 4vw, 46px) clamp(54px, 5vw, 72px);
  color: #FFFFFF;
  align-self: end;
}

.service-redesign-service #included ul,
.service-redesign-service #incluido ul {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
  margin: 0;
  padding: clamp(28px, 4vw, 46px) clamp(28px, 4vw, 46px) clamp(28px, 4vw, 46px) 0;
}

.service-redesign-service #included h3,
.service-redesign-service #included p,
.service-redesign-service #incluido h3,
.service-redesign-service #incluido p {
  grid-column: 2;
  margin-right: clamp(28px, 4vw, 46px);
}

.service-redesign-service #included h3,
.service-redesign-service #incluido h3 {
  display: inline-flex;
  width: fit-content;
  margin-top: 0;
  padding: 9px 14px;
  color: var(--wf-blue);
  background: var(--wf-blue-soft);
  border: 1px solid var(--wf-blue-line);
  border-radius: 999px;
}

.service-redesign-service #included p:last-child,
.service-redesign-service #incluido p:last-child {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.service-redesign-service #included li,
.service-redesign-service #incluido li {
  min-height: 118px;
  display: grid;
  align-content: start;
  padding: 18px 18px 18px 52px;
  color: #12315F;
  background:
    linear-gradient(180deg, #FFFFFF, #F7FBFF);
  border: 1px solid rgba(12, 71, 156, .14);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(12, 71, 156, .07);
}

.service-redesign-service #included li:first-child,
.service-redesign-service #incluido li:first-child {
  grid-column: span 2;
  min-height: 96px;
  background:
    linear-gradient(90deg, var(--wf-gold-soft), #FFFFFF 72%);
  border-color: rgba(255, 176, 32, .62);
}

.service-redesign-service #included li::before,
.service-redesign-service #incluido li::before {
  top: 20px;
  left: 18px;
  width: 18px;
  height: 18px;
  background: var(--wf-blue);
  border: 4px solid var(--wf-gold);
  box-shadow: 0 0 0 5px rgba(12, 71, 156, .08);
}

.service-redesign-service #not-included .home-prose,
.service-redesign-service #no-incluido .home-prose,
.service-redesign-service #no-recogemos .home-prose,
.service-redesign-service #no-recibimos .home-prose,
.service-redesign-service #no-lavar .home-prose,
.service-redesign-service #no-manejamos .home-prose {
  border-color: #F4C56B;
  background:
    linear-gradient(135deg, rgba(255, 244, 216, .94), rgba(255, 255, 255, .96));
}

.service-redesign-service #bag .home-prose,
.service-redesign-service #bolsa .home-prose {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  column-gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.service-redesign-service #bag .section-icon,
.service-redesign-service #bag h2,
.service-redesign-service #bolsa .section-icon,
.service-redesign-service #bolsa h2 {
  grid-column: 1;
}

.service-redesign-service #bag p,
.service-redesign-service #bolsa p {
  grid-column: 2;
}

.service-redesign-service #bag p + p,
.service-redesign-service #bolsa p + p {
  margin-top: 0;
}

.service-redesign-service #bag p:not(:last-child),
.service-redesign-service #bolsa p:not(:last-child) {
  margin-bottom: 16px;
}

.service-redesign-service #turnaround .home-prose,
.service-redesign-service #entrega .home-prose {
  border-left: 10px solid var(--wf-gold);
}

.service-redesign-service .good-maybe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0 30px;
}

.service-redesign-service .good-maybe-grid > div {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(12, 71, 156, .16);
  border-radius: 14px;
  box-shadow: none;
}

.service-redesign-service .good-maybe-grid .good {
  background: var(--wf-mint);
  border-color: var(--wf-mint-line);
}

.service-redesign-service .good-maybe-grid .maybe {
  background: var(--wf-gold-soft);
  border-color: var(--wf-gold);
}

.service-redesign-service .good-maybe-grid dt {
  margin-bottom: 10px;
  color: var(--wf-ink);
  font: 800 1.25rem/1.2 var(--font-display);
}

.service-redesign-service .good-maybe-grid dd {
  margin: 0;
}

.service-redesign-service #first-order .home-prose,
.service-redesign-service #primer-pedido .home-prose,
.service-redesign-service #primera-vez .home-prose {
  background:
    linear-gradient(90deg, rgba(12, 71, 156, .08), transparent 44%),
    #FFFFFF;
}

.service-redesign-service #concerns .home-prose h3 {
  display: inline-flex;
  margin-right: 10px;
  padding: 8px 13px;
  background: var(--wf-blue-soft);
  border: 1px solid var(--wf-blue-line);
  border-radius: 999px;
}

.service-redesign-service #faq .lite-table,
.service-redesign-service #faq .lite-table tbody,
.service-redesign-service #faq .lite-table tr,
.service-redesign-service #faq .lite-table td,
.service-redesign-service #preguntas .lite-table,
.service-redesign-service #preguntas .lite-table tbody,
.service-redesign-service #preguntas .lite-table tr,
.service-redesign-service #preguntas .lite-table td {
  display: block;
}

.service-redesign-service #faq .lite-table tbody,
.service-redesign-service #preguntas .lite-table tbody {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-redesign-service #faq .lite-table tr,
.service-redesign-service #preguntas .lite-table tr {
  padding: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(12, 71, 156, .16);
  border-radius: 14px;
}

.service-redesign-service #faq .lite-table td,
.service-redesign-service #preguntas .lite-table td {
  width: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.service-redesign-service #faq .lite-table td:first-child,
.service-redesign-service #preguntas .lite-table td:first-child {
  margin-bottom: 8px;
  color: var(--wf-blue);
}

.service-redesign-service .conversion-band {
  margin-top: 0;
  padding: clamp(58px, 7vw, 98px) 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 176, 32, .4), transparent 26%),
    linear-gradient(135deg, #07132B 0%, #0C479C 58%, #0A62CB 100%);
  border-top: 6px solid var(--wf-gold);
}

.service-redesign-service .conversion-inner {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.service-redesign-service .conversion-band h2 {
  color: #FFFFFF;
  font-size: clamp(2.1rem, 1.6rem + 2vw, 4rem);
}

.service-redesign-service .conversion-band p {
  color: rgba(255, 255, 255, .9);
}

.service-redesign-service .conversion-band a:not(.btn) {
  color: #FFFFFF;
}

.service-redesign-service .conversion-actions {
  grid-column: 2;
}

.service-redesign-service .conversion-band .btn-secondary {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, .78);
}

.service-redesign-service .conversion-band .btn-secondary:hover {
  color: var(--wf-ink);
  background: #FFFFFF;
}

/* Wash and fold polish layer: color, depth, and restrained visible motion. */
.service-redesign-service {
  --wf-rose-soft: #FFF0F3;
  --wf-rose-line: #FF9DB0;
  --wf-lilac-soft: #F3EFFF;
  --wf-lilac-line: #B9A7FF;
  --wf-cyan-soft: #EAFBFF;
  --wf-cyan-line: #82D9EB;
  --wf-green-soft: #EDFBEF;
  --wf-green-line: #91D8A8;
  --wf-warm-shadow: 0 24px 54px rgba(255, 176, 32, .14);
  --wf-blue-shadow: 0 24px 58px rgba(12, 71, 156, .16);
}

.service-redesign-service main {
  background:
    radial-gradient(circle at 2% 20%, rgba(255, 176, 32, .18), transparent 22%),
    radial-gradient(circle at 96% 38%, rgba(130, 217, 235, .18), transparent 20%),
    linear-gradient(180deg, #F7FAFE 0%, #FFFFFF 24%, #F8FBFF 100%);
}

.service-redesign-service main > .section {
  transition: background-position 520ms ease;
}

.service-redesign-service .short-answer-rows,
.service-redesign-service .home-prose,
.service-redesign-service .conversion-inner {
  animation: wf-rise-in 560ms cubic-bezier(.2, .8, .2, 1) both;
}

.service-redesign-service .short-answer-rows {
  border-color: rgba(12, 71, 156, .32);
  box-shadow:
    0 26px 56px rgba(12, 71, 156, .16),
    0 8px 0 rgba(255, 176, 32, .18);
}

.service-redesign-service .short-answer-row {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-redesign-service .short-answer-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(12, 71, 156, .14);
}

.service-redesign-service .short-answer-row:nth-child(3) {
  background: linear-gradient(180deg, var(--wf-cyan-soft), #FFFFFF);
}

.service-redesign-service .short-answer-row:nth-child(4) {
  background: linear-gradient(180deg, var(--wf-lilac-soft), #FFFFFF);
}

.service-redesign-service .home-prose {
  position: relative;
  overflow: hidden;
  border-color: rgba(12, 71, 156, .24);
  box-shadow:
    var(--wf-blue-shadow),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  animation: wf-rise-in 560ms cubic-bezier(.2, .8, .2, 1) both, wf-card-glow 7200ms ease-in-out 900ms infinite alternate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-redesign-service main > .section:not(#included):not(#incluido) .home-prose::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--wf-blue), var(--wf-gold), var(--wf-cyan-line));
  background-size: 220% 100%;
  animation: wf-strip-slide 4600ms ease-in-out infinite alternate;
}

.service-redesign-service .section-icon {
  animation: wf-icon-float 4800ms ease-in-out infinite;
}

.service-redesign-service .home-prose:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 71, 156, .36);
  box-shadow:
    0 30px 64px rgba(12, 71, 156, .18),
    inset 0 1px 0 rgba(255, 255, 255, .92);
}

.service-redesign-service #what-it-is .home-prose {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 176, 32, .24), transparent 24%),
    linear-gradient(135deg, #FFFFFF 0%, var(--wf-blue-soft) 100%);
  border-color: var(--wf-blue-line);
}

.service-redesign-service #process .home-prose,
.service-redesign-service #proceso .home-prose,
.service-redesign-service #como-funciona .home-prose {
  background:
    radial-gradient(circle at 94% 14%, rgba(130, 217, 235, .28), transparent 24%),
    #FFFFFF;
  border-color: var(--wf-cyan-line);
}

.service-redesign-service #included .home-prose,
.service-redesign-service #incluido .home-prose {
  border-color: rgba(12, 71, 156, .32);
  box-shadow:
    0 34px 74px rgba(12, 71, 156, .18),
    0 10px 0 rgba(255, 176, 32, .16);
}

.service-redesign-service #included li,
.service-redesign-service #incluido li {
  border-color: rgba(12, 71, 156, .22);
  box-shadow: 0 16px 30px rgba(12, 71, 156, .1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-redesign-service #included li:hover,
.service-redesign-service #incluido li:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 176, 32, .78);
  box-shadow: 0 22px 40px rgba(12, 71, 156, .14);
}

.service-redesign-service #included li::before,
.service-redesign-service #incluido li::before,
.service-redesign-service .home-prose li::before {
  animation: wf-marker-pulse 2200ms ease-in-out infinite;
}

.service-redesign-service #not-included .home-prose,
.service-redesign-service #no-incluido .home-prose,
.service-redesign-service #no-recogemos .home-prose,
.service-redesign-service #no-recibimos .home-prose,
.service-redesign-service #no-lavar .home-prose,
.service-redesign-service #no-manejamos .home-prose {
  border-color: rgba(255, 176, 32, .72);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 176, 32, .3), transparent 25%),
    linear-gradient(135deg, rgba(255, 244, 216, .98), rgba(255, 255, 255, .97));
  box-shadow: var(--wf-warm-shadow);
}

.service-redesign-service #bag .home-prose,
.service-redesign-service #bolsa .home-prose {
  border-color: var(--wf-lilac-line);
  background:
    radial-gradient(circle at 0% 100%, rgba(185, 167, 255, .22), transparent 28%),
    linear-gradient(135deg, #FFFFFF, var(--wf-lilac-soft));
}

.service-redesign-service #turnaround .home-prose,
.service-redesign-service #entrega .home-prose {
  border-color: rgba(255, 176, 32, .64);
  background:
    linear-gradient(90deg, rgba(255, 176, 32, .12), transparent 26%),
    #FFFFFF;
  box-shadow: var(--wf-warm-shadow);
}

.service-redesign-service #suits .home-prose,
.service-redesign-service #conviene .home-prose {
  border-color: var(--wf-green-line);
  background:
    radial-gradient(circle at 100% 12%, rgba(145, 216, 168, .24), transparent 26%),
    #FFFFFF;
}

.service-redesign-service #pressing .home-prose,
.service-redesign-service #planchado .home-prose,
.service-redesign-service #agregar .home-prose {
  border-color: var(--wf-lilac-line);
  background:
    linear-gradient(135deg, var(--wf-lilac-soft), #FFFFFF 55%);
}

.service-redesign-service #first-order .home-prose,
.service-redesign-service #primer-pedido .home-prose,
.service-redesign-service #primera-vez .home-prose {
  border-color: var(--wf-cyan-line);
  background:
    radial-gradient(circle at 96% 0%, rgba(130, 217, 235, .26), transparent 24%),
    linear-gradient(90deg, rgba(12, 71, 156, .08), transparent 44%),
    #FFFFFF;
}

.service-redesign-service #concerns .home-prose,
.service-redesign-service #dudas .home-prose {
  border-color: var(--wf-rose-line);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 157, 176, .22), transparent 24%),
    linear-gradient(135deg, #FFFFFF, var(--wf-rose-soft));
}

.service-redesign-service #faq .home-prose,
.service-redesign-service #preguntas .home-prose {
  border-color: var(--wf-blue-line);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 176, 32, .16), transparent 24%),
    #FFFFFF;
}

.service-redesign-service .lite-table tr,
.service-redesign-service #faq .lite-table tr,
.service-redesign-service #preguntas .lite-table tr,
.service-redesign-service .good-maybe-grid > div,
.service-redesign-service .home-prose li {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-redesign-service .lite-table tr:hover,
.service-redesign-service #faq .lite-table tr:hover,
.service-redesign-service #preguntas .lite-table tr:hover,
.service-redesign-service .good-maybe-grid > div:hover,
.service-redesign-service .home-prose li:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 71, 156, .32);
  box-shadow: 0 14px 28px rgba(12, 71, 156, .12);
}

.service-redesign-service .lite-table tbody tr:nth-child(3n + 1) td {
  background: linear-gradient(180deg, #FFFFFF, var(--wf-blue-soft));
}

.service-redesign-service .lite-table tbody tr:nth-child(3n + 2) td {
  background: linear-gradient(180deg, #FFFFFF, var(--wf-gold-soft));
}

.service-redesign-service .lite-table tbody tr:nth-child(3n) td {
  background: linear-gradient(180deg, #FFFFFF, var(--wf-cyan-soft));
}

.service-redesign-service .good-maybe-grid .good {
  box-shadow: 0 16px 32px rgba(39, 153, 89, .12);
}

.service-redesign-service .good-maybe-grid .maybe {
  box-shadow: 0 16px 32px rgba(255, 176, 32, .16);
}

.service-redesign-service .conversion-band {
  background-size: 130% 130%;
  animation: wf-band-shift 9000ms ease-in-out infinite alternate;
}

.service-redesign-service .conversion-actions .btn {
  box-shadow: 0 14px 28px rgba(7, 19, 43, .18);
}

@keyframes wf-rise-in {
  from {
    opacity: .01;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wf-card-glow {
  from {
    box-shadow:
      0 24px 54px rgba(12, 71, 156, .14),
      inset 0 1px 0 rgba(255, 255, 255, .9);
  }

  to {
    box-shadow:
      0 30px 66px rgba(12, 71, 156, .19),
      0 8px 0 rgba(255, 176, 32, .09),
      inset 0 1px 0 rgba(255, 255, 255, .92);
  }
}

@keyframes wf-marker-pulse {
  0%, 100% {
    box-shadow: 0 0 0 5px rgba(12, 71, 156, .08);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 176, 32, .18);
  }
}

@keyframes wf-band-shift {
  from {
    background-position: 0% 45%;
  }

  to {
    background-position: 100% 55%;
  }
}

@keyframes wf-strip-slide {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@keyframes wf-icon-float {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-5px) rotate(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-redesign-service *,
  .service-redesign-service *::before,
  .service-redesign-service *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .service-redesign-service main > .section .home-prose {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .service-redesign-service .short-answer-rows,
  .service-redesign-service #included .home-prose,
  .service-redesign-service #incluido .home-prose,
  .service-redesign-service #bag .home-prose,
  .service-redesign-service #bolsa .home-prose,
  .service-redesign-service .conversion-inner {
    grid-template-columns: 1fr;
  }

  .service-redesign-service #included .home-prose::before,
  .service-redesign-service #incluido .home-prose::before {
    inset: 0 0 auto;
    width: 100%;
    height: 230px;
  }

  .service-redesign-service #included .section-icon,
  .service-redesign-service #included h2,
  .service-redesign-service #included h3,
  .service-redesign-service #included p,
  .service-redesign-service #included ul,
  .service-redesign-service #incluido .section-icon,
  .service-redesign-service #incluido h2,
  .service-redesign-service #incluido h3,
  .service-redesign-service #incluido p,
  .service-redesign-service #incluido ul {
    grid-column: auto;
    grid-row: auto;
  }

  .service-redesign-service #included h2,
  .service-redesign-service #incluido h2 {
    padding-bottom: 22px;
  }

  .service-redesign-service #included ul,
  .service-redesign-service #incluido ul {
    padding: 0 clamp(20px, 4vw, 34px) clamp(24px, 4vw, 34px);
  }

  .service-redesign-service #included h3,
  .service-redesign-service #included p,
  .service-redesign-service #incluido h3,
  .service-redesign-service #incluido p {
    margin-inline: clamp(20px, 4vw, 34px);
  }

  .service-redesign-service .short-answer-rows {
    gap: 8px;
  }

  .service-redesign-service .short-answer-row {
    grid-template-columns: minmax(92px, .34fr) minmax(0, 1fr);
  }

  .service-redesign-service .short-answer-row:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(12, 71, 156, .14);
  }

  .service-redesign-service .short-answer-row:nth-child(2) {
    margin-inline: 0;
  }

  .service-redesign-service #bag .section-icon,
  .service-redesign-service #bag h2,
  .service-redesign-service #bag p,
  .service-redesign-service #bolsa .section-icon,
  .service-redesign-service #bolsa h2,
  .service-redesign-service #bolsa p,
  .service-redesign-service .conversion-actions {
    grid-column: auto;
  }

  .service-redesign-service .short-answer-row {
    min-height: 118px;
  }
}

@media (max-width: 720px) {
  .service-redesign-service .short-answer,
  .service-redesign-service .home-prose {
    width: min(100% - 32px, 1080px);
  }

  .service-redesign-service .short-answer-rows {
    padding: 8px;
  }

  .service-redesign-service .short-answer-row {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .service-redesign-service .home-toc {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 2px 16px 10px;
    scroll-snap-type: x proximity;
  }

  .service-redesign-service .home-toc a {
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .service-redesign-service .section-icon {
    float: none;
    margin: 0 0 18px;
  }

  .service-redesign-service #faq .lite-table tbody,
  .service-redesign-service #preguntas .lite-table tbody,
  .service-redesign-service .good-maybe-grid,
  .service-redesign-service #included ul,
  .service-redesign-service #incluido ul {
    grid-template-columns: 1fr;
  }

  .service-redesign-service #included li:first-child,
  .service-redesign-service #incluido li:first-child {
    grid-column: auto;
  }

  .service-redesign-service .lite-table,
  .service-redesign-service .lite-table tbody,
  .service-redesign-service .lite-table tr,
  .service-redesign-service .lite-table td {
    display: block;
  }

  .service-redesign-service .lite-table thead {
    display: none;
  }

  .service-redesign-service .lite-table tr {
    margin-bottom: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(12, 71, 156, .16);
    border-radius: 14px;
    overflow: hidden;
  }

  .service-redesign-service .lite-table td,
  .service-redesign-service .lite-table td:first-child,
  .service-redesign-service .lite-table td:last-child {
    width: auto;
    border: 0;
    border-radius: 0;
  }

  .service-redesign-service .lite-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: var(--wf-blue);
    font: 800 12px/1.1 var(--font-display);
    text-transform: uppercase;
  }
}

/* Homepage color, shadow and motion pass — shared so EN and ES render identically */
body.home-page .site-header {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 176, 32, .48);
}

body.home-page main .hero {
  border-bottom: 4px solid var(--home-yellow-rich);
}

body.home-page main .home-redo-media.home-redo-photo img {
  transition: transform .5s ease;
}

body.home-page main .home-redo-media.home-redo-photo:hover img {
  transform: scale(1.04);
}

body.home-page main .home-redo-faq details {
  transition: background var(--t-base);
}

body.home-page main .home-redo-faq details[open] {
  background: var(--home-surface-blue, #E4F2FF);
}

body.home-page main .home-redo-faq summary {
  transition: color var(--t-base);
}

body.home-page main .home-redo-faq details:hover summary {
  color: var(--home-royal, #0C6FE8);
}

/* Homepage doc2 rebuild: trust bar as a right-to-left scrolling marquee, one line */
body.home-page main .home-redo-trust {
  padding-block: var(--sp-4);
  background: var(--home-surface-blue, #E4F2FF);
  border-top: 4px solid var(--home-yellow-rich);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

body.home-page main .home-redo-trust-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

body.home-page main .home-redo-trust-track {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  width: max-content;
  animation: home-trust-marquee 34s linear infinite;
}

body.home-page main .home-redo-trust:hover .home-redo-trust-track,
body.home-page main .home-redo-trust:focus-within .home-redo-trust-track {
  animation-play-state: paused;
}

@keyframes home-trust-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

body.home-page main .home-redo-trust-track .trust-card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: none;
  white-space: nowrap;
  min-height: 48px;
  padding: 9px var(--sp-4);
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--e-1);
}

body.home-page main .home-redo-trust-track .trust-card-icon {
  width: 28px;
  height: 28px;
  flex: none;
}

body.home-page main .home-redo-trust-track .trust-card span {
  color: var(--home-blue-ink);
  font: 700 13px/1.3 var(--font-body);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  body.home-page main .home-redo-trust-track {
    animation: none;
  }
}

body.home-page main .home-redo-stack,
body.home-page main .home-redo-split {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

body.home-page main .home-redo-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
}

body.home-page main .home-redo-split-flip {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
}

body.home-page main .home-redo-copy {
  max-width: 76ch;
}

body.home-page main .home-redo-copy-narrow {
  max-width: 64ch;
}

body.home-page main .home-redo-copy-spaced {
  margin-top: clamp(28px, 5vw, 52px);
}

body.home-page main .home-redo-copy h2,
body.home-page main .home-redo-faq-wrap > h2 {
  margin: 0 0 14px;
  color: var(--home-blue-ink);
  font-size: clamp(2rem, 1.55rem + 1.7vw, 2.75rem);
  line-height: 1.08;
}

body.home-page main .home-redo-copy h2::before,
body.home-page main .home-redo-faq-wrap > h2::before {
  content: none;
  display: none;
}

body.home-page main .home-redo-copy p,
body.home-page main .home-redo-note,
body.home-page main .home-redo-linkline,
body.home-page main .home-redo-faq p {
  margin: 0;
  color: var(--text-2);
  font-size: clamp(1rem, .96rem + .18vw, 1.125rem);
  line-height: 1.62;
}

body.home-page main .home-redo-copy p + p,
body.home-page main .home-redo-copy p + .home-redo-table-wrap {
  margin-top: 16px;
}

body.home-page main .home-redo-media {
  display: grid;
  min-height: 280px;
  place-items: center;
  margin: 0;
  padding: clamp(26px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(19, 88, 184, .08), rgba(247, 189, 22, .18)),
    #FFFFFF;
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-lg);
}

body.home-page main .home-redo-media img {
  width: clamp(86px, 14vw, 132px);
  height: clamp(86px, 14vw, 132px);
  object-fit: contain;
}

body.home-page main .home-redo-media figcaption {
  margin-top: 18px;
  color: var(--home-blue-ink);
  font: 700 13px/1.35 var(--font-body);
}

/* Real store photos in place of the icon placeholders */
body.home-page main .home-redo-media.home-redo-photo {
  position: relative;
  height: 340px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: none;
}

body.home-page main .home-redo-media.home-redo-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: calc(var(--r-lg) - 1px);
}

@media (max-width: 599px) {
  body.home-page main .home-redo-media.home-redo-photo {
    height: 240px;
  }
}

body.home-page main .home-redo-card-grid {
  display: grid;
  gap: var(--sp-4);
}

body.home-page main .home-redo-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.home-page main .home-redo-card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.home-page main .home-redo-card,
body.home-page main .home-redo-info-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: clamp(20px, 3vw, 28px);
  color: var(--home-blue-ink);
  background: #FFFFFF;
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-lg);
  box-shadow: 0 14px 30px rgba(12, 71, 156, .08);
  text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  animation: home-card-in .5s ease-out both;
}

body.home-page main .home-redo-card:hover,
body.home-page main .home-redo-card:focus-visible,
body.home-page main .home-redo-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--home-royal, #0C6FE8);
  box-shadow: 0 22px 42px rgba(12, 71, 156, .16);
}

body.home-page main .home-redo-card-grid-three .home-redo-card:nth-child(2),
body.home-page main .home-redo-card-grid-two .home-redo-info-card:nth-child(2) {
  animation-delay: .08s;
}

body.home-page main .home-redo-card-grid-three .home-redo-card:nth-child(3) {
  animation-delay: .16s;
}

@keyframes home-card-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page main .home-redo-card,
  body.home-page main .home-redo-info-card {
    animation: none;
  }
}

body.home-page main .home-redo-card img,
body.home-page main .home-redo-info-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

body.home-page main .home-redo-card h3,
body.home-page main .home-redo-info-card h3 {
  margin: 0;
  color: var(--home-blue-ink);
  font-size: clamp(1.05rem, 1rem + .25vw, 1.25rem);
  line-height: 1.24;
}

body.home-page main .home-redo-card p,
body.home-page main .home-redo-info-card p {
  margin: 0;
  color: var(--text-2);
  line-height: 1.55;
}

body.home-page main .home-redo-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  margin-top: 4px;
  padding: 7px 12px;
  color: var(--home-blue-ink);
  background: var(--home-surface-gold);
  border: 1px solid var(--home-yellow-rich);
  border-radius: var(--r-md);
  font-weight: 800;
}

body.home-page main .home-redo-note,
body.home-page main .home-redo-linkline {
  max-width: 78ch;
  margin-top: 22px;
}

body.home-page main .home-redo-table-wrap {
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 34px rgba(12, 71, 156, .09);
}

body.home-page main .home-redo-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--home-blue-ink);
}

body.home-page main .home-redo-table th,
body.home-page main .home-redo-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--home-blue-border);
}

body.home-page main .home-redo-table th {
  color: var(--home-blue-ink);
  background: linear-gradient(90deg, var(--home-surface-gold), #FFFFFF 130%);
  font: 800 14px/1.25 var(--font-body);
}

body.home-page main .home-redo-table td {
  background: #FFFFFF;
  font-size: 15px;
  line-height: 1.45;
  transition: background var(--t-base);
}

body.home-page main .home-redo-table tr:last-child td {
  border-bottom: 0;
}

body.home-page main .home-redo-table tbody tr:nth-child(even) td {
  background: var(--home-surface-blue, #E4F2FF);
}

body.home-page main .home-redo-table tbody tr:hover td {
  background: var(--home-surface-gold, #FFF1BC);
}

body.home-page main .services-section .services-grid {
  align-items: stretch;
}

body.home-page main .services-section .service-card {
  min-height: 212px;
}

body.home-page main .services-section .service-card:nth-child(1) { background: linear-gradient(150deg, #FFFFFF 0%, var(--home-surface-blue) 100%); }
body.home-page main .services-section .service-card:nth-child(2) { background: linear-gradient(150deg, #FFFFFF 0%, var(--home-surface-mint) 100%); }
body.home-page main .services-section .service-card:nth-child(3) { background: linear-gradient(150deg, #FFFFFF 0%, var(--home-surface-lilac) 100%); }
body.home-page main .services-section .service-card:nth-child(4) { background: linear-gradient(150deg, #FFFFFF 0%, var(--home-surface-coral) 100%); }
body.home-page main .services-section .service-card:nth-child(5) { background: linear-gradient(150deg, #FFFFFF 0%, var(--home-surface-gold) 100%); }
body.home-page main .services-section .service-card:nth-child(6) { background: linear-gradient(150deg, #FFFFFF 0%, var(--home-teal, #DFF8F7) 100%); }

body.home-page main .home-redo-faq-wrap {
  width: min(860px, 100%);
  margin-inline: auto;
  text-align: center;
}

body.home-page main .home-redo-faq {
  margin-top: var(--sp-5);
  overflow: hidden;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 34px rgba(12, 71, 156, .09);
}

body.home-page main .home-redo-faq details {
  border-bottom: 1px solid var(--home-blue-border);
}

body.home-page main .home-redo-faq details:last-child {
  border-bottom: 0;
}

body.home-page main .home-redo-faq summary {
  min-height: 58px;
  padding: 18px 22px;
  color: var(--home-blue-ink);
  cursor: pointer;
  font-weight: 800;
}

body.home-page main .home-redo-faq p {
  padding: 0 22px 20px;
}

body.home-page main .home-redo-faq-wrap .section-actions {
  justify-content: center;
  margin-top: var(--sp-5);
}

body.home-page main #ownership.home-movement-rose {
  color: var(--home-blue-ink);
  background:
    linear-gradient(118deg, rgba(255, 176, 32, .18) 0 11%, transparent 11% 100%),
    linear-gradient(135deg, var(--home-surface-coral) 0%, #FFFFFF 56%, var(--home-surface-lilac) 100%);
}

body.home-page main #ownership.home-movement-rose::before,
body.home-page main #ownership.home-movement-rose::after {
  content: none;
  display: none;
}

@media (max-width: 899px) {
  body.home-page main .home-redo-split,
  body.home-page main .home-redo-split-flip,
  body.home-page main .home-redo-card-grid-three,
  body.home-page main .home-redo-card-grid-two {
    grid-template-columns: 1fr;
  }

  body.home-page main .home-redo-media {
    min-height: 220px;
  }
}

@media (max-width: 599px) {
  body.home-page main .home-redo-trust-track {
    gap: var(--sp-2);
    animation-duration: 26s;
  }

  body.home-page main .home-redo-trust-track .trust-card {
    min-height: 42px;
    padding: 8px 12px;
    gap: var(--sp-2);
  }

  body.home-page main .home-redo-trust-track .trust-card-icon {
    width: 26px;
    height: 26px;
  }

  body.home-page main .home-redo-trust-track .trust-card span {
    font-size: 12px;
  }

  body.home-page main .home-redo-table,
  body.home-page main .home-redo-table thead,
  body.home-page main .home-redo-table tbody,
  body.home-page main .home-redo-table tr,
  body.home-page main .home-redo-table td {
    display: block;
    width: 100%;
  }

  body.home-page main .home-redo-table thead {
    display: none;
  }

  body.home-page main .home-redo-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid var(--home-blue-border);
  }

  body.home-page main .home-redo-table tr:last-child {
    border-bottom: 0;
  }

  body.home-page main .home-redo-table td {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    padding: 6px 0;
    border: 0;
  }

body.home-page main .home-redo-table td::before {
    content: attr(data-label);
    color: var(--home-blue-ink);
    font-weight: 800;
  }
}

/* Services hub doc2 rebuild: comparison-led body below the existing hero */
body.services-hub-page {
  --home-blue-ink: #073A86;
  --home-blue-border: #8DCBFF;
  --home-service-blue: #17479E;
  --home-surface-blue: #E4F2FF;
  --home-soft-blue: #E5EEF8;
  --home-surface-gold: #FFF1BC;
  --home-surface-mint: #DCF7E9;
  --home-yellow-rich: #F7BD16;
}

body.services-hub-page main .services-redo-section {
  padding-block: clamp(52px, 7vw, 86px);
  border-bottom: 1px solid rgba(12, 71, 156, .14);
}

body.services-hub-page main .services-redo-white {
  background:
    linear-gradient(118deg, rgba(255, 176, 32, .12) 0 9%, transparent 9% 100%),
    #FFFFFF;
}

body.services-hub-page main .services-redo-tint {
  background:
    linear-gradient(118deg, rgba(12, 71, 156, .09) 0 11%, transparent 11% 100%),
    linear-gradient(180deg, var(--home-surface-blue), #F8FBFF 100%);
}

body.services-hub-page main .services-redo-wrap {
  display: grid;
  gap: clamp(22px, 4vw, 36px);
}

body.services-hub-page main .services-redo-copy,
body.services-hub-page main .services-redo-narrative {
  max-width: 74ch;
}

body.services-hub-page main .services-redo-copy h2,
body.services-hub-page main .services-redo-narrative h2 {
  margin: 0 0 12px;
  color: var(--home-blue-ink);
  font-size: clamp(2rem, 1.55rem + 1.7vw, 2.75rem);
  line-height: 1.1;
}

body.services-hub-page main .services-redo-copy h2::before,
body.services-hub-page main .services-redo-narrative h2::before,
body.services-hub-page main .services-redo-close h2::before {
  content: none;
  display: none;
}

body.services-hub-page main .services-redo-copy p,
body.services-hub-page main .services-redo-note,
body.services-hub-page main .services-redo-narrative p {
  margin: 0;
  color: var(--text-2);
  font-size: clamp(1rem, .96rem + .18vw, 1.125rem);
  line-height: 1.62;
}

body.services-hub-page main .services-redo-narrative p + p {
  margin-top: 16px;
}

body.services-hub-page main .services-redo-note {
  max-width: 76ch;
}

body.services-hub-page main .services-redo-note strong,
body.services-hub-page main .services-redo-narrative strong {
  color: var(--home-blue-ink);
}

body.services-hub-page main .services-redo-table-card {
  overflow: hidden;
  width: min(980px, 100%);
  margin-inline: auto;
  background: #FFFFFF;
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 34px rgba(12, 71, 156, .09);
  transition: box-shadow var(--t-base);
}

body.services-hub-page main .services-redo-table-card:hover {
  box-shadow: 0 22px 44px rgba(12, 71, 156, .14);
}

body.services-hub-page main .services-redo-table-card-wide {
  width: 100%;
}

body.services-hub-page main .services-redo-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  padding: 14px 18px;
  color: var(--home-blue-ink);
  background: var(--home-surface-gold);
  border-bottom: 1px solid var(--home-yellow-rich);
  font-size: 14px;
  line-height: 1.4;
}

body.services-hub-page main .services-redo-status strong {
  font-family: var(--font-display);
}

body.services-hub-page main .services-redo-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--home-blue-ink);
}

body.services-hub-page main .services-redo-table th,
body.services-hub-page main .services-redo-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--home-blue-border);
}

body.services-hub-page main .services-redo-table th {
  color: var(--home-blue-ink);
  background: var(--home-soft-blue);
  font: 800 14px/1.25 var(--font-body);
}

body.services-hub-page main .services-redo-table td {
  background: #FFFFFF;
  font-size: 15px;
  line-height: 1.45;
}

body.services-hub-page main .services-redo-table tr:nth-child(even) td {
  background: #F8FBFF;
}

body.services-hub-page main .services-redo-table tr:last-child td {
  border-bottom: 0;
}

body.services-hub-page main .services-redo-row-label {
  width: 190px;
  color: var(--home-blue-ink);
  font-weight: 800;
}

body.services-hub-page main .services-redo-compare-table td strong {
  display: block;
  margin-bottom: 3px;
  color: var(--home-blue-ink);
  font: 800 17px/1.2 var(--font-display);
}

body.services-hub-page main .services-redo-compare-table td span:not(.swap) {
  display: block;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.35;
}

body.services-hub-page main .services-redo-table a,
body.services-hub-page main .services-redo-specialist-card span {
  color: var(--home-service-blue);
  font-weight: 800;
  text-decoration: none;
}

body.services-hub-page main .services-redo-table a:hover,
body.services-hub-page main .services-redo-table a:focus-visible,
body.services-hub-page main .services-redo-specialist-card:hover span,
body.services-hub-page main .services-redo-specialist-card:focus-visible span {
  text-decoration: underline;
}

body.services-hub-page main .services-redo-mobile-compare {
  display: none;
}

body.services-hub-page main .services-redo-specialist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-4);
}

body.services-hub-page main .services-redo-specialist-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  gap: 12px;
  padding: clamp(20px, 3vw, 28px);
  color: var(--home-blue-ink);
  background: #FFFFFF;
  border: 1px solid var(--home-blue-border);
  border-radius: var(--r-lg);
  box-shadow: 0 14px 30px rgba(12, 71, 156, .08);
  text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

body.services-hub-page main .services-redo-specialist-card:nth-child(1) {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--home-surface-blue) 100%);
}

body.services-hub-page main .services-redo-specialist-card:nth-child(2) {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--home-surface-gold) 100%);
}

body.services-hub-page main .services-redo-specialist-card:nth-child(3) {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--home-surface-mint) 100%);
}

body.services-hub-page main .services-redo-specialist-card:hover,
body.services-hub-page main .services-redo-specialist-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--home-service-blue);
  box-shadow: 0 20px 40px rgba(12, 71, 156, .14);
}

body.services-hub-page main .services-redo-specialist-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

body.services-hub-page main .services-redo-specialist-card h3 {
  margin: 0;
  color: var(--home-blue-ink);
  font-size: clamp(1.05rem, 1rem + .25vw, 1.25rem);
  line-height: 1.24;
}

body.services-hub-page main .services-redo-specialist-card p {
  margin: 0;
  color: var(--text-2);
  line-height: 1.55;
}

body.services-hub-page main .services-redo-close .conversion-inner {
  text-align: center;
}

body.services-hub-page main .services-redo-close p {
  max-width: 68ch;
  margin-inline: auto;
}

body.services-hub-page main .services-redo-close p a {
  color: #FFFFFF;
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 899px) {
  body.services-hub-page main .services-redo-specialist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.services-hub-page main .services-redo-section {
    padding-block: 46px;
  }

  body.services-hub-page main .services-redo-table-scroll {
    display: none;
  }

  body.services-hub-page main .services-redo-mobile-compare {
    display: grid;
    gap: 14px;
    padding: 14px;
  }

  body.services-hub-page main .services-redo-mobile-compare article {
    display: grid;
    gap: 12px;
    padding: 16px;
    background: #FFFFFF;
    border: 1px solid var(--home-blue-border);
    border-radius: var(--r-md);
  }

  body.services-hub-page main .services-redo-mobile-compare h3 {
    margin: 0;
    color: var(--home-blue-ink);
  }

  body.services-hub-page main .services-redo-mobile-compare dl {
    display: grid;
    gap: 8px;
    margin: 0;
  }

  body.services-hub-page main .services-redo-mobile-compare dl div {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--home-blue-border);
  }

  body.services-hub-page main .services-redo-mobile-compare dt {
    color: var(--text-2);
    font-size: 13px;
    font-weight: 800;
  }

  body.services-hub-page main .services-redo-mobile-compare dd {
    margin: 0;
    color: var(--home-blue-ink);
    font-size: 14px;
    line-height: 1.4;
  }

  body.services-hub-page main .services-redo-mobile-compare a {
    color: var(--home-service-blue);
    font-weight: 800;
    text-decoration: none;
  }

  body.services-hub-page main .services-redo-stack-table,
  body.services-hub-page main .services-redo-stack-table thead,
  body.services-hub-page main .services-redo-stack-table tbody,
  body.services-hub-page main .services-redo-stack-table tr,
  body.services-hub-page main .services-redo-stack-table td {
    display: block;
    width: 100%;
  }

  body.services-hub-page main .services-redo-stack-table thead {
    display: none;
  }

  body.services-hub-page main .services-redo-stack-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid var(--home-blue-border);
  }

  body.services-hub-page main .services-redo-stack-table tr:last-child {
    border-bottom: 0;
  }

  body.services-hub-page main .services-redo-stack-table td {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    padding: 6px 0;
    border: 0;
    background: transparent !important;
  }

  body.services-hub-page main .services-redo-stack-table td::before {
    content: attr(data-label);
    color: var(--text-2);
    font-weight: 800;
  }

  body.services-hub-page main .services-redo-stack-table td.services-redo-row-label {
    display: block;
    padding-bottom: 10px;
    color: var(--home-blue-ink);
    font-size: 17px;
  }

  body.services-hub-page main .services-redo-stack-table td.services-redo-row-label::before {
    content: none;
  }
}

@media (max-width: 380px) {
  body.services-hub-page main .services-redo-mobile-compare dl div,
  body.services-hub-page main .services-redo-stack-table td {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

body.service-detail-page {
  --service-detail-blue-ink: var(--home-blue-ink, #073A86);
  --service-detail-service-blue: var(--home-service-blue, #17479E);
  --service-detail-surface-blue: var(--home-surface-blue, #E4F2FF);
  --service-detail-soft-blue: var(--soft-blue, #E5EEF8);
  --service-detail-surface-gold: var(--home-surface-gold, #FFF1BC);
  --service-detail-surface-mint: var(--home-surface-mint, #DCF7E9);
  --service-detail-surface-lilac: var(--home-surface-lilac, #EAE5FF);
  --service-detail-blue-border: var(--home-blue-border, #8DCBFF);
  --service-detail-rich-yellow: var(--home-rich-yellow, #F7BD16);
}

body.service-detail-page main .service-detail-redo {
  padding-block: clamp(54px, 8vw, 96px);
  scroll-margin-top: 96px;
}

body.service-detail-page main .service-detail-anchor {
  display: block;
  position: relative;
  top: -96px;
  visibility: hidden;
}

body.service-detail-page main .service-detail-white {
  background:
    linear-gradient(135deg, rgba(228, 242, 255, .56) 0 16%, transparent 16% 100%),
    #FFFFFF;
}

body.service-detail-page main .service-detail-tint {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 241, 188, .82), transparent 25%),
    var(--service-detail-surface-blue);
}

body.service-detail-page main .service-detail-wrap {
  display: grid;
  gap: clamp(22px, 4vw, 40px);
}

/* Plain prose sections (heading + paragraphs, nothing else) have no second
   element to fill the wide row, so the paragraph's max-width leaves a lopsided
   gap on the right. Cap and center the whole block instead of losing it to the left. */
body.service-detail-page main .service-detail-wrap.service-detail-prose {
  max-width: 760px;
  margin-inline: auto;
}

body.service-detail-page main .service-detail-media-row,
body.service-detail-page main .service-detail-two-col {
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
}

body.service-detail-page main .service-detail-two-col {
  align-items: stretch;
}

body.service-detail-page main .service-detail-reverse > :first-child {
  order: 2;
}

body.service-detail-page main .service-detail-reverse > :last-child {
  order: 1;
}

body.service-detail-page main .service-detail-copy,
body.service-detail-page main .service-detail-centered-copy {
  display: grid;
  gap: 14px;
  max-width: 72ch;
}

body.service-detail-page main .service-detail-centered-copy {
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

body.service-detail-page main .service-detail-redo h2 {
  margin: 0;
  color: var(--service-detail-blue-ink) !important;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.55rem + 1.7vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

body.service-detail-page main .service-detail-redo h2::before {
  content: none;
}

body.service-detail-page main .service-detail-redo h3 {
  margin: 0;
  color: var(--service-detail-blue-ink) !important;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.02rem + .28vw, 1.25rem);
  line-height: 1.25;
  letter-spacing: 0;
}

body.service-detail-page main .service-detail-redo p,
body.service-detail-page main .service-detail-redo li,
body.service-detail-page main .service-detail-redo td {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.62;
}

body.service-detail-page main .service-detail-redo p,
body.service-detail-page main .service-detail-redo ul {
  margin: 0;
}

body.service-detail-page main .service-detail-redo ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

body.service-detail-page main .service-detail-redo a {
  color: var(--service-detail-service-blue);
  font-weight: 800;
  text-decoration: none;
}

body.service-detail-page main .service-detail-redo a:hover,
body.service-detail-page main .service-detail-redo a:focus-visible {
  text-decoration: underline;
}

body.service-detail-page main .service-detail-media {
  display: grid;
  min-height: clamp(210px, 28vw, 320px);
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--service-detail-blue-border);
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, #FFFFFF 0%, var(--service-detail-surface-gold) 58%, var(--service-detail-surface-mint) 100%);
  box-shadow: 0 18px 42px rgba(12, 71, 156, .11);
}

body.service-detail-page main .service-detail-media img {
  width: min(168px, 58%);
  height: auto;
  object-fit: contain;
}

/* Real photos in the media slots, in place of the icon placeholder.
   .service-detail-two-col stretches its grid row, so height stays auto here and the
   photo fills the full row to match the paired text column instead of leaving a gap. */
body.service-detail-page main .service-detail-media.service-detail-photo {
  position: relative;
  height: auto;
  min-height: clamp(210px, 28vw, 320px);
  padding: 0;
  background: none;
}

body.service-detail-page main .service-detail-media.service-detail-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform .5s ease;
}

body.service-detail-page main .service-detail-media.service-detail-photo:hover img {
  transform: scale(1.04);
}

body.service-detail-page main .service-detail-table-card,
body.service-detail-page main .service-detail-callout,
body.service-detail-page main .service-detail-card,
body.service-detail-page main .service-detail-status {
  border: 1px solid var(--service-detail-blue-border);
  border-radius: var(--r-lg);
  background: #FFFFFF;
  box-shadow: 0 14px 30px rgba(12, 71, 156, .08);
}

body.service-detail-page main .service-detail-table-card {
  overflow: hidden;
}

body.service-detail-page main .service-detail-provisional-band {
  padding: 12px 18px;
  color: var(--deep-navy);
  background: #FEF7E7;
  border-bottom: 1px dashed var(--signal-amber);
  font-size: 14px;
  line-height: 1.45;
}

body.service-detail-page main .service-detail-provisional-band strong {
  color: var(--deep-navy);
}

body.service-detail-page main .service-detail-compact-table {
  width: min(900px, 100%);
  margin-inline: auto;
}

body.service-detail-page main .service-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

body.service-detail-page main .service-detail-table caption {
  padding: 16px 20px 8px;
  color: var(--service-detail-blue-ink);
  font: 800 17px/1.35 var(--font-display);
  text-align: left;
}

body.service-detail-page main .service-detail-table th,
body.service-detail-page main .service-detail-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

body.service-detail-page main .service-detail-table th {
  color: var(--service-detail-blue-ink);
  background: var(--service-detail-soft-blue);
  font: 800 15px/1.35 var(--font-display);
}

body.service-detail-page main .service-detail-table tr:last-child td {
  border-bottom: 0;
}

body.service-detail-page main .service-detail-table td:first-child {
  color: var(--service-detail-blue-ink);
  font-weight: 800;
}

body.service-detail-page main .service-detail-table .lab,
body.service-detail-page main .service-detail-table .svc {
  color: var(--service-detail-blue-ink);
  font-family: var(--font-display);
  font-weight: 800;
}

body.service-detail-page main .service-detail-table .dir {
  display: inline-block;
  color: var(--service-detail-blue-ink);
  font-weight: 800;
}

body.service-detail-page main .service-detail-table .num {
  text-align: right;
}

body.service-detail-page main .service-detail-table .price,
body.service-detail-page main .service-detail-table .wt {
  color: var(--service-detail-blue-ink);
  font-family: var(--font-display);
  font-weight: 800;
}

body.service-detail-page main .service-detail-link-text {
  color: var(--service-detail-service-blue);
  font-weight: 800;
}

body.service-detail-page main .service-detail-card-grid {
  display: grid;
  gap: 18px;
}

body.service-detail-page main .service-detail-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.service-detail-page main .service-detail-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.service-detail-page main .service-detail-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.service-detail-page main .service-detail-card,
body.service-detail-page main .service-detail-callout {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(20px, 3vw, 28px);
}

body.service-detail-page main .service-detail-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.service-detail-page main .service-detail-card:nth-child(2n) {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--service-detail-surface-mint) 100%);
}

body.service-detail-page main .service-detail-card:nth-child(3n) {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--service-detail-surface-lilac) 100%);
}

body.service-detail-page main .service-detail-card:nth-child(4n) {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--service-detail-surface-gold) 100%);
}

body.service-detail-page main .service-detail-warning {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--service-detail-surface-gold) 100%);
}

body.service-detail-page main .service-detail-note {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--service-detail-surface-gold) 100%);
}

body.service-detail-page main .yes {
  color: #0C479C;
  font-weight: 800;
}

body.service-detail-page main .no {
  color: var(--deep-gold);
  font-weight: 800;
}

body.service-detail-page main .service-detail-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.service-detail-page main .service-detail-pill-grid a {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 12px 16px;
  color: var(--service-detail-blue-ink);
  background: #FFFFFF;
  border: 1px solid var(--service-detail-blue-border);
  border-radius: var(--r-md);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(12, 71, 156, .08);
}

body.service-detail-page main .service-detail-timeline {
  display: grid;
  gap: 12px;
}

body.service-detail-page main .service-detail-timeline div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 12px 16px;
  border: 1px solid var(--service-detail-blue-border);
  border-radius: var(--r-md);
  background: #FFFFFF;
}

body.service-detail-page main .service-detail-timeline strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--deep-navy);
  background: var(--signal-amber);
  border-radius: var(--r-sm);
  font: 800 20px/1 var(--font-display);
}

body.service-detail-page main .service-detail-timeline span,
body.service-detail-page main .service-detail-status span {
  color: var(--service-detail-blue-ink);
  font-weight: 800;
}

body.service-detail-page main .service-detail-status {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--service-detail-surface-mint) 100%);
}

body.service-detail-page main .service-detail-status strong {
  color: var(--service-detail-blue-ink);
  font: 800 clamp(1.5rem, 1.2rem + 1.25vw, 2.1rem)/1.12 var(--font-display);
}

body.service-detail-page main .service-detail-close .conversion-inner {
  text-align: center;
}

body.service-detail-page main .service-detail-close p {
  max-width: 68ch;
  margin-inline: auto;
}

body.service-detail-page main .service-detail-close p a {
  color: #FFFFFF;
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 899px) {
  body.service-detail-page main .service-detail-media-row,
  body.service-detail-page main .service-detail-two-col,
  body.service-detail-page main .service-detail-grid-two,
  body.service-detail-page main .service-detail-grid-four,
  body.service-detail-page main .service-detail-grid-three,
  body.service-detail-page main .service-detail-pill-grid {
    grid-template-columns: 1fr;
  }

  body.service-detail-page main .service-detail-reverse > * {
    order: 0;
  }

  body.service-detail-page main .service-detail-media {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  body.service-detail-page main .service-detail-redo {
    padding-block: 46px;
  }

  body.service-detail-page main .service-detail-centered-copy {
    justify-items: start;
    text-align: left;
  }

  body.service-detail-page main .service-detail-stack-table,
  body.service-detail-page main .service-detail-stack-table thead,
  body.service-detail-page main .service-detail-stack-table tbody,
  body.service-detail-page main .service-detail-stack-table tr,
  body.service-detail-page main .service-detail-stack-table td {
    display: block;
    width: 100%;
  }

  body.service-detail-page main .service-detail-stack-table thead {
    display: none;
  }

  body.service-detail-page main .service-detail-stack-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid var(--service-detail-blue-border);
  }

  body.service-detail-page main .service-detail-stack-table tr:last-child {
    border-bottom: 0;
  }

  body.service-detail-page main .service-detail-stack-table td {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
    padding: 6px 0;
    border: 0;
    background: transparent;
  }

  body.service-detail-page main .service-detail-stack-table td::before {
    content: attr(data-label);
    color: var(--text-2);
    font-size: 13px;
    font-weight: 800;
  }

  body.service-detail-page main .service-detail-media {
    min-height: 190px;
  }
}

@media (max-width: 380px) {
  body.service-detail-page main .service-detail-stack-table td,
  body.service-detail-page main .service-detail-timeline div {
    grid-template-columns: 1fr;
  }
}

body.company-redo-page main,
body.pricing-redo-page main,
body.area-redo-page main {
  background:
    radial-gradient(circle at top right, rgba(255, 218, 102, .22), transparent 30%),
    linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 18%, #F4F8FD 100%);
}

body.company-redo-page main > section:not(.page-hero),
body.pricing-redo-page main > section:not(.page-hero),
body.area-redo-page main > section:not(.page-hero) {
  padding-block: clamp(52px, 7vw, 88px);
}

body.company-redo-page .doc2-hero-panel,
body.pricing-redo-page .doc2-hero-panel,
body.area-redo-page .doc2-hero-panel {
  display: grid;
  min-height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.company-redo-page .doc2-mini-grid,
body.pricing-redo-page .doc2-mini-grid,
body.area-redo-page .doc2-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  align-content: stretch;
}

body.company-redo-page .doc2-mini-grid > div,
body.pricing-redo-page .doc2-mini-grid > div,
body.area-redo-page .doc2-mini-grid > div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(12, 71, 156, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 30px rgba(12, 71, 156, .08);
}

body.company-redo-page .doc2-mini-grid strong,
body.pricing-redo-page .doc2-mini-grid strong,
body.area-redo-page .doc2-mini-grid strong {
  color: var(--brand);
  font: 700 clamp(1.35rem, 1.05rem + 1vw, 2rem)/1 var(--font-display);
}

body.company-redo-page .doc2-mini-grid span,
body.pricing-redo-page .doc2-mini-grid span,
body.area-redo-page .doc2-mini-grid span {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
}

body.company-redo-page .doc2-story-split,
body.contact-redo-page .doc2-split-layout,
body.area-redo-page .doc2-story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

body.company-redo-page .doc2-callout,
body.pricing-redo-page .doc2-callout,
body.area-redo-page .doc2-callout,
body.contact-redo-page .doc2-form-note {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 176, 32, .45);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(255, 240, 204, .82));
  color: var(--text-1);
}

body.company-redo-page .doc2-callout strong,
body.pricing-redo-page .doc2-callout strong,
body.area-redo-page .doc2-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1rem;
}

body.company-redo-page .doc2-check-list,
body.pricing-redo-page .doc2-bullet-list,
body.area-redo-page .doc2-bullet-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

body.company-redo-page .doc2-check-list li,
body.pricing-redo-page .doc2-bullet-list li,
body.area-redo-page .doc2-bullet-list li {
  padding: 16px 18px;
  border: 1px solid rgba(12, 71, 156, .10);
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 28px rgba(12, 71, 156, .06);
}

body.company-redo-page .doc2-faq-accordion,
body.faq-redo-page .doc2-faq-accordion {
  display: grid;
  gap: 14px;
}

body.company-redo-page .doc2-faq-accordion details,
body.faq-redo-page .doc2-faq-accordion details {
  padding: 18px 20px;
  border: 1px solid rgba(12, 71, 156, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 14px 28px rgba(12, 71, 156, .06);
}

body.company-redo-page .doc2-faq-accordion summary,
body.faq-redo-page .doc2-faq-accordion summary {
  cursor: pointer;
  color: var(--text-1);
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 700;
}

body.company-redo-page .doc2-faq-accordion p,
body.faq-redo-page .doc2-faq-accordion p {
  margin: 14px 0 0;
  color: var(--text-2);
}

body.company-redo-page .doc2-info-card,
body.pricing-redo-page .doc2-info-card,
body.area-redo-page .doc2-info-card {
  min-height: 100%;
}

body.company-redo-page .doc2-table-card,
body.pricing-redo-page .doc2-table-card,
body.area-redo-page .doc2-table-card,
body.contact-redo-page .doc2-table-card {
  margin-top: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(12, 71, 156, .14);
  box-shadow: 0 18px 34px rgba(12, 71, 156, .08);
}

body.company-redo-page .doc2-table-card table,
body.pricing-redo-page .doc2-table-card table,
body.area-redo-page .doc2-table-card table,
body.contact-redo-page .doc2-table-card table {
  width: 100%;
  border-collapse: collapse;
}

body.company-redo-page .doc2-table-card th,
body.company-redo-page .doc2-table-card td,
body.pricing-redo-page .doc2-table-card th,
body.pricing-redo-page .doc2-table-card td,
body.area-redo-page .doc2-table-card th,
body.area-redo-page .doc2-table-card td,
body.contact-redo-page .doc2-table-card th,
body.contact-redo-page .doc2-table-card td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(12, 71, 156, .08);
}

body.company-redo-page .doc2-table-card th,
body.pricing-redo-page .doc2-table-card th,
body.area-redo-page .doc2-table-card th,
body.contact-redo-page .doc2-table-card th {
  background: rgba(12, 71, 156, .08);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

body.company-redo-page .doc2-table-card tbody tr:nth-child(even),
body.pricing-redo-page .doc2-table-card tbody tr:nth-child(even),
body.area-redo-page .doc2-table-card tbody tr:nth-child(even),
body.contact-redo-page .doc2-table-card tbody tr:nth-child(even) {
  background: rgba(243, 247, 252, .72);
}

body.pricing-redo-page .doc2-dual-tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

body.pricing-redo-page .doc2-table-title {
  margin: 0 0 14px;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

body.contact-redo-page .doc2-contact-form {
  max-width: 760px;
}

body.contact-redo-page .doc2-contact-form select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--text-1);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #FFFFFF;
  font: inherit;
}

body.contact-redo-page .doc2-map-card {
  display: grid;
  gap: 16px;
}

body.area-redo-page .doc2-photo-placeholder {
  display: grid;
  gap: 16px;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(12, 71, 156, .12);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(229, 238, 248, .7));
  text-align: center;
  box-shadow: 0 16px 30px rgba(12, 71, 156, .06);
}

body.area-redo-page .doc2-large-icon {
  width: min(180px, 52%);
  height: auto;
}

body.area-redo-page .doc2-neighbor-section {
  padding-top: 0;
}

body.area-redo-page .doc2-neighbor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

body.area-redo-page .doc2-neighbor-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--brand);
  border: 1px solid rgba(12, 71, 156, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 22px rgba(12, 71, 156, .05);
}

@media (max-width: 899px) {
  body.company-redo-page .doc2-story-split,
  body.contact-redo-page .doc2-split-layout,
  body.area-redo-page .doc2-story-split,
  body.pricing-redo-page .doc2-dual-tables {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.company-redo-page .doc2-mini-grid,
  body.pricing-redo-page .doc2-mini-grid,
  body.area-redo-page .doc2-mini-grid {
    grid-template-columns: 1fr;
  }

  body.company-redo-page .doc2-stack-table,
  body.company-redo-page .doc2-stack-table thead,
  body.company-redo-page .doc2-stack-table tbody,
  body.company-redo-page .doc2-stack-table tr,
  body.company-redo-page .doc2-stack-table td,
  body.pricing-redo-page .doc2-stack-table,
  body.pricing-redo-page .doc2-stack-table thead,
  body.pricing-redo-page .doc2-stack-table tbody,
  body.pricing-redo-page .doc2-stack-table tr,
  body.pricing-redo-page .doc2-stack-table td,
  body.area-redo-page .doc2-stack-table,
  body.area-redo-page .doc2-stack-table thead,
  body.area-redo-page .doc2-stack-table tbody,
  body.area-redo-page .doc2-stack-table tr,
  body.area-redo-page .doc2-stack-table td,
  body.contact-redo-page .doc2-stack-table,
  body.contact-redo-page .doc2-stack-table thead,
  body.contact-redo-page .doc2-stack-table tbody,
  body.contact-redo-page .doc2-stack-table tr,
  body.contact-redo-page .doc2-stack-table td {
    display: block;
    width: 100%;
  }

  body.company-redo-page .doc2-stack-table thead,
  body.pricing-redo-page .doc2-stack-table thead,
  body.area-redo-page .doc2-stack-table thead,
  body.contact-redo-page .doc2-stack-table thead {
    display: none;
  }

  body.company-redo-page .doc2-stack-table tr,
  body.pricing-redo-page .doc2-stack-table tr,
  body.area-redo-page .doc2-stack-table tr,
  body.contact-redo-page .doc2-stack-table tr {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(12, 71, 156, .08);
  }

  body.company-redo-page .doc2-stack-table td,
  body.pricing-redo-page .doc2-stack-table td,
  body.area-redo-page .doc2-stack-table td,
  body.contact-redo-page .doc2-stack-table td {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    padding: 6px 0;
    border: 0;
    background: transparent;
  }

  body.company-redo-page .doc2-stack-table td::before,
  body.pricing-redo-page .doc2-stack-table td::before,
  body.area-redo-page .doc2-stack-table td::before,
  body.contact-redo-page .doc2-stack-table td::before {
    content: attr(data-label);
    color: var(--text-2);
    font-size: 13px;
    font-weight: 700;
  }
}

@media (max-width: 380px) {
  body.company-redo-page .doc2-stack-table td,
  body.pricing-redo-page .doc2-stack-table td,
  body.area-redo-page .doc2-stack-table td,
  body.contact-redo-page .doc2-stack-table td {
    grid-template-columns: 1fr;
  }
}
