:root {
  --blue-deep: #1a3a5c;
  --blue-mid: #234a72;
  --orange: #e86c1f;
  --orange-hover: #d45f15;
  --charcoal: #3d4554;
  --gray-100: #f4f6f9;
  --gray-200: #e8ecf2;
  --gray-500: #6b7280;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 58, 92, 0.12);
  --radius: 14px;
  --font: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--charcoal);
  background: linear-gradient(165deg, var(--gray-100) 0%, var(--white) 45%, #eef2f8 100%);
  min-height: 100vh;
}

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

.wrap {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  min-height: 4.5rem;
}

@media (min-width: 1024px) {
  .header-inner {
    min-height: 5.5rem;
    padding: 0.65rem 0;
  }
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 88px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .brand-logo {
    height: 112px;
    max-width: 520px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 72px;
    max-width: 300px;
  }
}

.header-phone {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-deep);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--orange);
  transition: background 0.15s, color 0.15s;
}

.header-phone:hover,
.header-phone:focus-visible {
  background: var(--orange);
  color: var(--white);
}

/* Hero */
.hero {
  padding: 2.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr min(480px, 42%);
    gap: 3rem;
    align-items: center;
  }
}

.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 0.75rem;
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  font-style: italic;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 36ch;
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid rgba(26, 58, 92, 0.08);
}

@media (min-width: 540px) {
  .form-card {
    padding: 2rem 2rem 1.75rem;
  }
}

.progress {
  margin-bottom: 1.75rem;
}

.progress-track {
  height: 4px;
  background: var(--gray-200);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--blue-mid), var(--orange));
  border-radius: 999px;
  transition: width 0.35s ease;
}

.step-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}

.step-dots li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  flex: 1;
  min-width: 0;
}

.dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.8rem;
  background: var(--gray-200);
  color: var(--gray-500);
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.dot.is-active {
  background: var(--blue-deep);
  color: var(--white);
}

.dot.is-done {
  background: var(--orange);
  color: var(--white);
}

.form-card form {
  margin: 0;
}

.step-panel {
  margin: 0;
  padding: 0;
  border: 0;
  min-height: 1px;
}

.step-panel[hidden] {
  display: none !important;
}

.panel-title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: var(--blue-deep);
  font-weight: 700;
}

.panel-hint {
  margin: 0 0 1.25rem;
  color: var(--gray-500);
  font-size: 0.95rem;
}

.options {
  display: grid;
  gap: 0.65rem;
}

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

@media (min-width: 480px) {
  .grid-check {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (min-width: 480px) {
  .grid-radio {
    grid-template-columns: 1fr 1fr;
  }
}

.option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.option:hover {
  border-color: rgba(232, 108, 31, 0.45);
  background: var(--white);
}

.option:has(:checked) {
  border-color: var(--blue-deep);
  background: rgba(26, 58, 92, 0.06);
  box-shadow: 0 0 0 1px var(--blue-deep);
}

.option input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.row-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.optional {
  font-weight: 400;
  color: var(--gray-500);
}

.field input,
.field textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.15);
}

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

.field-error {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #b42318;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.btn {
  font: inherit;
  font-weight: 600;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

a.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  margin-left: auto;
}

.page-home .home-hero-actions .btn-primary {
  margin-left: 0;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--gray-200);
  margin-right: auto;
  margin-left: 0;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--blue-deep);
  background: rgba(26, 58, 92, 0.05);
}

.form-actions:has(#btn-back[hidden]) .btn-primary {
  margin-left: auto;
}

.form-footnote {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.45;
}

.site-footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.site-footer p {
  margin: 0;
}

/* Thank-you state */
.form-card.is-success .progress,
.form-card.is-success form {
  display: none;
}

.success-message {
  display: none;
  text-align: center;
  padding: 2rem 0.5rem;
}

.form-card.is-success .success-message {
  display: block;
}

.success-message h2 {
  color: var(--blue-deep);
  margin: 0 0 0.5rem;
}

.success-message p {
  color: var(--gray-500);
  margin: 0;
}

/* —— Site navigation —— */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--gray-100);
  cursor: pointer;
  color: inherit;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 1.25rem;
  margin: 0 auto;
  background: var(--blue-deep);
  border-radius: 1px;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.75rem 1rem 1rem;
  box-shadow: 0 12px 30px rgba(26, 58, 92, 0.08);
  z-index: 30;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-deep);
  padding: 0.5rem 0.35rem;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(232, 108, 31, 0.12);
  color: var(--blue-deep);
  outline: none;
}

.site-header.is-open .site-nav {
  display: flex;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    position: static;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    width: auto;
  }

  .site-nav a {
    padding: 0.45rem 0.75rem;
    font-size: 0.88rem;
  }
}

.header-cta {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue-deep);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--orange);
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--orange);
  color: var(--white);
}

@media (max-width: 899px) {
  .header-cta {
    display: none;
  }
}

.header-inner {
  flex-wrap: wrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

@media (max-width: 899px) {
  .header-actions {
    flex: 1;
    justify-content: flex-end;
  }
}

/* —— Home: services grid —— */
.page-intro {
  padding: 2rem 0 1rem;
}

.page-intro .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 0.75rem;
}

.page-intro h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-intro .lead {
  max-width: 52ch;
  margin: 0;
}

.services-section {
  padding: 1rem 0 3.5rem;
}

.services-section h2 {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26, 58, 92, 0.08);
  box-shadow: 0 10px 28px rgba(26, 58, 92, 0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26, 58, 92, 0.12);
  outline: none;
}

.service-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.service-card-body h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--blue-deep);
}

.service-card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-500);
  flex: 1;
}

.service-card-cta {
  margin-top: 0.65rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
}

.trust-strip {
  padding: 1.5rem 0 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.trust-strip strong {
  color: var(--blue-deep);
}

/* —— Home page (index) —— */
.page-home .home-hero {
  position: relative;
  padding: 2.25rem 0 2.75rem;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(232, 108, 31, 0.09) 0%, transparent 55%),
    radial-gradient(90% 60% at 0% 100%, rgba(26, 58, 92, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
  border-bottom: 1px solid var(--gray-200);
}

.page-home .home-hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .page-home .home-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.75rem;
  }
}

.page-home .home-hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 0.75rem;
}

.page-home .home-hero-copy h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  font-style: italic;
  color: var(--blue-deep);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.page-home .home-hero-copy .lead {
  margin: 0 0 1.35rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--gray-500);
  max-width: 38rem;
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.page-home .home-hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-mid);
}

.page-home .home-hero-points li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.page-home .home-hero-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.page-home .home-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 960px) {
  .page-home .home-hero-visual {
    align-items: stretch;
  }
}

.page-home .home-hero-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(26, 58, 92, 0.1);
  box-shadow: var(--shadow);
}

.page-home .home-hero-panel-title {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.page-home .home-hero-panel-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.page-home .home-hero-panel-steps li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.page-home .home-hero-panel-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--blue-deep);
  color: var(--white);
  flex-shrink: 0;
}

.page-home .home-hero-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26, 58, 92, 0.1);
  box-shadow: 0 20px 50px rgba(26, 58, 92, 0.12);
  aspect-ratio: 4 / 3;
}

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

.page-home .home-stats {
  padding: 1.35rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.page-home .home-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

@media (max-width: 520px) {
  .page-home .home-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

.page-home .home-stat {
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.page-home .home-stat-num {
  display: block;
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--blue-deep);
  line-height: 1.1;
}

.page-home .home-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-deep);
  border: 2px solid var(--blue-deep);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(26, 58, 92, 0.06);
  border-color: var(--blue-deep);
  outline: none;
}

.section-head {
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 38rem;
}

.services-section .section-head h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.home-steps .section-head h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.section-sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-500);
}

.page-home .services-section {
  padding-top: 2.5rem;
}

.service-card-media {
  overflow: hidden;
  position: relative;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26, 58, 92, 0.12) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover .service-card-media::after,
.service-card:focus-visible .service-card-media::after {
  opacity: 1;
}

.service-card-media img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

@media (min-width: 640px) {
  .service-card-media img {
    height: 176px;
  }
}

.service-card:hover .service-card-media img,
.service-card:focus-visible .service-card-media img {
  transform: scale(1.05);
}

.page-home .home-steps {
  padding: 3rem 0 3.25rem;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 45%);
}

.page-home .home-steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .page-home .home-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.page-home .home-step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.4rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.06);
}

.page-home .home-step-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.page-home .home-step-title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--blue-deep);
}

.page-home .home-step-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-500);
}

.page-home .home-cta-band {
  padding: 2.25rem 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #142a42 100%);
  color: rgba(255, 255, 255, 0.92);
}

.page-home .home-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .page-home .home-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.page-home .home-cta-copy h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--white);
}

.page-home .home-cta-copy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36ch;
}

.page-home .home-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-on-dark {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  transition: background 0.15s, border-color 0.15s;
}

.btn-on-dark:hover,
.btn-on-dark:focus-visible {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  outline: none;
}

.btn-ghost-on-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  transition: border-color 0.15s, background 0.15s;
}

.btn-ghost-on-dark:hover,
.btn-ghost-on-dark:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

/* —— Split layout (category quote pages) —— */
.split-page {
  padding: 1.5rem 0 3rem;
}

.split-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .split-grid {
    grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
    gap: 2.25rem;
    align-items: stretch;
  }
}

.split-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
  background: var(--gray-200);
  border: 1px solid rgba(26, 58, 92, 0.08);
}

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

@media (min-width: 900px) {
  .split-visual {
    min-height: 100%;
  }

  .split-visual img {
    min-height: 420px;
  }
}

.split-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 58, 92, 0.15) 0%, rgba(26, 58, 92, 0.55) 100%);
  pointer-events: none;
}

.split-visual-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.25rem 1.35rem;
  color: var(--white);
}

.split-visual-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  opacity: 0.95;
}

.split-visual-text h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
}

.split-visual-text p {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0.95;
}

.split-form-col .form-card {
  height: 100%;
}

.breadcrumb-row {
  margin-bottom: 1rem;
}

.breadcrumb-row a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-mid);
  text-decoration: none;
}

.breadcrumb-row a:hover,
.breadcrumb-row a:focus-visible {
  text-decoration: underline;
}

/* —— Legal pages —— */
.legal-page {
  padding: 2rem 0 3.5rem;
  max-width: 900px;
}

.legal-page h2 {
  font-size: 1.75rem;
  color: var(--blue-deep);
  margin: 0 0 1rem;
}

.legal-page h4 {
  font-size: 1rem;
  color: var(--blue-deep);
  margin: 1.75rem 0 0.5rem;
}

.legal-page h5 {
  font-size: 1rem;
  color: var(--blue-deep);
  margin: 1.25rem 0 0.75rem;
  font-weight: 700;
}

.legal-page p,
.legal-page li {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.55;
}

.legal-page .p-0 {
  padding: 0;
}

.legal-page #px-bli ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .legal-page #px-bli ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .legal-page #px-bli ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.legal-page #px-bli li {
  padding: 0.15rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.875rem;
}

.legal-page a {
  color: var(--blue-mid);
  font-weight: 600;
}

/* —— Footer (dark band + pill links) —— */
.site-footer.site-footer-extended {
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer-extended {
  margin-top: 2rem;
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.88);
}

.footer-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--orange), #f4a261);
}

.footer-surface {
  display: grid;
  gap: 1.75rem;
  padding: 2rem 0 1.75rem;
}

@media (min-width: 800px) {
  .footer-surface {
    grid-template-columns: minmax(200px, 1.15fr) minmax(0, 2fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.footer-brand-block {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 800px) {
  .footer-brand-block {
    border-bottom: 0;
    padding-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 2rem;
  }
}

.footer-logo-text {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.footer-domain {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.footer-tagline {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 28ch;
}

.footer-nav-block {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.footer-nav-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.5rem;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-pills a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.footer-pills a:hover,
.footer-pills a:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  outline: none;
}

.footer-copyright-bar {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-copyright-bar p {
  margin: 0;
}

.footer-copy-sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

/* Legacy class names used on some pages */
.footer-grid {
  display: contents;
}

.footer-muted {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

