/*
 * design-v2.css — EcoWall Shared Design System
 * Covers: index.html + all city pages (naperville etc.)
 * Mobile-first, no overlaps, tested at 320px → 1440px
 */

/* ─────────────────────────────────────────────────────────
   0. RESET & BASE
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --g:    #1e8f55;   /* rich forest green */
  --g2:   #17a349;
  --g-lt: #d8f5e6;
  --dk:   #0f2318;   /* deep forest (replaces cold navy) */
  --rd:   #dc2626;
  --sl:   #5a6b58;   /* warm earthy slate (was cold blue-grey) */
  --bdr:  #dce8d6;   /* soft green-tinted border */
  --bg:   #f4f7f1;   /* warm natural off-white (was cold f8fafc) */
  --r:    12px;
  --r-lg: 18px;
  --shadow: 0 2px 8px rgba(10,30,15,.05), 0 12px 32px rgba(10,30,15,.09);
  /* Eco dark — forest green for dark section backgrounds */
  --eco-dk:  #0c1f13;
  --eco-dk2: #122a1a;
}

@keyframes blink {
  0%,100% { opacity:1; transform:scale(1);   }
  50%      { opacity:.3; transform:scale(1.7); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0);     }
}

body { margin: 0; font-family: 'Poppins', sans-serif; color: var(--dk); }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─────────────────────────────────────────────────────────
   1. URGENCY BAR
───────────────────────────────────────────────────────── */
.v2-urg {
  background: linear-gradient(90deg, #b91c1c 0%, #dc2626 100%);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  z-index: 1100;
}
.v2-urg .u-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #fde68a;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: blink 1.3s ease-in-out infinite;
}
.v2-urg .u-n {
  background: rgba(255,255,255,.18);
  border-radius: 4px;
  padding: 0 6px;
  font-weight: 900;
  color: #fde68a;
}
.v2-urg .u-cta {
  color: #fde68a;
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
@media (max-width: 480px) {
  .v2-urg { font-size: .78rem; padding: 8px 12px; }
  .v2-urg .u-cta { display: none; }
}

/* ─────────────────────────────────────────────────────────
   2. HEADER
───────────────────────────────────────────────────────── */
.v2-header {
  background: #fff;
  border-bottom: 1px solid var(--bdr);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(15,23,42,.06);
}
.v2-hd {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 12px;
}
.v2-logo img {
  height: 42px;
  width: 42px;
  border-radius: 8px;
  object-fit: cover;
}

/* Desktop nav */
.v2-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  margin: 0 16px;
}
.v2-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--sl);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.v2-nav a:hover { background: var(--bg); color: var(--dk); }

/* Dropdown */
.v2-dd { position: relative; }
.v2-dd > a { display: flex; align-items: center; gap: 4px; }
.v2-dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(15,23,42,.12);
  padding: 6px;
  min-width: 210px;
  z-index: 300;
}
.v2-dd:hover .v2-dd-menu,
.v2-dd.open   .v2-dd-menu { display: block; }
.v2-dd-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--sl);
}
.v2-dd-menu a:hover { background: var(--bg); color: var(--g); }

/* Right actions */
.v2-hd-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.v2-hd-slots {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.v2-hd-slots .sd { width: 6px; height: 6px; background: #ef4444; border-radius: 50%; animation: blink 1s infinite; flex-shrink: 0; }
.v2-hd-call {
  background: var(--eco-dk);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: background .2s;
}
.v2-hd-call:hover { background: #1c4228; }
.v2-burger {
  display: none;
  background: none;
  border: 1px solid var(--bdr);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--sl);
  line-height: 1;
}

/* Mobile nav */
@media (max-width: 900px) {
  .v2-nav { display: none; flex-direction: column; align-items: flex-start; margin: 0; }
  .v2-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
    padding: 12px 16px 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    z-index: 999;
    gap: 2px;
  }
  .v2-nav a { width: 100%; padding: 12px 14px; min-height: 44px; display: flex; align-items: center; }
  .v2-dd-menu { position: static; box-shadow: none; border: none; border-left: 3px solid var(--g-lt); border-radius: 0; padding: 4px 0 4px 10px; margin-left: 10px; }
  .v2-dd.open .v2-dd-menu { display: block; }
  .v2-hd-slots { display: none; }
  .v2-burger { display: block; }
  .v2-hd-call { font-size: .8rem; padding: 10px 14px; }
}
@media (max-width: 380px) {
  .v2-hd-call { font-size: .75rem; padding: 9px 12px; }
  .v2-hd { padding: 10px 14px; gap: 8px; }
}

/* ─────────────────────────────────────────────────────────
   3. HERO (index + city shared base)
───────────────────────────────────────────────────────── */
.v2-hero {
  position: relative;
  background-size: cover;
  background-position: center 30%;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Forest-green tinted overlay — feels eco, less corporate navy */
  background: linear-gradient(175deg, rgba(6,22,12,.87) 0%, rgba(6,22,12,.72) 50%, rgba(6,22,12,.88) 100%);
  z-index: 1;
}
.v2-hero-in {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 20px 90px;
  animation: fadeUp .5s ease both;
}
/* Fix mobile hero image scaling — show house, not just sky/roof */
@media (max-width: 760px) {
  .v2-hero { background-position: center 40%; }
  .v2-hero-in { padding: 48px 18px 52px; }
  .v2-hero .h-sub { margin-bottom: 16px; }
  .v2-badge { margin-bottom: 14px; padding: 5px 12px; font-size: .72rem; }
}
@media (max-width: 480px) {
  .v2-hero { background-position: center 45%; background-size: auto 100%; }
  .v2-hero-in { padding: 36px 14px 40px; }
  .v2-hero .h-sub { margin-bottom: 14px; font-size: .88rem; }
  .v2-badge { margin-bottom: 12px; }
  .v2-trust { gap: 6px 14px; margin-bottom: 14px; }
  .v2-trust span { font-size: .72rem; }
}

/* Scarcity badge */
.v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(220,38,38,.15);
  border: 1px solid rgba(220,38,38,.38);
  backdrop-filter: blur(6px);
  color: #fca5a5;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.v2-badge .bd { width: 7px; height: 7px; background: #ef4444; border-radius: 50%; animation: blink 1.1s infinite; flex-shrink: 0; }

.v2-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
  color: #fff;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: none;
}
.v2-hero h1 .hl { color: #4ade80; }
.v2-hero .h-sub {
  font-size: clamp(.88rem, 2.2vw, 1.15rem);
  color: #c8d6e5;
  margin: 0 0 22px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────
   4. HERO STATS ROW
───────────────────────────────────────────────────────── */
.v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 24px;
}
.v2-stat {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.v2-stat-n {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: #4ade80;
  line-height: 1;
}
.v2-stat-l { font-size: .75rem; color: #e2e8f0; font-weight: 600; line-height: 1.3; }
.v2-stat-s { font-size: .68rem; color: #94a3b8; font-weight: 400; }

@media (max-width: 640px) {
  .v2-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 16px; }
  .v2-stat-n { font-size: 1.35rem; }
  .v2-stat { padding: 10px 8px; }
}
@media (max-width: 480px) {
  .v2-stats { gap: 6px; margin-bottom: 12px; }
  .v2-stat { padding: 8px 6px; }
  .v2-stat-n { font-size: 1.2rem; }
  .v2-stat-l { font-size: .7rem; }
  .v2-stat-s { display: none; }
}
@media (max-width: 380px) {
  .v2-stats { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .v2-stat { padding: 8px 6px; }
  .v2-stat-n { font-size: 1.15rem; }
}

/* ─────────────────────────────────────────────────────────
   5. HERO ADDRESS FORM (index only)
───────────────────────────────────────────────────────── */
.v2-addr-wrap {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  max-width: 620px;
  margin: 0 auto 24px;
}
.v2-addr-label {
  font-size: .78rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.v2-addr-row {
  display: flex;
  gap: 8px;
}
.v2-addr-inp-wrap { position: relative; flex: 1; min-width: 0; }
.v2-addr-inp {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  background: #fff;
  color: var(--dk);
  -webkit-appearance: none;
}
.v2-addr-btn {
  background: linear-gradient(135deg, var(--g) 0%, var(--g2) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .88rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(31,138,90,.38);
  transition: transform .2s;
  min-height: 50px;
}
.v2-addr-btn:hover { transform: translateY(-1px); }
.v2-addr-or { font-size: .82rem; color: #94a3b8; margin-top: 10px; }
.v2-addr-or a { color: #4ade80; font-weight: 700; }

/* Autocomplete */
.v2-autocomplete {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  max-height: 200px;
  overflow-y: auto;
  z-index: 99;
}
.v2-autocomplete div { padding: 11px 14px; cursor: pointer; font-size: .88rem; color: var(--dk); display: flex; align-items: center; gap: 7px; }
.v2-autocomplete div:hover { background: #f0fdf4; }
.v2-autocomplete i { color: var(--g); font-size: .82rem; }

@media (max-width: 560px) {
  .v2-addr-row { flex-direction: column; }
  .v2-addr-btn { width: 100%; min-height: 48px; padding: 14px 16px; }
}

/* ─────────────────────────────────────────────────────────
   6. HERO MICRO-TRUST ROW
───────────────────────────────────────────────────────── */
.v2-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 20px;
}
.v2-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: #94a3b8;
  font-weight: 500;
}
.v2-trust span i { color: #4ade80; font-size: .72rem; }

/* ─────────────────────────────────────────────────────────
   7. HERO CTAs (city page)
───────────────────────────────────────────────────────── */
.v2-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.v2-btn-call {
  background: linear-gradient(135deg, var(--g) 0%, var(--g2) 100%);
  color: #fff;
  padding: 16px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(31,138,90,.42);
  transition: transform .2s, box-shadow .2s;
  min-height: 50px;
}
.v2-btn-call:hover { transform: translateY(-2px); box-shadow: 0 7px 24px rgba(31,138,90,.52); color: #fff; }
.v2-btn-ghost {
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.28);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  transition: background .2s;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.v2-btn-ghost:hover { background: rgba(255,255,255,.18); color: #fff; }

@media (max-width: 480px) {
  .v2-hero-ctas { flex-direction: column; align-items: stretch; padding: 0 10px; margin-bottom: 14px; }
  .v2-btn-call, .v2-btn-ghost { justify-content: center; font-size: .85rem; padding: 13px 18px; min-height: 44px; }
}

/* ─────────────────────────────────────────────────────────
   8. ACTIVITY TICKER
───────────────────────────────────────────────────────── */
.v2-ticker { display: flex; justify-content: center; }
.v2-ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: .8rem;
  color: #e2e8f0;
  font-weight: 500;
  max-width: 100%;
  transition: opacity .4s;
}
.v2-ticker-pill .tp-av {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, #4ade80, var(--g));
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
}
.v2-ticker-pill strong { color: #4ade80; }
@media (max-width: 480px) {
  .v2-ticker-pill { font-size: .74rem; padding: 7px 12px; }
}

/* ─────────────────────────────────────────────────────────
   9. HOW IT WORKS (index)
───────────────────────────────────────────────────────── */
.v2-hiw {
  background: linear-gradient(160deg, var(--eco-dk) 0%, var(--eco-dk2) 100%);
  padding: 56px 20px;
  text-align: center;
}
.v2-hiw h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}
.v2-hiw .sec-sub { color: var(--sl); font-size: .92rem; margin: 0 auto 36px; text-align: center; max-width: 560px; }
.v2-hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.v2-step {
  flex: 1;
  min-width: 140px;
  max-width: 220px;
  padding: 0 16px;
  text-align: center;
}
.v2-step-icon {
  width: 60px; height: 60px;
  background: rgba(31,138,90,.15);
  border: 2px solid rgba(31,138,90,.28);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: #4ade80;
  margin: 0 auto 12px;
}
.v2-step-n { font-size: .72rem; font-weight: 800; color: #4ade80; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 5px; }
.v2-step h3 { font-family: 'Montserrat', sans-serif; font-size: .95rem; font-weight: 800; color: #fff; margin: 0 0 5px; }
.v2-step p { font-size: .8rem; color: var(--sl); line-height: 1.5; margin: 0; }
.v2-step-arrow { color: rgba(74,222,128,.3); font-size: 1.3rem; align-self: center; padding-top: 30px; flex-shrink: 0; }
@media (max-width: 600px) {
  .v2-step-arrow { display: none; }
  .v2-step { min-width: 120px; flex: 0 1 calc(33% - 8px); }
}
@media (max-width: 400px) {
  .v2-hiw-steps { flex-direction: column; align-items: center; gap: 24px; }
  .v2-step { max-width: 100%; width: 100%; padding: 0; }
  .v2-step-arrow { display: none; }
}

/* ─────────────────────────────────────────────────────────
   10. SECTION SHARED
───────────────────────────────────────────────────────── */
.v2-section { padding: 60px 20px; }
.v2-section-dk { background: linear-gradient(160deg, var(--eco-dk) 0%, var(--eco-dk2) 100%); }
.v2-section-lt { background: var(--bg); }
.v2-section-wh { background: #fff; }
.v2-section-gr { background: linear-gradient(180deg, #edf7ea 0%, #fff 100%); }

.v2-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--dk);
  text-align: center;
  margin: 0 0 8px;
}
.v2-section-dk h2 { color: #fff; }
.sec-sub {
  text-align: center;
  color: var(--sl);
  font-size: .95rem;
  margin: 0 0 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
/* On dark forest backgrounds sub-text needs lighter muted green */
.v2-section-dk .sec-sub,
.v2-hiw .sec-sub { color: #7aaa78; }
.v2-inner { max-width: 1100px; margin: 0 auto; }
.v2-inner-sm { max-width: 800px; margin: 0 auto; }

/* ─────────────────────────────────────────────────────────
   11. SERVICES (index)
───────────────────────────────────────────────────────── */
.v2-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.v2-svc-card {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.v2-svc-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #bbf7d0; }
.v2-svc-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--g-lt), #bbf7d0);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #15803d;
  flex-shrink: 0;
}
.v2-svc-card h3 { font-family: 'Montserrat', sans-serif; font-size: .98rem; font-weight: 800; color: var(--dk); margin: 0; }
.v2-svc-card p { font-size: .84rem; color: var(--sl); line-height: 1.6; flex: 1; margin: 0; }
.v2-svc-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--eco-dk);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-top: auto;
  transition: background .2s;
  min-height: 40px;
}
.v2-svc-card a:hover { background: #1c4228; }

/* Pill links */
.v2-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.v2-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--sl);
  transition: border-color .15s, color .15s, background .15s;
  min-height: 42px;
}
.v2-pill:hover { border-color: var(--g); color: var(--g); background: #f0fdf4; }
.v2-pill i { color: var(--g); }

@media (max-width: 760px) { .v2-svc-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────
   12. PRICING
───────────────────────────────────────────────────────── */
.v2-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.v2-pc {
  background: var(--bg);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s;
}
.v2-pc:hover { box-shadow: var(--shadow); }
.v2-pc.featured { background: linear-gradient(160deg, var(--eco-dk) 0%, var(--eco-dk2) 100%); border-color: var(--g); }
.v2-pc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.v2-pc h3 { font-family: 'Montserrat', sans-serif; font-size: .98rem; font-weight: 800; color: var(--dk); margin: 0; }
.v2-pc.featured h3 { color: #e2e8f0; }
.v2-badge-pill { background: var(--g); color: #fff; font-size: .7rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; flex-shrink: 0; }
.v2-pc-price-start { font-size: .72rem; color: #94a3b8; display: block; margin-bottom: -6px; }
.v2-pc-price { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--dk); line-height: 1; }
.v2-pc.featured .v2-pc-price { color: #4ade80; }
.v2-pc-period { font-size: .86rem; color: var(--sl); font-weight: 400; }
.v2-pc-desc { font-size: .82rem; color: var(--sl); line-height: 1.5; margin: 0; }
.v2-pc.featured .v2-pc-desc { color: #94a3b8; }
.v2-pc-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.v2-pc-feat { display: flex; align-items: flex-start; gap: 7px; font-size: .82rem; color: #475569; line-height: 1.4; }
.v2-pc-feat i { color: var(--g); margin-top: 2px; font-size: .72rem; flex-shrink: 0; }
.v2-pc.featured .v2-pc-feat { color: #c8d6e5; }
.v2-pc.featured .v2-pc-feat i { color: #4ade80; }
.v2-pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--g), var(--g2));
  color: #fff;
  padding: 13px 16px;
  border-radius: 11px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .86rem;
  margin-top: auto;
  box-shadow: 0 3px 12px rgba(31,138,90,.28);
  transition: transform .2s;
  min-height: 46px;
  text-align: center;
}
.v2-pc-btn:hover { transform: translateY(-1px); color: #fff; }
.v2-pc:not(.featured) .v2-pc-btn { background: var(--eco-dk); box-shadow: none; }
.v2-pc:not(.featured) .v2-pc-btn:hover { background: #1c4228; }

/* 2-column variant for service-specific pricing */
.v2-pricing-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
/* 3-column variant for general pest pricing */
.v2-pricing-grid.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 1060px; margin: 0 auto; }
@media (max-width: 1100px) { .v2-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .v2-pricing-grid, .v2-pricing-grid.cols-2, .v2-pricing-grid.cols-3 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ─────────────────────────────────────────────────────────
   13. GUARANTEE STRIP
───────────────────────────────────────────────────────── */
.v2-guar {
  background: linear-gradient(135deg, #091a0d 0%, #14301d 100%);
  padding: 44px 20px;
}
.v2-guar-in {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.v2-guar-shield {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, var(--g), var(--g2));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 5px 16px rgba(31,138,90,.32);
}
.v2-guar-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; margin: 0 0 10px; }
.v2-guar-body p { color: #94a3b8; font-size: .9rem; line-height: 1.7; margin: 0 0 14px; }
.v2-guar-terms { display: flex; flex-wrap: wrap; gap: 10px; }
.v2-guar-t { display: flex; align-items: center; gap: 5px; font-size: .78rem; color: #4ade80; font-weight: 600; }
.v2-guar-t i { font-size: .7rem; }
@media (max-width: 560px) {
  .v2-guar-in { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .v2-guar-terms { justify-content: center; }
}

/* ─────────────────────────────────────────────────────────
   14. TRUST BADGES ROW
───────────────────────────────────────────────────────── */
.v2-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.v2-tb {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 8px 16px;
  color: #e2e8f0;
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
}
.v2-tb i { color: #4ade80; }

/* ─────────────────────────────────────────────────────────
   15. REVIEWS GRID
───────────────────────────────────────────────────────── */
.v2-rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.v2-rev-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 20px;
}
.v2-rev-card .rc-g { color: #4285f4; float: right; font-size: .95rem; }
.v2-rev-stars { color: #fbbf24; font-size: .88rem; margin-bottom: 10px; letter-spacing: 1px; }
.v2-rev-text { font-size: .85rem; color: #c8d6e5; line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.v2-rev-auth { display: flex; align-items: center; gap: 9px; }
.v2-rev-av { width: 33px; height: 33px; background: linear-gradient(135deg, #4ade80, var(--g)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: #fff; flex-shrink: 0; }
.v2-rev-name { font-weight: 700; color: #e2e8f0; font-size: .86rem; }
.v2-rev-meta { font-size: .72rem; color: var(--sl); }

@media (max-width: 780px) { .v2-rev-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* ─────────────────────────────────────────────────────────
   16. WHY US CARDS (index)
───────────────────────────────────────────────────────── */
.v2-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.v2-why-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.v2-why-card img { width: 100%; height: 280px; object-fit: cover; object-position: center 25%; display: block; }
.v2-why-body { padding: 22px; }
.v2-why-eyebrow { font-size: .72rem; font-weight: 700; color: var(--g); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; }
.v2-why-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--dk); margin: 0 0 8px; }
.v2-why-body p { font-size: .85rem; color: var(--sl); line-height: 1.65; margin: 0 0 14px; }
.v2-why-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.v2-why-tag { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; font-size: .73rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; display: flex; align-items: center; gap: 5px; }
@media (max-width: 640px) { .v2-why-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────
   17. FAQ
───────────────────────────────────────────────────────── */
.v2-faq-list { display: flex; flex-direction: column; gap: 10px; }
.v2-faq-item {
  background: var(--bg);
  border: 1px solid var(--bdr);
  border-radius: 13px;
  overflow: hidden;
}
.v2-faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--dk);
  cursor: pointer;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  gap: 12px;
  min-height: 52px;
  line-height: 1.4;
}
.v2-faq-item summary::-webkit-details-marker { display: none; }
.v2-faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--g); font-weight: 700; flex-shrink: 0; }
.v2-faq-item[open] summary::after { content: '−'; }
.v2-faq-item p { padding: 0 20px 16px; color: #475569; line-height: 1.7; font-size: .9rem; margin: 0; }

/* ─────────────────────────────────────────────────────────
   18. LEAD FORM CARD (index bottom)
───────────────────────────────────────────────────────── */
.v2-form-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31,138,90,.1);
  overflow: hidden;
}
.v2-form-urg {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  flex-wrap: wrap;
  text-align: center;
}
.v2-form-urg .fn { background: rgba(255,255,255,.2); border-radius: 4px; padding: 1px 7px; color: #fde68a; font-weight: 900; }
.v2-form-body { padding: 28px 28px 30px; }
.v2-form-body h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.25rem, 3vw, 1.65rem); font-weight: 800; color: var(--dk); margin: 0 0 6px; }
.v2-form-body .fsub { font-size: .9rem; color: var(--sl); margin: 0 0 20px; line-height: 1.5; }
.v2-fg { margin-bottom: 12px; position: relative; }
.v2-fi { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: .84rem; pointer-events: none; }
.v2-fg input,
.v2-fg select,
.v2-fg textarea {
  width: 100%;
  padding: 13px 14px 13px 40px;
  border: 1.5px solid var(--bdr);
  border-radius: 10px;
  font-size: .95rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dk);
  background: var(--bg);
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  min-height: 48px;
}
.v2-fg input:focus,
.v2-fg select:focus,
.v2-fg textarea:focus { outline: none; border-color: var(--g); background: #fff; box-shadow: 0 0 0 3px rgba(31,138,90,.1); }
.v2-fg textarea { resize: none; min-height: 76px; }
.v2-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--g) 0%, var(--g2) 80%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(31,138,90,.32), 0 8px 28px rgba(31,138,90,.14);
  transition: transform .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
}
.v2-submit:hover { transform: translateY(-1px); }
.v2-form-badges { margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.v2-form-badges span { display: flex; align-items: center; gap: 4px; font-size: .74rem; color: #94a3b8; }
.v2-form-badges i { color: var(--g); }
.v2-form-tos { font-size: .72rem; color: #94a3b8; text-align: center; margin-top: 10px; line-height: 1.5; }
.v2-form-tos a { color: var(--g); }
.v2-form-or { text-align: center; margin-top: 16px; font-size: .88rem; color: var(--sl); }
.v2-form-or a { color: var(--g); font-weight: 700; }

@media (max-width: 480px) {
  .v2-form-body { padding: 20px 18px 24px; }
  .v2-submit { font-size: .9rem; }
}

/* ─────────────────────────────────────────────────────────
   19. BOTTOM CTA
───────────────────────────────────────────────────────── */
.v2-bcta {
  background: linear-gradient(135deg, #091a0d 0%, #14301d 100%);
  padding: 56px 20px;
  text-align: center;
}
.v2-bcta-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(220,38,38,.12);
  border: 1px solid rgba(220,38,38,.28);
  color: #fca5a5;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.v2-bcta-scarcity .dot { width: 6px; height: 6px; background: #ef4444; border-radius: 50%; animation: blink 1.1s infinite; }
.v2-bcta h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.4rem, 4vw, 2.1rem); font-weight: 900; color: #fff; margin: 0 0 8px; line-height: 1.2; }
.v2-bcta p { color: #64748b; font-size: .95rem; margin: 0 0 28px; }
.v2-bcta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.v2-bcta-call {
  background: linear-gradient(135deg, var(--g), var(--g2));
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(31,138,90,.38);
  transition: transform .2s;
  min-height: 50px;
}
.v2-bcta-call:hover { transform: translateY(-2px); color: #fff; }
.v2-bcta-ghost {
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  transition: background .2s;
  min-height: 50px;
  display: flex; align-items: center; gap: 7px;
}
.v2-bcta-ghost:hover { background: rgba(255,255,255,.15); color: #fff; }
@media (max-width: 480px) {
  .v2-bcta-btns { flex-direction: column; align-items: stretch; padding: 0 10px; }
  .v2-bcta-call, .v2-bcta-ghost { justify-content: center; }
}

/* ─────────────────────────────────────────────────────────
   20. CITY PAGE — BREADCRUMB
───────────────────────────────────────────────────────── */
.v2-crumb {
  padding: 12px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--bdr);
}
.v2-crumb-in {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: var(--sl);
  flex-wrap: wrap;
}
.v2-crumb-in a { color: var(--g); font-weight: 600; }
.v2-crumb-in a:hover { text-decoration: underline; }
.v2-crumb-sep { color: #c8d6e5; }

/* ─────────────────────────────────────────────────────────
   21. CITY PAGE — MAIN CONTENT + SIDEBAR
───────────────────────────────────────────────────────── */
.v2-city-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
@media (max-width: 900px) {
  .v2-city-layout {
    grid-template-columns: 1fr;
    padding: 36px 16px 50px;
    gap: 28px;
  }
  /* On mobile: sidebar BEFORE main content */
  .v2-city-sidebar { order: -1; }
}

/* Main content prose */
.v2-city-main h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 800; color: var(--dk); margin: 0 0 14px; }
.v2-city-main h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--dk); margin: 28px 0 10px; }
.v2-city-main p { color: #475569; line-height: 1.75; margin: 0 0 14px; font-size: .93rem; }
.v2-city-main a { color: var(--g); font-weight: 600; }

.v2-city-bullets { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.v2-city-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: .91rem; color: #475569; }
.v2-city-bullets li i { color: var(--g); margin-top: 3px; font-size: .88rem; flex-shrink: 0; }
.v2-city-bullets li strong { color: var(--dk); }

/* Inline CTA card */
.v2-inline-cta {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1.5px solid #bbf7d0;
  border-radius: 16px;
  padding: 22px;
  margin: 28px 0;
  text-align: center;
}
.v2-inline-cta p { font-size: .95rem; font-weight: 600; color: var(--dk); margin: 0 0 14px; }
.v2-inline-cta a.v2-ic-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--g), var(--g2));
  color: #fff;
  padding: 13px 28px;
  border-radius: 11px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  box-shadow: 0 4px 12px rgba(31,138,90,.28);
  transition: transform .2s;
  min-height: 46px;
  line-height: 1.4;
}
.v2-inline-cta a.v2-ic-btn:hover { transform: translateY(-1px); }
.v2-inline-cta .ic-or { margin-top: 12px; font-size: .82rem; color: var(--sl); }
.v2-inline-cta .ic-or a { color: var(--g); font-weight: 700; background: none; padding: 0; box-shadow: none; display: inline; min-height: auto; }

/* Services grid in city content */
.v2-city-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin: 14px 0 20px;
}
.v2-city-svc-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--bdr);
  border-radius: 10px;
  color: var(--dk);
  font-weight: 600;
  font-size: .85rem;
  transition: border-color .15s, background .15s, color .15s;
  min-height: 44px;
}
.v2-city-svc-link:hover { border-color: var(--g); background: #f0fdf4; color: var(--g); }
.v2-city-svc-link i { color: var(--g); font-size: .95rem; flex-shrink: 0; width: 16px; text-align: center; }
@media (max-width: 480px) {
  .v2-city-svc-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   22. SIDEBAR FORM CARD
───────────────────────────────────────────────────────── */
.v2-sidebar { position: sticky; top: 76px; }
.v2-sform {
  background: #fff;
  border: 1.5px solid rgba(31,138,90,.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.v2-sform-urg {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  flex-wrap: wrap;
  text-align: center;
}
.v2-sform-urg .sn { background: rgba(255,255,255,.2); border-radius: 4px; padding: 0 6px; color: #fde68a; font-weight: 900; }
.v2-sform-body { padding: 20px; }
.v2-sform-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--dk); margin: 0 0 5px; }
.v2-sform-body .ssub { font-size: .8rem; color: var(--sl); margin: 0 0 14px; line-height: 1.5; }
.v2-sfg { margin-bottom: 10px; position: relative; }
.v2-sfi { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: .8rem; pointer-events: none; }
.v2-sfg input, .v2-sfg select, .v2-sfg textarea {
  width: 100%;
  padding: 11px 12px 11px 36px;
  border: 1.5px solid var(--bdr);
  border-radius: 9px;
  font-size: .88rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dk);
  background: var(--bg);
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  min-height: 44px;
}
.v2-sfg input:focus, .v2-sfg select:focus, .v2-sfg textarea:focus { outline: none; border-color: var(--g); background: #fff; box-shadow: 0 0 0 3px rgba(31,138,90,.09); }
.v2-sfg textarea { resize: none; min-height: 66px; }
.v2-ssubmit {
  width: 100%;
  background: linear-gradient(135deg, var(--g), var(--g2));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31,138,90,.28);
  transition: transform .2s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 48px;
}
.v2-ssubmit:hover { transform: translateY(-1px); }
.v2-sbadges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 11px; }
.v2-sbadges span { font-size: .71rem; color: #94a3b8; display: flex; align-items: center; gap: 3px; }
.v2-sbadges i { color: var(--g); }
.v2-sform-tos { font-size: .68rem; color: #94a3b8; text-align: center; margin-top: 9px; line-height: 1.5; }
.v2-sform-tos a { color: var(--g); }
.v2-sform-or { text-align: center; margin-top: 12px; font-size: .85rem; color: var(--sl); }
.v2-sform-or a { color: var(--g); font-weight: 700; }

@media (max-width: 900px) {
  .v2-sidebar { position: static; top: auto; }
  .v2-sform-body { padding: 18px 16px 20px; }
}

/* ─────────────────────────────────────────────────────────
   23. COMBO SERVICE LINKS (city)
───────────────────────────────────────────────────────── */
.v2-combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.v2-combo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 14px;
  background: var(--bg);
  border: 1.5px solid var(--bdr);
  border-radius: 16px;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  text-align: center;
}
.v2-combo-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--g); }
.v2-combo-icon { width: 46px; height: 46px; background: linear-gradient(135deg, var(--g-lt), #bbf7d0); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: #15803d; }
.v2-combo-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .88rem; color: var(--dk); line-height: 1.3; }
.v2-combo-sub { font-size: .73rem; color: var(--sl); }

/* ─────────────────────────────────────────────────────────
   24. NEARBY CITIES
───────────────────────────────────────────────────────── */
.v2-nearby { padding: 44px 20px; border-top: 1px solid var(--bdr); }
.v2-nearby h2 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--dk); text-align: center; margin: 0 0 18px; }
.v2-nearby-links { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; max-width: 800px; margin: 0 auto; }
.v2-nearby-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1.5px solid var(--bdr);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--sl);
  transition: border-color .15s, color .15s;
  min-height: 40px;
}
.v2-nearby-link:hover { border-color: var(--g); color: var(--g); }
.v2-nearby-link i { color: var(--g); font-size: .78rem; }

/* ─────────────────────────────────────────────────────────
   25. EXIT POPUP
───────────────────────────────────────────────────────── */
.v2-popup { position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 16px; }
.v2-popup.show { display: flex; }
.v2-popup-box {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.v2-popup-close { position: absolute; top: 12px; right: 14px; font-size: 22px; cursor: pointer; color: #94a3b8; background: none; border: none; line-height: 1; padding: 4px; }
.v2-popup-close:hover { color: #475569; }
.v2-popup-box h3 { font-family: 'Montserrat', sans-serif; font-weight: 900; color: var(--dk); font-size: 1.4rem; margin: 0 0 8px; }
.v2-popup-sub { color: var(--sl); font-size: .9rem; margin: 0 0 16px; line-height: 1.5; }
.v2-popup-offer { background: #fef2f2; border: 1px solid #fecaca; border-radius: 11px; padding: 14px; margin-bottom: 16px; }
.v2-popup-offer strong { color: var(--rd); font-size: 1.35rem; font-family: 'Montserrat', sans-serif; font-weight: 900; display: block; margin-bottom: 4px; }
.v2-popup-offer small { color: var(--sl); font-size: .78rem; }
.v2-popup-code { color: var(--sl); font-size: .83rem; margin-bottom: 14px; }
.v2-popup-code strong { color: var(--dk); background: var(--bg); padding: 2px 8px; border-radius: 4px; }
.v2-popup-btn { background: linear-gradient(135deg, var(--g), var(--g2)); color: #fff; padding: 14px 26px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .95rem; border: none; cursor: pointer; width: 100%; box-shadow: 0 4px 14px rgba(31,138,90,.32); transition: transform .2s; min-height: 50px; }
.v2-popup-btn:hover { transform: translateY(-1px); }
.v2-popup-dismiss { display: block; margin-top: 11px; color: #94a3b8; font-size: .78rem; cursor: pointer; text-decoration: underline; background: none; border: none; }
@media (max-width: 420px) {
  .v2-popup-box { padding: 26px 18px; }
  .v2-popup-box h3 { font-size: 1.25rem; }
}

/* ─────────────────────────────────────────────────────────
   25b. SCARCITY BANNER (injected by main.js)
───────────────────────────────────────────────────────── */
.scarcity-banner { background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%); border: 2px solid #f59e0b; border-radius: 10px; padding: 14px 20px; margin-bottom: 30px; display: flex; align-items: center; justify-content: center; text-align: center; gap: 12px; animation: scarcityPulse 3s ease-in-out infinite; }
.scarcity-banner .scarcity-icon { font-size: 1.5rem; flex-shrink: 0; }
.scarcity-banner .scarcity-text { font-size: 0.95rem; color: #92400e; font-weight: 600; line-height: 1.4; }
.scarcity-banner .scarcity-text strong { color: #b91c1c; }
@keyframes scarcityPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,.3); } 50% { box-shadow: 0 0 0 6px rgba(245,158,11,0); } }
@media (max-width: 480px) {
  .scarcity-banner { padding: 12px 14px; gap: 10px; }
  .scarcity-banner .scarcity-text { font-size: 0.88rem; }
}

/* ─────────────────────────────────────────────────────────
   26. MOBILE STICKY BAR
───────────────────────────────────────────────────────── */
.v2-sticky { display: none; }
@media (max-width: 900px) {
  .v2-sticky {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9998;
  }
  .v2-sticky a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    height: 54px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    font-size: .88rem;
    text-decoration: none;
  }
  .v2-sticky .sc { background: linear-gradient(135deg, var(--g), var(--g2)); color: #fff; }
  .v2-sticky .st { background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #fff; }
  .v2-sticky .sq { background: linear-gradient(135deg, #f25c2b, #ea580c); color: #fff; }
  body { padding-bottom: 54px; }
}
@media (max-width: 380px) {
  .v2-sticky a { font-size: .8rem; gap: 5px; }
  .v2-sticky a i { font-size: .9rem; }
}

/* ─────────────────────────────────────────────────────────
   27. FOOTER (migrated from style.css)
───────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
footer { background: #0b1120; color: #94a3b8; padding: 70px 0 30px; }
footer h1, footer h2, footer h3, footer h4 { color: #ffffff !important; }
footer p, footer li { color: #94a3b8; }
footer a { color: #cbd5e1; }
footer a:hover { color: #ffffff; }
.footer-grid--modern {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 50px 0 30px;
}
.footer-col h4 { color: #ffffff; font-size: 1rem; margin-bottom: 16px; font-weight: 700; }
.footer-col p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #ffffff; }
.footer-col i { width: 18px; text-align: center; margin-right: 6px; color: var(--g); }
.footer-tagline { font-size: 0.95rem; color: rgba(255,255,255,0.5) !important; margin-bottom: 12px !important; }
.footer-license { font-size: 0.78rem !important; color: rgba(255,255,255,0.4) !important; line-height: 1.5 !important; }
.footer-area-links { display: flex; flex-wrap: wrap; gap: 6px 10px; }
.footer-area-links a { font-size: 0.82rem; color: rgba(255,255,255,0.6); padding: 2px 0; }
.footer-area-links a:hover { color: #ffffff; }
.footer-all-areas { width: 100%; margin-top: 6px; color: var(--g) !important; font-weight: 600; font-size: 0.85rem !important; }
.footer-bottom { text-align: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 10px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.footer-bottom a:hover { color: #ffffff; }
@media (max-width: 900px) {
  .footer-grid--modern { grid-template-columns: 1fr 1fr; gap: 30px; text-align: center; }
  .footer-col i { display: inline; }
  .footer-area-links { justify-content: center; }
  .container { padding: 0 15px; }
}
@media (max-width: 480px) {
  .footer-grid--modern { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-area-links { justify-content: center; }
}

/* ─────────────────────────────────────────────────────────
   28. MISC UTILITIES
───────────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
