/* ============================================================
   FORT COLLINS DRAIN SPECIALISTS — MAIN STYLESHEET
   Import design tokens first, then all component styles.
   ============================================================ */

@import url('design-system.css');

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--color-text-mid);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--color-accent-dark); }

ul, ol { list-style: none; }

table { border-collapse: collapse; width: 100%; }

/* ============================================================
   TYPOGRAPHY — HEADINGS
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  font-weight: var(--font-weight-extrabold);
}

h1 { font-size: clamp(1.875rem, 4.5vw, 2.875rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: var(--font-weight-bold); }
h4 { font-size: var(--font-size-lg); font-weight: var(--font-weight-bold); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: var(--font-weight-bold); color: var(--color-text); }

/* ============================================================
   LAYOUT — CONTAINER
   ============================================================ */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ============================================================
   LAYOUT — SECTION SPACING
   ============================================================ */

.section {
  padding-block: var(--section-pad-y-mobile);
}

@media (min-width: 768px) {
  .section { padding-block: var(--section-pad-y); }
}

.section--white  { background: var(--color-white); }
.section--light  { background: var(--color-off-white); }
.section--navy   { background: var(--color-navy); }
.section--navy-mid { background: var(--color-navy-mid); }
.section--accent { background: var(--color-accent); }

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__header h2 {
  margin-bottom: var(--space-4);
}

.section__header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 0;
}

/* Invert text for dark section headers */
.section--navy .section__header h2,
.section--navy .section__header p,
.section--navy-mid .section__header h2,
.section--navy-mid .section__header p {
  color: var(--color-text-invert);
}

/* ============================================================
   SECTION LABEL / EYEBROW
   ============================================================ */

.section-label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section--navy .section-label,
.section--navy-mid .section-label {
  color: var(--color-accent);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-sans);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1.25;
  border-radius: var(--btn-radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--btn-transition);
  white-space: nowrap;
}

/* Primary — accent green */
.btn--primary {
  background: var(--color-accent);
  color: var(--color-navy);
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.35);
}

/* Secondary — outlined navy */
.btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn--secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* Ghost — outlined white (for dark backgrounds) */
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* Nav CTA button */
.btn--nav {
  background: var(--color-accent);
  color: var(--color-navy);
  border-color: var(--color-accent);
  padding: 0.625rem 1.25rem;
  font-size: var(--font-size-sm);
}

.btn--nav:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-navy);
}

/* Sizes */
.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

/* ============================================================
   TOP BAR
   ============================================================ */

.topbar {
  background: var(--topbar-bg);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--topbar-text);
}

.topbar__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

.topbar__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.topbar__phone:hover { color: var(--color-accent-light); }

.topbar__phone svg {
  width: 13px;
  height: 13px;
}

.topbar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.topbar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.65);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.topbar__social-link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
}

.topbar__social-link svg {
  width: 15px;
  height: 15px;
}

/* Hide some topbar items on small screens */
@media (max-width: 639px) {
  .topbar__left .topbar__item:not(.topbar__item--hours) {
    display: none;
  }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  box-shadow: 0 2px 12px rgba(13, 30, 54, 0.10);
}

.navbar {
  background: var(--nav-bg);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--nav-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  width: 100%;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-navy);
  border-radius: var(--radius-base);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar__logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.navbar__logo-text {
  line-height: 1.2;
}

.navbar__logo-name {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy);
  letter-spacing: var(--letter-spacing-tight);
}

.navbar__logo-tagline {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

/* Desktop nav links */
.navbar__nav {
  display: none;
}

@media (min-width: 1024px) {
  .navbar__nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    flex: 1;
    justify-content: center;
  }
}

.navbar__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar__nav-item {
  position: relative;
}

.navbar__nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-mid);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.navbar__nav-link:hover {
  color: var(--color-navy);
  background: var(--color-light);
}

.navbar__nav-link .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

/* Dropdown */
.navbar__nav-item:hover .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__nav-item:hover .chevron {
  transform: rotate(180deg);
}

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
}

.navbar__dropdown-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-mid);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.navbar__dropdown-link:hover {
  color: var(--color-navy);
  background: var(--color-light);
}

/* Right side CTA */
.navbar__cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.navbar__hamburger:hover { background: var(--color-light); }

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition-base);
}

@media (min-width: 1024px) {
  .navbar__hamburger { display: none; }
}

/* Hamburger open state */
.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: calc(var(--topbar-height) + var(--nav-height));
  background: var(--color-white);
  z-index: var(--z-overlay);
  overflow-y: auto;
  padding: var(--space-6) var(--space-4) var(--space-12);
  box-shadow: var(--shadow-lg);
}

.mobile-menu.is-open { display: block; }

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-2);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu__sub {
  padding: var(--space-2) 0 var(--space-4) var(--space-4);
}

.mobile-menu__sub-link {
  display: block;
  padding: var(--space-3) var(--space-2);
  font-size: var(--font-size-base);
  color: var(--color-text-mid);
  border-bottom: 1px solid var(--color-light-mid);
}

.mobile-menu__sub-link:hover { color: var(--color-navy); }

.mobile-menu__cta {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mobile-menu__cta .btn { justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: var(--hero-min-height);
  display: flex;
  align-items: center;
  background: var(--hero-bg);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Placeholder gradient until real image is added */
.hero__bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1e36 0%, #1a3560 50%, #0d2a4a 100%);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

/* Subtle diagonal stripe texture */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.01) 60px,
    rgba(255,255,255,0.01) 61px
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-20);
  width: 100%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 380px;
  }
}

.hero__text {
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-5);
  line-height: 1.15;
}

.hero__intro {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-6);
  line-height: var(--line-height-relaxed);
}

.hero__service-area {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.hero__service-area svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero__service-area-list {
  color: rgba(255,255,255,0.75);
  font-weight: var(--font-weight-normal);
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero__trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-base);
  color: rgba(255,255,255,0.9);
}

.hero__trust-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero__trust-check svg {
  width: 10px;
  height: 10px;
  color: var(--color-navy);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* Hero sidebar card */
.hero__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  backdrop-filter: blur(8px);
}

.hero__card-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hero__card-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.hero__card-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.hero__card-icon {
  width: 36px;
  height: 36px;
  background: rgba(46,204,113,0.15);
  border-radius: var(--radius-base);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.hero__card-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 2px;
}

.hero__card-value {
  font-size: var(--font-size-base);
  color: rgba(255,255,255,0.9);
  font-weight: var(--font-weight-medium);
}

.hero__card-cta {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__card-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 767px) {
  .hero__card { display: none; }
  .hero__content { padding-block: var(--space-12); }
}

/* ============================================================
   INLINE Q&A BOXES
   ============================================================ */

.qa-box {
  background: var(--color-navy-faint);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-base) var(--radius-base) 0;
  padding: var(--space-5) var(--space-6);
  margin: var(--space-6) 0;
}

.qa-box__question {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.qa-box__answer {
  font-size: var(--font-size-base);
  color: var(--color-text-mid);
  margin-bottom: 0;
}

/* ============================================================
   SECTION: WHY DIY FAILS — SPLIT LAYOUT
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }

  .split--reverse .split__image { order: -1; }
}

.split__content > h2 {
  margin-bottom: var(--space-5);
}

.split__content > p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-5);
}

.split__cta-line {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.split__cta-line p {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.split__image {
  position: relative;
}

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */

.img-ph {
  background: linear-gradient(135deg, var(--color-navy-faint) 0%, var(--color-light-mid) 100%);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-border);
  overflow: hidden;
}

.img-ph--hero {
  min-height: 100%;
  border-radius: 0;
  border: none;
  background: linear-gradient(135deg, #1a3560 0%, #0d1e36 100%);
}

.img-ph__label {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  text-align: center;
  padding: var(--space-4);
}

/* ============================================================
   SECTION: PROBLEMS WE HEAR EVERY DAY
   ============================================================ */

.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .problems-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .problems-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.problem-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.problem-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(46,204,113,0.1);
  border-radius: var(--radius-base);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.problem-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent-dark);
}

.problem-card h3 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
  line-height: 1.35;
}

.problem-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-mid);
  margin-bottom: 0;
  line-height: 1.65;
}

.problem-card .qa-box {
  margin: var(--space-4) 0 0;
  padding: var(--space-4);
  font-size: var(--font-size-sm);
}

.problem-card .qa-box__question {
  font-size: var(--font-size-sm);
}

.problem-card .qa-box__answer {
  font-size: var(--font-size-sm);
}

/* Full-width problem card for the leak item */
.problem-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .problem-card--wide { grid-column: 1 / -1; }
}

/* ============================================================
   SECTION: EMERGENCY CTA BAND
   ============================================================ */

.emergency-band {
  background: var(--color-navy);
  padding-block: var(--space-16);
}

.emergency-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .emergency-band__inner {
    grid-template-columns: 1fr auto;
    gap: var(--space-12);
  }
}

.emergency-band h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.emergency-band p {
  color: rgba(255,255,255,0.8);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-5);
  max-width: 620px;
}

.emergency-band p:last-of-type { margin-bottom: 0; }

.emergency-band__aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-width: 240px;
}

.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.emergency-badge svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
   SECTION: WHY WE'RE DIFFERENT
   ============================================================ */

.differentiators-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .differentiators-grid { grid-template-columns: 1fr 1fr; }
}

.diff-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.diff-card:hover { box-shadow: var(--shadow-md); }

.diff-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-navy);
  color: var(--color-accent);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-extrabold);
  border-radius: var(--radius-base);
  margin-bottom: var(--space-4);
}

.diff-card h3 {
  font-size: var(--font-size-lg);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.diff-card p {
  color: var(--color-text-mid);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

/* ============================================================
   SECTION: LOCAL CAUSES
   ============================================================ */

.local-causes__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.cause-item {
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border);
}

.cause-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.cause-item h3 {
  color: var(--color-navy);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.cause-item h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cause-item p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-4);
}

.cause-item p:last-child { margin-bottom: 0; }

.cause-item a {
  color: var(--color-navy);
  font-weight: var(--font-weight-medium);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cause-item a:hover { color: var(--color-accent-dark); }

/* ============================================================
   SECTION: SERVICES GRID
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-accent);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-navy-faint);
  border-radius: var(--radius-base);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-navy);
}

.service-card h3 {
  font-size: var(--font-size-lg);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-mid);
  line-height: var(--line-height-relaxed);
  flex: 1;
  margin-bottom: var(--space-5);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card__link:hover {
  color: var(--color-accent-dark);
  gap: var(--space-3);
}

.service-card__link svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
   SECTION: PROCESS STEPS
   ============================================================ */

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  position: relative;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.process-step {
  position: relative;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--color-accent);
  color: var(--color-navy);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-extrabold);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-5);
}

.process-step h3 {
  font-size: var(--font-size-lg);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.process-step p {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.75);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

.process-section .qa-box {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--color-accent);
  margin-top: var(--space-10);
}

.process-section .qa-box__question {
  color: var(--color-accent);
}

.process-section .qa-box__answer {
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   SECTION: PRICING TABLE
   ============================================================ */

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
  border: 1px solid var(--color-border);
}

.pricing-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
}

.pricing-table thead {
  background: var(--color-navy);
}

.pricing-table thead th {
  padding: var(--space-4) var(--space-6);
  text-align: left;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.pricing-table thead th:last-child {
  text-align: right;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}

.pricing-table tbody tr:last-child { border-bottom: none; }

.pricing-table tbody tr:nth-child(even) {
  background: var(--color-off-white);
}

.pricing-table tbody tr:hover {
  background: var(--color-light);
}

.pricing-table td {
  padding: var(--space-4) var(--space-6);
  font-size: var(--font-size-base);
  color: var(--color-text-mid);
  vertical-align: middle;
}

.pricing-table td:first-child {
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.pricing-table td:last-child {
  text-align: right;
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
  white-space: nowrap;
}

.pricing-notes {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-mid);
}

.pricing-note svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-qa {
  margin-top: var(--space-8);
}

/* ============================================================
   SECTION: SERVICE AREA
   ============================================================ */

.service-area__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .service-area__inner { grid-template-columns: 1fr 1fr; }
}

.service-area__content h2 {
  margin-bottom: var(--space-5);
}

.service-area__content p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-5);
}

.zip-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.zip-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  background: var(--color-navy-faint);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
}

.service-area__map {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.service-area__map-inner {
  text-align: center;
  padding: var(--space-8);
}

.service-area__map-inner svg {
  width: 48px;
  height: 48px;
  color: var(--color-navy-mid);
  margin-bottom: var(--space-3);
}

.service-area__map-inner p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

/* ============================================================
   SECTION: FAQ ACCORDION
   ============================================================ */

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-item.is-open {
  box-shadow: var(--shadow-base);
  border-color: var(--color-navy-mid);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-fast);
}

.faq-trigger:hover { background: var(--color-light); }

.faq-item.is-open .faq-trigger {
  background: var(--color-navy);
}

.faq-trigger__text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  line-height: var(--line-height-snug);
}

.faq-item.is-open .faq-trigger__text {
  color: var(--color-white);
}

.faq-trigger__icon {
  width: 28px;
  height: 28px;
  background: var(--color-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast), transform var(--transition-base);
}

.faq-item.is-open .faq-trigger__icon {
  background: rgba(255,255,255,0.15);
  transform: rotate(45deg);
}

.faq-trigger__icon svg {
  width: 14px;
  height: 14px;
  color: var(--color-navy);
}

.faq-item.is-open .faq-trigger__icon svg {
  color: var(--color-white);
}

.faq-body {
  display: none;
  padding: var(--space-5) var(--space-6) var(--space-6);
  border-top: 1px solid var(--color-border);
}

.faq-item.is-open .faq-body { display: block; }

.faq-body p {
  font-size: var(--font-size-base);
  color: var(--color-text-mid);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

/* ============================================================
   SECTION: FINAL CTA
   ============================================================ */

.final-cta {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  padding-block: var(--space-20);
  text-align: center;
}

.final-cta h2 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-5);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.final-cta p {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.75);
}

.footer__main {
  padding-block: var(--space-16);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 640px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer__main { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__brand h3 {
  color: var(--color-white);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.footer__brand p {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.6);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-5);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.75);
}

.footer__contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.75);
}

.footer__contact-item a:hover { color: var(--color-accent); }

.footer__col h4 {
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col a {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}

.footer__col a:hover { color: var(--color-accent); }

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-base);
  color: rgba(255,255,255,0.65);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--color-accent);
  color: var(--color-navy);
}

.footer__social-link svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.45);
}

.footer__bottom a {
  color: rgba(255,255,255,0.45);
}

.footer__bottom a:hover { color: rgba(255,255,255,0.75); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-center { text-align: center; }
.text-navy   { color: var(--color-navy); }
.text-accent { color: var(--color-accent); }
.text-white  { color: var(--color-white); }
.text-light  { color: var(--color-text-light); }

.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mt-4  { margin-top: var(--space-4); }
.mb-4  { margin-bottom: var(--space-4); }
.mt-8  { margin-top: var(--space-8); }
.mb-8  { margin-bottom: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mb-10 { margin-bottom: var(--space-10); }

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

/* Inline highlight used in hero service area */
.dot-sep {
  color: rgba(255,255,255,0.4);
  margin-inline: 0.25em;
}

/* ============================================================
   LOGO IMAGE IN NAVBAR
   ============================================================ */

.navbar__logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* ============================================================
   HERO — REAL IMAGE
   ============================================================ */

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================================
   SPLIT SECTION — REAL IMAGES
   ============================================================ */

.split__image {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.split__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .split__image img {
    height: 100%;
    min-height: 400px;
    max-height: 540px;
  }
}

/* ============================================================
   TRUST CARDS (homepage — dark navy strip below hero)
   ============================================================ */

.trust-cards {
  background: var(--color-navy-mid);
  padding-block: var(--space-10);
  border-bottom: 3px solid rgba(46, 204, 113, 0.2);
}

.trust-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

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

/* Base dark-background card (homepage) */
.trust-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.trust-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(46, 204, 113, 0.18);
  border-radius: var(--radius-base);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  stroke: var(--color-accent);
}

.trust-card__body { min-width: 0; }

.trust-card__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.trust-card__desc {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0;
}

/* Light variant — for use inside white/off-white content sections */
.trust-card--light {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.trust-card--light .trust-card__icon {
  background: var(--color-navy-faint);
}

.trust-card--light .trust-card__icon svg {
  color: var(--color-navy);
  stroke: var(--color-navy);
}

.trust-card--light .trust-card__title {
  color: var(--color-navy);
}

.trust-card--light .trust-card__desc {
  color: var(--color-text-mid);
}

@media (max-width: 479px) {
  .trust-cards__grid { grid-template-columns: 1fr; }
  .trust-card {
    padding: var(--space-4);
    gap: var(--space-3);
  }
}

/* ============================================================
   FEATURE BULLETS — icon + text, used on inner pages
   ============================================================ */

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-block: var(--space-6);
}

.feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.feature-bullet__icon {
  width: 28px;
  height: 28px;
  background: var(--color-navy-faint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-bullet__icon svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent-dark);
  stroke: var(--color-accent-dark);
}

.feature-bullet__text {
  font-size: var(--font-size-base);
  color: var(--color-text-mid);
  line-height: 1.6;
}

.feature-bullet__text strong { color: var(--color-navy); }

/* ============================================================
   H3 OVERRIDES — QA-BOX QUESTION & FAQ TRIGGER
   qa-box questions and FAQ triggers are now <h3> elements.
   Override inherited h3 sizing so they stay visually compact.
   ============================================================ */

.qa-box__question {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  letter-spacing: normal;
  line-height: 1.4;
}

/* Process section question override */
.process-section .qa-box__question {
  color: var(--color-accent);
}

/* Problem card question override */
.problem-card .qa-box__question {
  font-size: var(--font-size-sm);
}

.faq-trigger__text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  margin: 0;
  text-align: left;
  letter-spacing: normal;
}

.faq-item.is-open .faq-trigger__text {
  color: var(--color-white);
}

/* ============================================================
   MAP — RESPONSIVE IFRAME
   ============================================================ */

.map-responsive {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-light);
}

.map-responsive iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

@media (max-width: 767px) {
  .map-responsive iframe { height: 260px; }
}

/* ============================================================
   RESPONSIVE FIXES
   ============================================================ */

/* Prevent horizontal scroll at page level */
body { overflow-x: clip; }
.float-call { overflow: visible; }

/* Topbar: hide hours on very small screens */
@media (max-width: 479px) {
  .topbar__item:not(.topbar__phone-item) { display: none; }
  .topbar__divider { display: none; }
  .topbar__inner { justify-content: space-between; }
}

/* Hero: full-width stacked buttons on small mobile */
@media (max-width: 479px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__intro { font-size: var(--font-size-base); }
  .hero__content { padding-block: var(--space-10); }
}

/* Emergency band: full-width buttons on mobile */
@media (max-width: 767px) {
  .emergency-band__aside {
    min-width: unset;
    width: 100%;
  }
  .emergency-band__aside .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Final CTA: stack buttons on small mobile */
@media (max-width: 479px) {
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta__actions .btn { justify-content: center; }
  .final-cta { padding-block: var(--space-16); }
}

/* Navbar: tighten logo text on mid screens */
@media (max-width: 1023px) {
  .navbar__logo-name { font-size: var(--font-size-xs); }
}

/* Pricing table: smooth touch scroll */
.pricing-table-wrap {
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* Section overflow containment */
.hero, .trust-cards, .emergency-band, .final-cta {
  overflow: hidden;
}

/* Ensure all images are max-width contained */
img { max-width: 100%; height: auto; }

/* Mobile menu: ensure it doesn't cause page overflow */
.mobile-menu { max-width: 100vw; overflow-x: hidden; }

/* Split section: image height constraint on mobile */
@media (max-width: 767px) {
  .split__image { max-height: 320px; }
  .split__image img { max-height: 320px; object-fit: cover; }
}

/* Service area map stacks on mobile — handled by grid */
@media (max-width: 767px) {
  .service-area__map { min-height: 260px; }
}


/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .page-hero { min-height: 440px; }
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 30, 54, 0.88) 0%,
    rgba(13, 30, 54, 0.72) 60%,
    rgba(13, 30, 54, 0.50) 100%
  );
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: var(--space-16);
}

.page-hero__content h1 {
  color: var(--color-white);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.2;
  max-width: 780px;
  margin-bottom: var(--space-4);
}

.page-hero__intro {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 640px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

@media (max-width: 479px) {
  .page-hero__actions { flex-direction: column; width: 100%; }
  .page-hero__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   INNER-PAGE CONTENT STYLES
   ============================================================ */

/* Bullet lists inside content sections */
.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-block: var(--space-4);
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--color-text-mid);
  line-height: 1.6;
}

.content-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--color-accent);
}

/* CTA inline line */
.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  background: var(--color-off-white);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-base);
  padding: var(--space-5) var(--space-6);
  margin-block: var(--space-8);
}

.inline-cta p {
  margin: 0;
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  font-size: 1.0625rem;
}

/* Do / Don't list */
.do-dont-grid {
  display: grid;
  gap: var(--space-6);
  margin-block: var(--space-6);
}

@media (min-width: 640px) {
  .do-dont-grid { grid-template-columns: 1fr 1fr; }
}

.do-card, .dont-card {
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}

.do-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.dont-card {
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.do-card h3, .dont-card h3 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-3);
}

.do-card h3 { color: #166534; }
.dont-card h3 { color: #9f1239; }

/* Content breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.breadcrumb a {
  color: var(--color-navy);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb__sep { color: var(--color-border); }

/* Page image — full bleed within a content section */
.page-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-block: var(--space-8);
}

.page-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

/* Step list */
.step-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-block: var(--space-6);
}

.step-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.step-item__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.step-item__body h3 {
  font-size: 1.0625rem;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.step-item__body p { color: var(--color-text-mid); }

/* FAQ page specific: category label above group */
.faq-group { margin-bottom: var(--space-12); }

.faq-group__label {
  display: inline-block;
  background: var(--color-navy);
  color: var(--color-accent);
  font-size: 0.8125rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-5);
}

/* About mission block */
.mission-block {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  margin-block: var(--space-12);
  text-align: center;
}

.mission-block blockquote {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  line-height: 1.4;
  margin: 0 auto var(--space-4);
  max-width: 680px;
}

.mission-block p {
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Process page steps — numbered */
.process-steps-page {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step-counter;
  margin-block: var(--space-8);
}

.process-step-page {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
  position: relative;
}

.process-step-page:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.process-step-page__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step-page__body { padding-top: 0.75rem; }

.process-step-page__body h3 {
  color: var(--color-navy);
  font-size: 1.125rem;
  margin-bottom: var(--space-3);
}

@media (max-width: 479px) {
  .process-step-page {
    grid-template-columns: 48px 1fr;
    gap: var(--space-4);
  }
  .process-step-page__num { width: 48px; height: 48px; font-size: 1.125rem; }
  .process-step-page:not(:last-child)::before { left: 23px; top: 48px; }
}

/* Service area zip tags on inner pages */
.zip-list--sm {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-block: var(--space-4);
}


/* ============================================================
   INNER-PAGE TYPOGRAPHY AND CONTENT SPACING
   ============================================================ */

.section h2 { margin-bottom: var(--space-4); margin-top: 0; }
.section h3 { margin-top: var(--space-8); margin-bottom: var(--space-3); }
.section p { margin-bottom: var(--space-5); line-height: var(--line-height-relaxed); }
.section p:last-child { margin-bottom: 0; }

.inner-section-h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  color: var(--color-navy);
  margin-bottom: var(--space-5);
  line-height: 1.25;
}

.inner-section-intro {
  font-size: 1.0625rem;
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 720px;
}

.content-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-block: var(--space-14);
}

/* ============================================================
   LAYER CARDS — numbered depth/layer explanation
   ============================================================ */

.layer-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-block: var(--space-8);
}

.layer-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-5);
  align-items: start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.layer-card__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-extrabold);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.layer-card--1 { border-left: 4px solid #2ecc71; }
.layer-card--2 { border-left: 4px solid #f59e0b; }
.layer-card--3 { border-left: 4px solid #ef4444; }

.layer-card--1 .layer-card__num { background: #f0fdf4; color: #166534; }
.layer-card--2 .layer-card__num { background: #fffbeb; color: #92400e; }
.layer-card--3 .layer-card__num { background: #fff1f2; color: #9f1239; }

.layer-card__body h3 {
  font-size: 1.0625rem;
  color: var(--color-navy);
  margin: 0 0 var(--space-2) 0;
  line-height: 1.35;
}

.layer-card__body p {
  font-size: var(--font-size-base);
  color: var(--color-text-mid);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 479px) {
  .layer-card { grid-template-columns: 40px 1fr; gap: var(--space-4); padding: var(--space-5); }
  .layer-card__num { width: 36px; height: 36px; font-size: 1rem; }
}

/* ============================================================
   CAUSE CARDS
   ============================================================ */

.cause-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-block: var(--space-8);
}

@media (min-width: 640px) {
  .cause-cards { grid-template-columns: 1fr 1fr; }
}

.cause-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.cause-card__label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.cause-card__icon {
  width: 38px;
  height: 38px;
  background: var(--color-navy);
  border-radius: var(--radius-base);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cause-card__icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  stroke: var(--color-accent);
}

.cause-card h3 {
  font-size: 1rem;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.35;
}

.cause-card p {
  font-size: var(--font-size-base);
  color: var(--color-text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   SCENARIO CARDS
   ============================================================ */

.scenario-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-block: var(--space-8);
}

@media (min-width: 640px) {
  .scenario-grid { grid-template-columns: 1fr 1fr; }
}

.scenario-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.scenario-card h3 {
  font-size: 1.0625rem;
  color: var(--color-navy);
  margin: 0 0 var(--space-3) 0;
  line-height: 1.35;
}

.scenario-card p {
  font-size: var(--font-size-base);
  color: var(--color-text-mid);
  line-height: 1.7;
  margin: 0;
}

.scenario-card a { color: var(--color-navy-mid); font-weight: var(--font-weight-medium); }

/* ============================================================
   INFO HIGHLIGHT BLOCK
   ============================================================ */

.info-block {
  background: var(--color-navy-faint);
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-navy);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-6) var(--space-7);
  margin-block: var(--space-8);
}

.info-block__label {
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
  display: block;
}

.info-block p {
  font-size: var(--font-size-base);
  color: var(--color-text-mid);
  line-height: 1.7;
  margin: 0 0 var(--space-3) 0;
}

.info-block p:last-child { margin: 0; }

/* ============================================================
   SIGN LIST
   ============================================================ */

.sign-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-block: var(--space-6);
  padding: 0;
}

.sign-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-base);
  color: var(--color-text-mid);
  line-height: 1.6;
}

.sign-list li::before {
  content: "!";
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--color-warning);
  background: #fef3c7;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sign-list--check li::before {
  content: "v";
  font-size: 0.65rem;
  color: var(--color-success);
  background: #dcfce7;
  color: #166534;
}

/* ============================================================
   METHOD CARDS
   ============================================================ */

.method-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-block: var(--space-8);
}

.method-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.method-card__num {
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  border-radius: var(--radius-base);
  color: var(--color-accent);
  font-weight: var(--font-weight-extrabold);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-card__body h3 { font-size: 1.0625rem; color: var(--color-navy); margin: 0 0 var(--space-3) 0; }
.method-card__body p { font-size: var(--font-size-base); color: var(--color-text-mid); line-height: 1.7; margin: 0; }
.method-card__body a { color: var(--color-navy-mid); font-weight: var(--font-weight-medium); }

@media (max-width: 479px) {
  .method-card { grid-template-columns: 40px 1fr; gap: var(--space-4); padding: var(--space-5); }
  .method-card__num { width: 36px; height: 36px; font-size: 1rem; }
}

/* ============================================================
   STAGE CARDS
   ============================================================ */

.stage-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-block: var(--space-8);
}

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

.stage-card {
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.stage-card--1 { background: #f0fdf4; border: 1px solid #bbf7d0; }
.stage-card--2 { background: #fffbeb; border: 1px solid #fde68a; }
.stage-card--3 { background: #fff1f2; border: 1px solid #fecdd3; }

.stage-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.stage-card--1 .stage-card__badge { background: #dcfce7; color: #166534; }
.stage-card--2 .stage-card__badge { background: #fef3c7; color: #92400e; }
.stage-card--3 .stage-card__badge { background: #ffe4e6; color: #9f1239; }

.stage-card h3 { font-size: 1rem; margin: 0 0 var(--space-3) 0; }
.stage-card--1 h3 { color: #166534; }
.stage-card--2 h3 { color: #92400e; }
.stage-card--3 h3 { color: #9f1239; }

.stage-card p { font-size: var(--font-size-sm); line-height: 1.65; margin: 0; }
.stage-card--1 p { color: #166534; }
.stage-card--2 p { color: #78350f; }
.stage-card--3 p { color: #881337; }

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  background: var(--color-navy);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-10);
  margin-block: var(--space-12);
}

.cta-band__text h3 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin: 0 0 var(--space-2) 0;
}

.cta-band__text p { font-size: var(--font-size-sm); color: rgba(255,255,255,0.75); margin: 0; }

@media (max-width: 639px) {
  .cta-band { flex-direction: column; align-items: flex-start; padding: var(--space-6); }
  .cta-band .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FEATURE BULLETS
   ============================================================ */

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-block: var(--space-5);
}

.feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.feature-bullet__icon {
  width: 26px;
  height: 26px;
  background: #dcfce7;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-bullet__icon svg {
  width: 13px;
  height: 13px;
  color: #166534;
  stroke: #166534;
}

.feature-bullet__text {
  font-size: var(--font-size-base);
  color: var(--color-text-mid);
  line-height: 1.6;
}

.feature-bullet__text strong { color: var(--color-navy); }

/* ============================================================
   MOBILE FIXES
   ============================================================ */

@media (max-width: 639px) {
  .pricing-table-wrap { overflow-x: auto; }
  .pricing-table { min-width: 480px; }
  .cta-band { padding: var(--space-5); }
  .inline-cta { flex-direction: column; align-items: flex-start; }
  .inline-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 767px) {
  .diff-card { padding: var(--space-5); }
  .service-card { padding: var(--space-5); }
}

/* ============================================================
   FAQ PAGE GROUP LABEL
   ============================================================ */

.faq-group { margin-bottom: var(--space-12); }

.faq-group__label {
  display: inline-block;
  background: var(--color-navy);
  color: var(--color-accent);
  font-size: 0.8125rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-5);
}

/* ============================================================
   ABOUT PAGE - MISSION BLOCK
   ============================================================ */

.mission-block {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  margin-block: var(--space-12);
  text-align: center;
}

.mission-block blockquote {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  line-height: 1.4;
  margin: 0 auto var(--space-4);
  max-width: 680px;
}

.mission-block p {
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ============================================================
   PROCESS PAGE - NUMBERED STEPS
   ============================================================ */

.process-steps-page {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-block: var(--space-8);
}

.process-step-page {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
  position: relative;
}

.process-step-page:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.process-step-page__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step-page__body { padding-top: 0.75rem; }

.process-step-page__body h3 {
  color: var(--color-navy);
  font-size: 1.125rem;
  margin-bottom: var(--space-3);
}

@media (max-width: 479px) {
  .process-step-page { grid-template-columns: 48px 1fr; gap: var(--space-4); }
  .process-step-page__num { width: 48px; height: 48px; font-size: 1.125rem; }
  .process-step-page:not(:last-child)::before { left: 23px; top: 48px; }
}

/* ============================================================
   ZIP TAGS
   ============================================================ */

.zip-list--sm {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-block: var(--space-4);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-10);
}

.breadcrumb a { color: var(--color-navy); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--color-border-dark); }

/* ============================================================
   DESIGN POLISH — targeted fixes and visual improvements
   Appended to main.css — all rules override earlier ones
   ============================================================ */

/* ── TEXT BALANCE on major headings ── */
h1, h2 { text-wrap: balance; }
.inner-section-h2 { text-wrap: balance; }
.page-hero__content h1 { text-wrap: balance; }

/* ── DIFFERENTIATORS GRID — 3 columns on desktop ──
   Original CSS caps at 1fr 1fr (2 cols) so 3 cards = 2+1 orphan.
   Override to 3 cols at 1024px+.
   ─────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .differentiators-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── CARD H3 MARGIN FIX ──
   .section h3 { margin-top: var(--space-8) } at line 2542 cascades
   into card headings whose own rules are earlier in the file.
   Nullify for every card/component that manages its own spacing.
   ─────────────────────────────────────────────── */
.diff-card h3,
.stage-card h3,
.cause-card h3,
.scenario-card h3,
.method-card__body h3,
.layer-card__body h3,
.info-block h3,
.cta-band__text h3,
.trust-card__title,
.problem-card h3,
.service-card h3,
.faq-group h2,
.process-step h3 {
  margin-top: 0;
}

/* ── FAQ LIST — remove max-width centering on inner pages ──
   Full-width aligns with all other content in the container.
   ─────────────────────────────────────────────── */
.faq-list {
  max-width: 100%;
  margin-inline: 0;
}

/* ── SIGN LIST BULLET — reliable cross-browser centering ── */
.sign-list li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── INNER SECTION H2 — subtle accent underline ──
   Adds a short green rule below the eyebrow-style section
   headings to visually separate them from body text.
   ─────────────────────────────────────────────── */
.inner-section-h2 {
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-border);
  margin-bottom: var(--space-6);
}

/* ── SECTION LABEL — tighten spacing before inner-section-h2 ── */
.inner-section-h2 + .inner-section-intro {
  margin-top: 0;
}

/* ── LAYER CARD — align number vertically centered with text ── */
.layer-card {
  align-items: center;
}

/* ── CTA BAND — add left accent stripe ── */
.cta-band {
  border-left: 4px solid var(--color-accent);
}

/* ── SCENARIO CARD — accent top border on hover ── */
.scenario-card {
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
  border-top: 3px solid transparent;
}
.scenario-card:hover {
  box-shadow: var(--shadow-md);
  border-top-color: var(--color-accent);
}

/* ── CAUSE CARD — accent top border on hover ── */
.cause-card {
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
  border-top: 3px solid transparent;
}
.cause-card:hover {
  box-shadow: var(--shadow-sm);
  border-top-color: var(--color-navy);
}

/* ── METHOD CARD — accent left edge on hover ── */
.method-card {
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}
.method-card:hover {
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--color-accent);
}

/* ── LAYER CARD — subtle hover lift ── */
.layer-card {
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.layer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ── STAGE CARDS — slightly taller padding for breathing room ── */
.stage-card {
  padding: var(--space-7) var(--space-6);
}

/* ── DIFF CARD NUM — slightly larger, more presence ── */
.diff-card__num {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

/* ── QA BOX ON DARK SECTIONS — force readable text on navy backgrounds ── */
.section--navy-mid .qa-box,
.process-section .qa-box {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--color-accent);
}
.section--navy-mid .qa-box h3,
.process-section .qa-box h3 {
  color: var(--color-white);
}
.section--navy-mid .qa-box p,
.process-section .qa-box p {
  color: rgba(255, 255, 255, 0.85);
}
.section--navy-mid .qa-box strong,
.process-section .qa-box strong {
  color: var(--color-white);
}

/* ── QA BOX — tighten inside cards and split sections ── */
.split__content .qa-box {
  margin-top: var(--space-8);
}

/* ── PAGE HERO — slightly more vertical padding for inner pages ── */
.page-hero__content {
  padding-block: var(--space-20);
}

/* ── PRICING TABLE — price column right-align, tabular nums ── */
.pricing-table td:last-child,
.pricing-table th:last-child {
  font-variant-numeric: tabular-nums;
}

/* ── CONTENT DIVIDER — slightly more breathing room ── */
.content-divider {
  margin-block: var(--space-16);
}

/* ── FINAL CTA LINK COLOUR — override default navy link in dark section ── */
.final-cta a:not(.btn) {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── INFO BLOCK — stronger left border colour contrast + overflow guard ── */
.info-block {
  border-left-color: var(--color-accent);
  word-break: break-word;
  overflow-wrap: break-word;
}
.info-block ul,
.info-block ol {
  list-style: disc;
  margin: var(--space-3) 0 0 var(--space-5);
  color: var(--color-text-mid);
  line-height: 1.7;
}
.info-block li { margin-bottom: var(--space-2); }

/* ── FAQ ITEM BORDER RADIUS — tighter on open state ── */
.faq-item.is-open {
  border-color: var(--color-navy);
}

/* ── FLOATING CALL BUTTON ── */
.float-call {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
  padding: var(--space-3) var(--space-5);
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.45);
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}
.float-call:hover {
  background: #27ae60;
  color: var(--color-white);
  box-shadow: 0 6px 28px rgba(46, 204, 113, 0.55);
  transform: translateY(-2px);
}
.float-call svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 639px) {
  .float-call span { display: none; }
  .float-call {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    bottom: var(--space-5);
    right: var(--space-5);
  }
  .float-call svg { width: 22px; height: 22px; }
}

/* ── CONTACT FORM ── */
.contact-form__hidden { display: none; }

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 639px) {
  .contact-form__row { grid-template-columns: 1fr; }
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.contact-form__group label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
}

.contact-form__group label span {
  color: var(--color-accent);
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
}

.contact-form__group textarea { resize: vertical; min-height: 120px; }

.btn--full { width: 100%; justify-content: center; }

/* ── CONTACT INFO PANEL ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-info__block h3 {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.contact-info__phone {
  display: block;
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  text-decoration: none;
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.contact-info__phone:hover { color: var(--color-navy); }

.contact-info__block p {
  font-size: var(--font-size-sm);
  color: var(--color-text-mid);
  margin-bottom: var(--space-1);
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.contact-info__list li {
  font-size: var(--font-size-sm);
  color: var(--color-text-mid);
  padding-left: var(--space-5);
  position: relative;
}

.contact-info__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
}

/* ── FAQ TRIGGER TEXT COLOR — button inherits correctly on open/closed ── */
.faq-trigger {
  color: var(--color-navy);
}
.faq-item.is-open .faq-trigger {
  color: var(--color-white);
}

/* ── NAVY-MID SECTION HEADINGS — force white text on dark background ── */
.section--navy-mid h2,
.section--navy-mid .inner-section-h2,
.process-section h2,
.process-section .inner-section-h2 {
  color: var(--color-white);
}
.section--navy-mid .inner-section-h2,
.process-section .inner-section-h2 {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* ── BREADCRUMB — more top breathing room ── */
.breadcrumb {
  margin-bottom: var(--space-12);
}

/* ── SECTION HEADING AFTER DIVIDER — no extra top margin ── */
.content-divider + .inner-section-h2 {
  margin-top: 0;
}
.content-divider + h2 {
  margin-top: 0;
}
.content-divider + .split {
  margin-top: 0;
}

/* ── SIGN LIST — visual weight for the warning bullet ── */
.sign-list li {
  padding: var(--space-2) 0;
}
.sign-list li::before {
  line-height: 1;
}

/* ── MOBILE: stack final CTA buttons cleanly ── */
@media (max-width: 639px) {
  .page-hero__content { padding-block: var(--space-12); }
  .final-cta { padding-block: var(--space-16); }
  .stage-card { padding: var(--space-5); }
}
