/* ═══════════════ CSS VARIABLES ═══════════════ */
:root {
  --blue: #1668a0;
  --blue-lt: #29a8de;
  --blue-dk: #0f4d7a;
  --copper: #a85a18;
  --copper-lt: #c97030;
  --copper-glow: rgba(168, 90, 24, 0.35);
  --dark: #0b1b2b;
  --dark-2: #0e2436;
  --dark-3: #0c2840;
  --dark-card: #101f30;
  --dark-border: rgba(255,255,255,0.08);
  --dark-border-lt: rgba(255,255,255,0.12);
  --text-white: #fff;
  --text-white-soft: rgba(255,255,255,0.85);
  --text-white-muted: rgba(255,255,255,0.55);
  --text-white-faint: rgba(255,255,255,0.35);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.25);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.30);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.35);
}

/* ═══════════════ RESET & BASE ═══════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-white-soft);
  background: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

/* ═══════════════ TYPOGRAPHY ═══════════════ */
h2.display {
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
}
h2.display em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--blue-lt);
}
h2.display.white { color: #fff; }
h2.display.white em { color: var(--blue-lt); }

.lead {
  font-size: 1.05rem;
  color: var(--text-white-muted);
  max-width: 520px;
  margin-top: 1rem;
  line-height: 1.7;
}
.lead.white { color: var(--text-white-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--blue-lt);
  border-radius: 1px;
}
.eyebrow.light { color: var(--text-white-faint); }
.eyebrow.light::before { background: var(--text-white-faint); }

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 0.85rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 18px rgba(22,104,160,0.35);
}
.btn-primary:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(22,104,160,0.45);
}
.btn-copper {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 4px 18px var(--copper-glow);
}
.btn-copper:hover {
  background: var(--copper-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--copper-glow);
}
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ═══════════════ PIPE BAR ═══════════════ */
.pipe-bar {
  height: 5px;
  background: linear-gradient(180deg, #1a3a52 0%, #0f2a3e 45%, #1a3a52 100%);
  border-radius: 3px;
  position: relative;
}
.pipe-bar::before, .pipe-bar::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 14px;
  height: 11px;
  background: linear-gradient(180deg, #1e4060 0%, #143050 50%, #1e4060 100%);
  border-radius: 3px;
}
.pipe-bar::before { left: 20px; }
.pipe-bar::after { right: 20px; }

/* ═══════════════ REVEAL ANIMATION ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════ NAVIGATION ═══════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11,27,43,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--blue);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.nav-wordmark { display: flex; flex-direction: column; }
.nav-name {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.nav-name .blue { color: var(--blue-lt); }
.nav-tagline {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white-muted);
  margin-top: -2px;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white-soft);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-links a:hover {
  color: var(--blue-lt);
  border-bottom-color: var(--blue-lt);
}
.nav-cta { font-size: 0.75rem; padding: 0.65rem 1.2rem; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  display: flex;
  min-height: 100vh;
  margin-top: 70px;
}
.hero-left {
  width: 52%;
  background: linear-gradient(155deg, #0b1b2b 0%, #0e2436 55%, #0d2d48 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 63px, rgba(255,255,255,0.025) 63px, rgba(255,255,255,0.025) 64px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 63px, rgba(255,255,255,0.025) 63px, rgba(255,255,255,0.025) 64px
  );
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(41,168,222,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left-inner {
  position: relative;
  z-index: 2;
  padding: 4rem 4rem 4rem 4.5rem;
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--blue);
  border-radius: 50px;
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.blink-dot {
  width: 7px;
  height: 7px;
  background: var(--blue-lt);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.hero-h1 {
  font-weight: 900;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-h1 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--blue-lt);
}
.hero-sub {
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
  margin-top: 1.2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 2.2rem;
}
.check-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 500;
}
.check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(41,168,222,0.15);
  color: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-right {
  width: 48%;
  position: relative;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.88);
  transition: filter 0.4s ease;
}
.hero-right:hover .hero-photo {
  filter: saturate(1) brightness(0.92);
}
.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, #0d2d48 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-stat-card {
  position: absolute;
  bottom: 60px;
  left: -20px;
  z-index: 3;
  background: var(--dark-card);
  border-left: 4px solid var(--blue);
  padding: 1rem 1.4rem;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.stat-icon { font-size: 1.6rem; }
.stat-number {
  display: block;
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-price-badge {
  position: absolute;
  top: 40px;
  right: 30px;
  z-index: 3;
  background: var(--copper);
  color: #fff;
  padding: 0.9rem 1.3rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 28px var(--copper-glow);
}
.price-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.price-amount {
  display: block;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.1;
}
.price-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

/* ═══════════════ TRUST BAR ═══════════════ */
.trust-bar {
  background: var(--blue);
  padding: 1rem 0;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trust-item {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.trust-item:not(:last-child)::after {
  content: ' · ';
  margin-left: 0.5rem;
  opacity: 0.5;
}

/* ═══════════════ SERVICES ═══════════════ */
.services {
  background: var(--dark-2);
  padding: 5rem 0 6rem;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.section-header .lead { margin: 1rem auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border-lt);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(41,168,222,0.25);
}
.service-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.88);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.07);
  filter: saturate(1) brightness(0.92);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,27,43,0.6) 100%);
  pointer-events: none;
}
.service-price-pill {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--copper);
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--copper-glow);
  z-index: 2;
}
.service-body {
  padding: 1.5rem;
}
.service-icon-box {
  width: 38px;
  height: 38px;
  background: rgba(22,104,160,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.service-body h3 {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: #fff;
}
.service-body p {
  font-size: 0.88rem;
  color: var(--text-white-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-lt);
  transition: transform 0.2s;
  display: inline-block;
}
.service-link:hover { transform: translateX(4px); }

/* Service card pipe bar */
.service-card .pipe-bar {
  height: 4px;
  border-radius: 0;
}
.service-card .pipe-bar::before,
.service-card .pipe-bar::after {
  display: none;
}

/* ═══════════════ HOW IT WORKS ═══════════════ */
.how-it-works {
  display: flex;
  min-height: 560px;
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
}
.hiw-photo {
  width: 48%;
  position: relative;
  overflow: hidden;
}
.hiw-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.8);
}
.hiw-photo::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--dark-2));
  pointer-events: none;
}
.hiw-photo::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #d4894a 0%, #8b4214 50%, #c87a3a 100%);
  z-index: 2;
}
.hiw-content {
  width: 52%;
  background: var(--dark-2);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hiw-steps { margin-top: 2.5rem; }

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
  padding-bottom: 2rem;
}
.step-row:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px;
  left: 19px;
  width: 2px;
  height: calc(100% - 44px);
  background: linear-gradient(180deg, var(--blue-lt), var(--dark-border));
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--blue);
  color: var(--blue-lt);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(26,104,160,0.15);
  position: relative;
  z-index: 2;
}
.step-text h4 {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.2rem;
  margin-top: 0.3rem;
}
.step-text p {
  font-size: 0.88rem;
  color: var(--text-white-muted);
  line-height: 1.6;
}

/* ═══════════════ PRICING ═══════════════ */
.pricing {
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  padding: 6rem 0;
  border-top: 1px solid var(--dark-border);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.guarantee-pill {
  margin-top: 2rem;
  padding: 1rem 1.3rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.6;
  max-width: 400px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border-lt);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 0.8rem;
  transition: background 0.25s, border-color 0.25s;
}
.price-row:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(41,168,222,0.2);
}
.price-name {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.price-note {
  display: block;
  color: var(--text-white-faint);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}
.price-tag-copper {
  background: var(--copper);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 18px var(--copper-glow);
  flex-shrink: 0;
  margin-left: 1rem;
}
.pricing-btn {
  margin-top: 1.2rem;
  width: 100%;
  justify-content: center;
}

/* ═══════════════ PHOTO STRIP ═══════════════ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--blue);
  border-bottom: 4px solid var(--blue);
}
.photo-cell {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.75);
  transition: filter 0.4s, transform 0.4s;
}
.photo-cell:hover img {
  filter: saturate(0.95) brightness(0.88);
  transform: scale(1.06);
}
.photo-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(11,27,43,0.7);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-left: 3px solid var(--blue);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══════════════ AREAS + CONTACT ═══════════════ */
.areas-contact {
  display: flex;
}
.areas-panel {
  width: 50%;
  background: var(--dark-2);
  border-right: 1px solid var(--dark-border);
}
.areas-inner, .contact-inner {
  padding: 5rem 3.5rem;
}
.county-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.county-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--dark-border-lt);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white-soft);
  transition: all 0.25s;
  cursor: default;
}
.county-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--blue-lt);
  border-radius: 50%;
  flex-shrink: 0;
}
.county-pill:not(.county-growing):hover {
  background: rgba(41,168,222,0.1);
  border-color: var(--blue);
  color: var(--blue-lt);
  transform: translateX(3px);
}
.county-growing {
  border-style: dashed;
  opacity: 0.4;
}

.contact-panel {
  width: 50%;
  background: var(--dark);
}
.contact-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border-lt);
  border-radius: 18px;
  padding: 2.2rem;
  margin-top: 1.8rem;
  box-shadow: var(--shadow-lg);
}
.contact-card-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
}
.contact-card-sub {
  color: var(--text-white-faint);
  font-size: 0.82rem;
  margin-top: 0.3rem;
  margin-bottom: 1.3rem;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--dark-border);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(22,104,160,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-white-faint);
}
.contact-value {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.contact-value:hover { color: var(--blue-lt); }
.contact-btn {
  width: 100%;
  justify-content: center;
  margin-top: 1.3rem;
}

/* ═══════════════ CTA BANNER ═══════════════ */
.cta-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=70') center/cover;
  filter: brightness(0.18) saturate(0.5);
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,77,122,0.5) 0%, rgba(11,27,43,0.7) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
}
.cta-h2 {
  color: #fff;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}
.cta-lead {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin: 0.8rem 0 1.5rem;
}
.cta-phone {
  display: block;
  color: var(--blue-lt);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.cta-phone:hover { color: #fff; }
.pipe-bar-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.pipe-bar-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: #050d16;
  border-top: 4px solid var(--blue);
  padding: 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}
.footer-brand .blue-lt { color: var(--blue-lt); }
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }

  .hero {
    flex-direction: column;
  }
  .hero-left {
    width: 100%;
    min-height: auto;
  }
  .hero-left-inner {
    padding: 3rem 1.5rem;
  }
  .hero-right {
    width: 100%;
    height: 340px;
  }
  .hero-stat-card, .hero-price-badge { display: none; }
  .hero-checks { grid-template-columns: 1fr; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    padding: 0 1.5rem;
  }
  .services { padding: 4rem 0; }

  .how-it-works { flex-direction: column; }
  .hiw-photo {
    width: 100%;
    height: 280px;
  }
  .hiw-content {
    width: 100%;
    padding: 3rem 1.5rem;
  }
  .hiw-photo::before { display: none; }
  .hiw-photo::after {
    width: 100%;
    height: 60px;
    bottom: 0;
    right: auto;
    top: auto;
    background: linear-gradient(180deg, transparent, var(--dark-2));
  }

  .pricing-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  .pricing { padding: 4rem 0; }

  .photo-strip { grid-template-columns: repeat(2, 1fr); }

  .areas-contact { flex-direction: column; }
  .areas-panel, .contact-panel {
    width: 100%;
    border-right: none;
  }
  .areas-inner, .contact-inner {
    padding: 3rem 1.5rem;
  }

  .trust-item:not(:last-child)::after { content: none; }
  .trust-inner { gap: 0.3rem 1rem; justify-content: center; }

  .container, .section-header { padding: 0 1.5rem; }

  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .hero-buttons { flex-direction: column; gap: 0.7rem; }
  .hero-buttons .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .county-grid { grid-template-columns: 1fr; }
  .price-row { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  .price-tag-copper { margin-left: 0; }
}
