/* Directional Boring Texas — premium conversion theme */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&family=Oswald:wght@500;600;700&display=swap");

:root {
  --navy: #0b1f3a;
  --navy-mid: #132d4f;
  --navy-dark: #061428;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-glow: rgba(249, 115, 22, 0.45);
  --amber: #fbbf24;
  --slate: #334155;
  --steel: #64748b;
  --light: #f1f5f9;
  --white: #ffffff;
  --text: #1e293b;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.18);
  --shadow-orange: 0 12px 32px var(--orange-glow);
  --max: 1200px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Oswald", var(--font);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  padding-bottom: 4.75rem;
  -webkit-font-smoothing: antialiased;
}

body[data-phone-tel] {
  /* set via layout */
}

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

a {
  color: var(--navy-mid);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--orange);
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ─── Promo + top bar ─── */
.promo-bar {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--amber));
  color: var(--navy-dark);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promo-bar a {
  color: var(--navy-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.top-bar {
  background: var(--navy-dark);
  color: #cbd5e1;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  text-align: center;
}

.top-bar a {
  color: var(--amber);
  font-weight: 700;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 0.35rem;
  animation: pulse 2s ease infinite;
  vertical-align: middle;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    opacity: 0.85;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6, 20, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.logo:hover {
  color: var(--white);
  opacity: 0.92;
}

.logo-img {
  display: block;
  height: auto;
  max-height: 52px;
  width: auto;
  max-width: min(300px, 52vw);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  display: block;
  height: auto;
  max-height: 72px;
  width: auto;
  max-width: 280px;
}

.footer-logo:hover {
  opacity: 0.9;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s var(--ease);
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: rgba(249, 115, 22, 0.28);
}

.nav-toggle-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

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

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

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

.nav-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(2, 8, 18, 0.55);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
  pointer-events: none;
}

.nav-mobile-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 160;
  background: rgba(6, 20, 40, 0.98);
  border-bottom: 1px solid rgba(249, 115, 22, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    max-height 0.35s var(--ease),
    opacity 0.25s var(--ease);
}

.nav-mobile.is-open {
  max-height: 24rem;
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0 1rem;
}

body.nav-open {
  overflow: hidden;
}

.nav-desktop {
  display: none;
  gap: 0.15rem;
  align-items: center;
}

.nav-desktop a,
.nav-mobile-link {
  color: #e2e8f0;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  text-decoration: none;
}

.nav-desktop a:hover,
.nav-desktop a.active,
.nav-mobile-link:hover,
.nav-mobile-link.active {
  background: rgba(249, 115, 22, 0.2);
  color: var(--white);
  text-decoration: none;
}

.nav-mobile-link {
  display: block;
  font-size: 1rem;
  padding: 0.85rem 0.75rem;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white) !important;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px var(--orange-glow);
}

.btn-header-quote {
  display: none;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

.btn-header-quote:hover {
  border-color: var(--amber);
  color: var(--amber) !important;
}

/* ─── Trust strip ─── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding: 0.85rem 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--light);
  border-radius: 999px;
  border: 1px solid #e2e8f0;
}

/* ─── Parallax layers ─── */
.parallax-layer {
  position: absolute;
  inset: -12% 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  will-change: transform;
  transform: scale(1.08);
}

.hero__parallax-scene,
.parallax-break__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--navy-dark);
  overflow: hidden;
}

.hero--parallax .hero-grid {
  position: relative;
  z-index: 2;
}

.hero--city {
  min-height: min(88vh, 820px);
}

.city-expertise {
  padding: 2.5rem 0;
}

.city-expertise-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
  color: var(--white);
}

.city-expertise-card h2 {
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin-bottom: 0.75rem;
}

.city-expertise-card p {
  color: #cbd5e1;
  margin: 0;
  line-height: 1.65;
}

.city-expertise-card .eyebrow {
  color: var(--amber);
  margin-bottom: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .parallax-layer {
    transform: scale(1.08) !important;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(6, 20, 40, 0.94) 0%, rgba(11, 31, 58, 0.78) 45%, rgba(249, 115, 22, 0.15) 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(251, 191, 36, 0.12), transparent);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 4rem;
}

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

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  text-transform: uppercase;
  color: var(--white);
  max-width: 14ch;
  line-height: 1.05;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.5);
  color: var(--amber);
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-hdd-def {
  color: #cbd5e1;
  font-size: 1rem;
  max-width: 36rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.hero-hdd-def strong {
  color: var(--amber);
  font-weight: 700;
}

.hero-lead {
  color: #e2e8f0;
  font-size: 1.1rem;
  max-width: 34rem;
  margin-bottom: 1.25rem;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-checklist li::before {
  content: "✓";
  color: var(--amber);
  font-weight: 800;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  color: var(--white) !important;
  font-weight: 800;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: var(--shadow-orange);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px var(--orange-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.9rem;
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber) !important;
}

/* ─── Lead form card ─── */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.lead-form-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 1.35rem 1.5rem 1rem;
  text-align: center;
}

.lead-form-header .form-kicker {
  color: var(--amber);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.35rem;
}

.lead-form-header h3 {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.45rem;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.lead-form-header .form-sub {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem 0;
  background: var(--light);
}

.form-step-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel);
  transition: color 0.25s;
}

.form-step-label.active,
.form-step-label.done {
  color: var(--orange-dark);
}

.form-step-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: #cbd5e1;
  border-radius: 1px;
}

.form-step-hint {
  font-size: 0.88rem;
  color: var(--steel);
  margin: 0 0 1rem;
}

.quote-form {
  padding: 1.25rem 1.5rem 1.5rem;
}

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

.form-row-2 {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}

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

.form-group {
  margin-bottom: 0.85rem;
}

.form-group label,
.form-fieldset legend {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.form-group textarea {
  min-height: 96px;
  resize: vertical;
}

.form-fieldset {
  border: none;
  margin: 0 0 0.85rem;
  padding: 0;
}

.form-method-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.form-method-pills label {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 0.55rem 0.5rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  transition: all 0.2s;
}

.form-method-pills input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-method-pills label:has(input:checked) {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.08);
  color: var(--orange-dark);
}

.form-check-emergency {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: #fff7ed;
  border: 2px solid rgba(249, 115, 22, 0.35);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.form-check-emergency input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--orange);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.btn-form-next,
.btn-form-back {
  flex: 1;
  min-width: 120px;
  padding: 0.9rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-form-back {
  background: var(--light);
  color: var(--navy);
  border: 2px solid #e2e8f0;
}

.btn-form-next {
  background: var(--navy);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: none;
  padding: 1.05rem;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-orange);
  transition: transform 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
}

.form-trust {
  text-align: center;
  font-size: 0.72rem;
  color: var(--steel);
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.75rem;
}

.form-trust span::before {
  content: "◆ ";
  color: var(--orange);
  font-size: 0.5rem;
  vertical-align: middle;
}

.form-legal {
  text-align: center;
  font-size: 0.7rem;
  margin: 0.5rem 0 0;
  color: var(--steel);
}

.form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  position: relative;
}

.form-success-icon::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  width: 10px;
  height: 18px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.form-success h3 {
  font-family: var(--display);
  text-transform: uppercase;
}

.form-success-phone a {
  font-weight: 800;
  color: var(--orange);
}

/* ─── Stats strip ─── */
.stats-strip {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

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

.stat-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Sections ─── */
section {
  padding: 4.5rem 0;
}

.section-light {
  background: var(--light);
}

.section-navy {
  background: var(--navy);
  color: #e2e8f0;
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 2.75rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title .eyebrow {
  color: var(--orange);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
}

.section-title h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
}

.section-title p {
  color: var(--steel);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.section-dark {
  background: var(--navy);
  color: #e2e8f0;
}

.section-dark .section-title h2 {
  color: var(--white);
}

/* Problems grid */
.problems-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.problem-card,
.problem-card--link {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  display: block;
  text-decoration: none;
  color: inherit;
}

.problem-card:hover,
.problem-card--link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.45);
  text-decoration: none;
}

.problem-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-dark);
  background: rgba(249, 115, 22, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.65rem;
}

.problem-card h3,
.problem-card--link h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
}

/* HDD vs trench — conversion section */
.hdd-choice {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.choice-columns {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.choice-panel {
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid #e2e8f0;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.choice-panel--featured {
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(249, 115, 22, 0.15);
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.choice-panel--alt {
  background: var(--light);
  border-style: dashed;
}

.choice-panel-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-dark);
  margin-bottom: 0.5rem;
}

.choice-panel--alt .choice-panel-label {
  color: var(--steel);
}

.choice-panel h3 {
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.choice-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.choice-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.5;
}

.choice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.choice-list--muted li::before {
  background: var(--steel);
}

.choice-note {
  font-size: 0.88rem;
  color: var(--steel);
  margin: 0;
}

.choice-foot {
  margin-top: 2rem;
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.choice-foot p {
  margin: 0 0 1rem;
  color: var(--slate);
}

.choice-call {
  border-color: var(--navy) !important;
  color: var(--navy) !important;
}

.benefit-num {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(249, 115, 22, 0.35);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Parallax break — replaces loud orange CTA band */
.parallax-break {
  position: relative;
  min-height: clamp(280px, 42vh, 420px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.parallax-break__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 20, 40, 0.92) 0%, rgba(11, 31, 58, 0.78) 50%, rgba(249, 115, 22, 0.12) 100%),
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(0, 0, 0, 0.25), transparent);
  z-index: 1;
}

.parallax-break__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 0;
}

.parallax-break__eyebrow {
  color: var(--amber);
  display: block;
  margin-bottom: 0.75rem;
}

.parallax-break__line {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 28ch;
  margin: 0 auto 0.75rem;
  line-height: 1.15;
}

.parallax-break__sub {
  color: #94a3b8;
  font-size: 0.88rem;
  margin: 0 0 1.25rem;
  letter-spacing: 0.04em;
}

.parallax-break__actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.parallax-break__sep {
  color: #64748b;
}

/* Mid CTA band (inner pages) */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 2.5rem 0;
  text-align: center;
  border-top: 3px solid var(--orange);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cta-band p {
  margin-bottom: 1.25rem;
  opacity: 0.95;
  font-size: 1.05rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white) !important;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--navy) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Cards */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card,
.service-card--link {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-card:hover,
.service-card--link:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.45);
  text-decoration: none;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3,
.service-card--link h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-card p,
.service-card--link p {
  font-size: 0.92rem;
  color: var(--steel);
  flex: 1;
  margin-bottom: 0.75rem;
}

.card-link-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-dark);
  margin-top: auto;
  transition: gap 0.2s var(--ease);
}

.service-card--link:hover .card-link-hint,
.problem-card--link:hover .card-link-hint,
.industry-card--link:hover .card-link-hint {
  gap: 0.55rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--orange-dark);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, gap 0.2s;
}

.text-link:hover {
  border-bottom-color: var(--orange);
  gap: 0.5rem;
  text-decoration: none;
}

.text-link--light {
  color: var(--amber);
}

.text-link--light:hover {
  border-bottom-color: var(--amber);
}

.section-footnote {
  text-align: center;
  margin-top: 2rem;
  color: var(--steel);
  font-size: 0.95rem;
}

.section-footnote--light {
  color: #94a3b8;
}

.section-footnote a {
  font-weight: 700;
}

.process-grid,
.benefits-grid,
.industries-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.process-step,
.benefit-card,
.industry-card,
.industry-card--link {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.industry-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.industry-card--link:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.industry-card--link h3 {
  color: var(--navy);
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.industry-card--link p {
  color: var(--steel);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
  flex: 1;
}

/* ─── Industries showcase (homepage) ─── */
.industries-showcase {
  padding: 4.5rem 0;
  background:
    linear-gradient(180deg, var(--light) 0%, var(--white) 40%, var(--light) 100%);
  position: relative;
  overflow: hidden;
}

.industries-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--orange), var(--navy));
}

.industries-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(11, 31, 58, 0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.industries-showcase .container {
  position: relative;
  z-index: 1;
}

.industries-showcase-head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.industries-showcase-title h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.industries-showcase-lead p {
  margin: 0 0 0.65rem;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 36rem;
}

.industries-showcase-lead strong {
  color: var(--navy);
}

.industries-showcase-sub {
  font-size: 0.92rem !important;
  color: var(--steel) !important;
}

.industries-bento {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.industries-bento__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.35rem 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s, border-color 0.28s;
}

.industries-bento__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange), var(--amber));
  opacity: 0;
  transition: opacity 0.25s;
}

.industries-bento__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.35);
  text-decoration: none;
}

.industries-bento__card:hover::before {
  opacity: 1;
}

.industries-bento__card--featured {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 55%, #153a6b 100%);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 12px 32px rgba(6, 20, 40, 0.25);
  padding: 1.65rem 1.5rem 1.75rem;
}

.industries-bento__card--featured::before {
  width: 5px;
  opacity: 1;
  background: linear-gradient(180deg, var(--amber), var(--orange));
}

.industries-bento__card--featured:hover {
  border-color: var(--amber);
  box-shadow: 0 18px 40px rgba(6, 20, 40, 0.35);
}

.industries-bento__badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
}

.industries-bento__card--featured .industries-bento__badge {
  color: var(--amber);
  background: rgba(249, 115, 22, 0.2);
  border-color: rgba(251, 191, 36, 0.45);
}

.industries-bento__card h3 {
  margin: 0;
  font-size: 1.08rem;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
  padding-right: 2rem;
}

.industries-bento__card--featured h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.industries-bento__card p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--steel);
}

.industries-bento__card--featured p {
  color: #94a3b8;
  font-size: 0.93rem;
}

.industries-bento__arrow {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(249, 115, 22, 0.45);
  transition: transform 0.25s var(--ease), color 0.25s;
}

.industries-bento__card--featured .industries-bento__arrow {
  color: rgba(251, 191, 36, 0.65);
}

.industries-bento__card:hover .industries-bento__arrow {
  transform: translate(4px, -4px);
  color: var(--orange-dark);
}

.industries-bento__card--featured:hover .industries-bento__arrow {
  color: var(--amber);
}

@media (min-width: 640px) {
  .industries-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .industries-bento__card--featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .industries-showcase-head {
    grid-template-columns: minmax(240px, 0.85fr) 1fr;
    align-items: end;
    gap: 2.5rem;
  }

  .industries-bento {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.1rem;
  }

  .industries-bento__card:nth-child(1) {
    grid-column: 1 / span 7;
    grid-row: 1;
    min-height: 11.5rem;
  }

  .industries-bento__card:nth-child(2) {
    grid-column: 8 / span 5;
    grid-row: 1;
    min-height: 11.5rem;
  }

  .industries-bento__card:nth-child(3) {
    grid-column: 1 / span 4;
    grid-row: 2;
  }

  .industries-bento__card:nth-child(4) {
    grid-column: 5 / span 4;
    grid-row: 2;
  }

  .industries-bento__card:nth-child(5) {
    grid-column: 9 / span 4;
    grid-row: 2;
  }
}

.process-step:hover,
.benefit-card:hover {
  transform: translateY(-4px);
}

/* Premium process showcase */
.process-showcase-section {
  background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 55%, #132d52 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.process-showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(249, 115, 22, 0.12), transparent),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(251, 191, 36, 0.08), transparent);
  pointer-events: none;
}

.process-showcase-section .container {
  position: relative;
  z-index: 1;
}

.section-title--light h2 {
  color: var(--white);
}

.section-title--light p {
  color: #94a3b8;
}

.process-showcase {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.process-showcase-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.process-showcase-step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(249, 115, 22, 0.45);
  transform: translateY(-3px);
}

.process-showcase-num {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(249, 115, 22, 0.85);
  min-width: 2.5rem;
}

.process-showcase-body h3 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
}

.process-showcase-body p {
  color: #94a3b8;
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
}

.process-step .step-num {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-weight: 800;
  border-radius: 10px;
  margin-bottom: 0.85rem;
  font-family: var(--display);
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
  position: relative;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(249, 115, 22, 0.12);
  font-family: Georgia, serif;
}

.review-stars {
  color: var(--amber);
  letter-spacing: 0.15em;
  margin-bottom: 0.65rem;
}

.review-card p {
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--navy);
  padding: 1rem 1.25rem;
  list-style: none;
}

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

.faq-item[open] summary {
  background: var(--light);
  border-bottom: 1px solid #e2e8f0;
}

.faq-item p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  color: var(--slate);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.area-tag {
  display: inline-block;
  background: var(--white);
  border: 2px solid #e2e8f0;
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s;
}

.area-tag:hover {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.08);
  color: var(--orange-dark);
  text-decoration: none;
  transform: translateY(-2px);
}

.gallery-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--steel);
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-grid--full {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid #e2e8f0;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(180deg, var(--light), var(--white));
  border-top: 1px solid #e2e8f0;
  line-height: 1.35;
}

.photo-band {
  display: grid;
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
}

.photo-band-media {
  position: relative;
  min-height: 280px;
}

.photo-band-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.photo-band-copy {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.photo-band-copy .eyebrow {
  color: var(--amber);
}

.photo-band-copy h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  max-width: 22ch;
}

.photo-band-copy p {
  color: #cbd5e1;
  max-width: 36rem;
  margin-bottom: 0.5rem;
}

.photo-band-copy .text-link {
  color: var(--amber);
  margin-top: 0.5rem;
}

.photo-band-copy .text-link:hover {
  border-bottom-color: var(--amber);
}

.seo-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: var(--steel);
  font-size: 1.05rem;
}

.highlights-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.highlight-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}

.highlight-card p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

.section-lead-short {
  color: var(--steel);
  font-size: 0.98rem;
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.5;
}

.city-services-priority {
  padding: 2.5rem 0 1.5rem;
  background: var(--light);
  border-bottom: 1px solid #e2e8f0;
}

.city-visual-intro {
  padding: 3rem 0;
}

.city-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.city-visual-grid--reverse .city-visual-media {
  order: 2;
}

.city-visual-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.city-visual-copy h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.city-visual-lead {
  color: #475569;
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.city-visual-kw {
  font-size: 0.9rem;
  color: var(--steel);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}

.highlight-tag {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--light);
  border: 1px solid #e2e8f0;
  color: var(--navy);
}

.city-details-accordion {
  padding: 2.5rem 0;
  background: var(--light);
}

.city-details-stack {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.city-details-item {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.city-details-item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.88rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

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

.city-details-body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.92rem;
  color: var(--steel);
}

.city-details-body p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.gallery-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* 4× H2 rank sections — image + CTA per city page */
.city-h2-rank-stack {
  display: flex;
  flex-direction: column;
}

.city-h2-panel {
  padding: 3rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.city-h2-panel:nth-child(even) {
  background: var(--light);
}

.city-h2-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.city-h2-panel--reverse .city-h2-panel-media {
  order: 2;
}

.city-h2-panel-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.city-h2-panel-copy h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  line-height: 1.15;
  color: var(--navy);
}

.city-h2-panel-seo {
  margin: 0 0 0.85rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--orange);
}

.city-h2-panel-copy p {
  margin: 0 0 0.85rem;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.55;
}

.city-h2-panel-copy p:last-of-type {
  margin-bottom: 0.75rem;
}

.city-h2-panel-bullets {
  margin: 0 0 1.15rem;
  padding-left: 1.15rem;
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.5;
}

.city-h2-panel-bullets li {
  margin-bottom: 0.35rem;
}

.city-h2-panel-bullets li::marker {
  color: var(--orange);
}

/* ─── Combo pages (service × city) ─── */
.combo-hero .subtitle {
  max-width: 52ch;
}

.combo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.combo-intro {
  padding: 3rem 0;
}

.combo-scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.combo-scenario-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.combo-scenario-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.3;
}

.combo-scenario-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: #475569;
}

@media (max-width: 768px) {
  .combo-scenario-grid {
    grid-template-columns: 1fr;
  }
}

.city-h2-panel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

@media (max-width: 768px) {
  .city-visual-grid,
  .city-visual-grid--reverse .city-visual-media {
    grid-template-columns: 1fr;
    order: unset;
  }

  .city-h2-panel-grid,
  .city-h2-panel--reverse .city-h2-panel-media {
    grid-template-columns: 1fr;
    order: unset;
  }

  .city-h2-panel {
    padding: 2rem 0;
  }
}

/* ─── City hub lead-gen layout ─── */
.city-prose-block h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.city-prose-block h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--navy);
}

.city-prose-block p {
  margin-bottom: 1rem;
  line-height: 1.65;
}

.city-cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin: 2rem auto;
  width: min(100% - 2.5rem, var(--max));
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow: var(--shadow-lg);
}

.city-cta-strip-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 200px;
}

.city-cta-strip-copy strong {
  color: var(--white);
  font-size: 1.05rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.city-cta-strip-copy span {
  color: #94a3b8;
  font-size: 0.88rem;
}

.city-cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.city-cta-band {
  margin: 0;
}

.city-audience-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 1.5rem;
}

.city-audience-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), border-color 0.2s;
}

.city-audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.35);
}

.city-audience-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--navy);
}

.city-audience-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.5;
}

.city-811-steps {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.city-811-steps li {
  color: var(--slate);
  line-height: 1.55;
}

.page-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 640px) {
  .city-cta-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .city-cta-strip-actions {
    justify-content: center;
  }
}

.content-photo,
.about-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 7 / 5;
}

.breadcrumbs {
  background: var(--light);
  padding: 0.7rem 0;
  font-size: 0.82rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 0.35rem;
  color: var(--steel);
}

.page-hero {
  position: relative;
  padding: 4.5rem 0;
  color: var(--white);
  background: var(--navy) center 35% / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 20, 40, 0.92), rgba(249, 115, 22, 0.2));
}

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

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  text-transform: uppercase;
}

.page-hero .subtitle {
  color: #e2e8f0;
  max-width: 42rem;
  font-size: 1.08rem;
}

.hero-eyebrow {
  color: var(--amber);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.site-footer {
  background: var(--navy-dark);
  color: #94a3b8;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.site-footer h4 {
  color: var(--amber);
  font-family: var(--display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.site-footer a {
  color: #cbd5e1;
  font-size: 0.88rem;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-phone {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white) !important;
  display: inline-block;
  margin: 0.5rem 0;
}

.footer-cities {
  columns: 2;
  column-gap: 1rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  text-align: center;
}

.sticky-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
}

.sticky-mobile a {
  text-align: center;
  padding: 1rem;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
}

.sticky-call {
  background: var(--navy);
  color: var(--white) !important;
}

.sticky-quote {
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  color: var(--white) !important;
}

.cta-form-section {
  padding: 4rem 0;
}

.cta-form-section--split {
  padding: 4.5rem 0;
}

.cta-form-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.cta-form-split-copy h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cta-form-split-copy > p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 28rem;
  margin-bottom: 1.25rem;
}

.cta-form-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.cta-form-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 600;
}

.cta-form-trust li::before {
  content: "✓";
  color: var(--amber);
  font-weight: 800;
}

.cta-form-phone {
  margin: 0;
}

.cta-form-wrap {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.cta-form-split--map {
  align-items: stretch;
}

.cta-form-split-lead {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-map-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.2);
}

.cta-map-panel iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.cta-map-footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: rgba(6, 20, 40, 0.85);
  color: #cbd5e1;
  font-size: 0.82rem;
  text-decoration: none;
  border-top: 1px solid rgba(249, 115, 22, 0.35);
  transition: background 0.2s;
}

.cta-map-footer:hover {
  background: rgba(249, 115, 22, 0.15);
  text-decoration: none;
  color: var(--white);
}

.cta-map-footer strong {
  color: var(--amber);
  font-weight: 800;
}

.cta-map-pin {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.25);
  flex-shrink: 0;
}

.cta-form-section--split .cta-form-wrap {
  margin: 0;
  max-width: none;
}

@media (min-width: 1100px) {
  .cta-form-split--map {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .cta-map-panel iframe {
    height: 240px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.about-grid,
.contact-grid,
.content-block {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
}

.seo-longform {
  max-width: 780px;
}

.seo-longform p {
  margin-bottom: 1rem;
}

.seo-list {
  padding-left: 1.25rem;
}

.two-col-lists {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.emergency-banner {
  background: linear-gradient(90deg, #dc2626, var(--orange));
  color: var(--white);
  text-align: center;
  padding: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-404 {
  text-align: center;
  padding: 5rem 0;
}

.sitemap-page section {
  padding: 2rem 0;
}

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

@media (min-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .logo {
    justify-self: start;
  }

  .nav-desktop {
    display: flex;
    justify-self: center;
  }

  .header-ctas {
    justify-self: end;
    margin-left: 0;
  }

  .nav-toggle,
  .nav-mobile,
  .nav-mobile-backdrop {
    display: none !important;
  }

  .btn-header-quote {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .choice-columns {
    grid-template-columns: 1.15fr 0.85fr;
  }

  body {
    padding-bottom: 0;
  }

  .sticky-mobile {
    display: none;
  }

  .about-grid,
  .content-block {
    grid-template-columns: 1fr 1.1fr;
  }

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

  .photo-band {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .photo-band-media {
    min-height: 100%;
  }

  .cta-form-split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .process-showcase {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

@media (max-width: 899px) {
  .header-inner {
    gap: 0.65rem;
    padding: 0.7rem 0;
  }

  .logo-img {
    max-height: 40px;
    max-width: min(42vw, 160px);
  }

  .btn-call {
    font-size: 0.88rem;
    padding: 0.65rem 1.1rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    max-height: 34px;
    max-width: min(36vw, 120px);
  }

  .footer-logo img {
    max-height: 60px;
    max-width: 220px;
  }
}
