:root {
  --navy-950: #061427;
  --navy-900: #0b203d;
  --navy-800: #13345d;
  --blue-600: #136de8;
  --blue-500: #2b83ff;
  --lime-500: #93c83f;
  --mist-100: #f4f8fc;
  --mist-200: #e5eef8;
  --ink-900: #101a2d;
  --ink-700: #46536b;
  --ink-500: #667791;
  --white: #ffffff;
  --border-soft: rgba(9, 29, 59, 0.12);
  --shadow-lg: 0 24px 60px rgba(4, 19, 39, 0.12);
  --shadow-md: 0 14px 34px rgba(8, 30, 60, 0.12);
  --shadow-sm: 0 8px 20px rgba(8, 30, 60, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", Arial, sans-serif;
  color: var(--ink-900);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(147, 200, 63, 0.18), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #f4f8fc 36%, #ffffff 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

main {
  overflow: clip;
}

.shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 251, 255, 0.88);
  border-bottom: 1px solid rgba(19, 52, 93, 0.08);
}

.header-shell {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

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

.brand-logo {
  width: 12.75rem;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-700);
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.32rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-500), var(--lime-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:not(.button):hover::after,
.site-nav a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  border: 1px solid var(--border-soft);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.78);
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow: 0 14px 30px rgba(19, 109, 232, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(19, 109, 232, 0.28);
  filter: saturate(1.05);
}

.button-small {
  min-height: 3rem;
  padding: 0 1.35rem;
  font-size: 0.82rem;
}

.button-large {
  min-height: 3.85rem;
  padding: 0 1.65rem;
  font-size: 0.92rem;
}

.button-large svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-block {
  width: 100%;
}

.cta-button {
  min-width: 18rem;
}

.cta-button span {
  display: block;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.section-heading {
  max-width: 38rem;
  text-align: center;
  margin: 0 auto 3rem;
}

.section-heading h2,
.specialized-copy h2,
.coverage-copy h2,
.cta-shell h2 {
  margin: 0;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--navy-950);
}

.audit-card h2 {
  margin: 0;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--navy-950);
  text-wrap: balance;
}

.section-subheadline {
  margin: 0.75rem 0 0;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
  color: var(--ink-700);
}

.hero {
  position: relative;
  padding: 3.4rem 0 4.7rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7.5rem;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.9)),
    linear-gradient(90deg,
      rgba(19, 52, 93, 0.06) 0 4%,
      transparent 4% 8%,
      rgba(19, 52, 93, 0.05) 8% 11%,
      transparent 11% 16%,
      rgba(19, 52, 93, 0.045) 16% 19%,
      transparent 19% 26%,
      rgba(19, 52, 93, 0.055) 26% 31%,
      transparent 31% 100%);
  mask: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 42%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-one {
  top: 4rem;
  left: 6%;
  width: 16rem;
  height: 16rem;
  background: rgba(43, 131, 255, 0.16);
}

.hero-glow-two {
  right: 10%;
  top: 12rem;
  width: 22rem;
  height: 22rem;
  background: rgba(147, 200, 63, 0.17);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.hero-copy h1 {
  margin: 0;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--navy-950);
}

.hero-subheadline {
  margin: 1.2rem 0 0;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1;
  color: var(--ink-700);
}

.hero-body,
.coverage-copy p,
.audit-card p,
.offering-card p,
.timeline-step p,
.stat-card p,
.expertise-card p,
.testimonial-card p,
.manager-card p,
.cta-shell p {
  color: var(--ink-700);
  line-height: 1.7;
}

.hero-body {
  max-width: 32rem;
  margin: 1.2rem 0 0;
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 1.8rem;
}

.hero-footnote {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
}

.hero-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(233, 242, 251, 0.95));
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 39, 0.03), transparent 22%, transparent 72%, rgba(6, 20, 39, 0.14)),
    linear-gradient(120deg, rgba(43, 131, 255, 0.12), transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.hero-photo {
  aspect-ratio: 1 / 0.88;
  width: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 0.55rem);
  transform: scale(1.02);
}

.hero-highlight {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
  max-width: 14rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(6, 20, 39, 0.82);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.hero-highlight-label {
  display: block;
  margin-bottom: 0.38rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-highlight strong {
  font-size: 0.98rem;
  line-height: 1.45;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 52, 93, 0.1);
  box-shadow: var(--shadow-sm);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--navy-900);
}

.specialized-section,
.advantage-section,
.comparison-section,
.services-section,
.testimonials-section,
.coverage-section,
.cta-section {
  padding: 5.4rem 0;
}

.specialized-section {
  padding-top: 4.8rem;
}

.specialized-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 2.25rem;
  align-items: start;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.expertise-card,
.stat-card,
.testimonial-card,
.manager-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.expertise-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  min-height: 10rem;
  padding: 1.4rem;
  border-radius: var(--radius-md);
}

.expertise-card h3,
.timeline-step h3,
.offering-card h3,
.manager-card h3 {
  margin: 0 0 0.35rem;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy-950);
}

.expertise-card p,
.timeline-step p,
.offering-card p,
.manager-card p {
  margin: 0;
  font-size: 0.95rem;
}

.icon-wrap {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(19, 109, 232, 0.12), rgba(147, 200, 63, 0.15));
  color: var(--navy-900);
}

.icon-wrap svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audit-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 242, 251, 0.92));
  border: 1px solid rgba(14, 43, 88, 0.08);
  box-shadow: var(--shadow-lg);
}

.audit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle at top left, rgba(147, 200, 63, 0.24), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.audit-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.audit-form input,
.audit-form select {
  width: 100%;
  min-height: 3.4rem;
  padding: 0 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(14, 43, 88, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-900);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.audit-form input::placeholder {
  color: var(--ink-500);
}

.audit-form input:focus,
.audit-form select:focus {
  border-color: rgba(19, 109, 232, 0.58);
  box-shadow: 0 0 0 4px rgba(43, 131, 255, 0.14);
  background: var(--white);
}

.audit-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-600);
}

.stats-section {
  padding: 1.2rem 0 5.4rem;
}

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

.stat-card {
  padding: 1.7rem 1.4rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-icon {
  margin-bottom: 1rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--navy-950);
}

.stat-card p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.advantage-section {
  background:
    radial-gradient(circle at top left, rgba(43, 131, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(229, 238, 248, 0.44), rgba(255, 255, 255, 0));
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 1.75rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(19, 109, 232, 0.2), rgba(147, 200, 63, 0.22));
}

.timeline-step {
  position: relative;
  padding: 0.4rem 0.5rem 0;
}

.timeline-step .icon-wrap {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(225, 239, 255, 0.96));
  border: 1px solid rgba(19, 109, 232, 0.12);
  box-shadow: var(--shadow-sm);
}

.timeline-step h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.comparison-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(229, 238, 248, 0.46));
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(14, 43, 88, 0.08);
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--navy-950);
  color: var(--white);
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.comparison-table thead th:nth-child(2) {
  background: linear-gradient(135deg, #0f58c9, #136de8);
}

.comparison-table tbody th {
  width: 18%;
  color: var(--navy-950);
  font-size: 0.95rem;
}

.comparison-table tbody td:nth-child(2) {
  background: rgba(43, 131, 255, 0.07);
}

.comparison-table strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy-950);
}

.services-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 1));
}

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

.offering-card {
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.offering-card h3 {
  margin-top: 1rem;
}

.offering-card ul {
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.offering-card li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-900);
}

.offering-card li::before {
  content: "";
  position: absolute;
  top: 0.54rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-500), var(--lime-500));
}

.testimonials-section {
  background:
    linear-gradient(180deg, rgba(229, 238, 248, 0.44), rgba(255, 255, 255, 0)),
    var(--mist-100);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.quote {
  margin: 0;
  font-size: 1.04rem;
}

.attribution {
  margin: 1.4rem 0 0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.coverage-shell {
  display: grid;
  gap: 2.5rem;
}

.coverage-copy {
  max-width: 40rem;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.25rem;
  align-items: center;
}

.map-card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 242, 251, 0.94));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}

.map-canvas {
  position: relative;
  min-height: 22rem;
  border-radius: calc(var(--radius-xl) - 0.45rem);
  background:
    radial-gradient(circle at top right, rgba(147, 200, 63, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(43, 131, 255, 0.06), rgba(255, 255, 255, 0.72));
  overflow: hidden;
}

.map-canvas::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(19, 52, 93, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(19, 52, 93, 0.05) 1px, transparent 1px);
  background-size: 2rem 2rem;
  mask: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
}

.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-outline {
  fill: rgba(19, 52, 93, 0.08);
  stroke: rgba(19, 52, 93, 0.16);
  stroke-width: 5;
}

.map-state {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-900));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow: 0 14px 28px rgba(19, 109, 232, 0.26);
}

.map-state::after {
  content: "";
  position: absolute;
  inset: -0.45rem;
  border-radius: inherit;
  border: 1px solid rgba(19, 109, 232, 0.22);
}

.map-state-wa {
  top: 5rem;
  left: 5.8rem;
}

.map-state-az {
  top: 12.2rem;
  left: 12.7rem;
}

.map-state-tx {
  top: 14.3rem;
  left: 21rem;
}

.map-state-fl {
  top: 17.2rem;
  right: 8.2rem;
}

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

.manager-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-md);
}

.manager-avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(43, 131, 255, 0.18), rgba(147, 200, 63, 0.24));
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-950);
}

.cta-section {
  padding-top: 2rem;
}

.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.98), rgba(18, 51, 92, 0.96)),
    linear-gradient(120deg, rgba(43, 131, 255, 0.1), transparent);
  box-shadow: var(--shadow-lg);
}

.cta-shell .eyebrow,
.cta-shell h2,
.cta-shell p {
  color: var(--white);
}

.cta-shell p:last-child {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  margin-top: 2.4rem;
  padding: 4rem 0 2.4rem;
  background:
    linear-gradient(180deg, rgba(6, 20, 39, 0.98), rgba(9, 29, 59, 1)),
    linear-gradient(120deg, rgba(43, 131, 255, 0.1), transparent);
  color: rgba(255, 255, 255, 0.82);
}

.footer-shell {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
}

.footer-column h3 {
  margin: 0 0 1rem;
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-column a {
  display: block;
  margin-bottom: 0.72rem;
  color: rgba(255, 255, 255, 0.74);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.social-links svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  stroke: none;
}

.social-links a[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-blur {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
  line-height: 1.5;
}

.developer-mark {
  display: inline-flex;
  align-items: center;
  opacity: 0.9;
  transition: opacity 180ms ease, transform 180ms ease;
}

.developer-mark:hover,
.developer-mark:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.developer-mark img {
  width: auto;
  height: 1.9rem;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-shell,
  .specialized-shell,
  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .coverage-copy,
  .section-heading {
    max-width: none;
  }

  .offerings-grid,
  .stats-grid,
  .timeline,
  .testimonial-grid,
  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .cta-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-button {
    width: min(100%, 20rem);
    min-width: 0;
    min-height: auto;
    padding-block: 0.9rem;
    padding-inline: 2rem;
    line-height: 1.05;
    white-space: normal;
  }

  .cta-button span {
    max-width: none;
    text-wrap: unset;
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(19, 52, 93, 0.08);
    box-shadow: var(--shadow-md);
  }

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

  .site-nav .button-small {
    margin-top: 0.4rem;
  }

  .trust-badges,
  .expertise-grid,
  .audit-form,
  .offerings-grid,
  .stats-grid,
  .testimonial-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 84px;
  }

  .shell {
    width: calc(100% - 1.5rem);
  }

  .hero,
  .specialized-section,
  .advantage-section,
  .comparison-section,
  .services-section,
  .testimonials-section,
  .coverage-section,
  .cta-section {
    padding: 4.1rem 0;
  }

  .header-shell {
    min-height: var(--header-height);
    gap: 0.75rem;
  }

  .brand-logo {
    width: 8.2rem;
  }

  .nav-toggle {
    width: 2.6rem;
    height: 2.6rem;
  }

  .nav-toggle span {
    width: 1rem;
  }

  .hero-photo-frame,
  .audit-card,
  .map-card,
  .cta-shell {
    padding: 1.2rem;
  }

  .hero-highlight {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .button-large {
    width: 100%;
    min-height: 3.6rem;
  }

  .timeline,
  .manager-list {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    padding: 0;
  }

  .map-canvas {
    min-height: 18rem;
  }

  .map-state {
    width: 2.7rem;
    height: 2.7rem;
    font-size: 0.82rem;
  }

  .map-state-wa {
    top: 3.5rem;
    left: 2.4rem;
  }

  .map-state-az {
    top: 9.9rem;
    left: 5.7rem;
  }

  .map-state-tx {
    top: 11.3rem;
    left: 10.2rem;
  }

  .map-state-fl {
    top: 12.8rem;
    right: 2.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-blur {
    font-size: 0.82rem;
  }

  .developer-mark img {
    height: 1.64rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
