:root {
  --navy: #1e3a5f;
  --ink: #102235;
  --steel: #5f6f7f;
  --warm-gray: #8b7e74;
  --warm-gray-soft: #eee9e4;
  --orange: #e67e22;
  --copper: #98571f;
  --green: #26735d;
  --field-paper: #f7f4ec;
  --cool-paper: #eef2ef;
  --paper: #fbfaf7;
  --line: #d8dedb;
  --white: #ffffff;
  --shadow: 0 16px 34px rgba(15, 35, 51, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--field-paper);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(rgba(251, 250, 247, 0.96), rgba(251, 250, 247, 0.96)),
    linear-gradient(rgba(30, 58, 95, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.045) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  border-bottom: 1px solid rgba(16, 34, 53, 0.12);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: block;
  width: 248px;
  max-width: min(46vw, 280px);
  height: auto;
}

.links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: #33465a;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 7px;
  font-weight: 850;
  white-space: nowrap;
}

.nav-cta {
  color: var(--white);
  background: var(--navy);
}

.button.primary {
  color: #17120d;
  background: var(--orange);
  border: 1px solid rgba(16, 34, 53, 0.18);
  box-shadow: inset 0 -2px 0 rgba(16, 34, 53, 0.16);
}

.button.secondary {
  color: var(--navy);
  border: 1px solid rgba(30, 58, 95, 0.25);
  background: var(--paper);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #2f6fed;
  outline-offset: 3px;
}

.button:focus-visible,
.nav-cta:focus-visible {
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.86),
    0 0 0 7px rgba(47, 111, 237, 0.72);
}

.links a:focus-visible {
  border-radius: 4px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process-step;
}

.process-list li {
  counter-increment: process-step;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.process-list li::before {
  content: counter(process-step);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #17120d;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.process-list strong,
.process-list span {
  display: block;
  grid-column: 2;
}

.process-list strong {
  color: var(--ink);
  line-height: 1.2;
}

.process-list span {
  margin-top: 5px;
  color: var(--steel);
  font-weight: 650;
  line-height: 1.4;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 68px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 34, 53, 0.95), rgba(30, 58, 95, 0.9)),
    var(--hero-image, url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=82"));
  background-size: cover;
  background-position: center;
}

.page-hero::after,
.diagnostic-section::after,
.final-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.42;
}

.page-hero-inner,
.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.lane-hero-icon {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 0 22px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.lane-progress {
  max-width: 100%;
  margin: 0 0 54px;
}

.lane-progress-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: start;
}

.lane-progress-track::before {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  border-top: 2px solid rgba(255, 255, 255, 0.24);
}

.lane-progress-item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.lane-progress-dot {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(16, 34, 53, 0.76);
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 34, 53, 0.48);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lane-progress-label {
  letter-spacing: 0;
}

.lane-progress-item.is-linked:hover .lane-progress-dot,
.lane-progress-item.is-linked:focus-visible .lane-progress-dot {
  color: var(--white);
  border-color: rgba(230, 126, 34, 0.92);
  transform: translateY(-2px);
}

.lane-progress-item.is-linked:focus-visible {
  outline: 3px solid rgba(230, 126, 34, 0.42);
  outline-offset: 8px;
  border-radius: 999px;
}

.lane-progress-item.is-active {
  color: var(--white);
}

.lane-progress-item.is-active .lane-progress-dot {
  color: #17120d;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow:
    0 0 0 4px rgba(230, 126, 34, 0.24),
    0 10px 20px rgba(0, 0, 0, 0.2);
}

.lane-progress-item.is-disabled {
  opacity: 0.62;
}

.lane-progress-item.is-disabled .lane-progress-dot {
  background: rgba(16, 34, 53, 0.54);
  border-color: rgba(255, 255, 255, 0.28);
}

.eyebrow,
.section-kicker {
  color: #ffe3c8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-kicker {
  color: var(--copper);
}

.eyebrow-subtitle {
  max-width: 720px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 720;
  line-height: 1.45;
}

h1 {
  max-width: 900px;
  margin: 12px 0 0;
  font-size: clamp(2.8rem, 6.8vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.24rem);
}

.owner-quote {
  max-width: 760px;
  margin: 30px 0 0;
  padding: 18px 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.15rem;
  font-weight: 780;
}

.direct-answer {
  max-width: 820px;
  margin: 26px 0 0;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 2px 2px 0;
  font-size: 1.04rem;
  line-height: 1.55;
}

.direct-answer strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.assessment-promise {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.5;
}

.assessment-promise strong {
  color: var(--white);
}

.assessment-promise.on-light {
  color: var(--steel);
}

.assessment-promise.on-light strong {
  color: var(--ink);
}

.lane-entry-points {
  padding: 42px 0 48px;
  background-color: var(--field-paper);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  border-bottom: 1px solid rgba(16, 34, 53, 0.1);
}

.entry-point-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.entry-point-head h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.72rem;
  line-height: 1.08;
}

.entry-point-head p {
  margin: 0;
  color: var(--steel);
  font-weight: 650;
}

.entry-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.entry-point-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 22px;
  background-color: var(--warm-gray-soft);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  border: 1px solid rgba(16, 34, 53, 0.14);
  border-radius: 2px;
  box-shadow: inset 0 0 0 5px rgba(247, 244, 236, 0.52), 0 8px 22px rgba(15, 35, 51, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.entry-point-card:hover,
.entry-point-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(239, 125, 34, 0.42);
  box-shadow: var(--shadow);
}

.entry-point-card:focus-visible {
  outline: 3px solid rgba(230, 126, 34, 0.42);
  outline-offset: 4px;
}

.entry-point-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #17120d;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.entry-point-label {
  display: block;
  margin-top: 16px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.entry-point-card h3 {
  margin: 8px 28px 0 0;
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1.16;
}

.entry-point-card p {
  margin: 10px 0 0;
  color: #33465a;
  font-weight: 650;
}

.entry-point-note {
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.42;
}

.entry-point-card::after {
  content: "\2192";
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--copper);
  font-size: 1.2rem;
  font-weight: 900;
}

.owner-voices {
  padding-bottom: 42px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.quote-grid blockquote {
  margin: 0;
  min-height: 150px;
  padding: 22px;
  color: #24384b;
  background-color: var(--warm-gray-soft);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid rgba(16, 34, 53, 0.12);
  border-left: 4px solid var(--orange);
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.28;
}

.inspection-snapshot {
  padding-top: 30px;
  background-color: var(--field-paper);
}

.snapshot-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.68fr);
  gap: 30px;
  align-items: end;
}

.snapshot-head h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.06;
}

.snapshot-head p {
  margin: 0;
  color: var(--steel);
  font-weight: 680;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.snapshot-card {
  min-height: 176px;
  padding: 22px;
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.032) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 2px;
  box-shadow: 0 8px 22px rgba(15, 35, 51, 0.06);
}

.snapshot-card h3 {
  margin: 0;
  color: var(--orange);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.snapshot-card p {
  margin: 12px 0 0;
  color: #33465a;
  font-weight: 650;
}

.inspection-order {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--warm-gray-soft);
  border: 1px solid rgba(16, 34, 53, 0.14);
  border-radius: 2px;
}

.inspection-order-label {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.inspection-order ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: inspection-step;
}

.inspection-order li {
  counter-increment: inspection-step;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 34, 53, 0.1);
  border-radius: 999px;
  color: #33465a;
  font-size: 0.93rem;
  font-weight: 760;
}

.inspection-order li::before {
  content: counter(inspection-step);
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #17120d;
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.warning-panel,
.deliverables-panel {
  border-top: 4px solid var(--orange);
}

.warning-panel h2,
.deliverables-panel h2 {
  font-size: 1.45rem;
  line-height: 1.14;
}

section {
  padding: 76px 0;
  scroll-margin-top: 96px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 36px;
  align-items: start;
}

.copy-block h2,
.panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
}

.copy-block p {
  margin: 18px 0 0;
  color: var(--steel);
  font-size: 1.04rem;
}

.panel,
.card {
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.032) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: inset 0 0 0 5px rgba(247, 244, 236, 0.45), 0 10px 28px rgba(15, 35, 51, 0.07);
}

.panel {
  padding: 26px;
}

.panel ul,
.card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--steel);
}

.panel li + li,
.card li + li {
  margin-top: 10px;
}

.content-table-wrap {
  width: 100%;
  margin: 28px 0 0;
  overflow-x: auto;
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.028) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: inset 0 0 0 5px rgba(247, 244, 236, 0.4), 0 10px 28px rgba(15, 35, 51, 0.07);
}

.content-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
}

.content-table caption,
.content-table-caption {
  padding: 18px 20px 0;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.content-table th,
.content-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(16, 34, 53, 0.12);
  vertical-align: top;
  text-align: left;
}

.content-table th {
  color: var(--ink);
  background: rgba(238, 233, 228, 0.82);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.content-table tbody tr:nth-child(even) td {
  background: rgba(251, 250, 247, 0.74);
}

.content-table tbody tr:last-child td {
  border-bottom: 0;
}

.content-table td strong {
  color: var(--ink);
  font-weight: 900;
}

.content-table .signal-cell,
.content-table .step-cell,
.content-table .price-cell {
  color: var(--copper);
  font-weight: 950;
}

.content-table .next-step-cell {
  color: var(--navy);
  font-weight: 860;
}

.content-table.compact th,
.content-table.compact td {
  padding: 12px 14px;
}

.content-table.wide {
  min-width: 880px;
}

.content-table-note {
  margin: 0;
  padding: 14px 20px 18px;
  color: var(--steel);
  border-top: 1px solid rgba(16, 34, 53, 0.1);
  font-size: 0.94rem;
  font-weight: 720;
}

.value-note {
  margin: 10px 0 0;
  color: var(--steel);
  font-weight: 760;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--copper);
  font-weight: 900;
}

.price-badge {
  display: inline-flex;
  width: fit-content;
  margin: 18px 0 0;
  padding: 10px 14px;
  color: #17120d;
  background: var(--orange);
  border: 1px solid rgba(16, 34, 53, 0.12);
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 950;
}

.method-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: #17120d;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 950;
}

.guarantee-panel {
  display: grid;
  gap: 12px;
  color: var(--white);
  background:
    linear-gradient(rgba(30, 58, 95, 0.96), rgba(30, 58, 95, 0.96)),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid var(--orange);
  border-radius: 2px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.guarantee-panel h2 {
  margin: 0;
  color: var(--white);
}

.guarantee-panel p {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.checkout-section,
.inspection-engagement {
  background: #102235;
  color: var(--white);
}

.checkout-section h2,
.inspection-engagement h2 {
  color: var(--white);
}

.checkout-section p,
.inspection-engagement p,
.section-lede {
  color: rgba(255, 255, 255, 0.82);
}

.checkout-explainer {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.checkout-explainer-card,
.checkout-context {
  padding: 16px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
}

.checkout-explainer-card strong,
.checkout-context strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.checkout-explainer-card span,
.checkout-context span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.checkout-context {
  margin-bottom: 20px;
}

.checkout-status {
  min-height: 1.5rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 760;
}

.checkout-status.success {
  color: #dff5eb;
}

.checkout-status.error {
  color: #ffd9d0;
}

.inspection-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.inspection-path {
  padding: 28px;
  background:
    linear-gradient(rgba(30, 58, 95, 0.94), rgba(30, 58, 95, 0.94)),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
}

.inspection-path h3 {
  margin: 0;
  color: var(--orange);
  font-size: 1.35rem;
  line-height: 1.15;
}

.inspection-price-line {
  margin-top: 10px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.band {
  background-color: var(--cool-paper);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.card {
  padding: 22px;
}

.card h3 {
  margin: 0;
  color: var(--orange);
  font-size: 1.08rem;
  line-height: 1.22;
}

.card p {
  margin: 10px 0 0;
  color: var(--steel);
}

.symptom-grid .card {
  min-height: 190px;
}

.diagnostic-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 34, 53, 0.98), rgba(30, 58, 95, 0.92)),
    url("https://images.unsplash.com/photo-1565008447742-97f6f38c985c?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
}

.diagnostic-section .section-inner,
.final-contact .page-contact-band {
  position: relative;
  z-index: 1;
}

.diagnostic-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 36px;
  align-items: end;
}

.diagnostic-intro h2,
.page-contact-band h2 {
  color: var(--white);
}

.diagnostic-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.diagnostic-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.diagnostic-card {
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  backdrop-filter: blur(12px);
}

.diagnostic-card h3 {
  margin: 0;
  color: #ffe3c8;
  font-size: 1.1rem;
  line-height: 1.2;
}

.diagnostic-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.field-section {
  background-color: var(--cool-paper);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--ink);
}

.field-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: center;
}

.field-callout p {
  margin: 0;
  color: var(--steel);
  font-size: 1.12rem;
  font-weight: 620;
  padding: 22px 24px;
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.032) 1px, transparent 1px);
  background-size: 24px 24px;
  border-left: 4px solid var(--orange);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 10px 28px rgba(15, 35, 51, 0.07);
}

.first-step-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 36px;
  align-items: start;
}

.first-step-grid > *,
.page-contact-band > * {
  min-width: 0;
}

.first-step-grid .button {
  margin-top: 24px;
}

.detail-faq {
  background-color: var(--field-paper);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

details {
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.026) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(15, 35, 51, 0.05);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--orange);
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--steel);
}

.faq-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--copper);
  font-weight: 850;
}

.related-section {
  background-color: var(--cool-paper);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.related-card {
  display: block;
  min-height: 190px;
  padding: 24px;
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.032) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 125, 34, 0.42);
  box-shadow: var(--shadow);
}

.related-card strong {
  display: block;
  color: var(--orange);
  font-size: 1.15rem;
  line-height: 1.22;
}

.related-card p {
  margin: 12px 0 0;
  color: var(--steel);
}

.related-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--copper);
  font-weight: 850;
}

.final-contact {
  position: relative;
  overflow: hidden;
  background: #102235;
}

.contact-page-main {
  background: #102235;
  padding: 72px 0 90px;
}

.contact-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: start;
}

.contact-page-copy {
  color: var(--white);
}

.contact-page-copy address {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
  font-weight: 780;
  line-height: 1.55;
}

.contact-page-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-page-copy .contact-phone {
  margin: -6px 0 20px;
  font-weight: 760;
}

.contact-page-copy .contact-phone a {
  color: var(--orange);
  text-decoration: none;
}

.contact-page-copy .contact-phone a:hover {
  text-decoration: underline;
}

.source-confirmation {
  width: fit-content;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 760;
}

.map-panel {
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
}

.page-contact-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: start;
}

.page-contact-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
}

.contact-prompts {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-prompts li {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  font-weight: 720;
}

.contact-route-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-route-options .button {
  min-height: 48px;
}

.sales-callback-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
}

.sales-callback-panel[hidden] {
  display: none;
}

.sales-callback-panel input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #102235;
  background: var(--white);
  border: 1px solid rgba(16, 34, 53, 0.34);
  border-radius: 7px;
  font: inherit;
}

.sales-callback-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 760;
}

.contact-panel {
  padding: 32px;
  background:
    linear-gradient(rgba(30, 58, 95, 0.96), rgba(30, 58, 95, 0.96)),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.contact-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  color: var(--white);
}

.contact-form > * {
  min-width: 0;
}

.contact-form p {
  margin: 0;
  color: var(--white);
  font-weight: 740;
}

.contact-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.contact-field label,
.encharge-form-group > label,
.consent-row label {
  color: var(--white);
  font-weight: 780;
}

.encharge-form-group label p,
.encharge-form-top-text p,
.encharge-form-submit-button p {
  margin: 0;
}

.required {
  color: #ff4a3d;
}

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  color: #102235;
  background: var(--white);
  border: 1px solid rgba(16, 34, 53, 0.34);
  border-radius: 7px;
  font: inherit;
}

.contact-panel textarea {
  min-height: 104px;
  resize: vertical;
}

.contact-panel input::placeholder,
.contact-panel textarea::placeholder {
  color: #6f665f;
}

.contact-panel select {
  appearance: auto;
}

.spam-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.secure-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 760;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.form-helper {
  margin: -2px 0 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-helper a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 44px;
}

.consent-row label {
  min-width: 0;
  text-align: left;
  overflow-wrap: anywhere;
}

.consent-group {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.consent-group legend {
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 850;
}

.consent-row input {
  width: 22px;
  min-height: 22px;
  height: 22px;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--orange);
}

.marketing-consent {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.consent-row .optional {
  display: inline-block;
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
}

.report-delivery-note {
  margin-top: -8px;
  padding-left: 36px;
}

.cf-turnstile {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.cf-turnstile iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.contact-submit {
  width: min(100%, 320px);
  margin: 2px auto 0;
  border: 0;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: #ffe3c8;
  font-size: 0.92rem;
  font-weight: 760;
}

.cta-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(30, 58, 95, 0.97), rgba(38, 115, 93, 0.86)),
    url("https://images.unsplash.com/photo-1565008447742-97f6f38c985c?auto=format&fit=crop&w=1600&q=82");
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.cta-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.note-card {
  display: block;
  padding: 24px;
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.032) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.note-card strong {
  display: block;
  color: var(--orange);
  font-size: 1.15rem;
  line-height: 1.22;
}

.note-card span {
  display: block;
  margin-top: 8px;
  color: var(--steel);
}

.article-section {
  background-color: var(--field-paper);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 42px;
  align-items: start;
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  margin: 38px 0 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: var(--steel);
  font-size: 1.04rem;
}

.article-body p {
  margin: 16px 0 0;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-callout {
  margin: 28px 0;
  padding: 24px;
  color: var(--ink);
  background-color: var(--warm-gray-soft);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  border-left: 4px solid var(--orange);
  border-radius: 0 2px 2px 0;
  font-weight: 760;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.article-side-card {
  padding: 24px;
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.032) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 10px 28px rgba(15, 35, 51, 0.07);
}

.article-side-card h2 {
  margin: 0;
  color: var(--orange);
  font-size: 1.18rem;
  line-height: 1.18;
}

.article-side-card p {
  margin: 10px 0 0;
  color: var(--steel);
}

.article-side-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--copper);
  font-weight: 850;
}

footer {
  padding: 42px 0 34px;
  background: #102235;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 28px;
  font-size: 0.92rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 220px;
  max-width: 60vw;
  height: auto;
  background: var(--white);
  border-radius: 6px;
}

.footer-summary {
  text-align: right;
}

.footer-summary strong,
.footer-summary span {
  display: block;
}

.footer-summary span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.footer-legal-label {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 760;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.legal-nav a {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 720;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    padding: 12px 0;
  }

  .links {
    order: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    font-size: 0.84rem;
  }

  .links a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .content-grid,
  .quote-grid,
  .card-grid,
  .entry-point-head,
  .entry-point-grid,
  .snapshot-head,
  .snapshot-grid,
  .diagnostic-intro,
  .diagnostic-grid,
  .field-callout,
  .first-step-grid,
  .related-grid,
  .notes-grid,
  .article-layout,
  .cta-band,
  .page-contact-band {
    grid-template-columns: 1fr;
  }

  .contact-location-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snapshot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 64px;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
  }

  .links {
    order: 0;
    width: auto;
    flex-wrap: nowrap;
    gap: 8px;
    font-size: 0.8rem;
  }

  .links a {
    display: none;
    min-height: 38px;
  }

  .links .nav-start-here,
  .links a[href$="start-here-self-assessment"],
  .links a[href$="start-here-self-assessment.html"],
  .links .nav-cta {
    display: inline-flex;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  .content-table-wrap {
    overflow-x: visible;
  }

  .content-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .content-table thead {
    display: none;
  }

  .content-table tr {
    display: block;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(16, 34, 53, 0.12);
  }

  .content-table tbody tr:nth-child(even) td {
    background: transparent;
  }

  .content-table tbody tr:last-child {
    border-bottom: 0;
  }

  .content-table td {
    display: grid;
    grid-template-columns: minmax(110px, 0.38fr) minmax(0, 1fr);
    gap: 12px;
    padding: 8px 0;
    border-bottom: 0;
  }

  .content-table td::before {
    content: attr(data-label);
    color: var(--copper);
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .content-table td:not([data-label]) {
    display: block;
  }

  .content-table td:not([data-label])::before {
    content: none;
  }
}

@media (max-width: 620px) {
  .topbar {
    position: static;
  }

  .nav,
  .page-hero-inner,
  .section-inner,
  .cta-band,
  .page-contact-band,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand-logo {
    width: 176px;
    max-width: 44vw;
  }

  .page-hero {
    padding: 58px 0 50px;
  }

  .lane-hero-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
  }

  .lane-progress {
    margin-bottom: 34px;
  }

  .lane-progress-track::before {
    top: 15px;
    border-top-width: 1px;
  }

  .lane-progress-item {
    gap: 6px;
    font-size: 0.56rem;
  }

  .lane-progress-dot {
    width: 31px;
    height: 31px;
    box-shadow: 0 0 0 3px rgba(16, 34, 53, 0.48);
  }

  h1 {
    font-size: clamp(2.48rem, 12vw, 4rem);
  }

  section {
    padding: 58px 0;
  }

  .cta-band {
    padding: 30px 22px;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 18px;
  }

  .process-list strong,
  .process-list span {
    grid-column: 1;
  }

  .process-list li::before {
    width: 34px;
    height: 34px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid blockquote {
    min-height: auto;
  }

  .snapshot-card {
    min-height: auto;
  }

  .inspection-order {
    grid-template-columns: 1fr;
  }

  .inspection-order ol {
    display: grid;
  }

  .contact-panel {
    padding: 26px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-top,
  .footer-legal {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-summary {
    text-align: left;
  }

  .legal-nav {
    justify-content: flex-start;
    gap: 10px 16px;
  }
}
