/* =====================================================================
   Owners Quote — design system (SPEC §8)
   Loaded after Bootstrap 5.3. Mobile-first.
   ===================================================================== */

:root {
  --oq-navy: #14395B;
  --oq-navy-700: #0F2C47;
  --oq-navy-900: #0A1E31;
  --oq-orange: #F26A21;        /* decorative fills / icons only (3.06:1 on white, not for text) */
  --oq-orange-600: #D95A16;    /* decorative fills / icons only */
  --oq-orange-650: #C94A0A;    /* primary button fill: white text = 4.7:1 (WCAG AA) */
  --oq-orange-700: #B9430A;    /* orange text on white / light tints: 5.4:1 on white, 4.6:1 on orange-100 */
  --oq-orange-100: #FDE8DC;
  --oq-green: #1E9E63;
  --oq-sky: #E8F1FA;
  --oq-ink: #1B2430;
  --oq-ink-600: #4A5563;
  --oq-ink-400: #6B7685;       /* borders, placeholders, separators (4.6:1 on white); use ink-600 for readable text */
  --oq-line: #E3E8EF;
  --oq-bg: #F7F8FA;
  --oq-white: #FFFFFF;
  --oq-red: #C8361F;
  --oq-red-100: #FCE8E4;
  --oq-radius: 14px;
  --oq-radius-sm: 10px;
  --oq-shadow: 0 10px 30px rgba(20, 57, 91, .10);
  --oq-shadow-sm: 0 2px 10px rgba(20, 57, 91, .08);
  --oq-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --oq-callbar-h: 72px;
  --oq-header-h: 64px;
  --oq-section-y: clamp(3rem, 2rem + 3vw, 5.5rem);
  --oq-hero-overlap: 3rem;

  /* Bootstrap overrides */
  --bs-body-font-family: var(--oq-font);
  --bs-body-color: var(--oq-ink);
  --bs-body-bg: var(--oq-white);
  --bs-link-color: var(--oq-navy);
  --bs-link-hover-color: var(--oq-navy-700);
  --bs-border-color: var(--oq-line);
  --bs-primary: var(--oq-navy);
  --bs-focus-ring-color: rgba(20, 57, 91, .25);
}

/* ---------- Reset tweaks ---------- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--oq-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--oq-ink);
  background: var(--oq-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

[id] {
  scroll-margin-top: 1rem;
}

@media (min-width: 992px) {
  [id] {
    scroll-margin-top: calc(var(--oq-header-h) + 1rem);
  }
}

img, svg {
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
  text-underline-offset: .15em;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid rgba(20, 57, 91, .45);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 3px solid rgba(242, 106, 33, .55);
  outline-offset: 2px;
  box-shadow: none;
}

/* Skip-link target (main has tabindex="-1"); no ring around the whole page body. */
main:focus,
main:focus-visible {
  outline: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4 {
  font-family: var(--oq-font);
  font-weight: 700;
  color: var(--oq-navy-900);
  line-height: 1.15;
  letter-spacing: -.015em;
}

h1, .h1 {
  font-size: clamp(1.9rem, 1.35rem + 2.4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.08;
}

h2, .h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

h3, .h3 {
  font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem);
}

h4, .h4 {
  font-size: 1.05rem;
}

p {
  margin-bottom: 1rem;
}

.oq-lead {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem);
  line-height: 1.55;
  color: var(--oq-ink-600);
}

.oq-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--oq-orange-700);
  margin-bottom: .75rem;
}

.oq-eyebrow--light {
  color: #FFB38A;
}

.oq-muted {
  color: var(--oq-ink-600);
}

.oq-small {
  font-size: .875rem;
}

.oq-xs {
  font-size: .8rem;
}

.oq-section-head {
  max-width: 42rem;
  margin-bottom: clamp(1.75rem, 1.25rem + 2vw, 3rem);
}

.oq-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.oq-section-head h2 {
  margin-bottom: .6rem;
}

.oq-section-head p {
  color: var(--oq-ink-600);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ---------- Layout / sections ---------- */
.oq-section {
  padding: var(--oq-section-y) 0;
}

.oq-section--alt {
  background: var(--oq-bg);
}

.oq-section--sky {
  background: var(--oq-sky);
}

.oq-section--navy {
  background: linear-gradient(135deg, var(--oq-navy-900) 0%, var(--oq-navy) 55%, #1C4E7C 100%);
  color: #fff;
}

.oq-section--navy h2,
.oq-section--navy h3 {
  color: #fff;
}

.oq-section--navy p {
  color: rgba(255, 255, 255, .82);
}

.oq-section--tight {
  padding: clamp(2rem, 1.5rem + 1.5vw, 3rem) 0;
}

.oq-narrow {
  max-width: 46rem;
}

.oq-prose {
  max-width: 44rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--oq-ink-600);
}

.oq-prose h2,
.oq-prose h3 {
  color: var(--oq-navy-900);
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.oq-prose h2:first-child,
.oq-prose h3:first-child {
  margin-top: 0;
}

.oq-prose ul,
.oq-prose ol {
  padding-left: 1.25rem;
}

.oq-prose li + li {
  margin-top: .35rem;
}

.oq-divider {
  border: 0;
  border-top: 1px solid var(--oq-line);
  margin: 0;
  opacity: 1;
}

/* ---------- Icons ---------- */
.oq-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.oq-icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--oq-sky);
  color: var(--oq-navy);
  font-size: 1.5rem;
  flex: 0 0 auto;
}

.oq-icon-tile--orange {
  background: var(--oq-orange-100);
  color: var(--oq-orange-600);
}

.oq-icon-tile--navy {
  background: var(--oq-navy);
  color: #fff;
}

.oq-icon-tile--light {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.oq-icon-tile--sm {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 1.2rem;
}

.oq-icon-tile--lg {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 1.85rem;
}

/* ---------- Buttons ---------- */
.btn-oq-primary,
.btn-oq-call,
.btn-oq-outline,
.btn-oq-light {
  --bs-btn-padding-y: .8rem;
  --bs-btn-padding-x: 1.4rem;
  --bs-btn-font-size: 1.0625rem;
  --bs-btn-font-weight: 600;
  --bs-btn-border-radius: 12px;
  --bs-btn-border-width: 1.5px;
  --bs-btn-line-height: 1.3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  white-space: normal;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.btn-oq-primary:hover,
.btn-oq-call:hover,
.btn-oq-outline:hover,
.btn-oq-light:hover {
  text-decoration: none;
}

.btn-oq-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--oq-orange-650);
  --bs-btn-border-color: var(--oq-orange-650);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--oq-orange-700);
  --bs-btn-hover-border-color: var(--oq-orange-700);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--oq-orange-700);
  --bs-btn-active-border-color: var(--oq-orange-700);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--oq-orange-650);
  --bs-btn-disabled-border-color: var(--oq-orange-650);
  box-shadow: 0 6px 18px rgba(201, 74, 10, .28);
}

.btn-oq-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(201, 74, 10, .34);
}

.btn-oq-call {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--oq-navy);
  --bs-btn-border-color: var(--oq-navy);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--oq-navy-700);
  --bs-btn-hover-border-color: var(--oq-navy-700);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--oq-navy-900);
  --bs-btn-active-border-color: var(--oq-navy-900);
}

.btn-oq-outline {
  --bs-btn-color: var(--oq-navy);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--oq-navy);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--oq-navy);
  --bs-btn-hover-border-color: var(--oq-navy);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--oq-navy-700);
  --bs-btn-active-border-color: var(--oq-navy-700);
}

.btn-oq-light {
  --bs-btn-color: var(--oq-navy);
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: var(--oq-navy-900);
  --bs-btn-hover-bg: var(--oq-sky);
  --bs-btn-hover-border-color: var(--oq-sky);
  --bs-btn-active-color: var(--oq-navy-900);
  --bs-btn-active-bg: var(--oq-sky);
  --bs-btn-active-border-color: var(--oq-sky);
}

.btn-oq-ghost-light {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(255, 255, 255, .1);
  --bs-btn-border-color: rgba(255, 255, 255, .45);
  --bs-btn-hover-color: var(--oq-navy);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-active-color: var(--oq-navy);
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #fff;
}

.btn-oq-sm {
  --bs-btn-padding-y: .5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: .95rem;
  min-height: 44px;
  border-radius: 10px;
}

.btn-oq-lg {
  --bs-btn-padding-y: .95rem;
  --bs-btn-padding-x: 1.75rem;
  --bs-btn-font-size: 1.125rem;
  min-height: 56px;
}

.btn .oq-icon {
  width: 1.2em;
  height: 1.2em;
}

@media (max-width: 767.98px) {
  .btn-oq-primary,
  .btn-oq-call,
  .btn-oq-outline,
  .btn-oq-light,
  .btn-oq-ghost-light {
    width: 100%;
  }

  .btn-oq-sm,
  .oq-header .btn,
  .oq-callbar .btn {
    width: auto;
  }
}

.oq-cta-row {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

@media (min-width: 768px) {
  .oq-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.oq-btn-sub {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  opacity: .85;
}

/* ---------- Cards ---------- */
.oq-card {
  background: var(--oq-white);
  border: 1px solid var(--oq-line);
  border-radius: var(--oq-radius);
  box-shadow: var(--oq-shadow-sm);
}

.oq-card--flat {
  box-shadow: none;
}

.oq-card--pad {
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
}

.oq-card--hover {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.oq-card--hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--oq-shadow);
  border-color: #D6DEE8;
}

/* ---------- Header ---------- */
.oq-header {
  background: var(--oq-white);
  border-bottom: 1px solid var(--oq-line);
  position: relative;
  z-index: 1030;
}

@media (min-width: 992px) {
  .oq-header {
    position: sticky;
    top: 0;
  }
}

.oq-header__inner {
  min-height: var(--oq-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.oq-header__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.oq-header__brand:hover {
  text-decoration: none;
}

.oq-logo {
  height: 30px;
  width: auto;
  overflow: visible;
}

.oq-logo--lg {
  height: 36px;
}

.oq-header__nav {
  display: none;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.oq-header__nav a {
  display: inline-block;
  padding: .5rem .8rem;
  color: var(--oq-ink-600);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 8px;
}

.oq-header__nav a:hover {
  color: var(--oq-navy);
  background: var(--oq-bg);
  text-decoration: none;
}

.oq-header__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.oq-header__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  min-width: 44px;
  padding: 0 .75rem;
  border-radius: 10px;
  color: var(--oq-navy);
  background: var(--oq-sky);
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
}

.oq-header__phone:hover {
  background: #D8E6F5;
  text-decoration: none;
  color: var(--oq-navy-900);
}

.oq-header__phone .oq-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.oq-header__phone-text {
  display: none;
}

.oq-header__cta {
  display: none;
}

.oq-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--oq-line);
  border-radius: 10px;
  background: #fff;
  color: var(--oq-navy);
  font-size: 1.35rem;
}

.oq-header__toggle .oq-icon--close {
  display: none;
}

.oq-header__toggle[aria-expanded="true"] .oq-icon--menu {
  display: none;
}

.oq-header__toggle[aria-expanded="true"] .oq-icon--close {
  display: block;
}

.oq-mobile-nav {
  border-top: 1px solid var(--oq-line);
  background: #fff;
}

.oq-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: .5rem 0;
}

.oq-mobile-nav a {
  display: block;
  padding: .85rem 0;
  font-weight: 600;
  color: var(--oq-ink);
  border-bottom: 1px solid var(--oq-line);
}

.oq-mobile-nav li:last-child a {
  border-bottom: 0;
}

@media (min-width: 576px) {
  .oq-header__phone-text {
    display: inline;
  }
}

@media (min-width: 992px) {
  .oq-header__nav {
    display: flex;
  }

  .oq-header__cta {
    display: inline-flex;
  }

  .oq-header__toggle,
  .oq-mobile-nav {
    display: none !important;
  }
}

/* ---------- Hero ---------- */
.oq-hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, var(--oq-navy-900) 0%, var(--oq-navy) 55%, #1C4E7C 100%);
  padding: clamp(2rem, 1.5rem + 2vw, 4.5rem) 0 clamp(2.5rem, 2rem + 2vw, 4.5rem);
  isolation: isolate;
}

.oq-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.oq-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M0 47.5h48M47.5 0v48' stroke='%23ffffff' stroke-opacity='.10' fill='none'/%3E%3C/svg%3E");
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .15));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .15));
}

.oq-hero__bg::after {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  right: -18vw;
  top: -30vw;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(242, 106, 33, .22), rgba(242, 106, 33, 0));
}

.oq-hero h1 {
  color: #fff;
  margin-bottom: .9rem;
}

.oq-hero .oq-lead {
  color: rgba(255, 255, 255, .84);
  margin-bottom: 1.5rem;
}

.oq-hero__highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem .9rem;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
}

.oq-hero__highlights li {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.oq-hero__highlights .oq-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--oq-green);
  color: #fff;
  font-size: .85rem;
  flex: 0 0 auto;
}

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

/* Landing hero: CSS grid so the navy band only spans the copy row on desktop while the
   form card spans both rows (classic overlapping lead-gen layout). Mobile: copy, card, then
   trust bar + chips; the navy band stops 3rem above the card's bottom edge. */
.oq-hero--landing {
  background: var(--oq-white);
  color: var(--oq-ink);
  padding: 0;
  overflow-x: clip;
}

.oq-hero--landing .oq-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: auto;
}

.oq-hero--landing .oq-hero__bg {
  position: relative;
  inset: auto;
  z-index: 0;
  grid-column: 1 / -1;
  grid-row: 1 / 3;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: var(--oq-hero-overlap);
  background: linear-gradient(135deg, var(--oq-navy-900) 0%, var(--oq-navy) 55%, #1C4E7C 100%);
  overflow: hidden;
}

.oq-hero--landing .oq-hero__copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  color: #fff;
  padding: clamp(2rem, 1.5rem + 2vw, 3.5rem) 0 0;
}

.oq-hero--landing .oq-hero__form {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  margin-top: 2rem;
}

.oq-hero--landing .oq-hero__below {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 3;
  padding: 2rem 0 clamp(2rem, 1.5rem + 1.5vw, 3rem);
}

.oq-hero__steps {
  margin-top: 2.25rem;
}

.oq-hero__steps .oq-eyebrow {
  margin-bottom: .35rem;
}

@media (min-width: 992px) {
  .oq-hero--landing .oq-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    grid-template-rows: auto 1fr;
    column-gap: 3rem;
  }

  .oq-hero--landing .oq-hero__bg {
    grid-row: 1 / 2;
    margin-bottom: 0;
  }

  .oq-hero--landing .oq-hero__copy {
    grid-column: 1;
    grid-row: 1;
    padding: 3.5rem 2rem 3.5rem 0;
  }

  .oq-hero--landing .oq-hero__form {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: start;
    margin-top: 0;
    padding: 3.5rem 0 0;
  }

  .oq-hero--landing .oq-hero__below {
    grid-column: 1;
    grid-row: 2;
    padding: 2.5rem 2rem 3rem 0;
  }
}

@media (min-width: 1200px) {
  .oq-hero--landing .oq-hero__grid {
    column-gap: 4rem;
  }
}

/* Home hero (no form) */
.oq-hero--home {
  text-align: left;
}

.oq-hero--home .oq-hero__copy {
  max-width: 44rem;
}

.oq-hero--home .oq-hero__art {
  display: none;
}

@media (min-width: 992px) {
  .oq-hero--home .row {
    align-items: center;
  }

  .oq-hero--home .oq-hero__art {
    display: block;
  }
}

.oq-hero__note {
  font-size: .875rem;
  color: rgba(255, 255, 255, .72);
  margin: .85rem 0 0;
}

/* Decorative house art (pure SVG, no photos) */
.oq-house-art {
  width: 100%;
  max-width: 440px;
  height: auto;
  margin-left: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .25));
}

/* ---------- Form card ---------- */
.oq-form-card {
  background: #fff;
  color: var(--oq-ink);
  border-radius: var(--oq-radius);
  box-shadow: var(--oq-shadow);
  border: 1px solid var(--oq-line);
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
}

.oq-form-card__head {
  margin-bottom: 1.1rem;
}

.oq-form-card__head h2,
.oq-form-card__head h3 {
  font-size: 1.35rem;
  margin-bottom: .3rem;
  color: var(--oq-navy-900);
}

.oq-form-card__head p {
  color: var(--oq-ink-600);
  font-size: .95rem;
  margin: 0;
}

.oq-form-card__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--oq-orange-100);
  color: var(--oq-orange-700);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}

/* ---------- Form controls ---------- */
.oq-form .form-label,
.oq-form .oq-legend {
  font-size: .9rem;
  font-weight: 600;
  color: var(--oq-ink);
  margin-bottom: .35rem;
}

.oq-form .oq-optional {
  font-weight: 500;
  color: var(--oq-ink-600);
}

.oq-form .form-control,
.oq-form .form-select {
  min-height: 48px;
  font-size: 16px;
  font-family: var(--oq-font);
  color: var(--oq-ink);
  border: 1.5px solid var(--oq-line);
  border-radius: var(--oq-radius-sm);
  padding: .6rem .85rem;
  background-color: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.oq-form textarea.form-control {
  min-height: 88px;
  line-height: 1.45;
}

.oq-form .form-control::placeholder {
  color: var(--oq-ink-400);
}

.oq-form .form-control:focus,
.oq-form .form-select:focus {
  border-color: var(--oq-navy);
  box-shadow: 0 0 0 4px rgba(20, 57, 91, .14);
  outline: none;
}

.oq-form .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2314395B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  background-position: right .75rem center;
  padding-right: 2.6rem;
}

.oq-form .oq-field {
  margin-bottom: .95rem;
}

.oq-form .row > [class*="col-"] > .oq-field:last-child {
  margin-bottom: .95rem;
}

/* Validation (unobtrusive) */
.field-validation-error {
  display: block;
  color: var(--oq-red);
  font-size: .825rem;
  font-weight: 500;
  margin-top: .35rem;
}

.field-validation-valid {
  display: none;
}

.oq-form .input-validation-error,
.oq-form .input-validation-error:focus {
  border-color: var(--oq-red);
  background-color: #FFFBFA;
}

.oq-form .input-validation-error:focus {
  box-shadow: 0 0 0 4px rgba(200, 54, 31, .14);
}

.validation-summary-errors {
  background: var(--oq-red-100);
  border: 1px solid #F3C2B8;
  color: var(--oq-red);
  border-radius: var(--oq-radius-sm);
  padding: .75rem 1rem;
  font-size: .9rem;
  margin-bottom: 1rem;
}

.validation-summary-errors ul {
  margin: 0;
  padding-left: 1.1rem;
}

.validation-summary-valid {
  display: none;
}

/* Choice pills (radio / checkbox questions) */
.oq-choices {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  border: 0;
  padding: 0;
  margin: 0;
}

.oq-choice {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: .5rem .9rem;
  border: 1.5px solid var(--oq-line);
  border-radius: 999px;
  background: #fff;
  font-size: .95rem;
  font-weight: 500;
  color: var(--oq-ink);
  cursor: pointer;
  user-select: none;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}

.oq-choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.oq-choice__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--oq-ink-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: border-color .15s ease, background-color .15s ease;
}

.oq-choice--check .oq-choice__dot {
  border-radius: 5px;
}

.oq-choice__dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  transition: transform .12s ease;
}

.oq-choice--check .oq-choice__dot::after {
  width: 10px;
  height: 6px;
  border-radius: 0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: transparent;
  transform: rotate(-45deg) scale(0);
  margin-top: -2px;
}

.oq-choice:hover {
  border-color: #C9D4E0;
  background: var(--oq-bg);
}

.oq-choice:has(input:checked) {
  border-color: var(--oq-navy);
  background: var(--oq-sky);
  color: var(--oq-navy-900);
}

.oq-choice input:checked + .oq-choice__dot {
  border-color: var(--oq-navy);
  background: var(--oq-navy);
}

.oq-choice input:checked + .oq-choice__dot::after {
  transform: scale(1);
}

.oq-choice--check input:checked + .oq-choice__dot::after {
  transform: rotate(-45deg) scale(1);
}

.oq-choice:has(input:focus-visible) {
  outline: 3px solid rgba(20, 57, 91, .45);
  outline-offset: 2px;
}

.oq-choices:has(.input-validation-error) .oq-choice {
  border-color: #EBA99C;
}

/* Consent block */
.oq-consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  background: var(--oq-bg);
  border: 1px solid var(--oq-line);
  border-radius: var(--oq-radius-sm);
  padding: .8rem .9rem;
  margin: .25rem 0 1rem;
}

.oq-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: .1rem;
  border: 1.5px solid var(--oq-ink-400);
  border-radius: 5px;
  accent-color: var(--oq-navy);
  cursor: pointer;
}

.oq-consent input[type="checkbox"]:checked {
  background-color: var(--oq-navy);
  border-color: var(--oq-navy);
}

.oq-consent label {
  font-size: .78rem;
  line-height: 1.5;
  color: var(--oq-ink-600);
  cursor: pointer;
}

.oq-consent label a {
  color: var(--oq-navy);
  font-weight: 600;
  text-decoration: underline;
}

.oq-consent.is-invalid,
.oq-consent:has(.input-validation-error) {
  border-color: var(--oq-red);
  background: #FFFBFA;
}

.oq-form__submit {
  width: 100%;
}

.oq-form__micro {
  margin: .75rem 0 0;
  text-align: center;
  font-size: .8rem;
  color: var(--oq-ink-600);
}

.oq-form__micro .oq-dot {
  margin: 0 .35rem;
  color: var(--oq-ink-400);
}

.oq-form__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin: .4rem 0 0;
  font-size: .78rem;
  color: var(--oq-ink-600);
}

.oq-form__secure .oq-icon {
  width: 1rem;
  height: 1rem;
}

.oq-visually-hidden {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Loading state */
.btn.is-loading {
  position: relative;
  pointer-events: none;
  opacity: .85;
}

.btn.is-loading::after {
  content: "";
  width: 1.1em;
  height: 1.1em;
  border: 2px solid rgba(255, 255, 255, .5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: oq-spin .8s linear infinite;
  margin-left: .25rem;
}

@keyframes oq-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Trust bar ---------- */
.oq-trustbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.oq-trustbar__item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--oq-navy-900);
}

.oq-trustbar__item .oq-icon-tile {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 1.2rem;
}

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

  .oq-trustbar--narrow {
    grid-template-columns: 1fr 1fr;
  }
}

.oq-trustbar--light .oq-trustbar__item {
  color: #fff;
}

.oq-trustbar--light .oq-icon-tile {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

/* ---------- Chips ---------- */
.oq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.oq-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--oq-line);
  color: var(--oq-ink);
  font-size: .9rem;
  font-weight: 500;
}

.oq-chip .oq-icon {
  width: 1rem;
  height: 1rem;
  color: var(--oq-green);
}

.oq-chip--sky {
  background: var(--oq-sky);
  border-color: transparent;
  color: var(--oq-navy-900);
}

/* ---------- Steps ---------- */
.oq-steps {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: oq-step;
}

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

.oq-step {
  position: relative;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--oq-line);
  border-radius: var(--oq-radius);
  box-shadow: var(--oq-shadow-sm);
}

.oq-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--oq-navy);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 6px var(--oq-sky);
}

.oq-step h3 {
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.oq-step p {
  color: var(--oq-ink-600);
  margin: 0;
  font-size: .95rem;
}

.oq-steps--compact .oq-step {
  padding: 1.1rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.oq-steps--compact .oq-step__num {
  margin-bottom: 0;
  width: 38px;
  height: 38px;
  font-size: 1rem;
  box-shadow: 0 0 0 4px var(--oq-sky);
}

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

/* ---------- Benefits ---------- */
.oq-benefits {
  display: grid;
  gap: 1rem;
}

@media (min-width: 576px) {
  .oq-benefits {
    grid-template-columns: 1fr 1fr;
  }
}

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

.oq-benefit {
  background: #fff;
  border: 1px solid var(--oq-line);
  border-radius: var(--oq-radius);
  padding: 1.5rem;
  height: 100%;
}

.oq-benefit .oq-icon-tile {
  margin-bottom: 1rem;
}

.oq-benefit h3 {
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.oq-benefit p {
  color: var(--oq-ink-600);
  margin: 0;
  font-size: .95rem;
}

/* ---------- Service cards ---------- */
.oq-services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .oq-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .oq-services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.oq-service-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.35rem;
  height: 100%;
  color: var(--oq-ink);
}

.oq-service-card:hover {
  text-decoration: none;
  color: var(--oq-ink);
}

.oq-service-card h3 {
  font-size: 1.1rem;
  margin: 0;
}

.oq-service-card p {
  margin: 0;
  color: var(--oq-ink-600);
  font-size: .92rem;
  flex: 1 1 auto;
}

.oq-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 700;
  color: var(--oq-orange-700);
  font-size: .92rem;
}

.oq-service-card:hover .oq-service-card__link {
  text-decoration: underline;
}

/* ---------- Cost table ---------- */
.oq-cost {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--oq-line);
  border-radius: var(--oq-radius);
  overflow: hidden;
}

.oq-cost th,
.oq-cost td {
  padding: .9rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--oq-line);
  font-size: .95rem;
}

.oq-cost thead th {
  background: var(--oq-navy);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-bottom: 0;
}

.oq-cost tbody tr:last-child td {
  border-bottom: 0;
}

.oq-cost tbody tr:nth-child(even) td {
  background: var(--oq-bg);
}

.oq-cost td:last-child {
  font-weight: 700;
  color: var(--oq-navy-900);
  white-space: nowrap;
}

.oq-cost-wrap {
  overflow-x: auto;
}

.oq-disclaimer {
  font-size: .82rem;
  color: var(--oq-ink-600);
  margin: .75rem 0 0;
}

/* ---------- FAQ accordion ---------- */
.oq-faq .accordion-item {
  border: 1px solid var(--oq-line);
  border-radius: var(--oq-radius-sm) !important;
  margin-bottom: .65rem;
  background: #fff;
  overflow: hidden;
}

.oq-faq .accordion-button {
  font-family: var(--oq-font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--oq-navy-900);
  padding: 1rem 1.15rem;
  background: #fff;
  box-shadow: none;
  gap: .75rem;
  line-height: 1.35;
}

.oq-faq .accordion-button:not(.collapsed) {
  color: var(--oq-navy);
  background: var(--oq-sky);
}

.oq-faq .accordion-button:focus {
  box-shadow: none;
  outline: 3px solid rgba(20, 57, 91, .35);
  outline-offset: -3px;
}

.oq-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2314395B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  width: 1.2rem;
  height: 1.2rem;
  background-size: 1.2rem;
}

.oq-faq .accordion-body {
  padding: .25rem 1.15rem 1.15rem;
  color: var(--oq-ink-600);
  font-size: .97rem;
  line-height: 1.65;
  background: #fff;
}

.oq-faq .accordion-button:not(.collapsed) + .accordion-collapse .accordion-body {
  padding-top: 1rem;
}

/* ---------- CTA band ---------- */
.oq-cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--oq-radius);
  background: linear-gradient(135deg, var(--oq-navy-900), var(--oq-navy) 60%, #1C4E7C);
  color: #fff;
  padding: clamp(1.75rem, 1.5rem + 1.5vw, 3rem);
}

.oq-cta-band::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(242, 106, 33, .32), rgba(242, 106, 33, 0));
  pointer-events: none;
}

.oq-cta-band h2 {
  color: #fff;
  margin-bottom: .5rem;
}

.oq-cta-band p {
  color: rgba(255, 255, 255, .82);
  margin-bottom: 1.25rem;
}

/* ---------- Sticky call bar ---------- */
.oq-callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  padding: .6rem .85rem calc(.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--oq-line);
  box-shadow: 0 -6px 20px rgba(20, 57, 91, .10);
  transition: transform .25s ease, opacity .25s ease;
}

.oq-callbar .btn {
  min-height: 50px;
  --bs-btn-padding-y: .5rem;
  --bs-btn-padding-x: .6rem;
  --bs-btn-font-size: .98rem;
  border-radius: 11px;
}

.oq-callbar.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 992px) {
  .oq-callbar {
    display: none;
  }
}

@media (max-width: 991.98px) {
  body.has-callbar {
    padding-bottom: calc(var(--oq-callbar-h) + env(safe-area-inset-bottom, 0px));
  }
}

/* ---------- Footer ---------- */
.oq-footer {
  background: var(--oq-navy-900);
  color: rgba(255, 255, 255, .78);
  padding: clamp(2.5rem, 2rem + 2vw, 4rem) 0 1.5rem;
  font-size: .92rem;
}

.oq-footer a {
  color: rgba(255, 255, 255, .82);
}

.oq-footer a:hover {
  color: #fff;
}

.oq-footer h4,
.oq-footer .oq-footer__heading {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.oq-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oq-footer li + li {
  margin-top: .5rem;
}

.oq-footer__blurb {
  max-width: 22rem;
  margin: 1rem 0 1.25rem;
}

.oq-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
}

.oq-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

.oq-footer__bottom a {
  color: rgba(255, 255, 255, .7);
}

.oq-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.25rem;
  margin-bottom: .75rem;
}

.oq-footer--minimal {
  padding-top: 2rem;
}

/* ---------- Thank-you ---------- */
.oq-thanks {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.oq-thanks__mark {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--oq-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 12px rgba(30, 158, 99, .14), 0 0 0 24px rgba(30, 158, 99, .06);
  animation: oq-pop .45s cubic-bezier(.2, .9, .3, 1.3) both;
}

@keyframes oq-pop {
  from {
    transform: scale(.6);
    opacity: 0;
  }

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

/* ---------- Legal pages ---------- */
.oq-legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.oq-legal > * {
  min-width: 0;
}

.oq-legal__body {
  overflow-wrap: anywhere;
}

.oq-legal__body .table-responsive {
  margin: 1rem 0 1.5rem;
}

@media (min-width: 992px) {
  .oq-legal {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 3rem;
  }
}

.oq-legal__toc {
  position: sticky;
  top: calc(var(--oq-header-h) + 1rem);
  align-self: start;
}

.oq-legal__toc h2 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--oq-ink-600);
  margin-bottom: .75rem;
}

.oq-legal__toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.oq-legal__toc li {
  counter-increment: toc;
}

.oq-legal__toc a {
  display: flex;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .9rem;
  color: var(--oq-ink-600);
  border-bottom: 1px solid var(--oq-line);
}

.oq-legal__toc a::before {
  content: counter(toc) ".";
  color: var(--oq-ink-600);
  font-variant-numeric: tabular-nums;
  min-width: 1.4rem;
}

.oq-legal__toc a:hover {
  color: var(--oq-navy);
  text-decoration: none;
}

.oq-legal__meta {
  font-size: .9rem;
  color: var(--oq-ink-600);
}

.oq-legal__body h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  padding-top: .5rem;
}

.oq-legal__body section:first-of-type h2 {
  margin-top: 0;
}

.oq-legal__body {
  max-width: 46rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--oq-ink-600);
}

.oq-legal__body p,
.oq-legal__body li {
  color: var(--oq-ink-600);
}

.oq-legal__body ul {
  padding-left: 1.25rem;
}

/* ---------- Page header (simple pages) ---------- */
.oq-page-head {
  background: var(--oq-bg);
  border-bottom: 1px solid var(--oq-line);
  padding: clamp(2.25rem, 1.75rem + 2vw, 4rem) 0;
}

.oq-page-head h1 {
  margin-bottom: .5rem;
}

.oq-page-head p {
  max-width: 42rem;
  margin: 0;
  color: var(--oq-ink-600);
  font-size: 1.1rem;
}

/* ---------- Contact info list ---------- */
.oq-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.oq-info-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.oq-info-list strong {
  display: block;
  font-size: .85rem;
  color: var(--oq-ink-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.oq-info-list span,
.oq-info-list a {
  font-weight: 600;
  color: var(--oq-navy-900);
}

/* ---------- Error pages ---------- */
.oq-error {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.oq-error__code {
  font-size: clamp(4rem, 3rem + 6vw, 7rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--oq-sky);
  -webkit-text-stroke: 2px var(--oq-navy);
  margin-bottom: .5rem;
}

/* ---------- Utilities ---------- */
.oq-gap-1 { gap: .25rem; }
.oq-gap-2 { gap: .5rem; }
.oq-gap-3 { gap: 1rem; }
.oq-mt-6 { margin-top: 3rem; }
.oq-mb-6 { margin-bottom: 3rem; }
.oq-text-navy { color: var(--oq-navy) !important; }
.oq-text-orange { color: var(--oq-orange-700) !important; }
.oq-text-green { color: var(--oq-green) !important; }
.oq-bg-sky { background: var(--oq-sky) !important; }
.oq-bg-alt { background: var(--oq-bg) !important; }
.oq-fw-6 { font-weight: 600; }
.oq-fw-7 { font-weight: 700; }
.oq-nowrap { white-space: nowrap; }
.oq-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.oq-check-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-bottom: .5rem;
}
.oq-check-list .oq-icon {
  color: var(--oq-green);
  margin-top: .2rem;
}
.oq-inline-phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  white-space: nowrap;
}

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

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

@media print {
  .oq-header,
  .oq-footer,
  .oq-callbar,
  .oq-cta-band,
  .oq-form-card,
  .btn {
    display: none !important;
  }

  body {
    padding-bottom: 0 !important;
    color: #000;
  }

  .oq-hero {
    background: #fff !important;
    color: #000;
  }

  .oq-hero h1,
  .oq-hero .oq-lead {
    color: #000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: .8em;
  }
}

/* ---------- Lead form sections (1. {Service} Details / 2. Contact Information) ---------- */
.oq-form__section {
  padding-top: .25rem;
}

.oq-form__section + .oq-form__section {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--oq-line);
}

.oq-form__section-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 .9rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--oq-navy-900);
}

.oq-form__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--oq-navy);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1;
}

.oq-form__section .oq-field:last-child {
  margin-bottom: 0;
}
