/* Design tokens */
:root {
  --brand-navy: #15365a;
  --brand-teal: #2f465e;
  --brand-ink: #1f2630;
  --brand-cyan: #f4b06a;
  --brand-sky: #fff1df;
  --brand-mint: #f7f2ea;
  --brand-gold: #f58220;
  --brand-gold-soft: #ffb347;
  --text-dark: #182434;
  --text-soft: #4c5b6d;
  --line: #d7dfea;
  --surface: #ffffff;
  --surface-alt: #f7f5f1;
  --shadow: 0 18px 40px rgba(24, 36, 52, 0.08);
  --shadow-soft: 0 12px 30px rgba(24, 36, 52, 0.08);
  --shadow-lift: 0 24px 60px rgba(21, 54, 90, 0.14);
  --shadow-glow: 0 28px 90px rgba(245, 130, 32, 0.16);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1160px, calc(100vw - 2rem));
}

/* Base and document */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(245, 130, 32, 0.1), transparent 24%),
    radial-gradient(circle at top right, rgba(21, 54, 90, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 245, 241, 0.96)),
    var(--surface-alt);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.skip-link,
.sr-only {
  position: absolute;
}

.skip-link {
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: var(--brand-navy);
  color: white;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

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

img {
  max-width: 100%;
  display: block;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.3;
  pointer-events: none;
}

body::before {
  top: -8rem;
  left: -7rem;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.24), transparent 68%);
}

body::after {
  right: -8rem;
  bottom: 8rem;
  background: radial-gradient(circle, rgba(21, 54, 90, 0.16), transparent 70%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 130, 32, 0.42), rgba(21, 54, 90, 0.28), transparent);
}

.header-utility {
  background: linear-gradient(90deg, #172436, #214364);
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.28rem 0;
  font-size: 0.82rem;
}

.header-utility-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.header-utility-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
}

.header-utility-links a {
  color: white;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.625rem 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(12.5rem, 22vw, 17rem);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(12, 74, 110, 0.18));
}

.main-nav {
  display: none;
  gap: 1.2rem;
  align-items: center;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--text-soft);
  font-weight: 700;
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after,
.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after,
.mobile-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav a.is-active,
.mobile-nav a.is-active {
  color: var(--brand-navy);
}

.mobile-nav-wrap {
  padding-bottom: 0.85rem;
}

.mobile-nav {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
  scrollbar-width: thin;
}

.mobile-nav a {
  flex: 0 0 auto;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  color: var(--brand-navy);
  font-weight: 800;
  white-space: nowrap;
  position: relative;
}

.header-actions,
.header-cta-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  align-items: center;
}

.header-cta-group {
  justify-content: flex-end;
  margin-left: auto;
  flex: 0 0 auto;
}

.phone-link {
  color: var(--brand-navy);
  font-weight: 800;
}

.phone-button {
  white-space: nowrap;
}

.header-cta-group .button {
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
  white-space: nowrap;
  min-width: 10.25rem;
  justify-content: center;
}

.button,
button,
input,
select,
textarea {
  font: inherit;
}

/* Buttons and actions */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  position: relative;
  overflow: hidden;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.2) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.45s ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-soft));
  color: var(--text-dark);
  box-shadow: 0 16px 30px rgba(245, 130, 32, 0.26);
}

.button-secondary {
  background: rgba(255, 251, 245, 0.95);
  color: var(--brand-navy);
  border: 1px solid rgba(21, 54, 90, 0.16);
  box-shadow: 0 10px 22px rgba(24, 36, 52, 0.06);
}

.button-accent {
  background: linear-gradient(180deg, rgba(255, 246, 235, 0.98), rgba(255, 252, 247, 0.96));
  color: var(--brand-navy);
  border: 1px solid rgba(21, 54, 90, 0.2);
  box-shadow: 0 14px 28px rgba(21, 54, 90, 0.08);
}

.button-block {
  width: 100%;
}

/* Hero */
.hero,
.page-hero {
  padding: 3rem 0 1.5rem;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 54, 90, 0.72), rgba(31, 38, 48, 0.58));
  pointer-events: none;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: auto -10% -24% auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
  filter: blur(16px);
  pointer-events: none;
}

.hero-banner > .container {
  position: relative;
  z-index: 1;
}

.hero-banner .hero-card,
.hero-banner .quote-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.hero-banner .hero-card {
  max-width: 760px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  color: white;
  padding: 1.65rem;
  backdrop-filter: blur(16px);
}

.hero-copy {
  animation: fade-up 0.8s ease both;
}

.quote-card {
  animation: fade-up 0.8s ease 0.12s both;
}

.hero-banner .hero-card p,
.hero-banner .hero-card h1,
.hero-banner .hero-card h2,
.hero-banner .hero-card h3,
.hero-banner .hero-card li,
.hero-banner .hero-card .eyebrow {
  color: white;
}

.hero-banner .hero-card h1,
.hero-banner .hero-card h2,
.hero-banner .hero-card h3,
.hero-banner .hero-card p,
.hero-banner .hero-card li {
  text-shadow: 0 2px 14px rgba(15, 23, 42, 0.18);
}

.hero-banner .hero-card .lead,
.hero-banner .hero-card .intro-copy p {
  max-width: 42rem;
}

.hero-banner .hero-card .eyebrow {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-banner .hero-card .trust-pill {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-banner .hero-card .trust-pill::before,
.hero-banner .hero-card .checklist li::before,
.hero-banner .hero-card .problem-list li::before,
.hero-banner .hero-card .inline-links li::before {
  color: white;
}

.hero-banner .hero-card .button-secondary {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-soft));
  color: var(--text-dark);
  border-color: rgba(245, 130, 32, 0.4);
  box-shadow: 0 18px 34px rgba(245, 130, 32, 0.3);
}

.hero-banner .hero-card .button-accent {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

/* Layout primitives and cards */
.section {
  padding: 2.5rem 0;
  position: relative;
}

.section-tight {
  padding-top: 1rem;
}

main > .section:nth-of-type(2n):not(.cta-band) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(251, 248, 242, 0.94)),
    radial-gradient(circle at top right, rgba(245, 130, 32, 0.06), transparent 30%);
}

.hero-grid,
.content-grid,
.footer-grid,
.cta-grid,
.split-panel,
.three-grid,
.four-grid,
.service-grid,
.steps-grid,
.pricing-grid,
.providers-grid,
.faq-grid,
.areas-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.service-grid,
.steps-grid,
.areas-grid,
.equal-cards {
  align-items: stretch;
}

.hero-card,
.panel,
.quote-card,
.testimonial-card,
.service-card,
.step-card,
.price-card,
.provider-card,
.faq-card,
.area-card,
.stat,
.trust-pill {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.hero-copy,
.panel,
.quote-card,
.testimonial-card,
.service-card,
.step-card,
.price-card,
.provider-card,
.faq-card,
.area-card,
.stat {
  padding: 1.5rem;
}

.service-card,
.step-card,
.icon-panel {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  background: linear-gradient(180deg, rgba(255, 241, 223, 0.98), rgba(255, 247, 237, 0.96));
  border: 1px solid rgba(245, 130, 32, 0.18);
  box-shadow: 0 12px 28px rgba(21, 54, 90, 0.08);
}

.card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.card-icon--step {
  background: linear-gradient(180deg, rgba(23, 36, 54, 0.96), rgba(33, 67, 100, 0.92));
  color: white;
  border-color: rgba(21, 54, 90, 0.36);
}

.card-icon--panel {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.98), rgba(255, 241, 223, 0.96));
}

.service-card h3,
.step-card h3,
.icon-panel h3 {
  margin-bottom: 0.2rem;
}

.testimonial-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.98) 0%, rgba(247, 244, 238, 0.95) 100%),
    radial-gradient(circle at top right, rgba(245, 130, 32, 0.12), transparent 42%);
  border-color: rgba(21, 54, 90, 0.12);
  box-shadow: 0 18px 44px rgba(10, 31, 68, 0.08);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 1.4rem 1.4rem 0 0;
  background: linear-gradient(90deg, rgba(245, 130, 32, 0.95), rgba(21, 54, 90, 0.88));
}

.image-panel {
  overflow: hidden;
  padding: 0;
}

.content-grid > .panel,
.cta-grid > .panel,
.cta-grid > article,
.split-panel > .panel,
.three-grid > .panel,
.providers-grid > .provider-card,
.areas-grid > .area-card {
  align-self: start;
}

.service-grid > *,
.steps-grid > *,
.areas-grid > *,
.equal-cards > * {
  align-self: stretch;
  height: 100%;
}

.service-area-showcase {
  display: grid;
  gap: 1.5rem;
}

.service-area-copy {
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 248, 240, 0.96), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at top right, rgba(245, 130, 32, 0.1), transparent 38%);
  border: 1px solid rgba(245, 130, 32, 0.16);
  box-shadow: var(--shadow-soft);
}

.service-area-copy h3 {
  margin-bottom: 0.7rem;
}

.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0;
}

.area-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(21, 54, 90, 0.08);
  color: var(--brand-navy);
  border: 1px solid rgba(21, 54, 90, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link {
  font-weight: 700;
  color: var(--brand-navy);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
  text-decoration-color: rgba(245, 130, 32, 0.5);
}

.area-link-list {
  display: grid;
  gap: 0.9rem;
}

.area-link-row {
  display: grid;
  gap: 0.3rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 14px 34px rgba(10, 31, 68, 0.06);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.area-link-row:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 130, 32, 0.26);
  box-shadow: 0 18px 40px rgba(10, 31, 68, 0.09);
}

.area-link-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-dark);
}

.area-link-copy {
  color: var(--text-soft);
  line-height: 1.55;
}

.resource-feature-list {
  display: grid;
  gap: 1rem;
}

.resource-feature {
  display: grid;
  gap: 0.45rem;
  padding: 1.35rem 1.45rem;
  border-radius: 1.25rem;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 238, 0.92)),
    radial-gradient(circle at top right, rgba(245, 130, 32, 0.08), transparent 36%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 12px 32px rgba(10, 31, 68, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.resource-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 130, 32, 0.24);
  box-shadow: 0 18px 40px rgba(10, 31, 68, 0.09);
}

.resource-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 1.8rem;
  align-items: center;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  background: rgba(21, 54, 90, 0.08);
  color: var(--brand-navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.resource-feature h3 {
  margin-bottom: 0.15rem;
}

.resource-feature p {
  color: var(--text-soft);
  margin: 0;
}

.resource-feature--all {
  background:
    linear-gradient(180deg, rgba(255, 248, 240, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at top right, rgba(245, 130, 32, 0.13), transparent 42%);
}

.panel .faq-grid,
.quote-card .faq-grid {
  grid-template-columns: 1fr;
}

.faq-accordion {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.2rem 3.75rem 1.2rem 1.35rem;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--text-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 54, 90, 0.08);
  color: var(--brand-navy);
  font-size: 1.2rem;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "–";
  background: rgba(245, 130, 32, 0.18);
  color: #8f4d11;
}

.faq-answer {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-body);
}

.faq-answer > *:first-child {
  margin-top: 0;
}

.faq-answer > *:last-child {
  margin-bottom: 0;
}

.testimonial-author {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-name,
.testimonial-location {
  display: block;
}

.testimonial-author a {
  color: var(--brand-navy);
  text-decoration: underline;
  text-decoration-color: rgba(12, 74, 110, 0.28);
  text-underline-offset: 0.16rem;
}

.feature-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.panel:hover,
.quote-card:hover,
.testimonial-card:hover,
.service-card:hover,
.step-card:hover,
.price-card:hover,
.provider-card:hover,
.faq-card:hover,
.area-card:hover,
.stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(245, 130, 32, 0.24);
}

.image-panel:hover .feature-image,
.service-card:hover .feature-image,
.provider-card:hover .feature-image {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 241, 223, 0.96);
  color: var(--brand-navy);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(245, 130, 32, 0.12);
}

h1,
h2,
h3 {
  margin: 0 0 0.85rem;
  line-height: 1.12;
  font-family: "Aptos Display", "Segoe UI Semibold", "Trebuchet MS", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.45rem);
}

h3 {
  font-size: 1.14rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.lead {
  font-size: 1.05rem;
  max-width: 46rem;
}

/* Content patterns */
.section-heading {
  max-width: 48rem;
  margin-bottom: 1.2rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-sky);
  color: var(--brand-navy);
  font-weight: 800;
  font-size: 0.88rem;
}

.trust-row {
  display: grid;
  gap: 0.8rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.trust-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 130, 32, 0.08), transparent 58%);
  pointer-events: none;
}

.checklist,
.problem-list,
.inline-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li,
.problem-list li,
.inline-links li {
  position: relative;
  padding-left: 1.55rem;
  margin-bottom: 0.85rem;
  color: var(--text-soft);
}

.checklist li::before,
.problem-list li::before,
.inline-links li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--brand-gold);
  font-weight: 900;
}

.inline-links a {
  color: var(--brand-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(245, 130, 32, 0.28);
  text-underline-offset: 0.15rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--brand-navy);
  font-weight: 700;
}

.quote-card {
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.98), white);
  box-shadow: var(--shadow-lift);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

th,
td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  text-align: left;
}

th {
  background: rgba(255, 241, 223, 0.72);
  color: var(--brand-navy);
  font-weight: 800;
}

/* Forms */
form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--text-dark);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: white;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(245, 130, 32, 0.24);
  border-color: rgba(245, 130, 32, 0.68);
  box-shadow: 0 0 0 5px rgba(245, 130, 32, 0.1);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.9rem;
}

/* CTA bands */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #183450, #2a313b);
  color: white;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.cta-band::before {
  width: 22rem;
  height: 22rem;
  top: -12rem;
  right: -9rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
}

.cta-band::after {
  width: 16rem;
  height: 16rem;
  bottom: -10rem;
  left: -6rem;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.18), transparent 68%);
}

.cta-band > .container {
  position: relative;
  z-index: 1;
}

.cta-band p,
.cta-band li {
  color: rgba(255, 255, 255, 0.88);
}

.cta-band .inline-links a {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.cta-band .inline-links li::before {
  color: rgba(255, 179, 71, 0.95);
}

.cta-band h2,
.cta-band h3 {
  color: #ffffff;
}

.cta-band .button-secondary {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-soft));
  color: var(--text-dark);
  border-color: rgba(245, 130, 32, 0.42);
  box-shadow: 0 18px 34px rgba(245, 130, 32, 0.26);
}

.cta-band .button-accent {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 30px rgba(8, 15, 28, 0.18);
}

.page-resource .section .content-grid,
.page-resource .section .split-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-resource .section .three-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-resource .section .three-grid > .panel:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.page-resource .section .content-grid > .panel,
.page-resource .section .split-panel > .panel,
.page-resource .section .three-grid > .panel {
  align-self: stretch;
  height: 100%;
}

.page-resource .section .panel h2 {
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  max-width: none;
}

.page-resource .page-hero .panel h1,
.page-resource .page-hero .quote-card h2 {
  max-width: none;
}

.page-resource .page-hero .panel h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
}

/* Footer */
.footer {
  padding: 3rem 0 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(245, 130, 32, 0.12), transparent 24%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #313741, #22272f);
  color: rgba(255, 255, 255, 0.88);
}

.footer-shell {
  display: grid;
  gap: 1.75rem;
}

.footer-topline {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-kicker {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.footer-nav-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-column {
  min-width: 0;
}

.footer-column h3 {
  margin-bottom: 1rem;
  color: white;
  font-size: 1.08rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-brand-logo {
  width: clamp(14rem, 24vw, 19rem);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(15, 23, 42, 0.18));
}

.footer-about-copy {
  color: rgba(226, 232, 240, 0.82);
}

.footer-about-copy {
  margin: 0;
  max-width: 28rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-links a,
.footer-contact-list a,
.footer-text-link,
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.88);
}

.footer .button-accent,
.footer-cta {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-soft));
  color: var(--text-dark);
  border-color: rgba(245, 130, 32, 0.42);
  box-shadow: 0 18px 34px rgba(245, 130, 32, 0.24);
}

.footer-links a {
  font-weight: 700;
}

.footer-contact-list,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-contact-list li,
.footer-list li {
  color: rgba(226, 232, 240, 0.82);
}

.footer-contact-list strong {
  color: white;
}

.footer-cta {
  margin-top: 1rem;
}

.footer-divider {
  height: 1px;
  margin: 1rem 0;
  background: rgba(255, 255, 255, 0.14);
}

.footer-text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(251, 191, 36, 0.4);
  text-underline-offset: 0.18rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.inline-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Mobile sticky bar */
.mobile-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  backdrop-filter: blur(14px);
  box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.08);
}

.mobile-sticky-bar .button {
  width: 100%;
}

body {
  padding-bottom: 5.75rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.hero-banner::after,
body::before,
body::after {
  animation: drift 10s ease-in-out infinite;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 700px) {
  .header-utility-inner,
  .footer-topline,
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .content-grid,
  .footer-grid,
  .cta-grid,
  .split-panel,
  .three-grid,
  .service-grid,
  .pricing-grid,
  .faq-grid,
  .steps-grid,
  .providers-grid,
  .areas-grid,
  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel .faq-grid,
  .quote-card .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-area-showcase,
  .resource-feature-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 960px) {
  .main-nav {
    display: flex;
  }

  .topbar {
    gap: 1.35rem;
  }

  .mobile-nav-wrap,
  .mobile-sticky-bar {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.95fr 1.45fr;
  }

  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .three-grid,
  .service-grid,
  .pricing-grid,
  .faq-grid,
  .steps-grid,
  .providers-grid,
  .areas-grid,
  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .panel .faq-grid,
  .quote-card .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .service-area-showcase {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .resource-feature-list {
    grid-template-columns: 1.05fr 1.05fr 0.9fr;
  }

  body {
    padding-bottom: 0;
  }
}
