/* ═══════════════════════════════════════════
   Champion Air Solutions — Site Stylesheet
   Extracted from original one-pager + expanded for multi-page build.
═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   DESIGN TOKENS & RESET
═══════════════════════════════════════════ */
:root {
  --teal:        #4E6F7E;
  --teal-dark:   #3D5E6E;
  --teal-deep:   #2E4558;
  --teal-light:  #6E92A8;
  --teal-mist:   #eaf2f8;
  --copper:      #aa3d3d;
  --copper-dark: #8f3030;
  --copper-light:#c45050;
  --copper-glow: rgba(170,61,61,0.18);
  --steel:       #C7D8E2;
  --steel-dark:  #a8c0cf;
  --cream:       #f2f6f8;
  --white:       #FFFFFF;
  --ink:         #172838;
  --ink-mid:     #253D50;
  --muted:       #5A7E92;
  --border:      rgba(78,111,126,0.15);
  --f-display:   'Oswald', sans-serif;
  --f-body:      'Nunito', sans-serif;
  --r:           14px;
  --r-lg:        20px;
  --shadow:      0 4px 24px rgba(30,46,47,0.10);
  --shadow-lg:   0 16px 56px rgba(30,46,47,0.16);
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-alt { background: #f0f6f9; }
.section-dark { background: #2E4558; }

.eyebrow {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-block;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--copper);
  vertical-align: middle;
  margin-right: 10px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

.text-teal { color: var(--teal); }
.text-copper { color: var(--copper); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-copper {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
  box-shadow: 0 6px 24px rgba(194,92,74,0.38);
}
.btn-copper:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(194,92,74,0.50);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(74,109,124,0.28);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-3px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-2px);
}
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ═══════════════════════════════════════════
   SCROLL PROGRESS BAR (top of viewport)
═══════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--copper), var(--copper-light, #C46A6A));
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   FLOATING PHONE CTA — mobile only, sticky
═══════════════════════════════════════════ */
.floating-phone {
  position: fixed;
  bottom: 18px; right: 18px;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--copper);
  color: #fff;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(170,61,61,0.4);
  z-index: 150;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
}
.floating-phone.visible {
  opacity: 1;
  transform: translateY(0);
}
.floating-phone svg { color: #fff; }
@media (max-width: 840px) {
  .floating-phone { display: inline-flex; }
}

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════ */
.announce {
  background: var(--copper);
  color: white;
  text-align: center;
  padding: 11px 24px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  z-index: 200;
}
.announce strong { font-weight: 700; }
.announce a { color: white; text-decoration: underline; text-underline-offset: 3px; }
.announce span { margin: 0 14px; opacity: 0.5; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav-wrap {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(30,46,47,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  max-width: 1180px;
  margin: 0 auto;
  height: 76px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.logo-badge {
  width: 50px;
  height: 50px;
  background: #2E4558;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-badge svg { width: 30px; height: 30px; }
.logo-words { line-height: 1; }
.logo-words .top {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 2px;
  color: #2E4558;
  display: block;
}
.logo-words .bottom {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--copper);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--teal); background: var(--teal-mist); }

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  color: #2E4558;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--copper); }
.nav-phone .phone-icon {
  width: 32px; height: 32px;
  background: var(--teal-mist);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.nav-phone:hover .phone-icon { background: var(--copper-glow); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 28px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 12px 16px;
  border-radius: 10px;
  transition: all var(--transition);
}
.mobile-nav a:hover { background: var(--teal-mist); color: var(--teal); }
.mobile-nav .mobile-call {
  margin-top: 16px;
  background: var(--copper);
  color: white;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-size: 18px;
  letter-spacing: 1px;
}
.mobile-nav .mobile-call:hover { background: var(--copper-dark); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--teal-deep);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Geometric background pattern */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -120px; right: -160px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(199,216,226,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(194,92,74,0.13) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199,216,226,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,216,226,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-diagonal {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  background: linear-gradient(135deg, rgba(74,109,124,0.22) 0%, rgba(26,47,61,0.72) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Hero image */
.hero-img-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  overflow: hidden;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #2E4558 0%, transparent 30%),
              linear-gradient(to top, #2E4558 0%, transparent 25%);
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.18;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199,216,226,0.12);
  border: 1px solid rgba(199,216,226,0.28);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C7D8E2;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #C7D8E2;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: normal;
  color: var(--copper-light);
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-sub strong { color: rgba(255,255,255,0.92); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
}
.trust-item svg { flex-shrink: 0; color: var(--copper-light); }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }

/* Hero form card */
.hero-form-card {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  width: 340px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--copper);
}
.hero-form-card h3 {
  font-size: 1.5rem;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.hero-form-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--f-display);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink);
  background: #f0f6f9;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,109,124,0.12);
  background: var(--white);
}
.form-group textarea { resize: none; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 15px;
}
.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}
.form-note svg { vertical-align: middle; }

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
  background: #2E4558;
  padding: 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition);
}
.trust-stat:last-child { border-right: none; }
.trust-stat:hover { background: rgba(255,255,255,0.06); }
.trust-stat-number {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-stat-number span { color: var(--copper-light); }
.trust-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   ABOUT INTRO
═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 160px; height: 160px;
  background: var(--copper);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 32px rgba(194,92,74,0.45);
  border: 5px solid white;
  text-align: center;
  padding: 12px;
}
.about-img-badge strong {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-img-badge span {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
  line-height: 1.3;
  margin-top: 4px;
}
.about-content h2 { color: var(--teal-deep); margin-bottom: 20px; }
.about-content > p { font-size: 1.05rem; margin-bottom: 28px; }
.about-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-list-icon {
  width: 36px; height: 36px;
  background: var(--teal-mist);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.about-list-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.5px;
}
.about-list-text span {
  font-size: 13.5px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.services-intro h2 { color: var(--teal-deep); max-width: 520px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: #2E4558;
  border-color: #2E4558;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-icon {
  width: 60px; height: 60px;
  background: var(--teal-mist);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--teal);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(255,255,255,0.12);
  color: var(--copper-light);
}
.service-card h3 {
  font-size: 1.25rem;
  color: var(--teal-deep);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.service-card:hover h3 { color: white; }
.service-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.service-card:hover p { color: rgba(255,255,255,0.65); }
.service-card .learn-more {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.service-card:hover .learn-more {
  gap: 10px;
  color: var(--copper-light);
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
  background: #2E4558;
  border-radius: var(--r-lg);
  padding: 56px 48px;
  color: white;
  overflow: hidden;
}
.why-visual::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(199,216,226,0.14) 0%, transparent 70%);
  border-radius: 50%;
}
.why-visual-title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--copper-light);
  margin-bottom: 4px;
}
.why-visual h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 32px;
  line-height: 1.1;
}
.why-visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
  position: relative; z-index: 2;
}
.wv-stat {
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,0.10);
}
.wv-stat-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 4px;
}
.wv-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.why-visual-cta { position: relative; z-index: 2; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.why-item:hover {
  border-color: rgba(74,109,124,0.22);
  box-shadow: var(--shadow);
  background: #f0f6f9;
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--teal-mist);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.why-text h4 {
  font-size: 1.05rem;
  color: var(--teal-deep);
  margin-bottom: 5px;
}
.why-text p { font-size: 14px; }

/* ═══════════════════════════════════════════
   PROMOTIONS
═══════════════════════════════════════════ */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.promo-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--copper);
}
.promo-ribbon {
  position: absolute;
  top: 0; right: 0;
  background: var(--copper);
  color: white;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-bottom-left-radius: 12px;
}
.promo-body {
  padding: 36px 30px;
}
.promo-body .price {
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.promo-body .price sup {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 8px;
  margin-right: 2px;
}
.promo-body .price sub {
  font-size: 1rem;
  vertical-align: bottom;
  color: var(--muted);
  font-weight: 400;
}
.promo-body .promo-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.promo-body .promo-desc { font-size: 14px; margin-bottom: 24px; }
.promo-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.promo-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink-mid);
}
.promo-features li svg { color: var(--teal); flex-shrink: 0; }
.promo-foot {
  background: var(--cream);
  padding: 14px 30px;
  font-size: 11.5px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps.cols-4 { grid-template-columns: repeat(4, 1fr); }
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: linear-gradient(to right, #4E6F7E, var(--copper));
  z-index: 0;
}
.process-steps.cols-4::before {
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 88px; height: 88px;
  background: var(--white);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(74,109,124,0.14);
}
.process-step:last-child .step-num { border-color: var(--copper); color: var(--copper); }
.process-step:nth-child(4) .step-num { border-color: var(--teal); color: var(--teal); }
.process-steps.cols-4 .process-step:nth-child(4) .step-num { border-color: var(--copper); color: var(--copper); }
@media (max-width: 840px) {
  .process-steps,
  .process-steps.cols-4 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-steps::before,
  .process-steps.cols-4::before { display: none; }
  .process-step p { max-width: none; }
}
.process-step h4 {
  font-size: 1.05rem;
  color: var(--teal-deep);
  margin-bottom: 10px;
}
.process-step p { font-size: 13.5px; max-width: 200px; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f0f6f9;
  padding: 16px 24px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.stars {
  display: flex;
  gap: 3px;
  color: #f5b942;
  font-size: 18px;
}
.rating-num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1;
}
.rating-meta { font-size: 12px; color: var(--muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: rgba(74,109,124,0.22);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.review-stars { display: flex; gap: 3px; color: #f5b942; margin-bottom: 16px; }
.review-quote {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}
.review-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -6px;
  font-family: var(--f-display);
  font-size: 3rem;
  color: var(--teal-mist);
  line-height: 1;
  font-weight: 700;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.review-info strong {
  display: block;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-deep);
}
.review-info span { font-size: 12px; color: var(--muted); }
.google-badge {
  margin-left: auto;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ═══════════════════════════════════════════
   COVERAGE MAP / SERVICE AREAS
═══════════════════════════════════════════ */
.coverage {
  background: #2E4558;
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199,216,226,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,216,226,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.coverage-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coverage-content h2 { color: white; margin-bottom: 20px; }
.coverage-content > p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; }
.coverage-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.coverage-area {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}
.coverage-area:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(194,92,74,0.4);
}
.coverage-area svg { color: var(--copper-light); flex-shrink: 0; }
.coverage-area span {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: white;
}
.coverage-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
/* Simple Florida map SVG-based visualization */
.fl-map { width: 220px; opacity: 0.85; }

/* ═══════════════════════════════════════════
   MEMBERSHIP PLANS
═══════════════════════════════════════════ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.plan-card {
  border-radius: var(--r-lg);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.plan-card.popular {
  border-color: var(--teal);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.plan-card.popular:hover { transform: scale(1.03) translateY(-6px); }
.plan-head {
  padding: 28px 28px 24px;
  background: #f0f6f9;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.plan-card.popular .plan-head {
  background: #2E4558;
}
.popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--copper);
  color: white;
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.plan-name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.plan-card.popular .plan-name { color: white; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan-price .amount {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.plan-card.popular .plan-price .amount { color: var(--copper-light); }
.plan-price .per {
  font-size: 14px;
  color: var(--muted);
}
.plan-card.popular .plan-price .per { color: rgba(255,255,255,0.55); }
.plan-body { padding: 28px; }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
}
.plan-features li svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.plan-features li.inactive { opacity: 0.4; }
.plan-features li.inactive svg { color: var(--muted); }

/* ═══════════════════════════════════════════
   PARTNERS
═══════════════════════════════════════════ */
.partners-inner {
  text-align: center;
}
.partners-inner h2 { color: var(--teal-deep); margin-bottom: 14px; }
.partners-inner > p { max-width: 500px; margin: 0 auto 48px; }
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-logo {
  padding: 16px 28px;
  background: #f0f6f9;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 1px;
  transition: all var(--transition);
  opacity: 0.7;
}
.partner-logo:hover {
  opacity: 1;
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.3px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--teal-mist); }
.faq-question.open { background: var(--teal-mist); color: var(--teal); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform var(--transition);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-answer.open { display: block; }

.faq-cta-card {
  background: #2E4558;
  border-radius: var(--r-lg);
  padding: 48px 40px;
  color: white;
  position: sticky;
  top: 100px;
}
.faq-cta-card h3 { color: white; font-size: 1.8rem; margin-bottom: 14px; }
.faq-cta-card p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.faq-cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 16px 24px;
  margin-bottom: 16px;
  transition: all var(--transition);
  cursor: pointer;
}
.faq-cta-phone:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.faq-cta-phone svg { color: var(--copper-light); flex-shrink: 0; }
.faq-cta-phone-inner strong {
  display: block;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
}
.faq-cta-phone-inner span { font-size: 12px; color: rgba(255,255,255,0.55); }
.emergency-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(194,92,74,0.20);
  border: 1px solid rgba(194,92,74,0.35);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 13px;
  color: #e8a08d;
}
.emergency-tag .pulse-dot {
  width: 8px; height: 8px;
  background: var(--copper-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.blog-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74,109,124,0.22);
}
.blog-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-category {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--teal);
  color: white;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
}
.blog-body {
  padding: 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-date { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.blog-body h3 {
  font-size: 1.15rem;
  color: var(--teal-deep);
  margin-bottom: 10px;
  line-height: 1.25;
}
.blog-body p {
  font-size: 13.5px;
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  margin-top: auto;
}
.blog-card:hover .blog-read { gap: 10px; }

/* Featured blog */
.blog-featured {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.blog-featured .blog-img {
  height: 100%;
  min-height: 280px;
}
.blog-featured .blog-body { padding: 36px 32px; }
.blog-featured h3 { font-size: 1.45rem; }

/* ═══════════════════════════════════════════
   INLINE CONTACT SECTION
═══════════════════════════════════════════ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 0;
}
.contact-info {
  background: #2E4558;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(199,216,226,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-info h2 { color: white; margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative; z-index: 2;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.10);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--copper-light);
}
.contact-detail-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.contact-detail-text a,
.contact-detail-text span {
  font-size: 16px;
  color: white;
  font-weight: 500;
}
.contact-detail-text a:hover { color: var(--copper-light); }

.contact-form-wrap {
  background: #f0f6f9;
  padding: 64px 56px;
}
.contact-form-wrap h3 {
  font-size: 1.8rem;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.contact-form-wrap > p {
  font-size: 14px;
  margin-bottom: 32px;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form-grid .full { grid-column: 1 / -1; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #111e28;
  color: rgba(255,255,255,0.55);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo .logo-badge { background: rgba(255,255,255,0.1); }
.footer-brand .logo-words .top { color: white; }
.footer-brand > p { font-size: 14px; line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  transform: translateY(-2px);
}
.footer-col h5 {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--copper-light); }
.footer-newsletter p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255,255,255,0.07);
  border: none;
  outline: none;
  font-family: var(--f-body);
  font-size: 14px;
  color: white;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
  padding: 12px 22px;
  background: var(--copper);
  color: white;
  border: none;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--copper-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--copper-light); }
.footer-legal { display: flex; gap: 20px; }

/* ═══════════════════════════════════════════
   FLOATING CTA (MOBILE)
═══════════════════════════════════════════ */
.float-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 900;
  width: calc(100% - 48px);
  max-width: 400px;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.float-cta.float-cta--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.float-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--copper);
  color: white;
  padding: 18px 28px;
  border-radius: 50px;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(194,92,74,0.55);
  transition: all var(--transition);
}
.float-cta a:hover { background: var(--copper-dark); transform: translateY(-3px); }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   BLOG ARTICLE MODAL
═══════════════════════════════════════════ */
.blog-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(17,40,38,0.75);
  backdrop-filter: blur(6px);
  overflow-y: auto;
  padding: 32px 24px;
}
.blog-modal.open { display: flex; align-items: flex-start; justify-content: center; }
.blog-article {
  background: var(--white);
  border-radius: var(--r-lg);
  max-width: 780px;
  width: 100%;
  overflow: hidden;
  margin: auto;
  position: relative;
}
.article-hero {
  height: 320px;
  overflow: hidden;
  position: relative;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,46,47,0.88) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.article-hero-overlay h2 { color: white; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.article-body { padding: 40px 48px; }
.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.article-meta span {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-body p { font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.article-body h3 { color: var(--teal-deep); margin: 32px 0 14px; font-size: 1.4rem; }
.article-body ul { padding-left: 20px; margin-bottom: 20px; }
.article-body ul li { font-size: 15px; color: var(--muted); margin-bottom: 8px; line-height: 1.7; }
.article-cta {
  background: #f0f6f9;
  border-radius: var(--r);
  padding: 28px 32px;
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--copper);
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.article-cta p {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
  margin: 0;
}
.close-modal {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  z-index: 10;
}
.close-modal:hover { background: white; transform: scale(1.1); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-form-card { display: none; }
  .hero-img-wrap { opacity: 0.3; width: 100%; }
  .hero-diagonal { display: none; }
  .hero-content { max-width: 100%; }
  .about-grid, .why-grid, .coverage-inner,
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid, .reviews-grid, .plans-grid,
  .promos-grid { grid-template-columns: 1fr 1fr; }
  .blog-featured { grid-column: auto; display: flex; flex-direction: column; }
  .blog-featured .blog-img { height: 220px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-grid .full { grid-column: 1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .trust-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .trust-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .trust-stat:nth-child(3),
  .trust-stat:nth-child(4) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.popular { transform: none; }
  .plan-card.popular:hover { transform: translateY(-6px); }
  .promos-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .process-steps::before { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .float-cta { display: block; }
  .coverage-areas { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .about-img-badge { right: 10px; bottom: -20px; width: 130px; height: 130px; }
  .contact-info, .contact-form-wrap { padding: 40px 28px; }
  .article-body { padding: 28px 24px; }
  .faq-grid { grid-template-columns: 1fr; }
  .why-visual-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.6rem; }
  .logo-words .top { font-size: 17px; }
  .announce { font-size: 12px; }
}

/* ═══════════════════════════════════════════
   BEAR MASCOT — HERO
═══════════════════════════════════════════ */
.hero-bear {
  display: none !important;
}
.hero-bear-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  /* drop shadow so bear feels grounded on the dark hero */
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55))
          drop-shadow(0 0 80px rgba(199,216,226,0.10));
  /* subtle entrance animation */
  animation: bearEntrance 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.25s;
  opacity: 0;
}
@keyframes bearEntrance {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* On tablet, tuck behind content a bit more */
@media (max-width: 1100px) {
  .hero-bear {
    width: clamp(260px, 32vw, 400px);
    right: 1%;
    opacity: 0.7;
  }
}
/* On mobile, hide the bear so it doesn't crowd the form */
@media (max-width: 768px) {
  .hero-bear { display: none; }
}

/* ═══════════════════════════════════════════
   BEAR LOGO — NAV & FOOTER BADGE
═══════════════════════════════════════════ */
.logo-badge {
  background: white;
  border: 2px solid var(--border);
}
.logo-badge img {
  display: block;
}

/* ═══════════════════════════════════════════
   TRUST BAR ICONS
═══════════════════════════════════════════ */
.trust-stat-icon {
  color: var(--copper-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════
   GUARANTEE BADGE (ABOUT SECTION)
═══════════════════════════════════════════ */
.about-img-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 168px;
  height: 168px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(30,46,47,0.18);
  border: 5px solid white;
  outline: 2px solid var(--steel);
  text-align: center;
  padding: 14px;
  gap: 4px;
  overflow: hidden;
}
.guarantee-bear-img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  object-position: center top;
  /* clip to just the bear head/torso — shift up */
  margin-top: -10px;
  flex-shrink: 0;
}
.guarantee-text {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-deep);
  line-height: 1.3;
  background: var(--copper);
  color: white;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  font-size: 10px;
}

/* Success state for forms */
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form-success.show { display: block; }
.form-success svg { color: var(--teal); margin: 0 auto 16px; }
.form-success h4 { color: var(--teal-deep); font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { font-size: 14px; }

/* ═══════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--copper) 100%);
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 28px;
  width: 46px; height: 46px;
  background: #2E4558;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(30,46,47,0.30);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s ease;
  z-index: 800;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--copper);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(194,92,74,0.40);
}
@media (max-width: 768px) {
  .back-to-top { bottom: 90px; right: 16px; width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111e28;
  border-top: 2px solid rgba(199,216,226,0.14);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.30);
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner p,
.cookie-banner .cookie-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  max-width: 680px;
  line-height: 1.65;
}
.cookie-banner p a,
.cookie-banner .cookie-text a {
  color: var(--steel);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--copper);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cookie-accept:hover { background: var(--copper-dark); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.40);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 18px;
  border-radius: 50px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-decline:hover { color: white; border-color: rgba(255,255,255,0.40); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 20px 24px; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}

/* ═══════════════════════════════════════════
   HONEYPOT (spam protection)
═══════════════════════════════════════════ */
.ohnohoney {
  opacity: 0;
  position: absolute;
  top: 0; left: 0;
  height: 0; width: 0;
  z-index: -1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   ANIMATED PARTNER LOGO STRIP
═══════════════════════════════════════════ */
.partners-scroll {
  overflow: hidden;
  position: relative;
  margin-top: 44px;
  padding: 4px 0;
}
.partners-scroll::before,
.partners-scroll::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.partners-scroll::before {
  left: 0;
  background: linear-gradient(to right, #f0f6f9 0%, transparent 100%);
}
.partners-scroll::after {
  right: 0;
  background: linear-gradient(to left, #f0f6f9 0%, transparent 100%);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: scroll-logos 26s linear infinite;
  width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: white;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  min-width: 150px;
  height: 70px;
  flex-shrink: 0;
  transition: all var(--transition);
  cursor: default;
}
.partner-tile:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.partner-tile svg {
  max-height: 34px;
  width: auto;
  max-width: 120px;
}

/* ═══════════════════════════════════════════
   MOBILE POLISH
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .announce { padding: 10px 16px; }
  .announce span { display: none; }
  .hero-content { padding-top: 64px; padding-bottom: 80px; }
  .trust-stat { padding: 22px 10px; }
  .trust-stat-number { font-size: 1.9rem; }
  .service-card { padding: 26px 20px; }
  .review-card { padding: 24px 18px; }
  .plan-body { padding: 20px 18px; }
  .blog-img { height: 180px; }
  .contact-form-wrap h3 { font-size: 1.5rem; }
  footer { padding: 48px 0 100px; }
}
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .hero h1 { font-size: 2.5rem; }
  .hero h1 em { font-size: 2.1rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-badge { font-size: 10px; letter-spacing: 1.5px; padding: 7px 14px; }
  .about-img-main img { height: 320px; }
  .about-img-badge { display: none; }
  .why-visual { padding: 32px 20px; }
  .why-visual h2 { font-size: 1.8rem; }
  .wv-stat-num { font-size: 1.8rem; }
  .promo-body .price { font-size: 2.8rem; }
  .contact-info, .contact-form-wrap { padding: 32px 20px; }
  .faq-question { font-size: 13.5px; padding: 16px 18px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════
   MULTI-PAGE ADDITIONS
═══════════════════════════════════════════ */

/* Dropdown menus */
.nav-links .has-dropdown { position: relative; }
.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  z-index: 1000;
}
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-links .dropdown li { display: block; }
.nav-links .dropdown a {
  display: block;
  padding: 10px 22px;
  color: var(--ink-mid);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.18s;
}
.nav-links .dropdown a:hover {
  background: var(--teal-mist);
  color: var(--copper);
  padding-left: 28px;
}
.nav-links a {
  position: relative;
}
.nav-links a.active {
  color: var(--copper);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
}

/* Mobile nav groups */
.mobile-nav .mobile-group {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
}
.mobile-nav .mobile-group-title {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  padding: 0 22px 6px;
}
.mobile-nav .mobile-group a {
  padding-left: 34px;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.18s;
}
.breadcrumbs a:hover { color: var(--copper); }
.breadcrumbs .sep {
  margin: 0 6px;
  color: var(--steel-dark);
}
.breadcrumbs span[aria-current] {
  color: var(--ink);
  font-weight: 600;
}

/* Inner page hero — smaller than homepage hero */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--copper-glow) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 18px;
}
.page-hero .hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper-light);
  box-shadow: 0 0 10px var(--copper-light);
}
.page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--white);
}
.page-hero h1 em {
  font-style: normal;
  color: var(--copper-light);
}
.page-hero .lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  max-width: 680px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
}
.page-hero .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--teal-deep);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* CTA Band — mid-page conversion section */
.cta-band {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Inner page form section */
.page-form-section {
  padding: 80px 0;
  background: var(--cream);
}
.page-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.page-form-copy h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--ink);
}
.page-form-copy > p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.page-form-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.page-form-bullets li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--ink-mid);
  font-weight: 500;
}
.page-form-phone {
  padding: 18px 22px;
  background: var(--white);
  border-radius: var(--r);
  border-left: 4px solid var(--copper);
  font-size: 16px;
  color: var(--ink-mid);
}
.page-form-phone a { color: var(--copper); text-decoration: none; }
.page-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.page-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.page-form .form-group {
  margin-bottom: 16px;
}
.page-form label {
  display: block;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: var(--ink-mid);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.page-form input,
.page-form select,
.page-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.page-form input:focus,
.page-form select:focus,
.page-form textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px var(--copper-glow);
}
.btn-block { width: 100%; justify-content: center; margin-top: 8px; }
.form-privacy {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 60px 30px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.form-success.show { display: block; }
.form-success .success-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 36px;
  font-weight: 700;
}
.form-success h3 {
  font-family: var(--f-display);
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--ink);
}
.form-success p {
  color: var(--muted);
  font-size: 15px;
}

/* Generic section blocks on inner pages */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}
.section-header p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

/* Two-column content (intro/context on service & city pages) */
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1fr 1.15fr; }
.two-col.reverse .two-col-img { order: -1; }
.two-col-copy h2 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.two-col-copy .eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.two-col-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 14px;
}
.two-col-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--teal-mist);
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature list (with check icons) */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-mid);
}
.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--copper);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 1px;
}

/* Process grid (numbered steps, reusable) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.process-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  position: relative;
  border-top: 4px solid var(--copper);
}
.process-card .step-num {
  position: absolute;
  top: -18px;
  left: 26px;
  width: 40px;
  height: 40px;
  background: var(--copper);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 4px 12px var(--copper-glow);
}
.process-card h4 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  margin: 12px 0 10px;
  color: var(--ink);
}
.process-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* Signal cards (stat callouts) */
.signal-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.signal-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 26px 22px;
  text-align: center;
  transition: all 0.25s;
}
.signal-card:hover {
  transform: translateY(-3px);
  border-color: var(--copper);
  box-shadow: var(--shadow-lg);
}
.signal-card .num {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 6px;
}
.signal-card .label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .page-form-wrap { grid-template-columns: 1fr; gap: 36px; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse .two-col-img { order: 0; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .nav-links .has-dropdown .dropdown { display: none; } /* dropdowns desktop-only */
}
@media (max-width: 500px) {
  .page-form { padding: 24px; }
  .page-form .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   BLOG ARTICLE PROSE
═══════════════════════════════════════════ */
.blog-article h2 {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 56px 0 18px;
}
.blog-article h2:first-child { margin-top: 0; }
.blog-article h3 {
  font-family: var(--f-display);
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 600;
  color: var(--ink);
  margin: 36px 0 14px;
}
.blog-article p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 18px;
}
.blog-article p strong { color: var(--teal-deep); font-weight: 700; }
.blog-article a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.blog-article a:hover { color: var(--copper-dark); }
.blog-article ul, .blog-article ol {
  margin: 18px 0 24px 24px;
  padding: 0;
}
.blog-article li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--ink);
}
.blog-article blockquote {
  border-left: 4px solid var(--copper);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  font-family: var(--f-serif, Georgia), serif;
  font-style: italic;
  font-size: 19px;
  color: var(--teal-deep);
}
.blog-article .callout {
  background: var(--cream);
  border: 1px solid var(--rule, rgba(0,0,0,0.06));
  border-left: 4px solid var(--copper);
  border-radius: 10px;
  padding: 22px 26px;
  margin: 32px 0;
}
.blog-article .callout p:last-child { margin-bottom: 0; }
.blog-article .callout strong { display: block; font-family: var(--f-display); letter-spacing: 0.5px; text-transform: uppercase; font-size: 13px; color: var(--copper); margin-bottom: 8px; }
