:root {
  color-scheme: light;
  --page: #eaf0f5;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --ink: #111827;
  --muted: #5b6675;
  --line: #d5dee9;
  --navy: #041632;
  --navy-soft: #1b2b48;
  --orange: #f57c00;
  --green: #166534;
  --blue-soft: #eef5fb;
  --warning-soft: #fff7ed;
  --button-primary-bg: #041632;
  --button-primary-text: #ffffff;
  --button-secondary-bg: #ffffff;
  --button-secondary-text: #041632;
  --button-disabled-bg: #e5e7eb;
  --button-disabled-text: #64748b;
  --font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --heading-weight: 800;
  --body-size: 16px;
  --hero-size: 46px;
  --radius: 8px;
  --button-radius: 6px;
  --logo-radius: 12px;
  --shadow: 0 24px 60px rgba(4, 22, 50, 0.12);
  font-family: var(--font-family);
}

.client-manager {
  margin: 28px auto;
  max-width: 1480px;
  padding: 28px;
  border: 1px solid rgba(7, 51, 69, .16);
  background: #f7faf9;
}

.client-manager-head,
.client-record-head,
.client-route-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.client-manager-head h2,
.client-record-head h3 {
  margin: 0;
}

.client-manager-head > div > p:last-child,
.client-record-head p:last-child {
  margin: 8px 0 0;
  color: #51616a;
}

.client-manager-target {
  min-width: 145px;
  padding: 12px 14px;
  border-left: 3px solid #e07a2f;
  background: #fff;
  color: #51616a;
  font-size: .78rem;
  line-height: 1.45;
}

.client-manager-target strong {
  color: #073345;
  font-size: 1rem;
}

.client-create-form,
.client-record {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(7, 51, 69, .14);
  border-radius: 4px;
  background: #fff;
}

.client-record-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.client-record-grid label {
  display: grid;
  gap: 6px;
  color: #29434e;
  font-size: .78rem;
  font-weight: 700;
}

.client-record-grid input,
.client-record-grid select,
.client-record-grid textarea,
.client-route textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(7, 51, 69, .24);
  border-radius: 3px;
  padding: 10px 11px;
  background: #fff;
  color: #142b34;
  font: inherit;
}

.client-record-grid input:focus,
.client-record-grid select:focus,
.client-record-grid textarea:focus,
.client-route textarea:focus {
  outline: 2px solid rgba(224, 122, 47, .45);
  outline-offset: 1px;
}

.client-record-wide {
  grid-column: 1 / -1;
}

.client-form-status {
  margin-left: 12px;
  color: #51616a;
  font-size: .82rem;
}

.client-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.client-record-head {
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(7, 51, 69, .12);
}

.client-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e8eef0;
  color: #29434e;
  font-size: .74rem;
  font-weight: 800;
  white-space: nowrap;
}

.client-status--approved { background: #dff0e6; color: #155b35; }
.client-status--live { background: #d6edf5; color: #0c5268; }
.client-status--paused { background: #fbe7d8; color: #8b4a19; }

.client-record-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0 0 18px;
}

.client-record-meta div {
  min-width: 0;
  padding: 10px 12px;
  background: #f7faf9;
}

.client-record-meta dt {
  color: #687a82;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.client-record-meta dd {
  margin: 5px 0 0;
  color: #17343e;
  font-size: .82rem;
  overflow-wrap: anywhere;
}

.client-record-meta code {
  font-size: .74rem;
}

.client-record-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.client-record-actions .button {
  cursor: pointer;
  text-decoration: none;
}

.button-warning {
  background: #8b4a19;
  color: #fff;
}

.client-route {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(7, 51, 69, .12);
}

.client-route-head {
  align-items: center;
  margin-bottom: 8px;
  color: #17343e;
}

.client-route-head span {
  color: #8b4a19;
  font-size: .76rem;
  font-weight: 700;
}

.client-route textarea {
  display: block;
  min-height: 170px;
  resize: vertical;
  background: #142b34;
  color: #eaf4f4;
  font-family: Consolas, "Courier New", monospace;
  font-size: .78rem;
  line-height: 1.55;
}

.client-manager-empty,
.client-manager-error {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px dashed rgba(7, 51, 69, .24);
  background: #fff;
  color: #51616a;
}

.client-manager-error {
  border-color: #a84634;
  color: #8f2d1b;
}

@media (max-width: 900px) {
  .client-manager { padding: 18px; }
  .client-record-grid,
  .client-record-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .client-manager-head,
  .client-record-head { display: grid; }
  .client-record-grid,
  .client-record-meta { grid-template-columns: 1fr; }
  .client-manager-target { min-width: 0; }
  .client-form-status { display: block; margin: 10px 0 0; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  letter-spacing: 0;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.factory-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.factory-bar strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.factory-bar span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.factory-bar nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.factory-bar nav a,
.factory-nav-button,
.button,
.candidate-card {
  min-height: 44px;
}

.factory-bar nav a,
.factory-nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-weight: 700;
}

.factory-bar nav a,
.factory-nav-button {
  border: 0;
  background: transparent;
  padding: 8px 10px;
  color: var(--muted);
  cursor: pointer;
}

.factory-bar nav a:hover,
.factory-nav-button:hover,
.factory-nav-button[aria-expanded="true"] {
  background: var(--surface-soft);
  color: var(--navy);
}

.factory-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.factory-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
}

.factory-copy,
.factory-status,
.selector-panel,
.preview-frame,
.admin-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.factory-copy {
  padding: 32px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: 42px;
  font-weight: var(--heading-weight);
  line-height: 1.12;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
  font-weight: var(--heading-weight);
  line-height: 1.2;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: var(--heading-weight);
  line-height: 1.25;
}

.factory-copy p:not(.kicker),
.trade-hero p,
.section-head p:not(.kicker),
.service-card p,
.content-list-grid p,
.admin-grid p,
.admin-facts p,
.coverage-band p,
.concept-note p,
.qr-ready-section p,
.disabled-form label {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.factory-copy p:not(.kicker) {
  max-width: 780px;
}

.factory-actions,
.preview-actions,
.candidate-meta,
.fact-list,
.safe-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  border: 1px solid var(--navy);
  padding: 10px 14px;
}

.prospect-site .button:not(.disabled),
.prospect-site .trade-links a,
.prospect-site .trade-links button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.prospect-site .button:not(.disabled)::before,
.prospect-site .trade-links a::before,
.prospect-site .trade-links button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.46) 44%, transparent 62%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.prospect-site .button:not(.disabled):hover,
.prospect-site .trade-links a:hover,
.prospect-site .trade-links button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(4, 22, 50, 0.14);
}

.prospect-site .button:not(.disabled):hover::before,
.prospect-site .trade-links a:hover::before,
.prospect-site .trade-links button:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.button.primary {
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
}

.button.ghost {
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
}

.prospect-site .button.ghost:hover {
  border-color: rgba(4, 22, 50, 0.34);
  background: linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
  color: var(--navy);
}

.button.disabled {
  border-color: #cbd5e1;
  background: var(--button-disabled-bg);
  color: var(--button-disabled-text);
  cursor: not-allowed;
}

.factory-status {
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.factory-status span,
.pill,
.fact-list span,
.safe-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.selector-panel,
.admin-panel {
  padding: 20px;
  margin: 20px 0;
}

.section-head {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}

.candidate-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.candidate-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  display: grid;
  gap: 9px;
}

.candidate-card:hover,
.candidate-card.active {
  border-color: var(--navy);
  box-shadow: 0 8px 18px rgba(4, 22, 50, 0.10);
}

.candidate-card strong {
  color: var(--navy);
  font-size: 16px;
}

.candidate-card small {
  color: var(--muted);
  line-height: 1.4;
}

.candidate-meta span {
  min-height: 26px;
  border-radius: 999px;
  padding: 4px 8px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.preview-frame {
  overflow: hidden;
}

.preview-site {
  background: #ffffff;
}

.preview-disclaimer {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--blue-soft);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.trade-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
}

.trade-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 300px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--logo-radius);
  display: block;
  flex: 0 0 auto;
  box-shadow: 0 8px 18px rgba(4, 22, 50, 0.14);
}

.trade-brand strong {
  display: block;
  color: var(--navy);
}

.trade-brand span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.trade-brand em {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  margin-top: 4px;
}

.trade-links {
  display: flex;
  flex: 1 1 auto;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-phone {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--button-disabled-bg);
  color: var(--button-disabled-text);
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-socials span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.nav-socials svg {
  width: 18px;
  height: 18px;
  display: block;
}

.trade-links a,
.trade-links button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 7px 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.trade-links a:hover,
.trade-links a.active,
.trade-links button:hover,
.trade-links button.active {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--navy);
}

.trade-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 520px;
}

.trade-hero-copy {
  padding: 52px 40px;
  align-self: center;
}

.trade-hero h2 {
  font-size: 44px;
  line-height: 1.08;
}

.trade-hero p {
  max-width: 680px;
}

.preview-actions {
  margin-top: 24px;
}

.trade-image {
  position: relative;
  min-height: 420px;
  background: var(--navy);
}

.trade-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.04);
}

.image-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-weight: 800;
}

.services-section,
.coverage-band,
.trust-section,
.content-list-section,
.qr-section,
.concept-note {
  padding: 36px 40px;
  border-top: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  border-radius: 22px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.coverage-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: center;
  background: var(--surface-soft);
}

.coverage-map {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(4, 22, 50, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(4, 22, 50, 0.08) 1px, transparent 1px),
    #ffffff;
  background-size: 32px 32px;
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  padding: 18px;
  overflow: hidden;
}

.coverage-map img {
  width: min(100%, 260px);
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 24px rgba(4, 22, 50, 0.12);
}

.coverage-map span {
  display: block;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  border-radius: 30px;
  background: #f8fafc;
  padding: 22px;
}

.trust-feature-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  background: #dbeaf4;
}

.trust-feature-image img,
.trust-feature-image video {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.trust-feature-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.trust-feature-cards {
  display: grid;
  gap: 14px;
  align-content: stretch;
}

.trust-item {
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.trust-item span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.review-placeholder-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(213, 222, 233, 0.9);
  border-radius: 14px;
  background: #fbfcfe;
}

.review-placeholder-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.review-placeholder-inline {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px;
}

.review-placeholder-inline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(213, 222, 233, 0.9);
  border-radius: 999px;
  background: #ffffff;
  padding: 9px 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.review-placeholder-inline em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.review-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.review-placeholder-grid article {
  display: grid;
  gap: 8px;
  min-height: 118px;
  align-content: start;
  border: 1px solid rgba(245, 124, 0, 0.25);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.review-placeholder-grid strong {
  color: var(--navy);
}

.review-placeholder-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.review-placeholder-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.content-list-section {
  background: #ffffff;
}

.service-catalogue-section {
  padding: 46px 54px 62px;
  border-top: 1px solid rgba(213, 222, 233, 0.74);
  background:
    linear-gradient(90deg, rgba(4, 22, 50, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(4, 22, 50, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 56%, #eef5fb 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.service-catalogue-head {
  max-width: 880px;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.service-catalogue-head h1 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.service-catalogue-head > p:not(.kicker) {
  max-width: 740px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-catalogue-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.service-catalogue-status span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(213, 222, 233, 0.9);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-catalogue-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.76fr) minmax(0, 1.8fr);
  gap: 24px;
  align-items: start;
}

.service-catalogue-main {
  display: grid;
  gap: 28px;
}

.service-catalogue-group {
  display: grid;
  gap: 16px;
  scroll-margin-top: 98px;
}

.service-group-head {
  display: grid;
  gap: 8px;
  max-width: 700px;
}

.service-group-head h2 {
  color: var(--navy);
  font-size: 30px;
  line-height: 1.08;
}

.service-group-head p:not(.kicker) {
  color: var(--muted);
  line-height: 1.58;
}

.service-catalogue-panel,
.service-catalogue-card {
  border: 1px solid rgba(213, 222, 233, 0.84);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(4, 22, 50, 0.08);
}

.service-catalogue-panel {
  display: grid;
  gap: 12px;
  background: var(--navy);
  color: #ffffff;
  padding: 24px;
}

.service-catalogue-panel h2 {
  color: #ffffff;
  font-size: 26px;
  line-height: 1.08;
}

.service-catalogue-panel p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.service-catalogue-panel .kicker {
  color: var(--orange);
}

.service-catalogue-chips {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.service-catalogue-chips span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
}

.service-group-jump {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.service-group-jump button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.service-group-jump button:hover {
  transform: translateX(2px);
  border-color: rgba(245, 124, 0, 0.66);
  background: rgba(245, 124, 0, 0.16);
}

.service-group-jump span,
.service-group-jump strong {
  font-size: 12px;
  line-height: 1.25;
}

.service-group-jump span {
  font-weight: 900;
  text-transform: uppercase;
}

.service-group-jump strong {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  white-space: nowrap;
}

.service-selector-shell {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.58fr);
  align-items: stretch;
}

.service-selector-shell .service-catalogue-panel {
  position: sticky;
  top: 18px;
  align-self: stretch;
  align-content: start;
}

.service-selector-shell .service-catalogue-main {
  align-self: stretch;
}

.service-selector-shell .service-catalogue-chips {
  display: none;
}

.service-selector-shell .service-catalogue-panel > p:not(.kicker) {
  max-width: 31ch;
  font-size: 16px;
  line-height: 1.48;
}

.service-selector-deck {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.service-selector-deck button {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num meta";
  column-gap: 10px;
  row-gap: 2px;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  color: #ffffff;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.service-selector-deck button:hover,
.service-selector-deck button.is-active {
  transform: translateX(2px);
  border-color: rgba(245, 124, 0, 0.74);
  background: rgba(245, 124, 0, 0.16);
}

.service-selector-deck button span {
  grid-area: num;
  color: rgba(255, 255, 255, 0.48);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 950;
}

.service-selector-deck button strong {
  grid-area: title;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.18;
}

.service-selector-deck button small {
  grid-area: meta;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-panel {
  min-height: 520px;
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(213, 222, 233, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 124, 0, 0.2), transparent 32%),
    linear-gradient(135deg, #041632 0%, #0c2447 56%, #102f58 100%);
  color: #ffffff;
  padding: 34px;
  box-shadow: 0 24px 64px rgba(4, 22, 50, 0.24);
}

.service-selector-shell .service-detail-panel {
  min-height: 568px;
  height: 100%;
  gap: 22px;
  padding: 38px;
}

.service-detail-panel[hidden] {
  display: none;
}

.service-detail-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.service-detail-kicker span,
.service-detail-kicker strong {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-kicker span {
  color: var(--orange);
}

.service-detail-kicker strong {
  color: rgba(255, 255, 255, 0.62);
}

.service-detail-panel h2 {
  max-width: 650px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.98;
}

.service-detail-panel > p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.62;
}

.service-detail-panel .service-detail-cue {
  max-width: 760px;
  border-left: 4px solid var(--orange);
  background: rgba(245, 124, 0, 0.12);
  color: #ffffff;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.service-detail-jobs {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.service-detail-jobs h3 {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-jobs ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-jobs li {
  position: relative;
  padding-left: 18px;
  color: #ffffff;
  font-weight: 760;
  line-height: 1.42;
}

.service-detail-jobs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.service-detail-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-detail-footer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 850;
}

.service-detail-footer a {
  width: fit-content;
  border-radius: 6px;
  background: var(--orange);
  color: #ffffff;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

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

.service-catalogue-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.94);
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-catalogue-card[id] {
  scroll-margin-top: 98px;
}

.service-catalogue-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 124, 0, 0.32);
  box-shadow: 0 24px 54px rgba(4, 22, 50, 0.12);
}

.service-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card-topline span {
  max-width: min(72%, 220px);
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: #fff3e3;
  color: var(--orange);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-card-topline small {
  color: #0e7490;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  text-align: right;
}

.service-catalogue-card h2,
.service-catalogue-card h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.12;
}

.service-catalogue-card p {
  color: var(--muted);
  line-height: 1.55;
}

.service-catalogue-card .service-cue {
  border-left: 3px solid var(--orange);
  background: #fff7ed;
  color: var(--navy);
  padding: 9px 11px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.service-catalogue-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
}

.service-catalogue-card li {
  position: relative;
  padding-left: 18px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
}

.service-catalogue-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.service-catalogue-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.service-catalogue-card a:hover {
  color: var(--orange);
}

.service-flow-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.service-flow-strip article {
  display: grid;
  gap: 10px;
  border-top: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.86);
  padding: 18px;
}

.service-flow-strip span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
}

.service-flow-strip h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
}

.service-flow-strip p {
  color: var(--muted);
  line-height: 1.55;
}

.service-process-section {
  margin-top: 34px;
  padding-top: 4px;
}

.service-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 28px;
}

.service-process-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 124, 0, 0.1), rgba(245, 124, 0, 0.9), rgba(245, 124, 0, 0.16));
}

.service-process-step {
  position: relative;
  display: grid;
  gap: 8px;
  padding-right: 12px;
}

.service-process-marker {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 0 6px rgba(245, 124, 0, 0.13), 0 10px 28px rgba(245, 124, 0, 0.22);
}

.service-process-step h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.08;
}

.service-process-step p {
  max-width: 330px;
  color: var(--muted);
  line-height: 1.55;
}

.service-help-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 25fr) minmax(0, 75fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: start;
  margin-top: 38px;
  margin-inline: -42px;
  padding: 58px 42px 34px 76px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--navy);
  background-size: 44px 44px, 44px 44px, auto;
  color: #ffffff;
}

.service-help-anchor {
  align-self: start;
  max-width: 300px;
}

.service-help-panel h2 {
  color: #ffffff;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.08;
}

.service-help-panel p {
  max-width: 310px;
  color: #cbd5e1;
  line-height: 1.58;
}

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

.service-help-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(213, 222, 233, 0.86);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
}

.service-help-grid h3 {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.18;
}

.service-step-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 32px);
  align-items: start;
  min-width: 0;
}

.service-step-item {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 142px;
  padding: 22px 0 18px;
  min-width: 0;
  isolation: isolate;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-step-item:hover {
  transform: translateY(-3px);
}

.service-step-number {
  position: relative;
  z-index: -1;
  margin: 0 0 -18px;
  color: var(--orange);
  font-size: clamp(46px, 5vw, 62px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  opacity: 0.14;
}

.service-step-tag {
  width: fit-content;
  color: var(--orange);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.service-step-item h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 950;
  line-height: 1.12;
}

.service-step-item p {
  margin: 0;
  max-width: 160px;
  color: #a0aec0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
}

.service-help-anchor.scroll-reveal {
  transform: translateY(16px);
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-step-item.scroll-reveal {
  transform: translateY(18px);
  transition:
    opacity 980ms ease,
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.service-step-item.scroll-reveal .service-step-number {
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transition:
    opacity 1200ms ease,
    transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

.service-step-item.scroll-reveal.is-visible .service-step-number {
  opacity: 0.14;
  transform: translateY(0) scale(1);
}

.service-step-item.scroll-reveal.is-visible:hover {
  transform: translateY(-3px);
}

.content-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.content-list-grid article {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 16px;
}

.qr-section {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  background: var(--navy);
  color: #ffffff;
}

.qr-section img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  background: #ffffff;
}

.qr-section h2,
.qr-section p {
  color: #ffffff;
}

.concept-note {
  background: var(--warning-soft);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.admin-grid article,
.admin-facts {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.admin-facts {
  display: grid;
  gap: 14px;
}

.admin-facts dl {
  margin: 0;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 10px 16px;
}

.admin-facts dt {
  color: var(--muted);
  font-weight: 800;
}

.admin-facts dd {
  margin: 0;
  color: var(--ink);
}

.reserve-list {
  display: grid;
  gap: 10px;
}

.reserve-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-soft);
}

.private-enrichment {
  display: grid;
  gap: 12px;
}

.private-enrichment h4 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.94rem;
}

.enrichment-item a {
  color: var(--accent);
  overflow-wrap: anywhere;
}

.enrichment-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .factory-intro,
  .trade-hero,
  .coverage-band,
  .qr-section,
  .trust-feature {
    grid-template-columns: 1fr;
  }

  .candidate-list,
  .service-grid,
  .trust-grid,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trade-image,
  .trade-image img {
    min-height: 320px;
  }

  .trust-feature-image,
  .trust-feature-image img,
  .trust-feature-image video {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .factory-bar,
  .trade-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .factory-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 16px;
  }

  .factory-copy,
  .trade-hero-copy,
  .services-section,
  .coverage-band,
  .trust-section,
  .qr-section,
  .concept-note,
  .selector-panel,
  .admin-panel {
    padding: 18px;
  }

  h1,
  .trade-hero h2 {
    font-size: 30px;
  }

  h2 {
    font-size: 22px;
  }

  .candidate-list,
  .service-grid,
  .trust-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .trade-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-contact {
    width: 100%;
    flex-wrap: wrap;
  }

  .admin-facts dl {
    grid-template-columns: 1fr;
  }
}

.app-root.preview-mode {
  min-height: 100vh;
  background: var(--page);
  padding: 24px 0 56px;
}

.prospect-site {
  min-height: 100vh;
  background: #ffffff;
}

.preview-mode .prospect-site {
  width: min(1280px, calc(100% - 48px));
  min-height: calc(100vh - 80px);
  margin: 0 auto;
}

.admin-preview-shell .prospect-site {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trade-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: var(--hero-size);
  font-weight: var(--heading-weight);
  line-height: 1.06;
}

.template-bold .trade-hero h1 {
  color: #ffffff;
}

.template-bold .trade-hero {
  background: var(--navy);
  color: #ffffff;
}

.template-bold .trade-hero p,
.template-bold .trade-hero .kicker {
  color: #f8fafc;
}

.template-bold .visual-caption {
  background: rgba(4, 22, 50, 0.92);
  color: #ffffff;
}

.template-minimal .trade-hero {
  min-height: 430px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
}

.template-minimal .visual-stack img {
  filter: saturate(0.78) contrast(1.02);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.visual-stack {
  position: relative;
  min-height: 420px;
  background: var(--navy);
}

.visual-stack img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.visual-stack video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.trade-hero--service {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  min-height: 390px;
}

.trade-hero--service .trade-hero-copy {
  padding: 50px 46px;
}

.trade-hero--service h1 {
  max-width: 680px;
  font-size: clamp(36px, 4vw, 44px);
}

.trade-hero--service .visual-stack {
  min-height: 340px;
  margin: 26px 30px 26px 0;
  border-radius: 20px;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.05),
    0 24px 58px rgba(4, 22, 50, 0.13);
}

.trade-hero--service .visual-stack img {
  min-height: 340px;
  filter: saturate(0.86) contrast(1.05);
}

.trade-hero--utility {
  display: block;
  min-height: auto;
}

.trade-hero--utility .trade-hero-copy {
  max-width: 980px;
  padding: 48px 46px 44px;
}

.trade-hero--utility .trade-hero-copy::before {
  width: 92px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--orange), rgba(245, 124, 0, 0));
}

.trade-hero--utility .kicker {
  color: rgba(4, 22, 50, 0.54);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.trade-hero--utility h1 {
  max-width: 840px;
  font-size: clamp(34px, 5vw, 50px);
}

.trade-hero--utility p {
  max-width: 760px;
  font-size: 18px;
}

.visual-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(4, 22, 50, 0.12);
}

.visual-caption strong,
.visual-caption span {
  overflow-wrap: anywhere;
}

.visual-caption span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.template-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px 40px;
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
}

.template-band article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.template-band span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--orange);
  color: #ffffff;
  font-weight: 900;
}

.template-band p,
.contact-preview-section p,
.concept-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-preview-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
  align-items: center;
  padding: 36px 40px;
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: #ffffff;
}

.contact-preview-section h2,
.contact-preview-section p,
.contact-preview-section .kicker {
  color: #ffffff;
}

.disabled-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.disabled-form label {
  display: grid;
  gap: 6px;
  color: #ffffff;
  font-weight: 800;
}

.disabled-form input,
.disabled-form textarea,
.disabled-form button {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--button-radius);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font: inherit;
  padding: 10px;
}

.disabled-form textarea {
  min-height: 92px;
  resize: vertical;
}

.disabled-form input::placeholder,
.disabled-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.disabled-form button {
  min-height: 44px;
  background: var(--button-disabled-bg);
  color: var(--button-disabled-text);
  cursor: not-allowed;
  font-weight: 900;
}

.qr-ready-section {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 36px 40px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.qr-ready-section code {
  border-radius: 6px;
  background: #ffffff;
  color: var(--navy);
  padding: 2px 5px;
  font-size: 14px;
}

.qr-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  text-align: center;
  font-weight: 800;
}

.qr-card img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
}

.concept-footer {
  display: grid;
  gap: 6px;
  padding: 20px 40px;
  border-top: 1px solid var(--line);
  background: var(--warning-soft);
}

.concept-footer strong {
  color: var(--navy);
}

.image-gallery-section {
  padding: 32px 40px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.image-gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  overflow: hidden;
}

.image-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.image-gallery figcaption {
  padding: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

/* Public concept preview visual refresh. */
.preview-mode .prospect-site {
  border: 0;
  box-shadow: 0 36px 110px rgba(4, 22, 50, 0.18);
  overflow: hidden;
}

.preview-disclaimer {
  gap: 12px;
  padding: 8px 18px;
  border-bottom: 0;
  background: #071a33;
  color: #ffffff;
  font-size: 12px;
}

.preview-disclaimer strong {
  color: #ffffff;
}

.trade-header {
  position: relative;
  z-index: 2;
  background: transparent;
  box-shadow: none;
  padding: 16px 34px 18px;
}

.trade-utility {
  display: none;
}

.trade-utility > span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trade-nav {
  display: grid;
  grid-template-areas: "brand links contact";
  grid-template-columns: minmax(170px, 0.52fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(213, 222, 233, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow:
    0 22px 54px rgba(4, 22, 50, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  padding: 12px 14px 12px 16px;
}

.trade-brand {
  grid-area: brand;
  flex: 0 1 auto;
  gap: 10px;
}

.trade-brand strong {
  font-size: 16px;
  line-height: 1.2;
}

.trade-brand span,
.trade-brand em {
  display: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(213, 222, 233, 0.86);
  box-shadow: 0 10px 22px rgba(4, 22, 50, 0.12);
}

.trade-links {
  grid-area: links;
  gap: 6px;
  align-items: center;
  font-size: 11px;
  flex-wrap: nowrap;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-trade-links {
  display: none;
}

.nav-contact {
  grid-area: contact;
  margin-left: auto;
  gap: 10px;
  justify-content: flex-end;
}

.trade-links a,
.trade-links button {
  position: relative;
  min-height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #526174;
  padding: 8px 9px;
}

.trade-nav .trade-links a::before,
.trade-nav .trade-links button::before {
  content: none;
}

.trade-nav .trade-links a::after,
.trade-nav .trade-links button::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
  opacity: 0;
}

.trade-links a:hover,
.trade-links a.active,
.trade-links button:hover,
.trade-links button.active {
  border-color: transparent;
  background: transparent;
  color: var(--orange);
  box-shadow: none;
  transform: none;
}

.trade-nav .trade-links a:hover::after,
.trade-nav .trade-links a.active::after,
.trade-nav .trade-links button:hover::after,
.trade-nav .trade-links button.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.trade-links a.nav-contact-link {
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(245, 124, 0, 0.22);
}

.trade-links a.nav-contact-link:hover,
.trade-links a.nav-contact-link.active {
  border-color: #d96500;
  background: #d96500;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(245, 124, 0, 0.28);
}

.trade-nav .nav-phone {
  min-height: 40px;
  border: 1px solid rgba(245, 124, 0, 0.22);
  border-radius: 999px;
  background: rgba(245, 124, 0, 0.08);
  color: var(--navy);
  padding: 8px 12px;
  font-size: 13px;
  box-shadow: none;
}

.trade-nav .nav-phone::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 8px;
  background: var(--orange);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.3-.3.74-.4 1.13-.27 1.24.41 2.57.63 3.96.63.61 0 1.1.49 1.1 1.1v3.49c0 .61-.49 1.1-1.1 1.1C10.82 21.23 2.77 13.18 2.77 3.5c0-.61.49-1.1 1.1-1.1h3.5c.61 0 1.1.49 1.1 1.1 0 1.39.22 2.72.63 3.96.12.39.03.82-.28 1.13l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-callback {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  padding: 9px 20px;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(245, 124, 0, 0.24);
}

.nav-callback:hover {
  background: #d96500;
  color: #ffffff;
}

@media (max-width: 1180px) {
  .trade-nav {
    grid-template-areas:
      "brand contact"
      "mobile mobile";
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-radius: 28px;
  }

  .trade-utility {
    display: none;
  }

  .trade-brand {
    flex: 0 1 auto;
  }

  .trade-links {
    display: none;
  }

  .mobile-trade-links {
    grid-area: mobile;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav-contact {
    margin-left: 0;
  }
}

.trade-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  min-height: 560px;
  overflow: hidden;
  border-top: 1px solid rgba(213, 222, 233, 0.76);
  background:
    radial-gradient(circle at 30% 46%, rgba(255, 255, 255, 0.98) 0 32%, rgba(255, 255, 255, 0.86) 54%, rgba(255, 255, 255, 0.58) 100%),
    linear-gradient(rgba(4, 22, 50, 0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 22, 50, 0.036) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f7fafc 58%, #eef7ff 100%);
  background-size: 100% 100%, 34px 34px, 34px 34px, 100% 100%;
}

.template-bold .trade-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 66%, #5f3712 100%);
}

.template-minimal .trade-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 72%, var(--blue-soft) 100%);
}

.trade-hero-copy {
  position: relative;
  z-index: 1;
  padding: 70px 46px;
}

.trade-hero-copy::before {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--orange);
}

.trade-hero h1 {
  max-width: 780px;
  color: var(--navy);
  font-size: var(--hero-size);
  line-height: 1.06;
  opacity: 0;
  transform: translateY(14px);
  animation: heroElementFade 680ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms forwards;
}

.trade-hero h1 .hero-accent {
  color: var(--accent);
}

.template-bold .trade-hero h1 {
  color: #ffffff;
}

.template-bold .trade-hero h1 .hero-accent {
  color: #9edcff;
}

.trade-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.trade-hero .kicker {
  color: var(--orange);
}

.trade-hero-copy > .kicker,
.trade-hero-copy > p,
.hero-trust-rating,
.hero-proof-row,
.preview-actions {
  opacity: 0;
  transform: translateY(14px);
  animation: heroElementFade 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.trade-hero-copy > .kicker {
  animation-delay: 80ms;
}

.trade-hero-copy > p {
  animation-delay: 520ms;
}

.hero-trust-rating {
  animation-delay: 740ms;
}

.hero-proof-row {
  animation-delay: 920ms;
}

.preview-actions {
  animation-delay: 1100ms;
}

.hero-proof-row {
  gap: 10px;
  margin-top: 24px;
}

.hero-proof-row span {
  min-height: 34px;
  border-color: rgba(148, 163, 184, 0.34);
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(4, 22, 50, 0.07);
  backdrop-filter: blur(10px);
}

.hero-trust-rating {
  width: fit-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 12px;
  align-items: center;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(213, 222, 233, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--navy);
  box-shadow: 0 18px 42px rgba(4, 22, 50, 0.1);
  backdrop-filter: blur(12px);
}

.hero-status-ring {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  grid-row: span 2;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(245, 124, 0, 0.5);
  background: rgba(255, 247, 237, 0.58);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.72);
}

.hero-status-ring::before,
.hero-status-ring::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-status-ring::before {
  inset: 11px;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(245, 124, 0, 0.76);
}

.hero-status-ring::after {
  inset: 5px;
  border: 1px solid rgba(245, 124, 0, 0.42);
  animation: heroStatusPulse 2000ms ease-in-out infinite;
}

.hero-trust-rating strong {
  display: inline-block;
  margin-right: 8px;
  font-size: 19px;
  font-weight: 900;
}

.hero-trust-rating span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-trust-rating small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.preview-actions {
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 44px;
  font-weight: 800;
}

.trade-hero .button.disabled {
  border-color: rgba(148, 163, 184, 0.42);
  background: rgba(226, 232, 240, 0.76);
  color: rgba(4, 22, 50, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.trade-hero .preview-actions > .button:not(.disabled):not(.ghost) {
  border-color: var(--button-primary-bg);
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
}

.hero-call-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 999px;
  background: rgba(245, 247, 251, 0.9);
  padding: 9px 15px;
  color: rgba(4, 22, 50, 0.6);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: default;
}

.hero-call-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.trade-hero .button.ghost {
  gap: 10px;
  border-color: rgba(4, 22, 50, 0.48);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 42%, #eef7ff 58%, #fff4e6 100%);
  background-size: 230% 100%;
  box-shadow: 0 12px 28px rgba(4, 22, 50, 0.08);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background-position 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease;
}

.trade-hero .button.ghost::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.trade-hero .button.ghost:hover {
  border-color: rgba(245, 124, 0, 0.72);
  background-position: 100% 0;
  box-shadow: 0 18px 38px rgba(4, 22, 50, 0.14);
}

.trade-hero .button.ghost:hover::after {
  transform: translateX(4px) rotate(45deg);
}

.visual-stack {
  z-index: 1;
  margin: 30px 30px 30px 0;
  min-height: 500px;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.06),
    0 34px 84px rgba(4, 22, 50, 0.16);
  overflow: hidden;
}

.visual-stack::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 48%;
  background: linear-gradient(180deg, rgba(4, 22, 50, 0) 0%, rgba(4, 22, 50, 0.78) 100%);
  pointer-events: none;
}

.hero-video-endcard {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: end start;
  padding: 34px;
  background:
    linear-gradient(100deg, rgba(4, 22, 50, 0.96) 0%, rgba(4, 22, 50, 0.74) 48%, rgba(10, 58, 109, 0.38) 100%),
    radial-gradient(circle at 82% 16%, rgba(29, 155, 240, 0.34), transparent 34%);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 680ms ease, transform 680ms ease;
}

.hero-video-endcard::before,
.hero-video-endcard::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-video-endcard::before {
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  opacity: 0;
  transform: scale(0.985);
}

.hero-video-endcard::after {
  top: -24%;
  bottom: -24%;
  left: 54%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  filter: blur(6px);
  transform: translateX(-140%) skewX(-14deg);
}

.visual-stack.is-endcard .hero-video-endcard {
  opacity: 1;
  transform: scale(1);
}

.visual-stack.is-endcard .hero-video-endcard::before {
  animation: endcardFrameIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.visual-stack.is-endcard .hero-video-endcard::after {
  animation: endcardLightSweep 2600ms ease-in-out 380ms forwards;
}

.endcard-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  display: grid;
  gap: 18px;
  border-left: 4px solid #63c7ff;
  border-radius: 0 18px 18px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  padding: 28px 30px;
}

.endcard-kicker,
.endcard-message span,
.endcard-points span,
.endcard-brand {
  opacity: 0;
  transform: translateY(16px);
}

.visual-stack.is-endcard .endcard-kicker,
.visual-stack.is-endcard .endcard-message span,
.visual-stack.is-endcard .endcard-points span,
.visual-stack.is-endcard .endcard-brand {
  animation: videoCaptionFade 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.visual-stack.is-endcard .endcard-kicker {
  animation-delay: 260ms;
}

.visual-stack.is-endcard .endcard-message span:nth-child(1) {
  animation-delay: 620ms;
}

.visual-stack.is-endcard .endcard-message span:nth-child(2) {
  animation-delay: 940ms;
}

.visual-stack.is-endcard .endcard-points span:nth-child(1) {
  animation-delay: 1320ms;
}

.visual-stack.is-endcard .endcard-points span:nth-child(2) {
  animation-delay: 1520ms;
}

.visual-stack.is-endcard .endcard-points span:nth-child(3) {
  animation-delay: 1720ms;
}

.visual-stack.is-endcard .endcard-brand {
  animation-delay: 2280ms;
}

.endcard-kicker {
  color: #9edcff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.endcard-message {
  display: grid;
  gap: 2px;
}

.endcard-message span {
  display: block;
  color: #ffffff;
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 950;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.endcard-message span:nth-child(2) {
  color: #d6efff;
}

.endcard-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.endcard-points span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(158, 220, 255, 0.32);
  border-radius: 999px;
  background: rgba(158, 220, 255, 0.1);
  color: #e8f7ff;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.endcard-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.endcard-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #ffffff, #b9e6ff);
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.endcard-brand strong {
  color: #ffffff;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1;
}

.visual-stack img {
  min-height: 500px;
  border-radius: inherit;
  filter: saturate(1.02) contrast(1.04);
}

.visual-stack video {
  min-height: 500px;
  border-radius: inherit;
  filter: saturate(1.02) contrast(1.04);
}

/* Flagship hero: media frame matches the 16:9 source so nothing is cropped (desktop + mobile). */
.trade-hero--flagship .visual-stack {
  min-height: 0;
  aspect-ratio: 16 / 9;
  align-self: center;
}

.trade-hero--flagship .visual-stack img,
.trade-hero--flagship .visual-stack video {
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 981px) {
  .trade-hero--flagship {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    align-items: center;
  }
}

.trade-hero.trade-hero--service {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  min-height: 390px;
}

.trade-hero.trade-hero--service .trade-hero-copy {
  padding: 50px 46px;
}

.trade-hero.trade-hero--service h1 {
  max-width: 680px;
  font-size: clamp(36px, 4vw, 44px);
}

.trade-hero.trade-hero--service .visual-stack {
  min-height: 340px;
  margin: 26px 30px 26px 0;
  border-radius: 20px;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.05),
    0 24px 58px rgba(4, 22, 50, 0.13);
}

.trade-hero--service .visual-stack img {
  min-height: 340px;
  filter: saturate(0.86) contrast(1.05);
}

.trade-hero.trade-hero--utility {
  display: block;
  min-height: auto;
}

.trade-hero.trade-hero--utility .trade-hero-copy {
  max-width: 980px;
  padding: 48px 46px 44px;
}

.trade-hero.trade-hero--utility .trade-hero-copy::before {
  width: 92px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--orange), rgba(245, 124, 0, 0));
}

.trade-hero.trade-hero--utility .kicker {
  color: rgba(4, 22, 50, 0.54);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.trade-hero.trade-hero--utility h1 {
  max-width: 840px;
  font-size: clamp(34px, 5vw, 50px);
}

.trade-hero.trade-hero--utility p {
  max-width: 760px;
  font-size: 18px;
}

.visual-caption {
  z-index: 2;
  left: 22px;
  right: auto;
  bottom: 22px;
  width: fit-content;
  max-width: calc(100% - 44px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(4, 22, 50, 0.62);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(4, 22, 50, 0.2);
  backdrop-filter: blur(12px);
}

.visual-caption strong {
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.04em;
}

.visual-caption .feed-dot {
  display: block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(245, 124, 0, 0.78);
}

.services-section,
.coverage-band,
.trust-section,
.pricing-trust-section,
.content-list-section,
.image-gallery-section {
  padding: 70px 54px;
}

.section-head {
  gap: 8px;
  max-width: 860px;
  margin-bottom: 26px;
}

.section-head h2 {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  font-size: 36px;
  line-height: 1.08;
}

.section-head.is-spotlight-active h2 {
  color: var(--navy);
  -webkit-text-fill-color: currentColor;
}

.section-head h2::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -0.16em;
  bottom: -0.16em;
  left: -28%;
  width: 58%;
  border-radius: 20px;
  background: linear-gradient(100deg, transparent 0%, rgba(29, 155, 240, 0.12) 22%, rgba(245, 124, 0, 0.26) 48%, rgba(255, 255, 255, 0.38) 62%, rgba(29, 155, 240, 0.1) 78%, transparent 100%);
  box-shadow: 0 0 42px rgba(245, 124, 0, 0.22), 0 0 64px rgba(29, 155, 240, 0.12);
  mix-blend-mode: normal;
  filter: blur(0.2px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-130%, 0, 0) skewX(-8deg);
  will-change: opacity, transform;
}

.section-head.is-spotlight-active h2::after {
  animation: sectionMaskedReveal 6200ms cubic-bezier(0.22, 1, 0.36, 1) 120ms 1 both;
}

.section-head p:not(.kicker) {
  max-width: 800px;
}

.service-grid,
.trust-grid,
.content-list-grid,
.image-gallery {
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:nth-child(2n) {
  background: transparent;
}

.service-card:nth-child(3n) {
  background: transparent;
}

.service-card:nth-child(4n) {
  background: transparent;
}

.service-card::before {
  content: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.service-card-media {
  position: relative;
  min-height: 300px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 30px;
  background: #dbeaf4;
  box-shadow: 0 18px 42px rgba(4, 22, 50, 0.08);
}

.service-card:nth-child(2n) .service-card-media {
  background: #dce9d1;
}

.service-card:nth-child(3n) .service-card-media {
  background: #f5dfae;
}

.service-card:nth-child(4n) .service-card-media {
  background: #cde8ed;
}

.service-card-media img {
  width: 100%;
  min-height: 300px;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 520ms ease, filter 520ms ease;
}

.service-card-media::after {
  content: none;
}

.service-card-meta {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.service-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 5px 9px;
  backdrop-filter: blur(10px);
}

.service-card:hover img,
.image-gallery figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.05);
}

.service-card-footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-height: 122px;
  margin: -22px 18px 0;
  padding: 28px 84px 24px 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(4, 22, 50, 0.1);
}

.service-card h3 {
  color: #071a33;
  font-size: 24px;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: rgba(7, 26, 51, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.service-card-action {
  position: absolute;
  right: 24px;
  bottom: 30px;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.service-card-action svg {
  width: 26px;
  height: 26px;
}

.service-card h3::before,
.trust-item h3::before,
.content-list-grid article h3::before {
  content: none;
}

.content-list-grid {
  position: relative;
  isolation: isolate;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  counter-reset: content-card;
}

.content-list-grid article {
  position: relative;
  z-index: 2;
  min-height: 0;
  overflow: hidden;
  counter-increment: content-card;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.content-card-thread {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 34px;
  z-index: 1;
  width: calc(100% - 36px);
  height: 112px;
  overflow: visible;
  pointer-events: none;
}

.content-card-thread path {
  fill: none;
  stroke: #0e7490;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 9 13;
  stroke-opacity: 0.28;
  animation: serviceThreadFlow 18s linear infinite;
}

.content-card-thread circle {
  fill: #0e7490;
  stroke: #ffffff;
  stroke-width: 2;
  opacity: 0.56;
}

.content-list-grid article:hover,
.template-band article:hover,
.trust-item:hover,
.review-placeholder-grid article:hover,
.qr-card:hover,
.coverage-map:hover,
.disabled-form:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 139, 159, 0.42);
  box-shadow: none;
}

.content-list-grid article::before {
  content: none;
}

.content-list-grid article::after {
  content: none;
}

.content-list-grid article h3 {
  font-size: 19px;
}

.content-card-media {
  position: relative;
  height: 320px;
  min-height: 320px;
  overflow: hidden;
  border-radius: 36px 12px 42px 12px;
  background: #dbeaf4;
  box-shadow: 0 20px 52px rgba(4, 22, 50, 0.11);
}

.content-list-grid article:nth-child(2n) .content-card-media {
  background: #dce9d1;
}

.content-list-grid article:nth-child(3n) .content-card-media {
  background: #f5dfae;
}

.content-list-grid article:nth-child(4n) .content-card-media {
  background: #cde8ed;
}

.content-card-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
  mix-blend-mode: normal;
  filter: grayscale(0.16) saturate(0.72) contrast(1.08) brightness(1.02);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1), filter 820ms ease;
}

.content-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(4, 22, 50, 0.2), rgba(14, 116, 144, 0.08) 46%, rgba(215, 240, 255, 0.16));
  mix-blend-mode: multiply;
  opacity: 0.34;
  pointer-events: none;
  transition: opacity 820ms ease;
}

.content-card-media span {
  position: absolute;
  top: 21px;
  left: 16px;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(4, 22, 50, 0.82);
  font-size: 13px;
  font-weight: 900;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 12px 28px rgba(4, 22, 50, 0.12);
  backdrop-filter: blur(10px);
  transition: background-color 640ms ease, color 520ms ease, box-shadow 640ms ease, transform 320ms ease;
}

.content-card-body {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin: -56px 20px 0;
  padding: 28px 24px 24px;
  border: 1px solid rgba(213, 222, 233, 0.76);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(4, 22, 50, 0.1);
}

.content-list-grid article:hover .content-card-media img {
  transform: scale(1.04);
  filter: grayscale(0) saturate(1.08) contrast(1.04) brightness(1);
}

.content-list-grid article:hover .content-card-media::after {
  opacity: 0;
}

.content-list-grid article:hover .content-card-media span {
  transform: scale(1.05);
  background: var(--navy);
  color: #ffffff;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.1),
    0 16px 36px rgba(4, 22, 50, 0.24);
}

.pricing-trust-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(285px, 0.78fr) minmax(0, 3fr);
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgba(213, 222, 233, 0.72);
  border-bottom: 1px solid rgba(213, 222, 233, 0.64);
  padding: 64px 42px;
  background:
    linear-gradient(rgba(4, 22, 50, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 22, 50, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 16% 50%, rgba(245, 124, 0, 0.075), transparent 32%),
    #ffffff;
  background-size: 36px 36px, 36px 36px, auto, auto;
  overflow: hidden;
}

.pricing-trust-section::before {
  content: "PRICE CLARITY";
  position: absolute;
  right: 22px;
  top: -15px;
  z-index: -1;
  color: rgba(4, 22, 50, 0.026);
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 950;
  line-height: 0.9;
  white-space: nowrap;
}

.pricing-trust-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 126px;
  padding: 14px 16px;
  border: 1px solid rgba(213, 222, 233, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 36px rgba(4, 22, 50, 0.055);
  backdrop-filter: blur(12px);
}

.pricing-trust-copy h2 {
  max-width: 300px;
  font-size: clamp(20px, 1.75vw, 25px);
  line-height: 1.06;
}

.pricing-trust-copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.38;
}

.pricing-trust-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  padding: 7px 10px;
  border: 1px solid rgba(245, 124, 0, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.72);
  box-shadow: 0 10px 24px rgba(4, 22, 50, 0.05);
}

.pricing-trust-status span {
  width: 8px;
  height: 8px;
  margin-top: 0;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(245, 124, 0, 0.1), 0 0 14px rgba(245, 124, 0, 0.34);
}

.pricing-trust-status strong {
  color: var(--navy);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.pricing-trust-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-self: center;
  padding: 22px 0 6px;
}

.pricing-trust-grid::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 124, 0, 0.78), rgba(4, 22, 50, 0.18) 78%, rgba(4, 22, 50, 0));
  box-shadow: 0 0 18px rgba(245, 124, 0, 0.12);
}

.pricing-trust-grid article {
  position: relative;
  min-height: 154px;
  display: grid;
  grid-template-rows: auto auto minmax(42px, 1fr) auto;
  gap: 9px;
  margin: 0 5px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(213, 222, 233, 0.46);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.24)),
    radial-gradient(circle at 16% 0%, rgba(245, 124, 0, 0.055), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 14px 32px rgba(4, 22, 50, 0.035);
  backdrop-filter: blur(10px);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), border-color 520ms ease, background 520ms ease, box-shadow 520ms ease;
}

.pricing-trust-grid article::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 20px;
  width: 1px;
  height: 13px;
  background: rgba(245, 124, 0, 0.72);
}

.pricing-trust-grid article::after {
  content: "✓";
  position: absolute;
  top: -19px;
  left: 13px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  background: var(--orange);
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.09), 0 8px 18px rgba(245, 124, 0, 0.2);
  transition: box-shadow 420ms ease, transform 420ms ease;
}

.pricing-trust-grid article span {
  width: fit-content;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(4, 22, 50, 0.58);
  padding: 0;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  transition: color 360ms ease;
}

.pricing-trust-grid article p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
  align-self: start;
}

.pricing-trust-grid article h3 {
  max-width: 190px;
  color: var(--navy);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.pricing-trust-grid article small {
  align-self: end;
  justify-self: start;
  width: fit-content;
  border-radius: 999px;
  background: rgba(245, 124, 0, 0.1);
  color: #b65300;
  padding: 5px 8px;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-trust-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 124, 0, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.32)),
    radial-gradient(circle at 16% 0%, rgba(245, 124, 0, 0.09), transparent 45%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 42px rgba(4, 22, 50, 0.07);
}

.pricing-trust-grid article:hover::after {
  box-shadow: 0 0 0 5px rgba(245, 124, 0, 0.13), 0 0 18px rgba(245, 124, 0, 0.42);
  transform: scale(1.08);
}

.pricing-trust-grid article:hover span {
  color: var(--navy);
}

.pricing-trust-section.is-reveal-ready .reveal-card {
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 950ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 520ms ease,
    background 520ms ease,
    box-shadow 520ms ease;
  will-change: opacity, transform;
}

.pricing-trust-section.is-reveal-ready .pricing-trust-grid article.reveal-card {
  transform: translateY(-14px);
}

.pricing-trust-section.is-reveal-ready .pricing-trust-grid::before {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 420ms ease,
    transform 1050ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 180ms;
}

.pricing-trust-section.is-visible .pricing-trust-grid::before {
  opacity: 1;
  transform: scaleX(1);
}

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

.pricing-trust-section.is-reveal-ready .pricing-trust-copy {
  transition-delay: 0ms;
}

.pricing-trust-section.is-reveal-ready .pricing-trust-grid .column-01 {
  transition-delay: 420ms;
}

.pricing-trust-section.is-reveal-ready .pricing-trust-grid .column-02 {
  transition-delay: 640ms;
}

.pricing-trust-section.is-reveal-ready .pricing-trust-grid .column-03 {
  transition-delay: 860ms;
}

.pricing-trust-section.is-reveal-ready .pricing-trust-grid .column-04 {
  transition-delay: 1080ms;
}

.pricing-trust-section.is-reveal-complete .reveal-card {
  transition-delay: 0ms;
  will-change: auto;
}

.pricing-trust-section.is-reveal-complete .pricing-trust-grid article:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .pricing-trust-section.is-reveal-ready .reveal-card,
  .pricing-trust-section.is-reveal-ready .pricing-trust-grid .column-01,
  .pricing-trust-section.is-reveal-ready .pricing-trust-grid .column-02,
  .pricing-trust-section.is-reveal-ready .pricing-trust-grid .column-03,
  .pricing-trust-section.is-reveal-ready .pricing-trust-grid .column-04 {
    transition-delay: 0ms;
    transition-duration: 560ms;
  }

  .pricing-trust-section.is-reveal-ready .pricing-trust-grid article.reveal-card {
    transform: translateY(8px);
  }

  .pricing-trust-section.is-reveal-ready .pricing-trust-grid::before {
    transform: scaleY(0);
    transform-origin: top center;
    transition-delay: 0ms;
    transition-duration: 560ms;
  }

  .pricing-trust-section.is-visible .pricing-trust-grid::before {
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-trust-section.is-reveal-ready .reveal-card,
  .pricing-trust-section.is-reveal-ready .pricing-trust-grid::before {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.customer-trust-section {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 28px;
  padding: 64px 42px;
  border-top: 1px solid rgba(213, 222, 233, 0.72);
  background:
    radial-gradient(circle at 86% 12%, rgba(245, 124, 0, 0.08), transparent 28%),
    linear-gradient(rgba(4, 22, 50, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 22, 50, 0.028) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  background-size: auto, 34px 34px, 34px 34px, auto;
  overflow: hidden;
}

.customer-trust-section::before {
  content: "TRUST";
  position: absolute;
  right: 24px;
  top: -20px;
  z-index: -1;
  color: rgba(4, 22, 50, 0.028);
  font-size: clamp(70px, 12vw, 174px);
  font-weight: 950;
  line-height: 0.8;
}

.customer-trust-head {
  max-width: 820px;
}

.customer-trust-head h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
}

.customer-trust-head p:not(.kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.customer-trust-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.45fr);
  gap: 38px;
  align-items: start;
}

.customer-trust-layout .customer-trust-head {
  position: sticky;
  top: 24px;
  max-width: none;
}

.customer-trust-ledger {
  display: grid;
  gap: 10px;
}

.proof-ledger-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) minmax(170px, 0.42fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(213, 222, 233, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 0% 0%, rgba(245, 124, 0, 0.06), transparent 36%);
  padding: 16px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.proof-ledger-row:hover {
  transform: translateX(3px);
  border-color: rgba(245, 124, 0, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 0% 0%, rgba(245, 124, 0, 0.1), transparent 38%);
}

.proof-check {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  box-shadow: 0 0 0 6px rgba(245, 124, 0, 0.13);
}

.proof-ledger-row.is-approved .proof-check {
  background: #166534;
  box-shadow: 0 0 0 6px rgba(22, 101, 52, 0.13);
}

.proof-copy {
  display: grid;
  gap: 6px;
}

.proof-copy h3 {
  color: var(--navy);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
  line-height: 1.04;
}

.proof-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.proof-ledger-row .trust-slot-meta {
  padding-right: 0;
}

.proof-ledger-row .trust-slot-value {
  align-self: center;
  padding-top: 0;
  border-top: 0;
  justify-items: end;
  text-align: right;
}

.customer-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.customer-trust-grid article {
  position: relative;
  min-height: 252px;
  display: grid;
  grid-template-rows: auto auto minmax(70px, 1fr) auto;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(213, 222, 233, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.44)),
    radial-gradient(circle at 18% 0%, rgba(245, 124, 0, 0.06), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 44px rgba(4, 22, 50, 0.055);
  backdrop-filter: blur(12px);
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 520ms ease,
    box-shadow 520ms ease,
    background 520ms ease;
}

.customer-trust-grid article::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(245, 124, 0, 0.11), 0 0 18px rgba(245, 124, 0, 0.3);
  opacity: 0.88;
}

.customer-trust-grid article.is-approved::before {
  background: #16a34a;
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.12), 0 0 18px rgba(22, 163, 74, 0.28);
}

.customer-trust-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 124, 0, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 24px 56px rgba(4, 22, 50, 0.095);
}

.trust-slot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 24px;
}

.trust-slot-meta span,
.trust-slot-meta strong,
.trust-slot-value small {
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-slot-meta span {
  color: rgba(4, 22, 50, 0.58);
}

.trust-slot-meta strong {
  color: #b65300;
}

.customer-trust-grid article.is-approved .trust-slot-meta strong {
  color: #166534;
}

.customer-trust-grid h3 {
  max-width: 310px;
  color: var(--navy);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
  line-height: 1.04;
}

.customer-trust-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.trust-slot-value {
  display: grid;
  gap: 6px;
  align-self: end;
  padding-top: 14px;
  border-top: 1px solid rgba(213, 222, 233, 0.7);
}

.trust-slot-value small {
  color: rgba(4, 22, 50, 0.42);
}

.trust-slot-value b {
  width: fit-content;
  border-radius: 999px;
  background: rgba(245, 124, 0, 0.1);
  color: var(--navy);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 950;
}

.customer-trust-grid article.is-approved .trust-slot-value b {
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
}

.proof-ledger-row .trust-slot-value b {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(241, 245, 249, 0.92);
  color: #344256;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.proof-ledger-row.is-approved .trust-slot-value b {
  border-color: rgba(22, 101, 52, 0.2);
  background: rgba(220, 252, 231, 0.72);
  color: #166534;
}

.prospect-site[data-page="about"] .about-status-section,
.prospect-site[data-page="about"] .customer-trust-section {
  margin-bottom: 6rem;
}

.about-preview-phase {
  position: relative;
  isolation: isolate;
}

.about-status-section {
  padding: 64px 54px 0;
  background:
    linear-gradient(rgba(4, 22, 50, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 22, 50, 0.028) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 58%, #eef7ff 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.about-status-copy {
  max-width: 900px;
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.about-status-copy h1 {
  max-width: 820px;
  color: var(--navy);
  font-size: 64px;
  font-weight: 950;
  line-height: 0.98;
}

.about-status-copy p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.about-status-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.about-status-rail span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #475569;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.about-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-breakdown-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: minmax(190px, 0.84fr) auto;
  overflow: hidden;
  border: 1px solid rgba(213, 222, 233, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 22px 58px rgba(4, 22, 50, 0.08);
}

.about-card-visual {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 18px;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 124, 0, 0.16), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #eaf2fa 100%);
}

.about-card-visual--confirm {
  background:
    radial-gradient(circle at 70% 20%, rgba(14, 116, 144, 0.16), transparent 32%),
    linear-gradient(135deg, #f8fafc 0%, #eaf7f8 100%);
}

.about-card-visual--blocked {
  background:
    radial-gradient(circle at 80% 16%, rgba(4, 22, 50, 0.12), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-interface-window {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 10px;
}

.about-interface-window span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(71, 85, 105, 0.34);
}

.about-interface-body {
  min-height: 148px;
  position: relative;
  display: grid;
  align-items: end;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(rgba(4, 22, 50, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 22, 50, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.68);
  background-size: 22px 22px;
  padding: 16px;
}

.about-interface-rows {
  display: grid;
  gap: 8px;
}

.about-interface-rows span {
  width: calc(58% + (var(--row) * 9%));
  min-height: 18px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(4, 22, 50, 0.56);
  padding: 0 9px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-shield-mark {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 62px;
  height: 72px;
  clip-path: polygon(50% 0, 92% 16%, 84% 72%, 50% 100%, 16% 72%, 8% 16%);
  background: var(--orange);
  box-shadow: 0 18px 34px rgba(245, 124, 0, 0.24);
}

.about-shield-mark span {
  position: absolute;
  inset: 14px 17px 20px;
  border-right: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  transform: rotate(42deg);
}

.about-certificate-mark {
  position: absolute;
  right: 16px;
  top: 18px;
  width: 74px;
  height: 92px;
  border: 2px solid rgba(4, 22, 50, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.about-certificate-mark span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 4px;
  border-radius: 999px;
  background: rgba(4, 22, 50, 0.24);
}

.about-certificate-mark span:nth-child(1) {
  top: 20px;
}

.about-certificate-mark span:nth-child(2) {
  top: 36px;
  right: 24px;
}

.about-certificate-mark span:nth-child(3) {
  left: 22px;
  right: 22px;
  bottom: 17px;
  height: 18px;
  border-radius: 999px;
  background: rgba(245, 124, 0, 0.22);
}

.about-breakdown-copy {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.about-breakdown-copy span,
.about-rule-node strong,
.about-media-status span {
  color: #b65300;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-breakdown-copy h2 {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.02;
}

.about-breakdown-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.about-verification-section {
  padding: 0 54px 74px;
}

.about-verification-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.82fr);
  gap: 34px;
  align-items: stretch;
}

.about-media-card {
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(213, 222, 233, 0.74);
  border-radius: 8px;
  background: #071a33;
  box-shadow: 0 26px 70px rgba(4, 22, 50, 0.13);
}

.about-media-card .trust-feature-image {
  min-height: 420px;
  border-radius: 0;
  background: #0f233d;
}

.about-media-card .trust-feature-image video,
.about-media-card .trust-feature-image img {
  min-height: 420px;
}

.about-media-status {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent),
    #071a33;
}

.about-media-status strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.1;
}

.about-media-status em {
  color: rgba(226, 232, 240, 0.68);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.about-rule-timeline {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  padding-left: 18px;
}

.about-rule-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 38px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(var(--orange), rgba(245, 124, 0, 0.1));
}

.about-rule-node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 0;
}

.about-rule-node > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 0 7px rgba(245, 124, 0, 0.12);
}

.about-rule-node div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid rgba(213, 222, 233, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 0% 0%, rgba(245, 124, 0, 0.08), transparent 38%);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.about-rule-node p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.coverage-band {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 32px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 52%, #eef5fb 100%);
}

.coverage-map {
  position: relative;
  min-height: 330px;
  gap: 0;
  border-color: rgba(148, 163, 184, 0.28);
  background: #eef2f6;
  box-shadow: 0 14px 34px rgba(4, 22, 50, 0.1);
  padding: 0;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.coverage-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.map-card-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(4, 22, 50, 0.13);
  backdrop-filter: blur(14px);
  padding: 15px;
}

.map-card-label small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-card-label strong {
  grid-row: span 2;
  color: var(--navy);
  font-size: 46px;
  line-height: 0.9;
}

.map-card-label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.image-gallery img {
  transition: transform 520ms ease, filter 520ms ease;
}

.coverage-map:hover {
  border-color: rgba(29, 155, 240, 0.34);
  box-shadow: 0 22px 54px rgba(4, 22, 50, 0.14);
}

.coverage-band .fact-list span {
  background: #ffffff;
}

.coverage-booking-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 34px;
  padding: 72px 54px;
  border-top: 1px solid rgba(213, 222, 233, 0.74);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(245, 124, 0, 0.1), transparent 26%),
    radial-gradient(circle at 88% 24%, rgba(29, 155, 240, 0.12), transparent 28%),
    linear-gradient(rgba(4, 22, 50, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 22, 50, 0.04) 1px, transparent 1px),
    #f8fbfe;
  background-size: auto, auto, 38px 38px, 38px 38px, auto;
}

.prospect-site[data-page="service-area"] .coverage-booking-section {
  min-height: min(760px, calc(100vh - 150px));
  align-items: center;
  padding-top: 46px;
  border-top: 0;
}

.prospect-site[data-page="service-area"] .pricing-trust-section {
  border-top: 1px solid rgba(213, 222, 233, 0.74);
}

.coverage-booking-section::after {
  content: "";
  position: absolute;
  top: 50%;
  right: min(2vw, 30px);
  z-index: -1;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.05), rgba(255, 122, 0, 0.026) 34%, transparent 68%);
  filter: blur(4px);
  transform: translateY(-50%);
  pointer-events: none;
}

.route-connector {
  position: absolute;
  top: 52%;
  left: 43%;
  z-index: 0;
  width: 16%;
  height: 1px;
  background: linear-gradient(90deg, rgba(4, 22, 50, 0), rgba(245, 124, 0, 0.46), rgba(29, 155, 240, 0.34));
  pointer-events: none;
}

.route-connector::before,
.route-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--orange);
  box-shadow: 0 0 14px rgba(245, 124, 0, 0.52);
}

.route-connector::before {
  left: 0;
}

.route-connector::after {
  right: 0;
}

.coverage-booking-section::before {
  content: "LOCAL ROUTE";
  position: absolute;
  top: -28px;
  right: 24px;
  z-index: -1;
  color: rgba(4, 22, 50, 0.02);
  font-size: clamp(72px, 11vw, 168px);
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
}

.coverage-booking-panel,
.booking-map-panel {
  position: relative;
  z-index: 1;
}

.coverage-booking-panel {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 32px;
  border: 1px solid rgba(213, 222, 233, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 70px rgba(4, 22, 50, 0.1);
  backdrop-filter: blur(16px);
}

.coverage-booking-copy {
  display: grid;
  gap: 12px;
}

.coverage-booking-copy h2 {
  max-width: 680px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
}

.coverage-booking-copy p:not(.kicker),
.postcode-note {
  color: var(--muted);
  line-height: 1.6;
}

.postcode-checker {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(4, 22, 50, 0.09);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 245, 251, 0.78)),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transition: padding 420ms ease, border-color 420ms ease, background 420ms ease, box-shadow 420ms ease;
}

.coverage-booking-section.is-checked .postcode-checker {
  padding: 14px;
  border-color: rgba(245, 124, 0, 0.24);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(4, 22, 50, 0.08);
}

.postcode-checker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.postcode-checker-head span {
  color: rgba(91, 102, 117, 0.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: right;
}

.postcode-checker label,
.booking-preview-form label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.postcode-checker-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-height: 64px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.postcode-input-shell {
  position: relative;
  min-width: 0;
}

.coverage-booking-section.is-checked .postcode-checker-row {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.postcode-checker input,
.booking-preview-form input,
.booking-preview-form select,
.booking-preview-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.46);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.postcode-checker input:focus {
  border-color: rgba(245, 124, 0, 0.74);
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.12);
}

.postcode-checker button,
.booking-preview-form button {
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: #ffffff;
  padding: 14px 20px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  transition: transform 260ms ease, background 260ms ease, filter 260ms ease;
}

.postcode-checker button:hover {
  transform: translateY(-2px);
  background: #dc6f00;
  filter: saturate(1.08);
}

.postcode-result {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0 14px;
  border: 1px solid rgba(4, 22, 50, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 520ms cubic-bezier(0.16, 1, 0.3, 1), padding 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), background 340ms ease, border-color 340ms ease, box-shadow 340ms ease;
}

.postcode-result span {
  width: 13px;
  height: 13px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(245, 124, 0, 0.12), 0 0 18px rgba(245, 124, 0, 0.46);
}

.postcode-result p,
.postcode-note {
  margin: 0;
  font-size: 14px;
}

.coverage-booking-section.is-checked .postcode-result {
  max-height: 150px;
  padding: 12px 14px;
  border-color: rgba(245, 124, 0, 0.28);
  background: rgba(255, 247, 237, 0.82);
  box-shadow: 0 14px 34px rgba(245, 124, 0, 0.12);
  opacity: 1;
  transform: translateY(0);
}

.booking-preview-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  border: 1px solid rgba(4, 22, 50, 0);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: max-height 780ms cubic-bezier(0.16, 1, 0.3, 1), padding 780ms cubic-bezier(0.16, 1, 0.3, 1), opacity 460ms ease, transform 780ms cubic-bezier(0.16, 1, 0.3, 1), border-color 460ms ease, box-shadow 460ms ease;
}

.coverage-booking-section.is-checked .booking-preview-form {
  max-height: 760px;
  padding: 18px;
  border-color: rgba(245, 124, 0, 0.24);
  box-shadow: 0 20px 52px rgba(4, 22, 50, 0.1);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.booking-preview-form > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.coverage-booking-section.is-checked .booking-preview-form > * {
  opacity: 1;
  transform: translateY(0);
}

.coverage-booking-section.is-checked .booking-preview-form > :nth-child(2) {
  transition-delay: 60ms;
}

.coverage-booking-section.is-checked .booking-preview-form > :nth-child(3) {
  transition-delay: 110ms;
}

.coverage-booking-section.is-checked .booking-preview-form > :nth-child(4) {
  transition-delay: 160ms;
}

.coverage-booking-section.is-checked .booking-preview-form > :nth-child(5) {
  transition-delay: 210ms;
}

.coverage-booking-section.is-checked .booking-preview-form > :nth-child(6) {
  transition-delay: 260ms;
}

.booking-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 2px;
  grid-column: 1 / -1;
}

.booking-form-head span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.booking-form-head strong {
  color: var(--navy);
  font-size: 20px;
}

.booking-preview-form label {
  display: grid;
  gap: 7px;
}

.booking-preview-form .booking-field-wide,
.booking-preview-form button {
  grid-column: 1 / -1;
}

.booking-preview-form textarea {
  min-height: 96px;
  resize: vertical;
}

.booking-preview-form :disabled {
  cursor: not-allowed;
}

.booking-preview-form button:disabled {
  background: linear-gradient(135deg, #5b6675, #041632);
  cursor: not-allowed;
  opacity: 0.9;
  box-shadow: none;
}

.booking-map-panel {
  display: grid;
  gap: 0;
}

.booking-map-panel::before {
  content: "";
  position: absolute;
  inset: -110px -100px -110px -90px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 48%, rgba(255, 122, 0, 0.05), rgba(255, 122, 0, 0.022) 36%, transparent 66%);
  pointer-events: none;
}

.live-map-shell {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(213, 222, 233, 0.72);
  border-radius: 30px;
  background: #dbe7ef;
  box-shadow: 0 32px 80px rgba(4, 22, 50, 0.16);
}

.live-map-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(1.04) brightness(1.02);
}

.live-map-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 22, 50, 0.1), transparent 34%, rgba(4, 22, 50, 0.28)),
    radial-gradient(circle at 50% 48%, rgba(255, 122, 0, 0.12), transparent 32%);
  pointer-events: none;
}

.map-radius-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-radius-ring,
.map-radius-core {
  position: absolute;
  left: 50%;
  top: 46%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.map-radius-ring {
  width: min(58%, 340px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 122, 0, 0.78);
  background: radial-gradient(circle, rgba(255, 122, 0, 0.14), rgba(255, 122, 0, 0.036) 55%, transparent 70%);
  box-shadow: 0 0 0 10px rgba(255, 122, 0, 0.055), 0 0 42px rgba(255, 122, 0, 0.2);
}

.map-radius-core {
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 5px solid #ff7a00;
  box-shadow: 0 0 0 7px rgba(255, 122, 0, 0.18), 0 0 24px rgba(255, 122, 0, 0.72);
}

.map-route-line {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 32%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.74), transparent);
  opacity: 0.72;
}

.map-route-line--one {
  transform: rotate(26deg);
}

.map-route-line--two {
  transform: rotate(148deg);
}

.map-route-line--three {
  transform: rotate(-78deg);
}

.map-status-card {
  position: absolute;
  left: 18px;
  right: auto;
  bottom: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  width: min(238px, calc(100% - 36px));
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(4, 22, 50, 0.16);
  backdrop-filter: blur(16px);
}

.map-status-card small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.map-status-card strong {
  grid-row: auto;
  color: var(--navy);
  font-size: 24px;
  line-height: 0.96;
}

.map-status-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.coverage-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-pill-row--mobile {
  display: none;
}

.live-map-shell .coverage-pill-row {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 3;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
}

.coverage-pill-row span {
  border: 1px solid rgba(4, 22, 50, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  padding: 8px 11px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: none;
}

.map-metadata {
  position: absolute;
  z-index: 3;
  color: rgba(4, 22, 50, 0.48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.map-metadata--top {
  top: 82px;
  right: 18px;
}

.map-metadata--bottom {
  right: 20px;
  bottom: 24px;
}

.trust-item {
  border-color: rgba(213, 222, 233, 0.82);
  border-left: 0;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(4, 22, 50, 0.06);
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust-item::before {
  content: "✓";
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #dcfce7;
  color: var(--green);
  font-weight: 900;
}

.trust-icon {
  display: none;
}

.trust-feature--flow-experiment {
  --trust-progress: 0.12;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(245, 124, 0, 0.18);
  background:
    linear-gradient(rgba(4, 22, 50, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 22, 50, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 237, 0.72));
  background-size: 34px 34px, 34px 34px, 100% 100%;
  box-shadow: 0 24px 70px rgba(4, 22, 50, 0.08);
}

.trust-feature--flow-experiment::before {
  content: "";
  position: absolute;
  inset: 22px 48% 22px 22px;
  z-index: -1;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(4, 22, 50, 0.08), rgba(245, 124, 0, 0.08));
  pointer-events: none;
}

.trust-feature--flow-experiment .trust-feature-cards {
  position: relative;
  padding-left: 36px;
}

.trust-feature--flow-experiment .trust-feature-cards::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 38px;
  bottom: 38px;
  z-index: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(4, 22, 50, 0.08), rgba(4, 22, 50, 0.28), rgba(4, 22, 50, 0.08));
}

.trust-feature--flow-experiment .trust-feature-cards::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 38px;
  z-index: 0;
  width: 2px;
  height: calc((100% - 76px) * var(--trust-progress));
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245, 124, 0, 0.2), rgba(245, 124, 0, 0.98));
  box-shadow: 0 0 14px rgba(245, 124, 0, 0.26);
  transition: height 1350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-feature--flow-experiment .trust-item {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(213, 222, 233, 0.88);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(4, 22, 50, 0.07);
  backdrop-filter: blur(12px);
  transition:
    transform 920ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 920ms ease,
    border-color 920ms ease,
    background 920ms ease;
}

.trust-feature--flow-experiment .trust-item::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 50%;
  z-index: -1;
  width: 23px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 124, 0, 0.86), rgba(245, 124, 0, 0.12));
  opacity: 0.64;
  transform: translateY(-50%);
  transition: opacity 420ms ease, background 420ms ease;
}

.trust-feature--flow-experiment .trust-item::after {
  content: "";
  position: absolute;
  left: -28px;
  top: 50%;
  width: 11px;
  height: 11px;
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  background: #f57c00;
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.14), 0 8px 20px rgba(245, 124, 0, 0.22);
  transform: translateY(-50%);
  transition: transform 920ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 920ms ease, background 920ms ease;
}

.trust-feature--flow-experiment .trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(245, 124, 0, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.98), rgba(255, 247, 237, 0.72) 42%, rgba(245, 124, 0, 0.14) 100%);
  color: var(--navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 26px rgba(245, 124, 0, 0.12);
  text-transform: none;
  transition: transform 920ms cubic-bezier(0.16, 1, 0.3, 1), color 920ms ease, background 920ms ease, border-color 920ms ease, box-shadow 920ms ease;
}

.trust-feature--flow-experiment .trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-feature--flow-experiment .trust-item > span:not(.trust-icon) {
  color: var(--orange);
  transition: color 520ms ease, opacity 520ms ease;
}

.trust-feature--flow-experiment .trust-item p {
  transition: color 520ms ease;
}

.trust-feature--flow-experiment .trust-item:hover,
.trust-feature--flow-experiment .trust-item.is-active {
  border-color: rgba(245, 124, 0, 0.48);
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.07), rgba(255, 255, 255, 0.92) 58%, rgba(4, 22, 50, 0.035));
  box-shadow: 0 28px 72px rgba(4, 22, 50, 0.14), 0 0 0 1px rgba(245, 124, 0, 0.1);
  transform: translateY(-3px);
}

.trust-feature--flow-experiment .trust-item:hover::before,
.trust-feature--flow-experiment .trust-item.is-active::before {
  opacity: 1;
  background: linear-gradient(90deg, rgba(245, 124, 0, 1), rgba(245, 124, 0, 0.2));
}

.trust-feature--flow-experiment .trust-item:hover .trust-icon,
.trust-feature--flow-experiment .trust-item.is-active .trust-icon {
  border-color: rgba(4, 22, 50, 0.2);
  background: var(--navy);
  color: #ffffff;
  transform: scale(1.04);
  box-shadow: 0 16px 34px rgba(4, 22, 50, 0.22);
}

.trust-feature--flow-experiment .trust-item:hover::after,
.trust-feature--flow-experiment .trust-item.is-active::after {
  background: var(--orange);
  transform: translateY(-50%) scale(1.18);
  box-shadow: 0 0 12px #ff7a00, 0 0 0 6px rgba(245, 124, 0, 0.18), 0 0 24px rgba(245, 124, 0, 0.42);
}

@media (max-width: 680px) {
  .trust-feature--flow-experiment .trust-feature-cards {
    padding-left: 26px;
  }

  .trust-feature--flow-experiment .trust-feature-cards::after {
    left: 13px;
  }

  .trust-feature--flow-experiment .trust-item::after {
    left: -19px;
  }

  .trust-feature--flow-experiment .trust-item::before {
    left: -13px;
    width: 13px;
  }
}

.template-band {
  gap: 18px;
  padding: 32px 46px;
  border-top: 0;
  background: #071a33;
}

.template-band article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.template-band article:hover {
  background: rgba(255, 255, 255, 0.13);
}

.template-band h2,
.template-band p {
  color: #ffffff;
}

.template-band p {
  opacity: 0.8;
}

.contact-preview-section {
  gap: 32px;
  padding: 56px 46px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
}

.disabled-form {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.qr-ready-section {
  padding: 44px 46px;
  background: #ffffff;
}

.qr-card,
.image-gallery figure {
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(4, 22, 50, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hm-footer strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.hm-footer p,
.hm-footer-note {
  color: var(--muted);
}

.hm-services-section,
.hm-logo-section {
  padding: 70px 54px;
  border-top: 1px solid rgba(213, 222, 233, 0.74);
  background: #ffffff;
}

.hm-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.hm-service-card {
  display: grid;
  min-height: 100%;
  transition: transform 180ms ease;
}

.hm-service-card:hover {
  transform: translateY(-6px);
}

.hm-service-image {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 30px;
  background: #dbeaf4;
  box-shadow: 0 16px 38px rgba(4, 22, 50, 0.08);
}

.hm-service-card:nth-child(2n) .hm-service-image {
  background: #dce9d1;
}

.hm-service-card:nth-child(3n) .hm-service-image {
  background: #f5dfae;
}

.hm-service-card:nth-child(4n) .hm-service-image {
  background: #cde8ed;
}

.hm-service-image img {
  width: 100%;
  min-height: 300px;
  aspect-ratio: 1.02 / 1;
  display: block;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 520ms ease, filter 520ms ease;
}

.hm-service-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.hm-service-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  min-width: 46px;
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.hm-service-copy {
  position: relative;
  z-index: 1;
  min-height: 0;
  margin: -24px 18px 0;
  padding: 28px 22px 24px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(4, 22, 50, 0.1);
}

.hm-service-copy h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
}

.hm-service-copy p:not(.kicker) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Revert service-card experiment by removing hm-services-section--dynamic from app.js. */
.hm-services-section--dynamic {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(4, 22, 50, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(4, 22, 50, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 52%, #eef5fb 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.hm-services-section--dynamic::before {
  content: "SERVICES";
  position: absolute;
  right: -30px;
  top: 12px;
  z-index: -1;
  color: var(--navy);
  font-size: clamp(90px, 15vw, 220px);
  font-weight: 900;
  line-height: 0.8;
  opacity: 0.015;
  pointer-events: none;
}

.hm-services-section--dynamic .section-head,
.hm-services-section--dynamic .hm-service-grid {
  position: relative;
  z-index: 1;
}

.hm-services-section--dynamic .hm-service-grid {
  position: relative;
  isolation: isolate;
  align-items: start;
  gap: 30px;
  padding-top: 18px;
}

.hm-services-section--dynamic .hm-service-grid::before {
  display: none;
}

.hm-services-section--dynamic .hm-service-thread {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 42px;
  z-index: 1;
  width: calc(100% - 36px);
  height: 112px;
  overflow: visible;
  pointer-events: none;
}

.hm-services-section--dynamic .hm-service-thread path {
  fill: none;
  stroke: #0e7490;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 9 13;
  stroke-opacity: 0.28;
  animation: serviceThreadFlow 18s linear infinite;
}

.hm-services-section--dynamic .hm-service-thread circle {
  fill: #0e7490;
  stroke: #ffffff;
  stroke-width: 2;
  opacity: 0.58;
}

.hm-services-section--dynamic .hm-service-card {
  position: relative;
  z-index: 10;
  padding-top: 18px;
  opacity: 1;
  transform: translateY(var(--stagger-y));
  --stagger-y: 0px;
  --hover-lift: -10px;
  --card-delay: 0ms;
  animation: none;
}

.hm-services-section--dynamic .hm-service-card:nth-of-type(2),
.hm-services-section--dynamic .hm-service-card:nth-of-type(4) {
  --stagger-y: 20px;
}

.hm-services-section--dynamic .hm-service-card:nth-of-type(2) {
  --card-delay: 100ms;
}

.hm-services-section--dynamic .hm-service-card:nth-of-type(3) {
  --card-delay: 200ms;
}

.hm-services-section--dynamic .hm-service-card:nth-of-type(4) {
  --card-delay: 300ms;
}

.hm-services-section--dynamic .hm-service-card.scroll-reveal {
  opacity: 0;
  transform: translateY(calc(var(--stagger-y) + 10px));
}

.hm-services-section--dynamic .hm-service-card.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(var(--stagger-y));
}

.hm-services-section--dynamic .hm-service-card:hover {
  transform: translateY(calc(var(--stagger-y) + var(--hover-lift)));
}

.hm-services-section--dynamic .hm-service-card.scroll-reveal.is-visible:hover {
  transform: translateY(calc(var(--stagger-y) + var(--hover-lift)));
}

.hm-services-section--dynamic .hm-service-image {
  height: 320px;
  min-height: 320px;
  overflow: hidden;
  border-radius: 36px 12px 42px 12px;
  background: #eef5fb;
  box-shadow: 0 20px 52px rgba(4, 22, 50, 0.11);
}

.hm-services-section--dynamic .hm-service-image img {
  height: 100%;
  min-height: 0;
  border-radius: inherit;
  aspect-ratio: auto;
  mix-blend-mode: normal;
  filter: grayscale(0.16) saturate(0.72) contrast(1.08) brightness(1.02);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1), filter 820ms ease;
}

.hm-services-section--dynamic .hm-service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(4, 22, 50, 0.2), rgba(14, 116, 144, 0.08) 46%, rgba(215, 240, 255, 0.16));
  mix-blend-mode: multiply;
  opacity: 0.34;
  pointer-events: none;
  transition: opacity 820ms ease;
}

.hm-services-section--dynamic .hm-service-card:hover .hm-service-image img {
  filter: grayscale(0) saturate(1.08) contrast(1.04) brightness(1);
}

.hm-services-section--dynamic .hm-service-card:hover .hm-service-image::after {
  opacity: 0;
}

.hm-services-section--dynamic .hm-service-image span {
  top: 21px;
  left: 16px;
  z-index: 2;
  min-width: 56px;
  min-height: 56px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.72);
  color: rgba(4, 22, 50, 0.82);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 12px 28px rgba(4, 22, 50, 0.12);
  backdrop-filter: blur(10px);
  transition:
    background-color 640ms ease,
    color 520ms ease,
    box-shadow 640ms ease,
    transform 320ms ease;
}

.hm-services-section--dynamic .hm-service-card:hover .hm-service-image span {
  transform: scale(1.05);
  background-color: #041632;
  color: #ffffff;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.1),
    0 16px 36px rgba(4, 22, 50, 0.24);
}

.hm-services-section--dynamic .hm-service-copy {
  min-height: 304px;
  display: flex;
  flex-direction: column;
  margin: -56px 20px 0;
  border: 1px solid rgba(213, 222, 233, 0.76);
  border-radius: 12px 34px 12px 34px;
  box-shadow: 0 24px 54px rgba(4, 22, 50, 0.1);
}

.hm-logo-section h2 {
  color: var(--navy);
  font-size: 38px;
  line-height: 1.08;
}

.hm-logo-section p,
.hm-logo-section small {
  color: var(--muted);
  line-height: 1.6;
}

.hm-logo-section {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.52) 100%),
    linear-gradient(rgba(4, 22, 50, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 22, 50, 0.035) 1px, transparent 1px),
    #f8fbfd;
  background-size: 100% 100%, 34px 34px, 34px 34px, 100% 100%;
}

.hm-logo-row {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(213, 222, 233, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 18px 46px rgba(4, 22, 50, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  padding: 0;
}

.hm-logo-track {
  width: 100%;
  min-height: 68px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 42px;
  padding: 14px 42px;
}

.hm-logo-row span {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px dashed rgba(4, 22, 50, 0.18);
  border-radius: 999px;
  padding: 6px 16px;
  color: rgba(4, 22, 50, 0.4);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hm-logo-section small {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  max-width: 820px;
  color: rgba(91, 102, 117, 0.78);
  font-size: 11px;
  line-height: 1.45;
}

.hm-logo-section small span {
  color: rgba(91, 102, 117, 0.52);
  font-weight: 900;
}

.hm-footer {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(2, minmax(200px, 1fr));
  gap: 18px;
  padding: 46px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 14% 14%, rgba(255, 122, 0, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(4, 22, 50, 0.92), rgba(2, 6, 23, 0.98));
  background-size: 38px 38px, 38px 38px, auto, auto;
  color: #ffffff;
}

.hm-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%);
  pointer-events: none;
}

.hm-footer-brand,
.hm-footer-matrix,
.hm-footer-socials {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hm-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.hm-footer-brand .brand-logo {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.hm-footer-brand strong,
.hm-footer-matrix p,
.hm-footer-socials p {
  color: #ffffff;
}

.hm-footer-brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
}

.hm-footer-brand p {
  margin: 7px 0 0;
  color: rgba(226, 232, 240, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.hm-footer-matrix,
.hm-footer-socials {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 16px;
}

.hm-footer-tag {
  display: block;
  color: rgba(226, 232, 240, 0.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hm-footer-phone {
  white-space: nowrap;
}

.hm-footer-action {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 7px;
  margin: 0 -8px -8px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.86);
  padding: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  transition: color 340ms ease, background 340ms ease, box-shadow 340ms ease, transform 340ms ease;
}

.hm-footer-action em {
  color: rgba(226, 232, 240, 0.48);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.hm-footer-matrix:hover .hm-footer-action {
  background: rgba(255, 122, 0, 0.1);
  color: #ffb15a;
  box-shadow: 0 0 0 1px rgba(255, 122, 0, 0.14), 0 12px 30px rgba(255, 122, 0, 0.08);
  transform: translateY(-1px);
}

.hm-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hm-social-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 232, 240, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(226, 232, 240, 0.42);
  cursor: default;
  transition: color 320ms ease, border-color 320ms ease, background 320ms ease, box-shadow 320ms ease, transform 320ms ease;
}

.hm-social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

.hm-social-icon svg rect,
.hm-social-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hm-social-icon:hover {
  border-color: rgba(255, 122, 0, 0.5);
  background: rgba(255, 122, 0, 0.1);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 18px rgba(255, 122, 0, 0.16);
  transform: translateY(-2px);
}

.hm-footer-note {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.36);
  color: rgba(226, 232, 240, 0.38);
  font-size: 11px;
  line-height: 1.55;
}

.hm-footer-note strong {
  color: rgba(255, 122, 0, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hm-footer-note span {
  color: rgba(226, 232, 240, 0.58);
}

.image-gallery figure:hover {
  transform: translateY(-5px);
  border-color: rgba(148, 163, 184, 0.62);
  box-shadow: 0 24px 52px rgba(4, 22, 50, 0.13);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 420ms ease,
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.section-head.scroll-reveal {
  opacity: 1;
  transform: none;
}

.trade-hero-copy,
.visual-stack {
  animation: heroRise 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.visual-stack {
  animation-delay: 120ms;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGradientSweep {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 180% 50%;
  }
}

@keyframes heroElementFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroStatusPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes videoCaptionFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes endcardFrameIn {
  from {
    opacity: 0;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes endcardLightSweep {
  from {
    transform: translateX(-140%) skewX(-14deg);
  }

  to {
    transform: translateX(110%) skewX(-14deg);
  }
}

@keyframes sectionMaskedReveal {
  from {
    opacity: 0;
    transform: translate3d(-130%, 0, 0) skewX(-8deg);
  }

  16%,
  74% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(260%, 0, 0) skewX(-8deg);
  }
}

@keyframes serviceCardWaveIn {
  from {
    opacity: 0;
    transform: translateY(calc(var(--stagger-y) + 24px));
  }

  to {
    opacity: 1;
    transform: translateY(var(--stagger-y));
  }
}

@keyframes serviceThreadFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -88;
  }
}

@keyframes logoTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

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

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

  .service-step-item.scroll-reveal .service-step-number {
    opacity: 0.14;
    transform: none;
    transition: none;
  }
}

.concept-footer {
  padding: 20px 46px;
  border-top: 1px solid #fed7aa;
  background: #fff7ed;
}

.admin-command,
.admin-preview-shell,
.admin-mode > .selector-panel,
.admin-mode > .admin-panel,
.artwork-panel {
  width: min(1200px, calc(100% - 32px));
  margin: 20px auto;
}

.admin-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.admin-command p:not(.kicker) {
  color: var(--muted);
  line-height: 1.6;
}

.mobile-preview-tab {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 58;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(213, 222, 233, 0.88);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: -12px 16px 34px rgba(4, 22, 50, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.mobile-preview-tab span {
  width: 10px;
  height: 16px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.mobile-preview-tab:hover,
.mobile-preview-tab[aria-expanded="true"] {
  background: var(--orange);
  color: #ffffff;
}

.mobile-preview-panel {
  position: fixed;
  top: 78px;
  right: 14px;
  bottom: 14px;
  z-index: 59;
  width: min(430px, calc(100vw - 28px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border: 1px solid rgba(213, 222, 233, 0.88);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 8%, rgba(245, 124, 0, 0.11), transparent 26%),
    rgba(255, 255, 255, 0.96);
  box-shadow: -24px 28px 76px rgba(4, 22, 50, 0.22);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transform: translateX(calc(100% + 28px));
  transition: transform 180ms ease;
}

.mobile-preview-panel.is-open {
  transform: translateX(0);
}

.mobile-preview-head,
.mobile-preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
}

.mobile-preview-head {
  border-bottom: 1px solid rgba(213, 222, 233, 0.82);
}

.mobile-preview-head div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.mobile-preview-head span,
.mobile-preview-meta span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-preview-head strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.12;
}

.mobile-preview-head button,
.mobile-preview-foot button,
.mobile-preview-foot a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(213, 222, 233, 0.9);
  border-radius: 6px;
  background: #ffffff;
  color: var(--navy);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.mobile-preview-head button:hover,
.mobile-preview-foot button:hover,
.mobile-preview-foot a:hover {
  border-color: rgba(245, 124, 0, 0.38);
  background: rgba(245, 124, 0, 0.08);
}

.mobile-preview-device {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  overflow: hidden;
}

.mobile-preview-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.mobile-preview-meta strong {
  color: rgba(4, 22, 50, 0.58);
  font-size: 11px;
  font-weight: 900;
}

.mobile-phone-frame {
  min-height: 0;
  width: min(100%, 410px);
  justify-self: center;
  display: grid;
  padding: 10px;
  border: 1px solid rgba(4, 22, 50, 0.12);
  border-radius: 30px;
  background: #071a33;
  box-shadow: 0 24px 70px rgba(4, 22, 50, 0.22);
}

.mobile-phone-screen {
  min-height: 0;
  width: 390px;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: var(--page);
}

.mobile-phone-screen iframe {
  width: 390px;
  max-width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: var(--page);
}

.mobile-preview-foot {
  border-top: 1px solid rgba(213, 222, 233, 0.82);
}

@media (min-width: 1500px) {
  .app-root.admin-mode.mobile-preview-open .admin-command,
  .app-root.admin-mode.mobile-preview-open .admin-preview-shell,
  .app-root.admin-mode.mobile-preview-open > .selector-panel,
  .app-root.admin-mode.mobile-preview-open > .admin-panel,
  .app-root.admin-mode.mobile-preview-open > .artwork-panel {
    width: min(1060px, calc(100% - 500px));
    margin-left: 24px;
    margin-right: auto;
  }
}

.selector-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(230px, 0.74fr));
  gap: 18px;
}

.template-choice-list,
.page-choice-list {
  display: grid;
  gap: 10px;
}

.template-choice,
.page-choice {
  width: 100%;
  min-height: 74px;
  display: grid;
  gap: 4px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  padding: 14px;
}

.template-choice:hover,
.template-choice.active,
.page-choice:hover,
.page-choice.active {
  border-color: var(--navy);
  box-shadow: 0 8px 18px rgba(4, 22, 50, 0.10);
}

.template-choice strong,
.page-choice strong {
  color: var(--navy);
}

.template-choice span,
.page-choice span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.artwork-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.artwork-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.artwork-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

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

.model-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.model-grid span,
.editor-status-row span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--navy);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.model-grid p,
.model-grid small {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.profile-json {
  margin-top: 16px;
}

.profile-json summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.profile-json textarea {
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f172a;
  color: #e5e7eb;
  font: 13px/1.5 Consolas, "Courier New", monospace;
  padding: 14px;
  resize: vertical;
}

.lead-editor-form {
  display: grid;
  gap: 14px;
}

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

.editor-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-editor-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 900;
}

.lead-editor-form input,
.lead-editor-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  line-height: 1.45;
  padding: 10px;
}

.lead-editor-form textarea {
  resize: vertical;
}

.editor-status-row,
.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.editor-actions button {
  min-height: 44px;
  border: 1px solid var(--navy);
  border-radius: var(--button-radius);
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 10px 14px;
}

.editor-actions button[disabled] {
  border-color: #cbd5e1;
  background: var(--button-disabled-bg);
  color: var(--button-disabled-text);
  cursor: not-allowed;
}

.editor-actions button[data-reset-draft]:not([disabled]) {
  background: #ffffff;
  color: var(--navy);
}

.load-error {
  width: min(760px, calc(100% - 32px));
  margin: 60px auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.prospect-site :is(
  .factory-copy,
  .factory-status,
  .selector-panel,
  .preview-frame,
  .admin-panel,
  .candidate-card,
  .service-card,
  .content-list-grid article,
  .model-grid article,
  .page-choice,
  .coverage-map,
  .trust-item,
  .qr-card,
  .image-gallery figure,
  .template-band article,
  .visual-caption
) {
  border-radius: var(--radius);
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(178px, 1fr));
  grid-auto-rows: 0;
  gap: 22px;
  align-items: stretch;
}

.image-gallery .image-gallery-item {
  position: relative;
  min-height: 0;
  height: 100%;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 18px 42px rgba(4, 22, 50, 0.1);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 520ms ease;
  will-change: transform;
}

.image-gallery .image-gallery-item--tall {
  grid-row: auto;
  min-height: 0;
}

.image-gallery .image-gallery-item--wide,
.image-gallery .image-gallery-item--focus {
  grid-column: auto;
}

.image-gallery .image-gallery-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.image-gallery .image-gallery-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.image-gallery .image-gallery-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.image-gallery .image-gallery-item:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}

.image-gallery .image-gallery-item:nth-child(5) {
  grid-column: 1 / span 2;
  grid-row: 2 / span 2;
}

.image-gallery .image-gallery-item:nth-child(6) {
  grid-column: 3;
  grid-row: 2 / span 2;
}

.image-gallery .image-gallery-item:nth-child(7) {
  grid-column: 4;
  grid-row: 2 / span 2;
}

.image-gallery .image-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(4, 22, 50, 0.32), rgba(4, 22, 50, 0.08) 48%, rgba(245, 124, 0, 0.16));
  mix-blend-mode: multiply;
  opacity: 0.78;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.image-gallery .image-gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 54%;
  background: linear-gradient(180deg, rgba(4, 22, 50, 0), rgba(4, 22, 50, 0.78));
  pointer-events: none;
}

.image-gallery .image-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
  display: block;
  object-fit: cover;
  filter: grayscale(0.18) saturate(0.74) contrast(1.08) brightness(0.94);
  transform: scale(1.001);
  transition: transform 680ms cubic-bezier(0.16, 1, 0.3, 1), filter 680ms ease;
}

.image-gallery .image-gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: 8px minmax(0, auto);
  align-items: center;
  column-gap: 8px;
  row-gap: 0;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(4, 22, 50, 0.72);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: background 420ms ease, border-color 420ms ease, border-radius 420ms ease, row-gap 420ms ease;
  will-change: border-radius, background;
}

.image-gallery .image-gallery-item figcaption span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(245, 124, 0, 0.58);
}

.image-gallery .image-gallery-item figcaption strong {
  min-width: 0;
  white-space: nowrap;
}

.image-gallery .image-gallery-item figcaption em {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-style: normal;
  line-height: 1.35;
  text-transform: none;
  transform: translateY(-4px);
  transition: max-height 720ms cubic-bezier(0.16, 1, 0.3, 1), opacity 360ms ease 120ms, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: max-height, opacity, transform;
}

.image-gallery .image-gallery-item:hover,
.image-gallery .image-gallery-item:focus {
  transform: translateY(-6px);
  box-shadow: 0 28px 68px rgba(4, 22, 50, 0.18), 0 0 0 1px rgba(245, 124, 0, 0.32);
  outline: none;
}

.image-gallery .image-gallery-item:hover::before,
.image-gallery .image-gallery-item:focus::before {
  opacity: 0.18;
}

.image-gallery .image-gallery-item:hover img,
.image-gallery .image-gallery-item:focus img {
  transform: scale(1.03);
  filter: saturate(1.03) contrast(1.04) brightness(1);
}

.image-gallery .image-gallery-item:hover figcaption,
.image-gallery .image-gallery-item:focus figcaption {
  row-gap: 5px;
  border-color: rgba(245, 124, 0, 0.36);
  border-radius: 16px;
  background: rgba(4, 22, 50, 0.84);
}

.image-gallery .image-gallery-item:hover figcaption em,
.image-gallery .image-gallery-item:focus figcaption em {
  max-height: 5.6em;
  opacity: 1;
  transform: translateY(0);
}

.template-band {
  position: relative;
  isolation: isolate;
  gap: 28px;
  padding: 58px 54px;
  border-top: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #071a33;
  background-size: 36px 36px, 36px 36px, 100% 100%;
  overflow: hidden;
}

.template-band::before {
  content: "";
  position: absolute;
  left: 72px;
  right: 72px;
  top: 58px;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(245, 124, 0, 0), rgba(245, 124, 0, 0.54), rgba(255, 255, 255, 0.18), rgba(245, 124, 0, 0.54), rgba(245, 124, 0, 0));
}

.template-band article {
  position: relative;
  display: grid;
  grid-template-rows: 18px minmax(60px, auto) 1fr;
  gap: 0;
  align-content: start;
  min-height: 210px;
  padding: 30px 22px 20px;
  border: 0;
  border-left: 2px solid rgba(245, 124, 0, 0.86);
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), border-color 420ms ease, box-shadow 420ms ease;
}

.template-band article::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -30px;
  width: 2px;
  height: 82px;
  background: linear-gradient(180deg, #f57c00, rgba(245, 124, 0, 0));
  box-shadow: 0 0 14px rgba(245, 124, 0, 0.34);
}

.template-band article::after {
  content: "";
  position: absolute;
  left: -7px;
  top: -6px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(245, 124, 0, 0.62);
  border-radius: 999px;
  background: rgba(245, 124, 0, 0.16);
  box-shadow: 0 0 8px #ff7a00;
}

.template-band article > * {
  position: relative;
  z-index: 1;
}

.template-band article .template-node,
.template-band article small,
.template-band article h2,
.template-band article p {
  position: relative;
  z-index: 1;
}

.template-band article:hover {
  background:
    radial-gradient(circle at 20% 18%, rgba(245, 124, 0, 0.08), transparent 58%),
    transparent;
}

.template-band .template-node {
  position: static;
  width: auto;
  height: auto;
  display: inline;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: inherit;
}

.template-band .template-node::after {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: 1px;
  border: 1px solid rgba(245, 124, 0, 0.86);
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 8px #ff7a00, 0 0 18px rgba(245, 124, 0, 0.34);
}

.template-band small {
  justify-self: start;
  margin-top: 1px;
  color: rgba(203, 213, 225, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

.template-band h2 {
  margin: 24px 0 0;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.12;
}

.template-band p {
  margin: 22px 0 0;
  color: rgba(203, 213, 225, 0.84);
  font-size: 16px;
  line-height: 1.72;
  opacity: 1;
}

.template-band article:hover {
  transform: translateY(-4px);
  border-color: #f57c00;
  box-shadow: inset 0 0 0 1px rgba(245, 124, 0, 0.22), 0 22px 54px rgba(0, 0, 0, 0.16);
}

.template-band article:hover::after {
  background: var(--orange);
  box-shadow: 0 0 8px #ff7a00, 0 0 24px rgba(245, 124, 0, 0.52);
}

.admin-mode :is(
  .admin-command,
  .selector-panel,
  .admin-preview-shell .prospect-site,
  .admin-panel,
  .artwork-panel,
  .template-choice,
  .page-choice,
  .model-grid article,
  .reserve-item,
  .artwork-grid article
) {
  border-radius: var(--radius);
}

.prospect-site :is(.button, .trade-links a, .trade-links button),
.admin-mode :is(.button, .factory-bar nav a) {
  border-radius: var(--button-radius);
}

.prospect-site .trade-nav .trade-links a,
.prospect-site .trade-nav .trade-links button {
  border-radius: 0;
}

.prospect-site .trade-nav .trade-links a:hover,
.prospect-site .trade-nav .trade-links a.active,
.prospect-site .trade-nav .trade-links button:hover,
.prospect-site .trade-nav .trade-links button.active {
  box-shadow: none;
  transform: none;
}

.prospect-site .visual-caption.visual-caption--feed {
  border-radius: 999px;
}

@media (max-width: 980px) {
  .trade-hero,
  .coverage-band,
  .coverage-booking-section,
  .pricing-trust-section,
  .hm-footer {
    grid-template-columns: 1fr;
  }

  .trade-hero h1 {
    font-size: 38px;
  }

  .trade-hero {
    min-height: auto;
  }

  .trade-hero-copy {
    padding: 52px 34px 34px;
  }

  .trade-hero.trade-hero--service .trade-hero-copy,
  .trade-hero.trade-hero--utility .trade-hero-copy {
    padding: 44px 34px 34px;
  }

  .visual-stack {
    min-height: 360px;
    margin: 0 30px 34px;
  }

  .trade-hero.trade-hero--service .visual-stack {
    min-height: 320px;
    margin: 0 30px 34px;
  }

  .visual-stack img,
  .visual-stack video {
    min-height: 360px;
  }

  .trade-hero.trade-hero--service .visual-stack img {
    min-height: 320px;
  }

  .hero-video-endcard {
    padding: 30px;
  }

  .endcard-panel {
    padding: 22px;
  }

  .template-minimal .trade-hero,
  .hm-service-grid,
  .hm-logo-row,
  .service-catalogue-layout,
  .service-catalogue-grid,
  .service-process-line,
  .service-flow-strip,
  .service-help-panel,
  .service-step-row,
  .service-help-grid,
  .customer-trust-layout,
  .pricing-trust-grid,
  .customer-trust-grid,
  .template-band,
  .contact-preview-section,
  .qr-ready-section,
  .image-gallery,
  .admin-command,
  .selector-columns {
    grid-template-columns: 1fr;
  }

  .image-gallery {
    grid-auto-rows: auto;
    grid-template-rows: none;
  }

  .service-catalogue-head h1 {
    font-size: 38px;
  }

  .service-catalogue-status {
    display: grid;
  }

  .service-catalogue-card {
    padding: 18px;
  }

  .service-selector-shell .service-catalogue-panel,
  .customer-trust-layout .customer-trust-head,
  .service-help-anchor {
    position: static;
  }

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

  .service-detail-panel {
    min-height: auto;
  }

  .service-help-panel {
    gap: 18px;
    margin-inline: -30px;
    padding: 44px 30px 30px 52px;
  }

  .service-step-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
  }

  .service-step-item {
    min-height: 120px;
  }

  .image-gallery .image-gallery-item,
  .image-gallery .image-gallery-item--tall,
  .image-gallery .image-gallery-item--wide,
  .image-gallery .image-gallery-item--focus {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
    height: auto;
  }

  .image-gallery .image-gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .image-gallery .image-gallery-item figcaption {
    left: 14px;
    right: 14px;
    max-width: calc(100% - 28px);
  }

  .hm-services-section--dynamic .hm-service-card,
  .hm-services-section--dynamic .hm-service-card:nth-of-type(2n),
  .hm-services-section--dynamic .hm-service-card:nth-of-type(4n),
  .hm-services-section--dynamic .hm-service-card:hover,
  .hm-services-section--dynamic .hm-service-card:nth-of-type(2n):hover,
  .hm-services-section--dynamic .hm-service-card:nth-of-type(4n):hover {
    --stagger-y: 0px;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hm-services-section--dynamic .hm-service-grid::before {
    display: none;
  }

  .hm-services-section--dynamic .hm-service-thread {
    display: none;
  }

  .hm-services-section--dynamic .hm-service-copy {
    min-height: auto;
  }

  .content-card-body {
    min-height: auto;
  }

  .pricing-trust-section {
    gap: 24px;
  }

  .customer-trust-section {
    padding: 56px 34px;
  }

  .proof-ledger-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .proof-ledger-row .trust-slot-value {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .customer-trust-grid article {
    min-height: auto;
  }

  .pricing-trust-grid {
    gap: 10px;
    padding-top: 0;
  }

  .pricing-trust-grid::before,
  .pricing-trust-grid article::before,
  .pricing-trust-grid article::after {
    display: none;
  }

  .pricing-trust-grid article {
    min-height: 110px;
    padding: 14px 0;
    border-top: 1px solid rgba(213, 222, 233, 0.78);
  }

  .content-card-thread {
    display: none;
  }

  .route-connector {
    display: none;
  }

  .coverage-booking-section {
    padding: 58px 34px;
  }

  .live-map-shell {
    min-height: 430px;
  }

  .hm-footer {
    gap: 14px;
  }
}

@media (max-width: 680px) {
  .trade-hero h1 {
    font-size: 30px;
  }

  .app-root.preview-mode {
    padding: 8px 0 28px;
  }

  .preview-mode .prospect-site {
    width: min(100% - 16px, 1280px);
  }

  .preview-disclaimer {
    flex-direction: column;
    gap: 2px;
    line-height: 1.45;
  }

  .trade-nav {
    padding: 14px 16px;
  }

  .trade-links a,
  .trade-links button {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .hm-services-section--dynamic::before,
  .coverage-booking-section::before {
    content: none;
  }

  .trade-hero-copy {
    padding: 34px 18px 26px;
  }

  .trade-hero.trade-hero--service .trade-hero-copy,
  .trade-hero.trade-hero--utility .trade-hero-copy {
    padding: 32px 18px 24px;
  }

  .visual-stack {
    min-height: 300px;
    margin: 0 18px 24px;
    animation-delay: 840ms;
  }

  .trade-hero.trade-hero--service .visual-stack {
    min-height: 260px;
    margin: 0 18px 24px;
  }

  .visual-stack img,
  .visual-stack video {
    min-height: 300px;
  }

  .trade-hero.trade-hero--service .visual-stack img {
    min-height: 260px;
  }

  .hero-video-endcard {
    padding: 20px;
  }

  .endcard-panel {
    border-radius: 0 14px 14px 0;
    padding: 18px;
  }

  .endcard-points span,
  .endcard-kicker {
    font-size: 14px;
  }

  .endcard-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .template-band,
  .hm-services-section,
  .hm-logo-section,
  .hm-footer,
  .contact-preview-section,
  .coverage-booking-section,
  .pricing-trust-section,
  .customer-trust-section,
  .service-catalogue-section,
  .services-section,
  .coverage-band,
  .trust-section,
  .image-gallery-section,
  .content-list-section,
  .qr-ready-section,
  .concept-footer {
    padding: 18px;
  }

  .service-catalogue-head h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .service-catalogue-head > p:not(.kicker),
  .service-group-head p:not(.kicker) {
    font-size: 15px;
    line-height: 1.55;
  }

  .service-catalogue-panel {
    padding: 18px;
  }

  .service-catalogue-panel h2,
  .service-group-head h2,
  .service-help-panel h2 {
    font-size: 24px;
  }

  .service-selector-deck {
    grid-template-columns: 1fr;
  }

  .service-detail-panel {
    padding: 20px;
  }

  .service-detail-panel h2 {
    font-size: 32px;
    line-height: 1.04;
  }

  .service-detail-jobs ul {
    grid-template-columns: 1fr;
  }

  .service-card-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-card-topline span {
    max-width: 100%;
  }

  .service-card-topline small {
    text-align: left;
  }

  .service-flow-strip article,
  .service-help-grid article {
    padding: 14px;
  }

  .service-process-line {
    gap: 18px;
    padding-top: 0;
  }

  .service-process-line::before {
    left: 16px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .service-process-step {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    padding-right: 0;
  }

  .service-process-marker {
    grid-row: 1 / span 2;
  }

  .service-process-step h3,
  .service-process-step p {
    grid-column: 2;
  }

  .service-step-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-help-panel {
    justify-items: center;
    margin-inline: -18px;
    padding: 36px 36px 28px;
    text-align: center;
  }

  .service-help-anchor {
    justify-items: center;
    max-width: 260px;
    text-align: center;
  }

  .service-help-panel p {
    margin-inline: auto;
  }

  .service-step-item {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "num"
      "tag"
      "title"
      "text";
    justify-items: center;
    row-gap: 4px;
    min-height: 0;
    padding: 12px 0;
    text-align: center;
  }

  .service-step-number {
    grid-area: num;
    justify-self: center;
    margin: 0 0 -14px;
    font-size: 46px;
  }

  .service-step-tag {
    grid-area: tag;
    justify-self: center;
    align-self: end;
  }

  .service-step-item h3 {
    grid-area: title;
    justify-self: center;
    align-self: end;
  }

  .service-step-item p {
    grid-area: text;
    justify-self: center;
    max-width: 220px;
  }

  .proof-ledger-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .proof-check {
    width: 30px;
    height: 30px;
  }

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

  .admin-command,
  .admin-preview-shell,
  .admin-mode > .selector-panel,
  .admin-mode > .admin-panel,
  .artwork-panel {
    width: min(100% - 20px, 1200px);
  }

  .model-grid,
  .hm-service-grid,
  .hm-logo-row,
  .hm-footer,
  .pricing-trust-grid,
  .customer-trust-grid,
  .editor-grid,
  .editor-grid.two-column {
    grid-template-columns: 1fr;
  }

  .hm-footer-brand,
  .hm-footer-matrix,
  .hm-footer-socials {
    border-radius: 14px;
    padding: 14px;
  }

  .hm-footer-action {
    margin: 0;
  }

  .coverage-booking-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .coverage-booking-copy h2 {
    font-size: 30px;
  }

  .postcode-checker-row {
    grid-template-columns: 1fr;
  }

  .booking-preview-form {
    grid-template-columns: 1fr;
  }

  .live-map-shell {
    min-height: 360px;
    border-radius: 22px;
  }

  .map-status-card {
    left: 14px;
    right: auto;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: min(220px, calc(100% - 28px));
  }

  .map-status-card strong {
    grid-row: auto;
    font-size: 22px;
  }
}

@media (max-width: 980px) {
  .service-catalogue-layout {
    align-items: stretch;
  }

  .service-catalogue-main {
    order: 2;
  }

  .service-selector-shell .service-catalogue-panel {
    order: 1;
  }

  .about-status-section,
  .about-verification-section {
    padding-left: 34px;
    padding-right: 34px;
  }

  .about-status-copy h1 {
    font-size: 48px;
  }

  .about-breakdown-grid,
  .about-verification-layout {
    grid-template-columns: 1fr;
  }

  .about-breakdown-card {
    min-height: auto;
    grid-template-columns: minmax(230px, 0.86fr) minmax(0, 1fr);
    grid-template-rows: none;
  }

  .about-media-card {
    grid-template-rows: minmax(360px, 1fr) auto;
  }

  .about-media-card .trust-feature-image,
  .about-media-card .trust-feature-image video,
  .about-media-card .trust-feature-image img {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .preview-disclaimer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
    padding: 6px 10px;
    font-size: 10px;
    line-height: 1.25;
    text-align: left;
  }

  .preview-disclaimer span:first-child {
    display: none;
  }

  .trade-header {
    padding: 8px 10px 10px;
  }

  .trade-nav {
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
  }

  .trade-brand {
    gap: 8px;
  }

  .trade-brand .brand-logo {
    width: 40px;
    height: 40px;
  }

  .trade-brand strong {
    font-size: 14px;
  }

  .trade-nav .nav-phone,
  .nav-callback,
  .mobile-menu-toggle {
    min-height: 34px;
  }

  .trade-nav .nav-phone {
    padding: 7px 9px;
    font-size: 11px;
  }

  .nav-callback {
    padding: 7px 10px;
    font-size: 10px;
  }

  .mobile-menu-toggle {
    padding: 7px 10px;
  }

  .mobile-menu-icon {
    width: 14px;
    gap: 2px;
  }

  .mobile-menu-icon span {
    width: 14px;
  }

  .trade-hero-copy {
    padding-top: 26px;
  }

  .service-catalogue-section {
    padding-top: 34px;
  }

  .service-catalogue-head {
    margin-bottom: 18px;
  }

  .service-catalogue-head > p:not(.kicker),
  .service-catalogue-panel p {
    font-size: 15px;
  }

  .service-detail-panel {
    min-height: auto;
    padding: 22px;
  }

  .service-detail-panel h2 {
    font-size: 34px;
  }

  .service-detail-panel > p {
    font-size: 16px;
  }

  .service-selector-shell .service-catalogue-panel {
    padding: 18px;
  }

  .service-selector-deck button {
    min-height: 54px;
  }

  .about-status-section {
    padding: 38px 18px 0;
    background:
      linear-gradient(rgba(4, 22, 50, 0.042) 1px, transparent 1px),
      linear-gradient(90deg, rgba(4, 22, 50, 0.036) 1px, transparent 1px),
      linear-gradient(135deg, #ffffff 0%, #f9fbff 56%, #f5f7fb 100%);
    background-size: 30px 30px, 30px 30px, auto;
  }

  .about-verification-section {
    padding: 0 18px 48px;
  }

  .about-status-copy h1 {
    color: #041632;
    font-size: 36px;
    line-height: 1.04;
  }

  .about-status-copy p:not(.kicker) {
    color: #334155;
    font-size: 16px;
    line-height: 1.58;
  }

  .about-status-rail span {
    border-color: rgba(245, 124, 0, 0.2);
    background: rgba(255, 247, 237, 0.84);
    color: #5f3712;
  }

  .about-breakdown-card {
    grid-template-columns: 1fr;
  }

  .about-card-visual {
    min-height: 180px;
  }

  .about-breakdown-copy {
    padding: 20px;
  }

  .about-breakdown-copy h2 {
    font-size: 24px;
  }

  .about-rule-timeline {
    padding-left: 0;
  }

  .about-rule-timeline::before {
    left: 21px;
  }

  .about-rule-node {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .about-rule-node div {
    min-height: auto;
    padding: 15px;
  }
}

/* Studio action-split header. */
.trade-nav {
  display: grid;
  grid-template-areas: "brand links contact";
  grid-template-columns: minmax(220px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 11px 12px 11px 18px;
}

.trade-brand {
  grid-area: brand;
  justify-self: start;
  min-width: 0;
}

.trade-brand strong {
  white-space: nowrap;
}

.desktop-trade-links {
  grid-area: links;
  justify-self: center;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.trade-nav .desktop-trade-links a {
  min-height: 42px;
  padding: 10px 10px 16px;
  color: #4d5b6d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.trade-nav .desktop-trade-links a::after {
  left: 10px;
  right: 10px;
  bottom: 7px;
  height: 2px;
}

.trade-nav .desktop-trade-links a:hover,
.trade-nav .desktop-trade-links a.active {
  color: var(--navy);
}

.nav-contact {
  grid-area: contact;
  width: 100%;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.trade-nav .nav-phone {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-color: rgba(245, 124, 0, 0.24);
  background: rgba(245, 124, 0, 0.08);
  color: var(--navy);
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.trade-nav .nav-phone:hover {
  border-color: rgba(245, 124, 0, 0.42);
  background: rgba(245, 124, 0, 0.12);
}

.nav-callback {
  margin-left: 0;
  min-width: 112px;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

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

.mobile-menu-toggle {
  grid-area: menu;
  min-height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(213, 222, 233, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  padding: 8px 12px;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle[aria-expanded="true"] {
  border-color: rgba(245, 124, 0, 0.34);
  background: rgba(245, 124, 0, 0.08);
  color: var(--navy);
}

.mobile-menu-icon {
  width: 16px;
  display: grid;
  gap: 3px;
}

.mobile-menu-icon span {
  width: 16px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu-toggle strong {
  font: inherit;
}

.mobile-trade-links[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .trade-nav {
    grid-template-areas:
      "brand contact menu"
      "mobile mobile mobile";
    grid-template-columns: minmax(170px, 1fr) auto auto;
    gap: 12px;
    border-radius: 28px;
    padding: 12px;
  }

  .desktop-trade-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .mobile-trade-links:not([hidden]) {
    grid-area: mobile;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(213, 222, 233, 0.72);
  }

  .trade-nav .mobile-trade-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    padding: 10px 12px;
    color: #526174;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
  }

  .trade-nav .mobile-trade-links a::after {
    left: 18px;
    right: 18px;
    bottom: 7px;
  }

  .nav-contact {
    width: auto;
    justify-self: end;
  }

  .nav-callback {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .trade-header {
    padding: 12px 16px 14px;
  }

  .trade-nav {
    grid-template-areas:
      "brand menu"
      "contact contact"
      "mobile mobile";
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 24px;
  }

  .trade-brand {
    max-width: 100%;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .trade-brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-contact {
    width: 100%;
    justify-content: space-between;
  }

  .trade-nav .nav-phone,
  .nav-callback {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
  }

  .mobile-trade-links:not([hidden]) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .trade-nav {
    padding: 10px;
  }

  .trade-nav .nav-phone,
  .nav-callback,
  .mobile-menu-toggle {
    min-height: 38px;
    font-size: 10px;
  }

  .trade-nav .nav-phone {
    padding: 8px 10px;
  }

  .trade-nav .nav-phone::before {
    width: 13px;
    height: 13px;
    margin-right: 6px;
  }

  .nav-callback {
    min-width: 94px;
    padding: 8px 12px;
  }

  .mobile-trade-links:not([hidden]) {
    grid-template-columns: 1fr;
  }
}

/* Customer-review priority fixes. */
@media (max-width: 980px) {
  .service-catalogue-main {
    order: 2;
  }

  .service-selector-shell .service-catalogue-panel {
    order: 1;
  }
}

@media (max-width: 680px) {
  .preview-disclaimer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 6px;
    padding: 6px 10px;
    font-size: 10px;
    line-height: 1.25;
    text-align: left;
  }

  .preview-disclaimer span:first-child {
    white-space: nowrap;
  }

  .trade-header {
    padding: 8px 10px 10px;
  }

  .trade-nav {
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
  }

  .trade-brand {
    gap: 8px;
  }

  .trade-brand .brand-logo,
  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .trade-brand strong {
    font-size: 14px;
  }

  .trade-nav .nav-phone,
  .nav-callback,
  .mobile-menu-toggle {
    min-height: 34px;
    font-size: 10px;
  }

  .trade-nav .nav-phone {
    padding: 7px 9px;
    font-size: 11px;
  }

  .trade-nav .nav-phone::before {
    width: 12px;
    height: 12px;
    margin-right: 5px;
  }

  .nav-callback {
    min-width: 88px;
    padding: 7px 10px;
  }

  .mobile-menu-toggle {
    padding: 7px 10px;
  }

  .mobile-menu-icon {
    width: 14px;
    gap: 2px;
  }

  .mobile-menu-icon span {
    width: 14px;
  }

  .trade-hero-copy {
    padding-top: 26px;
  }

  .service-catalogue-section {
    padding-top: 34px;
  }

  .service-catalogue-head {
    margin-bottom: 18px;
  }

  .service-catalogue-head > p:not(.kicker),
  .service-catalogue-panel p {
    font-size: 15px;
  }

  .service-detail-panel {
    min-height: auto;
    padding: 22px;
  }

  .service-detail-panel h2 {
    font-size: 34px;
  }

  .service-detail-panel > p {
    font-size: 16px;
  }

  .service-selector-shell .service-catalogue-panel {
    padding: 18px;
  }

  .service-selector-deck button {
    min-height: 54px;
  }

  .about-status-section {
    background:
      linear-gradient(rgba(4, 22, 50, 0.042) 1px, transparent 1px),
      linear-gradient(90deg, rgba(4, 22, 50, 0.036) 1px, transparent 1px),
      linear-gradient(135deg, #ffffff 0%, #f9fbff 56%, #f5f7fb 100%);
    background-size: 30px 30px, 30px 30px, auto;
  }

  .about-status-copy h1 {
    color: #041632;
  }

  .about-status-copy p:not(.kicker) {
    color: #334155;
    line-height: 1.58;
  }

  .about-status-rail span {
    border-color: rgba(245, 124, 0, 0.2);
    background: rgba(255, 247, 237, 0.84);
    color: #5f3712;
  }
}

/* Mobile content-density pass: layout only, desktop/mobile copy remains identical. */
@media (max-width: 680px) {
  .prospect-site :is(h1, h2, h3) {
    letter-spacing: 0;
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
  }

  .trade-hero h1,
  .trade-hero--service h1,
  .trade-hero--utility h1,
  .service-catalogue-head h1,
  .about-status-copy h1 {
    font-size: clamp(1.85rem, 1.875rem, 2.35rem);
    line-height: 1.1;
  }

  h2.section-title,
  .coverage-booking-copy h2,
  .customer-trust-head h2,
  .pricing-trust-copy h2,
  .section-head h2,
  .service-catalogue-panel h2,
  .service-group-head h2,
  .service-help-panel h2,
  .about-breakdown-copy h2 {
    font-size: clamp(1.85rem, 1.85rem, 2.75rem);
    line-height: 1.15;
  }

  .trade-hero p,
  .trade-hero--utility p,
  .service-catalogue-head > p:not(.kicker),
  .coverage-booking-copy p,
  .customer-trust-head p:not(.kicker),
  .pricing-trust-copy > p:not(.kicker),
  .section-head p:not(.kicker) {
    font-size: 14px;
    line-height: 1.5;
  }

  .service-card-media,
  .service-card-media img {
    min-height: 220px;
  }

  .service-card-media img {
    aspect-ratio: 1.22 / 1;
  }

  .service-card-meta {
    top: 12px;
    left: 12px;
    right: 12px;
    font-size: 10px;
  }

  .service-card-meta span {
    min-height: 26px;
    padding: 4px 8px;
  }

  .service-card-footer {
    min-height: 0;
    margin: -16px 12px 0;
    gap: 5px;
    border-radius: 16px;
    padding: 18px 58px 18px 16px;
  }

  h3.card-title,
  .service-card h3,
  .hm-service-copy h3,
  .content-list-grid article h3,
  .service-catalogue-card h3,
  .service-flow-strip h3,
  .service-help-grid h3,
  .pricing-trust-grid article h3,
  .customer-trust-grid h3,
  .proof-copy h3,
  .about-rule-node h3 {
    font-size: clamp(1.25rem, 1.25rem, 1.75rem);
    line-height: 1.25;
  }

  .service-card p,
  .hm-service-copy p {
    font-size: 13px;
    line-height: 1.38;
  }

  .service-card-action {
    right: 16px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }

  .service-card-action svg {
    width: 20px;
    height: 20px;
  }

  .content-card-media {
    height: 210px;
    min-height: 210px;
    border-radius: 20px 8px 24px 8px;
  }

  .content-card-media span {
    top: 12px;
    left: 12px;
    width: 42px;
    height: 42px;
    font-size: 11px;
  }

  .content-card-body {
    margin: -32px 12px 0;
    gap: 6px;
    border-radius: 12px;
    padding: 18px 16px;
  }

  .content-card-body p {
    font-size: 13px;
    line-height: 1.42;
  }

  .service-catalogue-card,
  .service-flow-strip article,
  .service-help-grid article {
    gap: 10px;
    padding: 14px;
  }

  .service-card-topline {
    gap: 8px;
  }

  .service-card-topline span {
    min-height: 0;
    padding: 6px 8px;
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.15;
  }

  .service-card-topline small {
    font-size: 10px;
    letter-spacing: 0;
  }

  .service-catalogue-card h2,
  .service-step-item h3 {
    font-size: clamp(1.25rem, 1.25rem, 1.75rem);
    line-height: 1.25;
  }

  .service-catalogue-card p,
  .service-flow-strip p,
  .service-help-grid p,
  .service-step-item p {
    font-size: 13px;
    line-height: 1.42;
  }

  .service-catalogue-card .service-cue {
    padding: 8px 10px;
    font-size: 13px;
    line-height: 1.34;
  }

  .service-catalogue-card ul {
    gap: 6px;
  }

  .service-catalogue-card li {
    font-size: 13px;
    line-height: 1.35;
  }

  .service-detail-panel {
    gap: 12px;
    padding: 18px;
  }

  .service-detail-panel h2 {
    font-size: clamp(1.85rem, 1.85rem, 2.75rem);
    line-height: 1.15;
  }

  .service-detail-panel > p {
    font-size: 14px;
    line-height: 1.48;
  }

  .service-detail-panel .service-detail-cue {
    padding: 9px 10px;
    font-size: 13px;
    line-height: 1.34;
  }

  .service-detail-jobs {
    gap: 8px;
  }

  .service-detail-jobs ul {
    gap: 7px;
  }

  .service-detail-jobs li {
    font-size: 13px;
    line-height: 1.35;
  }

  .service-detail-footer {
    padding-top: 12px;
  }

  .pricing-trust-section {
    gap: 14px;
    align-items: stretch;
  }

  .pricing-trust-copy {
    min-height: auto;
    gap: 6px;
    border-radius: 10px;
    padding: 14px;
  }

  .pricing-trust-copy h2 {
    max-width: none;
  }

  .pricing-trust-status {
    padding: 6px 9px;
  }

  .pricing-trust-grid {
    position: relative;
    gap: 8px;
    padding: 10px 0 0 22px;
  }

  .pricing-trust-grid::before {
    display: block;
    top: 10px;
    right: auto;
    bottom: 8px;
    left: 8px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(245, 124, 0, 0.78), rgba(4, 22, 50, 0.18) 78%, rgba(4, 22, 50, 0));
  }

  .pricing-trust-grid article {
    min-height: auto;
    grid-template-rows: auto;
    gap: 6px;
    margin: 0;
    border: 1px solid rgba(213, 222, 233, 0.68);
    border-radius: 8px;
    padding: 8px 12px 8px 16px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
      radial-gradient(circle at 16% 0%, rgba(245, 124, 0, 0.07), transparent 44%);
  }

  .pricing-trust-grid article::before {
    display: block;
    top: 18px;
    left: -14px;
    width: 14px;
    height: 1px;
  }

  .pricing-trust-grid article::after {
    display: grid;
    top: 10px;
    left: -23px;
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .pricing-trust-grid article span {
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.15;
    white-space: normal;
  }

  .pricing-trust-grid article h3 {
    max-width: none;
  }

  .pricing-trust-grid article p {
    font-size: 12.5px;
    line-height: 1.38;
  }

  .pricing-trust-grid article small {
    padding: 4px 7px;
    font-size: 10px;
    letter-spacing: 0;
  }

  .customer-trust-section {
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .customer-trust-ledger {
    gap: 8px;
  }

  .proof-ledger-row {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 12px;
  }

  .proof-check {
    width: 26px;
    height: 26px;
    font-size: 14px;
    box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.13);
  }

  .proof-ledger-row.is-approved .proof-check {
    box-shadow: 0 0 0 4px rgba(22, 101, 52, 0.13);
  }

  .proof-copy {
    gap: 4px;
  }

  .proof-copy p {
    font-size: 12.5px;
    line-height: 1.42;
  }

  .trust-slot-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    padding-right: 0;
  }

  .proof-ledger-row .trust-slot-value {
    grid-column: 2;
    gap: 4px;
  }

  .trust-slot-value b {
    max-width: 100%;
    padding: 5px 8px;
    font-size: 11px;
    line-height: 1.2;
  }

  .about-breakdown-copy {
    gap: 10px;
    padding: 16px;
  }

  .about-breakdown-copy p,
  .about-rule-node p {
    font-size: 13px;
    line-height: 1.45;
  }

  .about-rule-node div {
    padding: 12px;
  }

  .hm-service-image,
  .hm-service-image img {
    min-height: 220px;
  }

  .hm-service-image img {
    aspect-ratio: 1.22 / 1;
  }

  .hm-service-image span {
    top: 12px;
    left: 12px;
    min-width: 38px;
    min-height: 30px;
    font-size: 11px;
  }

  .hm-service-copy {
    margin: -16px 12px 0;
    padding: 18px 16px;
    border-radius: 14px;
  }

  .trust-feature {
    gap: 12px;
    border-radius: 16px;
    padding: 14px;
  }

  .trust-feature-image,
  .trust-feature-image img,
  .trust-feature-image video {
    min-height: 190px;
    height: 190px;
  }

  .trust-feature-image {
    border-radius: 14px;
  }

  .trust-feature-image span {
    left: 12px;
    bottom: 12px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .trust-feature--flow-experiment .trust-feature-cards {
    gap: 8px;
    padding-left: 24px;
  }

  .trust-feature--flow-experiment .trust-feature-cards::before,
  .trust-feature--flow-experiment .trust-feature-cards::after {
    left: 11px;
  }

  .trust-feature--flow-experiment .trust-item {
    border-radius: 10px;
    padding: 13px 13px 13px 14px;
  }

  .trust-feature--flow-experiment .trust-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }

  .trust-feature--flow-experiment .trust-icon svg {
    width: 16px;
    height: 16px;
  }

  .trust-feature--flow-experiment .trust-item > span:not(.trust-icon) {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .trust-feature--flow-experiment .trust-item p {
    font-size: 13px;
    line-height: 1.38;
  }

  .trust-feature--flow-experiment .trust-item::after {
    left: -18px;
    width: 9px;
    height: 9px;
    border-width: 2px;
  }

  .trust-feature--flow-experiment .trust-item::before {
    left: -12px;
    width: 12px;
  }

  .review-placeholder-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .review-placeholder-panel p {
    font-size: 13px;
    line-height: 1.42;
  }

  .review-placeholder-inline {
    gap: 8px;
  }

  .review-placeholder-inline span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .review-placeholder-inline em {
    font-size: 11px;
  }

  .image-gallery .image-gallery-item,
  .image-gallery .image-gallery-item--tall,
  .image-gallery .image-gallery-item--wide,
  .image-gallery .image-gallery-item--focus {
    min-height: 220px;
    height: 220px;
  }

  .image-gallery .image-gallery-item figcaption {
    gap: 4px;
    padding: 12px;
    font-size: 12px;
    line-height: 1.3;
  }

  .proof-ledger-row {
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: start;
    padding: 8px 10px;
  }

  .proof-check {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .proof-copy h3 {
    font-size: clamp(1.25rem, 1.25rem, 1.75rem);
    line-height: 1.25;
  }

  .proof-copy p {
    font-size: 12px;
    line-height: 1.35;
  }

  .proof-ledger-row .trust-slot-value {
    margin-top: 2px;
  }

  .trust-slot-meta span,
  .trust-slot-meta strong,
  .trust-slot-value small {
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.15;
  }

  .trust-slot-value b {
    padding: 4px 7px;
    font-size: 10.5px;
  }

  .prospect-site :is(
    .pricing-trust-grid article span,
    .pricing-trust-grid article small,
    .trust-slot-meta span,
    .trust-slot-meta strong,
    .trust-slot-value small,
    .service-card-topline span,
    .service-card-topline small,
    .service-detail-kicker span,
    .service-detail-kicker strong,
    .trust-feature--flow-experiment .trust-item > span:not(.trust-icon)
  ) {
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.15;
  }
}

/* Final mobile type lock: prevents legacy section rules from keeping desktop-scale headings. */
@media (max-width: 680px) {
  .prospect-site :is(
    .section-head h2,
    .hm-logo-section h2,
    .hm-services-section h2,
    .hm-logo-section .section-head h2,
    .content-list-section .section-head h2,
    .image-gallery-section .section-head h2,
    .trust-section .section-head h2,
    .pricing-trust-copy h2,
    .customer-trust-head h2,
    .coverage-booking-copy h2,
    .service-catalogue-panel h2,
    .service-group-head h2,
    .service-help-panel h2,
    .about-breakdown-copy h2
  ) {
    font-size: clamp(1.45rem, 1.45rem, 1.7rem);
    line-height: 1.14;
    letter-spacing: 0;
  }

  .prospect-site :is(
    .service-card h3,
    .hm-service-copy h3,
    .content-list-grid article h3,
    .service-catalogue-card h3,
    .service-flow-strip h3,
    .service-help-grid h3,
    .pricing-trust-grid article h3,
    .customer-trust-grid h3,
    .proof-copy h3,
    .about-rule-node h3
  ) {
    font-size: clamp(1.1rem, 1.1rem, 1.35rem);
    line-height: 1.22;
    letter-spacing: 0;
  }
}

/* Mobile coverage utility: keep the postcode checker compact and the map unobstructed. */
@media (max-width: 680px) {
  .coverage-booking-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 14px;
    overflow-x: clip;
    overflow-y: visible;
    background:
      linear-gradient(rgba(4, 22, 50, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(4, 22, 50, 0.035) 1px, transparent 1px),
      #f8fbfe;
    background-size: 28px 28px, 28px 28px, auto;
  }

  .prospect-site[data-page="service-area"] .coverage-booking-section {
    min-height: 0;
    align-items: start;
    padding-top: 22px;
  }

  .coverage-booking-section::before,
  .coverage-booking-section::after,
  .booking-map-panel::before {
    display: none;
  }

  .coverage-booking-panel {
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .coverage-booking-copy {
    gap: 8px;
  }

  .coverage-booking-copy .kicker {
    font-size: 11px;
  }

  .coverage-booking-copy h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 1.45rem, 1.7rem);
    line-height: 1.14;
  }

  .coverage-booking-copy p:not(.kicker) {
    font-size: 14px;
    line-height: 1.45;
  }

  .postcode-checker,
  .coverage-booking-section.is-checked .postcode-checker {
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .postcode-checker-head,
  .postcode-note {
    display: none;
  }

  .postcode-checker-row,
  .coverage-booking-section.is-checked .postcode-checker-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    max-height: none;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .postcode-input-shell input {
    min-height: 46px;
    border-radius: 12px;
    padding: 12px 13px;
    font-size: 15px;
  }

  .postcode-checker button {
    min-height: 46px;
    white-space: nowrap;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .postcode-result {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 14px;
  }

  .postcode-result span {
    display: none;
  }

  .postcode-result p {
    font-size: 13px;
    line-height: 1.45;
  }

  .booking-preview-form,
  .coverage-booking-section.is-checked .booking-preview-form {
    display: none;
  }

  .booking-map-panel {
    display: grid;
    gap: 10px;
    overflow: visible;
  }

  .live-map-shell {
    order: 1;
    min-height: clamp(230px, 58vw, 310px);
    border-radius: 18px;
  }

  .live-map-shell .coverage-pill-row--desktop {
    display: none;
  }

  .coverage-pill-row--mobile {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    height: auto !important;
    min-height: 0;
    max-width: 100%;
    overflow-x: visible;
    overflow-y: visible;
    white-space: normal;
    padding: 8px 2px 4px;
    margin-right: 0;
    scrollbar-width: none;
  }

  .coverage-pill-row--mobile::-webkit-scrollbar {
    display: none;
  }

  .coverage-pill-row--mobile span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.86);
    padding: 7px 10px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.05em;
  }

  .coverage-pill-row--mobile span:last-child {
    margin-right: 0;
  }

  .map-radius-ring {
    width: min(68%, 230px);
  }

  .map-radius-core {
    width: 16px;
    height: 16px;
    border-width: 4px;
  }

  .map-status-card {
    display: none;
  }
}
