/* ============================================================================
   PREVENTATIVE INSECT PROVISIONS (PIP) - Design System CSS
   Brand Colors: Crimson #8B1A1A, Black #1A1A1A, Eco-Green #4A7A2E
   Mobile-First, Accessible, Performance-Optimized
   ============================================================================ */

/* ── CUSTOM PROPERTIES ──────────────────────────────────────────────────── */
:root {
  --pip-crimson: #8B1A1A;
  --pip-crimson-light: #A82828;
  --pip-crimson-dark: #6B1010;
  --pip-black: #1A1A1A;
  --pip-black-light: #333333;
  --pip-green: #4A7A2E;
  --pip-green-light: #5D9B3A;
  --pip-green-dark: #3A6122;
  --pip-emergency: #C0392B;
  --pip-emergency-light: #E74C3C;
  --pip-trust: #2563EB;
  --success: #16A34A;
  --warning: #EAB308;
  --error: #DC2626;
  --info: #0EA5E9;
  --n50: #FAFAF8;
  --n100: #F5F3F0;
  --n200: #E8E5E0;
  --n300: #D4D0C8;
  --n400: #A09888;
  --n500: #706858;
  --n600: #504A3C;
  --n700: #3A352A;
  --n800: #2A2620;
  --n900: #1A1814;
  --font-heading: 'Inter', 'Helvetica Neue', Arial, system-ui, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --shadow-sm: 0 1px 2px rgba(26,24,20,.06);
  --shadow-md: 0 4px 6px -1px rgba(26,24,20,.08), 0 2px 4px -2px rgba(26,24,20,.04);
  --shadow-lg: 0 10px 15px -3px rgba(26,24,20,.08), 0 4px 6px -4px rgba(26,24,20,.04);
  --shadow-card: 0 2px 8px rgba(26,24,20,.06), 0 0 1px rgba(26,24,20,.1);
  --shadow-emergency: 0 0 0 3px rgba(192,57,43,.3), 0 4px 12px rgba(192,57,43,.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 250ms;
  --duration-fast: 150ms;
}

/* ── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  color: var(--n800); background: var(--n50);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pip-crimson); text-decoration: none; transition: color var(--duration-fast) var(--ease); }
a:hover { color: var(--pip-crimson-light); }
a:focus-visible { outline: 3px solid var(--pip-trust); outline-offset: 2px; border-radius: 2px; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--pip-black); }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.375rem, 3vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
ul, ol { list-style: none; }

/* ── LAYOUT ─────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.container--narrow { max-width: 800px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }

/* ── EMERGENCY BANNER ───────────────────────────────────────────────────── */
.emergency-banner {
  background: var(--pip-emergency); color: #fff; padding: 8px 0; font-size: 0.875rem; font-weight: 600;
}
.emergency-banner__content {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.emergency-banner__pulse {
  width: 8px; height: 8px; background: #fff; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.emergency-banner__cta {
  color: #fff; background: rgba(255,255,255,.15); padding: 4px 12px;
  border-radius: var(--radius-sm); font-weight: 700;
  transition: background var(--duration-fast) var(--ease);
}
.emergency-banner__cta:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ── NAVIGATION ─────────────────────────────────────────────────────────── */
.nav {
  background: #fff; border-bottom: 1px solid var(--n200); position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.nav__logo { display: flex; align-items: center; gap: 8px; }
.nav__logo-img { height: 82px; width: auto; }
.nav__toggle {
  display: flex; flex-direction: column; gap: 5px; padding: 8px;
  background: none; border: none; cursor: pointer;
}
.nav__toggle-bar { width: 24px; height: 2px; background: var(--pip-black); transition: all var(--duration) var(--ease); border-radius: 1px; }
.nav__menu {
  display: none; position: absolute; top: 80px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--n200);
  padding: 16px; flex-direction: column; gap: 8px; box-shadow: var(--shadow-lg);
}
.nav__menu.is-open { display: flex; }
.nav__link {
  display: block; padding: 10px 16px; color: var(--n700); font-weight: 500;
  border-radius: var(--radius-sm); transition: all var(--duration-fast) var(--ease);
}
.nav__link:hover { background: var(--n100); color: var(--pip-crimson); }
.nav__link--active { color: var(--pip-crimson); font-weight: 600; }
.nav__link--highlight { color: var(--pip-green); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px;
  background: var(--pip-crimson); color: #fff !important; border-radius: var(--radius-md); font-weight: 700;
  transition: background var(--duration-fast) var(--ease); text-align: center;
}
.nav__cta:hover { background: var(--pip-crimson-light); }

@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .nav__menu { display: flex; position: static; flex-direction: row; align-items: center; gap: 4px; padding: 0; border: none; box-shadow: none; }
  .nav__link { padding: 8px 12px; font-size: 0.9375rem; }
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, rgba(26,26,26,.75) 0%, rgba(42,26,26,.7) 50%, rgba(107,16,16,.65) 100%);
  color: #fff; padding: 64px 0 56px; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.hero--has-image {
  background-blend-mode: overlay;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, rgba(26,26,26,.5) 0%, rgba(26,26,26,.3) 40%, rgba(139,26,26,.4) 100%);
  z-index: 0;
}
.hero__content { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 6px 16px; border-radius: var(--radius-xl); font-size: 0.875rem;
  font-weight: 600; margin-bottom: 16px; backdrop-filter: blur(4px);
}
.hero__title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 16px; line-height: 1.1; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.hero__subtitle { font-size: 1.125rem; color: rgba(255,255,255,.85); margin-bottom: 24px; max-width: 640px; line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md); font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,.9); backdrop-filter: blur(4px);
}
@media (min-width: 768px) { .hero { padding: 80px 0 72px; } }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-md); font-weight: 600;
  font-size: 0.9375rem; border: 2px solid transparent; cursor: pointer;
  transition: all var(--duration-fast) var(--ease); text-decoration: none;
  font-family: var(--font-heading); line-height: 1.4;
}
.btn:focus-visible { outline: 3px solid var(--pip-trust); outline-offset: 2px; }
.btn--primary { background: var(--pip-crimson); color: #fff; border-color: var(--pip-crimson); }
.btn--primary:hover { background: var(--pip-crimson-light); border-color: var(--pip-crimson-light); color: #fff; }
.btn--emergency {
  background: var(--pip-emergency); color: #fff; border-color: var(--pip-emergency);
  animation: emergencyPulse 3s infinite;
}
.btn--emergency:hover { background: var(--pip-emergency-light); border-color: var(--pip-emergency-light); color: #fff; }
@keyframes emergencyPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,.4); } 50% { box-shadow: 0 0 0 6px rgba(192,57,43,0); } }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--full { width: 100%; }

/* Dark bg context override for outline buttons */
.section .btn--outline, .page-header .btn--outline, .cta-section .btn--outline {
  color: var(--pip-crimson); border-color: var(--pip-crimson);
}
.section .btn--outline:hover, .page-header .btn--outline:hover { background: var(--pip-crimson); color: #fff; }

/* ── SEASONAL ALERT ─────────────────────────────────────────────────────── */
.seasonal-alert { padding: 10px 0; font-size: 0.875rem; font-weight: 500; }
.seasonal-alert--winter { background: #EFF6FF; color: #1E40AF; }
.seasonal-alert--spring { background: #F0FDF4; color: #166534; }
.seasonal-alert--summer { background: #FFFBEB; color: #92400E; }
.seasonal-alert--fall { background: #FFF7ED; color: #9A3412; }
.seasonal-alert__content { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.seasonal-alert__content a { font-weight: 700; color: inherit; text-decoration: underline; }

/* ── BREADCRUMB ─────────────────────────────────────────────────────────── */
.breadcrumb { padding: 12px 0; background: var(--n100); border-bottom: 1px solid var(--n200); font-size: 0.8125rem; }
.breadcrumb__list { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.breadcrumb__item { display: flex; align-items: center; gap: 4px; }
.breadcrumb__item a { color: var(--n500); }
.breadcrumb__item a:hover { color: var(--pip-crimson); }
.breadcrumb__sep { color: var(--n400); margin: 0 2px; }
.breadcrumb__item [aria-current] { color: var(--n700); font-weight: 600; }

/* ── PAGE HEADER ────────────────────────────────────────────────────────── */
.page-header {
  background: var(--pip-black); color: #fff; padding: 48px 0 40px;
  position: relative; overflow: hidden; background-size: cover; background-position: center;
}
.page-header--has-image {
  background-blend-mode: overlay;
  background-color: rgba(26,26,26,.65);
}
.page-header--has-image::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,.6) 0%, rgba(26,26,26,.4) 100%);
  z-index: 0;
}
.page-header > .container { position: relative; z-index: 1; }
.page-header h1 { color: #fff; margin-bottom: 12px; text-shadow: 0 2px 6px rgba(0,0,0,.3); }
.page-header__sub { color: rgba(255,255,255,.85); font-size: 1.0625rem; max-width: 700px; }
.page-header--forecast { background: linear-gradient(135deg, rgba(12,45,26,.8) 0%, rgba(58,97,34,.7) 100%); }

/* ── SECTIONS ───────────────────────────────────────────────────────────── */
.section { padding: 48px 0; }
.section--alt { background: var(--n100); }
.section-title {
  font-size: clamp(1.375rem, 3vw, 1.875rem); margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
}
.section-title i { color: var(--pip-crimson); }
.section-subtitle { color: var(--n500); font-size: 1.0625rem; margin-bottom: 32px; max-width: 640px; }
.section-cta { text-align: center; margin-top: 32px; }

/* ── CARD GRID ──────────────────────────────────────────────────────────── */
.card-grid { display: grid; gap: 24px; }
.card-grid--2 { grid-template-columns: 1fr; }
.card-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid--2 { grid-template-columns: repeat(2, 1fr); } .card-grid--3 { grid-template-columns: repeat(2, 1fr); } .card-grid { gap: 28px; } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* ── PEST CARD ──────────────────────────────────────────────────────────── */
.pest-card {
  background: #fff; border-radius: var(--radius-lg); padding: 0;
  box-shadow: var(--shadow-card); border: 1px solid var(--n200);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
  display: flex; flex-direction: column; overflow: hidden;
  border-top: 3px solid var(--pip-crimson);
  position: relative;
}
.pest-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pip-crimson-dark), var(--pip-crimson), var(--pip-crimson-light));
  opacity: 0; transition: opacity var(--duration) var(--ease);
}
.pest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(139,26,26,.12), 0 4px 10px rgba(26,24,20,.06);
  border-color: rgba(139,26,26,.18);
}
.pest-card:hover::after { opacity: 1; }
.pest-card__image {
  width: 100%; height: 160px; object-fit: cover;
  position: relative;
}
.pest-card__body {
  padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1;
  background: linear-gradient(180deg, rgba(139,26,26,.015) 0%, transparent 40%);
}
.pest-card__header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.pest-card__icon {
  width: 42px; height: 42px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(139,26,26,.1), rgba(139,26,26,.04));
  display: flex; align-items: center; justify-content: center;
  color: var(--pip-crimson); font-size: 1.125rem; flex-shrink: 0;
  border: 1px solid rgba(139,26,26,.12);
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.pest-card:hover .pest-card__icon {
  background: linear-gradient(135deg, rgba(139,26,26,.15), rgba(139,26,26,.08));
  transform: scale(1.05);
}
.pest-card__meta { flex: 1; min-width: 0; }
.pest-card__name { font-size: 1.0625rem; margin-bottom: 2px; }
.pest-card__name a { color: var(--pip-black); transition: color var(--duration-fast) var(--ease); }
.pest-card__name a:hover { color: var(--pip-crimson); }
.pest-card__scientific { font-size: 0.75rem; color: var(--n400); font-style: italic; }
.pest-card__desc { font-size: 0.875rem; color: var(--n600); margin-bottom: 16px; flex: 1; line-height: 1.55; }

/* Season bars */
.pest-card__season { display: flex; gap: 8px; margin-bottom: 16px; }
.season-bar { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.season-bar__label { font-size: 0.625rem; font-weight: 600; color: var(--n400); text-transform: uppercase; text-align: center; letter-spacing: 0.05em; }
.season-bar__track { height: 8px; background: var(--n200); border-radius: 4px; overflow: hidden; position: relative; }
.season-bar__fill { height: 100%; border-radius: 4px; min-width: 4px; display: block; }
.season-bar__fill--spring { background: linear-gradient(90deg, #3a6122, var(--pip-green-light)); }
.season-bar__fill--summer { background: linear-gradient(90deg, #D97706, #FACC15); }
.season-bar__fill--fall { background: linear-gradient(90deg, #9A3412, #EA580C); }
.season-bar__fill--winter { background: linear-gradient(90deg, #1D4ED8, #60A5FA); }

/* Tags */
.pest-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pest-card__link {
  display: flex; align-items: center; gap: 6px; color: var(--pip-crimson); font-weight: 600;
  font-size: 0.875rem; margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--n200); transition: gap var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease), border-color var(--duration) var(--ease);
}
.pest-card:hover .pest-card__link { border-top-color: rgba(139,26,26,.15); }
.pest-card__link:hover { gap: 10px; color: var(--pip-crimson-light); }
.pest-card__link i { transition: transform var(--duration-fast) var(--ease); }
.pest-card:hover .pest-card__link i { transform: translateX(3px); }

/* ── CITY CARD ──────────────────────────────────────────────────────────── */
.city-card {
  background: #fff; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-card); border: 1px solid var(--n200);
  border-left: 3px solid var(--pip-green);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  background-image: linear-gradient(135deg, rgba(74,122,46,.02) 0%, transparent 60%);
}
.city-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--pip-green-light), var(--pip-green), var(--pip-green-dark));
  opacity: 0; transition: opacity var(--duration) var(--ease);
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(74,122,46,.1), 0 4px 10px rgba(26,24,20,.06);
  border-left-color: var(--pip-green-light);
}
.city-card:hover::before { opacity: 1; }
.city-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.city-card__icon {
  color: var(--pip-green); font-size: 1.1rem;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(74,122,46,.12), rgba(74,122,46,.04));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(74,122,46,.14); flex-shrink: 0;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.city-card:hover .city-card__icon {
  background: linear-gradient(135deg, rgba(74,122,46,.18), rgba(74,122,46,.08));
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(74,122,46,.15);
}
.city-card__name { font-size: 1.0625rem; }
.city-card__name a { color: var(--pip-black); transition: color var(--duration-fast) var(--ease); }
.city-card__name a:hover { color: var(--pip-green); }
.city-card__type { font-size: 0.75rem; color: var(--n400); }
.city-card__desc { font-size: 0.875rem; color: var(--n600); margin-bottom: 16px; flex: 1; line-height: 1.55; }
.city-card__pests { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.city-card__link {
  display: flex; align-items: center; gap: 6px; color: var(--pip-green); font-weight: 600; font-size: 0.875rem;
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--n200);
  transition: gap var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease), border-color var(--duration) var(--ease);
}
.city-card:hover .city-card__link { border-top-color: rgba(74,122,46,.15); }
.city-card__link:hover { gap: 10px; color: var(--pip-green-light); }
.city-card__link i { transition: transform var(--duration-fast) var(--ease); }
.city-card:hover .city-card__link i { transform: translateX(3px); }

/* ── FORECAST CARD ──────────────────────────────────────────────────────── */
.forecast-card {
  background: #fff; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-card); border: 1px solid var(--n200);
  border-left: 4px solid var(--n300);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.forecast-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50px;
  opacity: 0; transition: opacity var(--duration) var(--ease); pointer-events: none;
}
.forecast-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.09), 0 4px 10px rgba(26,24,20,.06);
}
.forecast-card:hover::before { opacity: 1; }
.forecast-card--winter { border-left-color: var(--info); }
.forecast-card--winter::before { background: linear-gradient(180deg, rgba(14,165,233,.06) 0%, transparent 100%); }
.forecast-card--winter:hover { box-shadow: 0 12px 28px rgba(14,165,233,.1), 0 4px 10px rgba(26,24,20,.06); }
.forecast-card--spring { border-left-color: var(--pip-green); }
.forecast-card--spring::before { background: linear-gradient(180deg, rgba(74,122,46,.06) 0%, transparent 100%); }
.forecast-card--spring:hover { box-shadow: 0 12px 28px rgba(74,122,46,.1), 0 4px 10px rgba(26,24,20,.06); }
.forecast-card--summer { border-left-color: var(--warning); }
.forecast-card--summer::before { background: linear-gradient(180deg, rgba(234,179,8,.06) 0%, transparent 100%); }
.forecast-card--summer:hover { box-shadow: 0 12px 28px rgba(234,179,8,.1), 0 4px 10px rgba(26,24,20,.06); }
.forecast-card--fall { border-left-color: #EA580C; }
.forecast-card--fall::before { background: linear-gradient(180deg, rgba(234,88,12,.06) 0%, transparent 100%); }
.forecast-card--fall:hover { box-shadow: 0 12px 28px rgba(234,88,12,.1), 0 4px 10px rgba(26,24,20,.06); }
.forecast-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; position: relative; z-index: 1; }
.forecast-card__icon {
  font-size: 1.5rem;
  width: 42px; height: 42px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--duration) var(--ease), background var(--duration) var(--ease);
}
.forecast-card:hover .forecast-card__icon { transform: scale(1.1); }
.forecast-card--winter .forecast-card__icon { color: var(--info); background: rgba(14,165,233,.08); }
.forecast-card--spring .forecast-card__icon { color: var(--pip-green); background: rgba(74,122,46,.08); }
.forecast-card--summer .forecast-card__icon { color: var(--warning); background: rgba(234,179,8,.08); }
.forecast-card--fall .forecast-card__icon { color: #EA580C; background: rgba(234,88,12,.08); }
.forecast-card--winter:hover .forecast-card__icon { background: rgba(14,165,233,.14); }
.forecast-card--spring:hover .forecast-card__icon { background: rgba(74,122,46,.14); }
.forecast-card--summer:hover .forecast-card__icon { background: rgba(234,179,8,.14); }
.forecast-card--fall:hover .forecast-card__icon { background: rgba(234,88,12,.14); }
.forecast-card__title { font-size: 1.0625rem; }
.forecast-card__title a { color: var(--pip-black); transition: color var(--duration-fast) var(--ease); }
.forecast-card__dates { font-size: 0.75rem; color: var(--n400); }
.forecast-card__summary { font-size: 0.875rem; color: var(--n600); margin-bottom: 16px; flex: 1; line-height: 1.55; position: relative; z-index: 1; }
.forecast-card__critical { margin-bottom: 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; position: relative; z-index: 1; }
.forecast-card__critical-label { font-size: 0.8125rem; font-weight: 600; color: var(--error); }
.forecast-card__link {
  display: flex; align-items: center; gap: 6px; color: var(--pip-crimson); font-weight: 600; font-size: 0.875rem;
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--n200);
  transition: gap var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease), border-color var(--duration) var(--ease);
  position: relative; z-index: 1;
}
.forecast-card:hover .forecast-card__link { border-top-color: rgba(139,26,26,.12); }
.forecast-card__link:hover { gap: 10px; color: var(--pip-crimson-light); }
.forecast-card__link i { transition: transform var(--duration-fast) var(--ease); }
.forecast-card:hover .forecast-card__link i { transform: translateX(3px); }

/* ── BADGES & TAGS ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px;
  border-radius: var(--radius-xl); font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em;
}
.badge--success { background: #DCFCE7; color: #166534; }
.badge--warning { background: #FEF9C3; color: #854D0E; }
.badge--error { background: #FEE2E2; color: #991B1B; }
.badge--emergency { background: var(--pip-emergency); color: #fff; }
.badge--danger { background: #FEE2E2; color: #991B1B; }
.tag {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px;
  border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 500;
}
.tag--emergency { background: #FEE2E2; color: #991B1B; }
.tag--warning { background: #FEF9C3; color: #854D0E; }
.tag--danger { background: #FEE2E2; color: #991B1B; }
.tag--subtle { background: linear-gradient(135deg, rgba(74,122,46,.07), rgba(74,122,46,.03)); color: var(--n600); border: 1px solid rgba(74,122,46,.12); transition: background var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease); }
.city-card:hover .tag--subtle { background: linear-gradient(135deg, rgba(74,122,46,.1), rgba(74,122,46,.05)); border-color: rgba(74,122,46,.18); }
.tag--location { background: var(--n100); color: var(--n700); border: 1px solid var(--n200); }
.tag-group { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── FAQ ACCORDION ──────────────────────────────────────────────────────── */
.faq-section { margin-top: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff; border: 1px solid var(--n200); border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--pip-crimson); }
.faq-item__question {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: 0.9375rem;
  color: var(--pip-black); list-style: none;
  transition: background var(--duration-fast) var(--ease);
}
.faq-item__question:hover { background: var(--n50); }
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__icon { transition: transform var(--duration) var(--ease); flex-shrink: 0; color: var(--n400); }
.faq-item[open] .faq-item__icon { transform: rotate(180deg); color: var(--pip-crimson); }
.faq-item__answer { padding: 0 20px 16px; color: var(--n600); font-size: 0.9375rem; line-height: 1.6; }
.faq-item__answer p { margin: 0; }

/* ── TRUST SECTION ──────────────────────────────────────────────────────── */
.trust-section { padding: 48px 0; background: #fff; }
.trust-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 24px;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  text-align: center; padding: 24px 16px; border-radius: var(--radius-lg);
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.trust-item:hover {
  background: rgba(139,26,26,.02); box-shadow: 0 4px 16px rgba(139,26,26,.06);
}
.trust-item__icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--pip-crimson), var(--pip-crimson-dark));
  color: #fff; font-size: 1.25rem;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.trust-item:hover .trust-item__icon {
  transform: scale(1.08); box-shadow: 0 4px 12px rgba(139,26,26,.2);
}
.trust-item h3 { font-size: 1rem; margin-bottom: 8px; }
.trust-item p { font-size: 0.875rem; color: var(--n500); line-height: 1.5; }

/* ── CTA SECTION ────────────────────────────────────────────────────────── */
.cta-section { padding: 48px 0; background: var(--pip-black); color: #fff; text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 12px; font-size: clamp(1.375rem, 3vw, 1.875rem); }
.cta-section p { color: rgba(255,255,255,.8); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cta-section--emergency { background: linear-gradient(135deg, var(--pip-emergency-light), var(--pip-emergency)); }
.cta-section--forecast { background: linear-gradient(135deg, var(--pip-green-dark), var(--pip-green)); }

/* ── BOOKING FORM ───────────────────────────────────────────────────────── */
.booking-section { padding: 48px 0; background: var(--n50); }
.booking-form { max-width: 800px; margin: 24px auto 0; background: #fff; padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--n200); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-group--full { grid-column: 1 / -1; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--pip-black); margin-bottom: 6px; }
.required { color: var(--error); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--n300);
  border-radius: var(--radius-md); font-size: 0.9375rem; font-family: var(--font-body);
  color: var(--n800); background: #fff;
  transition: border-color var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--pip-crimson); box-shadow: 0 0 0 3px rgba(139,26,26,.12);
}
.form-note { font-size: 0.8125rem; color: var(--n400); text-align: center; margin-top: 16px; }

/* ── PEST DETAIL PAGE ───────────────────────────────────────────────────── */
.pest-detail { padding: 0 0 48px; }
.pest-detail__hero {
  padding: 72px 0 64px; margin-bottom: 32px; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  background-color: rgba(26,26,26,.7); background-blend-mode: overlay;
  min-height: 240px; display: flex; align-items: flex-end;
}
@media (min-width: 768px) {
  .pest-detail__hero { padding: 100px 0 72px; min-height: 320px; }
}
@media (min-width: 1024px) {
  .pest-detail__hero { padding: 120px 0 80px; min-height: 380px; }
}
.pest-detail__hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,.35) 0%, rgba(26,26,26,.45) 40%, rgba(139,26,26,.55) 100%);
  z-index: 0;
}
.pest-detail__hero > .container { position: relative; z-index: 1; width: 100%; }
.pest-detail__hero h1 { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.4); font-size: clamp(1.75rem, 4.5vw, 2.75rem); margin-bottom: 8px; }
.pest-detail__hero .pest-detail__scientific { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 16px; }
.pest-detail__hero .pest-detail__badges { margin-top: 4px; }
.pest-detail__hero .pest-detail__badges .badge { border: 1px solid rgba(255,255,255,.2); font-size: 0.75rem; padding: 4px 12px; }
.pest-detail__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .pest-detail__grid { grid-template-columns: 1fr 320px; } }
.pest-detail__header { margin-bottom: 24px; }
.pest-detail__scientific { color: var(--n400); font-style: italic; font-size: 0.9375rem; margin-bottom: 12px; }
.pest-detail__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.content-block { margin-bottom: 32px; }
.content-block h2 { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 1.25rem; }
.content-block h2 i { color: var(--pip-crimson); }
.content-block--alert { background: #FEF2F2; border: 1px solid #FECACA; border-radius: var(--radius-lg); padding: 24px; }
.lead { font-size: 1.0625rem; line-height: 1.7; color: var(--n700); }

/* Check lists */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; color: var(--n700); line-height: 1.5; }
.check-list li i { margin-top: 3px; flex-shrink: 0; font-size: 0.875rem; }
.check-list li i { color: var(--error); }
.check-list--success li i { color: var(--success); }
.check-list--info li i { color: var(--info); }
.check-list--danger li i { color: var(--error); }

/* Season chart */
.season-chart { display: flex; flex-direction: column; gap: 12px; }
.season-chart__bar { display: flex; align-items: center; gap: 12px; }
.season-chart__label { width: 60px; font-size: 0.875rem; font-weight: 600; color: var(--n600); }
.season-chart__fill {
  height: 28px; border-radius: var(--radius-sm); display: flex; align-items: center;
  padding: 0 10px; font-size: 0.75rem; font-weight: 600; color: #fff; min-width: 40px;
  transition: width 0.8s var(--ease);
}
.season-chart__fill--spring { background: var(--pip-green); }
.season-chart__fill--summer { background: var(--warning); color: var(--n800); }
.season-chart__fill--fall { background: #EA580C; }
.season-chart__fill--winter { background: var(--info); }

/* Pest image in detail page */
.pest-detail__image {
  width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius-lg);
  margin-bottom: 24px; box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .pest-detail__image { height: 320px; } }

/* Sidebar */
.pest-detail__sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: #fff; border: 1px solid var(--n200); border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow-sm);
}
.sidebar-card--emergency { border-color: var(--pip-crimson); border-width: 2px; }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.sidebar-card h3 i { color: var(--pip-crimson); }
.sidebar-card p { font-size: 0.875rem; color: var(--n500); margin-bottom: 12px; }
.sidebar-links { display: flex; flex-direction: column; gap: 6px; }
.sidebar-links li a { font-size: 0.875rem; color: var(--pip-crimson); display: flex; align-items: center; gap: 4px; }
.sidebar-links li a:hover { color: var(--pip-crimson-light); }
.sidebar-links li a::before { content: '›'; font-weight: 700; }

/* ── FORECAST DETAIL ────────────────────────────────────────────────────── */
.forecast-detail { padding: 0 0 48px; }
.forecast-detail__hero {
  padding: 48px 0 40px; margin-bottom: 32px; color: #fff;
  background: var(--pip-black); position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.forecast-detail__hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
}
.forecast-detail__hero > * { position: relative; z-index: 1; }
.forecast-detail__hero h1 { color: #fff; }
.forecast-detail__hero--winter {
  background: linear-gradient(135deg, rgba(30,58,95,.9), rgba(37,99,235,.8));
}
.forecast-detail__hero--spring {
  background: linear-gradient(135deg, rgba(26,58,32,.9), rgba(74,122,46,.8));
}
.forecast-detail__hero--summer {
  background: linear-gradient(135deg, rgba(120,53,15,.9), rgba(217,119,6,.8));
}
.forecast-detail__hero--fall {
  background: linear-gradient(135deg, rgba(67,20,7,.9), rgba(234,88,12,.8));
}
.forecast-detail__dates { font-size: 0.875rem; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.forecast-detail__hero-desc { color: rgba(255,255,255,.85); font-size: 1.0625rem; max-width: 700px; }
.forecast-detail__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .forecast-detail__grid { grid-template-columns: 1fr 320px; } }

/* Trigger grid */
.trigger-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .trigger-grid { grid-template-columns: repeat(2, 1fr); } }
.trigger-card {
  background: var(--n50); border: 1px solid var(--n200); border-radius: var(--radius-md);
  padding: 16px;
}
.trigger-card__icon { color: var(--pip-crimson); font-size: 1.25rem; margin-bottom: 8px; }
.trigger-card h3 { font-size: 0.9375rem; margin-bottom: 6px; }
.trigger-card p { font-size: 0.8125rem; color: var(--n500); }

/* Prediction card */
.prediction-card {
  background: #fff; border: 1px solid var(--n200); border-radius: var(--radius-md);
  padding: 20px; margin-bottom: 16px; border-left: 4px solid var(--n300);
}
.prediction-card--critical { border-left-color: var(--pip-emergency); }
.prediction-card--high { border-left-color: var(--error); }
.prediction-card--moderate { border-left-color: var(--warning); }
.prediction-card--low { border-left-color: var(--success); }
.prediction-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.prediction-card__header h3 { font-size: 1.0625rem; }
.prediction-card__header h3 a { color: var(--pip-black); }
.prediction-card__header h3 a:hover { color: var(--pip-crimson); }
.prediction-card p { font-size: 0.9375rem; color: var(--n600); margin-bottom: 8px; }
.prediction-card__meta { font-size: 0.8125rem; color: var(--n500); margin-bottom: 12px; }
.prediction-card__actions h4 { font-size: 0.875rem; margin-bottom: 8px; color: var(--pip-black); }
.prediction-card__actions ul { display: flex; flex-direction: column; gap: 6px; }
.prediction-card__actions li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8125rem; color: var(--n600); }
.prediction-card__actions li i { color: var(--success); margin-top: 2px; }

/* ── INTERNAL LINKS ─────────────────────────────────────────────────────── */
.internal-links { padding: 40px 0; background: var(--n100); border-top: 1px solid var(--n200); }
.internal-links__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .internal-links__grid { grid-template-columns: repeat(3, 1fr); } }
.internal-links h3 { font-size: 0.9375rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; color: var(--pip-black); }
.internal-links h3 i { color: var(--pip-crimson); }
.link-columns { display: grid; grid-template-columns: 1fr; gap: 6px; }
.link-columns li a { font-size: 0.8125rem; color: var(--n600); }
.link-columns li a:hover { color: var(--pip-crimson); }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.footer { background: var(--pip-black); color: rgba(255,255,255,.8); padding: 48px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__logo-img { height: 48px; width: auto; margin-bottom: 12px; }
.footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact a { color: rgba(255,255,255,.8); font-size: 0.875rem; display: flex; align-items: center; gap: 8px; }
.footer__contact a:hover { color: #fff; }
.footer__heading { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links li a { color: rgba(255,255,255,.6); font-size: 0.8125rem; }
.footer__links li a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px;
}
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,.4); }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { font-size: 0.75rem; color: rgba(255,255,255,.4); }
.footer__legal a:hover { color: rgba(255,255,255,.7); }

/* ── CARD FOCUS STATES (A11y) ──────────────────────────────────────────── */
.pest-card:focus-within { box-shadow: 0 0 0 3px rgba(139,26,26,.2), var(--shadow-card); }
.city-card:focus-within { box-shadow: 0 0 0 3px rgba(74,122,46,.2), var(--shadow-card); }
.forecast-card--winter:focus-within { box-shadow: 0 0 0 3px rgba(14,165,233,.2), var(--shadow-card); }
.forecast-card--spring:focus-within { box-shadow: 0 0 0 3px rgba(74,122,46,.2), var(--shadow-card); }
.forecast-card--summer:focus-within { box-shadow: 0 0 0 3px rgba(234,179,8,.2), var(--shadow-card); }
.forecast-card--fall:focus-within { box-shadow: 0 0 0 3px rgba(234,88,12,.2), var(--shadow-card); }

/* ── ANIMATION LIBRARY (Micro-interactions) ─────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .pest-card, .city-card, .forecast-card, .trigger-card, .trust-item {
    opacity: 0; transform: translateY(16px);
    animation: fadeInUp 0.5s var(--ease) forwards;
  }
  .card-grid > :nth-child(1) { animation-delay: 0.05s; }
  .card-grid > :nth-child(2) { animation-delay: 0.1s; }
  .card-grid > :nth-child(3) { animation-delay: 0.15s; }
  .card-grid > :nth-child(4) { animation-delay: 0.2s; }
  .card-grid > :nth-child(5) { animation-delay: 0.25s; }
  .card-grid > :nth-child(6) { animation-delay: 0.3s; }
  .card-grid > :nth-child(7) { animation-delay: 0.35s; }
  .card-grid > :nth-child(8) { animation-delay: 0.4s; }
  .card-grid > :nth-child(9) { animation-delay: 0.45s; }
}
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* ── SKIP LINK (A11y) ───────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px; padding: 12px 24px;
  background: var(--pip-crimson); color: #fff; font-weight: 700;
  border-radius: var(--radius-md); z-index: 10000;
  transition: top var(--duration) var(--ease);
}
.skip-link:focus { top: 16px; }

/* ── PEST CARD IMAGE (icon variant) ────────────────────────────────── */
.pest-card__icon--img {
  width: 42px; height: 42px; border-radius: var(--radius-md);
  object-fit: cover; flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}
.pest-card:hover .pest-card__icon--img { transform: scale(1.05); }

/* ── CITY PAGE HERO ─────────────────────────────────────────────────────── */
.city-hero {
  padding: 48px 0 40px; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  background-color: rgba(26,26,26,.65); background-blend-mode: overlay;
}
.city-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,.55) 0%, rgba(26,26,26,.4) 100%);
  z-index: 0;
}
.city-hero > .container { position: relative; z-index: 1; }
.city-hero h1 { color: #fff; margin-bottom: 12px; text-shadow: 0 2px 6px rgba(0,0,0,.3); }
.city-hero .page-header__sub { color: rgba(255,255,255,.85); font-size: 1.0625rem; max-width: 700px; }
.city-hero .trust-badge {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
}

/* ── PEST HEAT MAP ─────────────────────────────────────────────────────── */
.heatmap-section { padding: 48px 0; background: #fff; }
.heatmap-section--compact { padding: 32px 0; }
.heatmap__header {
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 24px;
}
.heatmap__header--compact { margin-bottom: 16px; align-items: center; }
.heatmap__compact-title {
  font-size: 1.125rem; font-weight: 700; color: var(--pip-black);
  display: flex; align-items: center; gap: 8px;
}
.heatmap__compact-title i { color: var(--pip-crimson); }
.heatmap__season-toggle {
  display: flex; gap: 6px; background: var(--n100); padding: 4px; border-radius: var(--radius-md);
}
.heatmap__season-toggle--compact { gap: 4px; padding: 3px; }
.heatmap__season-btn {
  display: flex; align-items: center; gap: 6px; padding: 8px 16px;
  border: none; background: transparent; border-radius: var(--radius-sm);
  font-size: 0.8125rem; font-weight: 600; color: var(--n500); cursor: pointer;
  font-family: var(--font-heading);
  transition: all var(--duration-fast) var(--ease);
}
.heatmap__season-btn:hover { color: var(--pip-black); background: rgba(255,255,255,.6); }
.heatmap__season-btn.is-active {
  background: #fff; color: var(--pip-crimson); box-shadow: var(--shadow-sm);
}
.heatmap__season-btn--sm { padding: 6px 10px; font-size: 0.75rem; }
.heatmap__season-btn--sm span { display: none; }

.heatmap__body { position: relative; }
.heatmap__map-wrap {
  position: relative; width: 100%; border: 1px solid var(--n200);
  border-radius: var(--radius-lg); overflow: hidden; background: #F8F7F4;
  box-shadow: var(--shadow-card);
}
.heatmap__svg { display: block; width: 100%; height: auto; cursor: crosshair; }

/* Heat zone interactions */
.heatmap__zone { cursor: pointer; transition: opacity 0.2s ease; }
.heatmap__zone:hover .heatmap__circle,
.heatmap__zone.is-hovered .heatmap__circle {
  stroke-width: 2.5; stroke-opacity: 0.8;
}
.heatmap__zone:hover .heatmap__glow,
.heatmap__zone.is-hovered .heatmap__glow { opacity: 0.4 !important; }
.heatmap__zone:hover .heatmap__city-label,
.heatmap__zone.is-hovered .heatmap__city-label { font-weight: 700 !important; }
.heatmap__zone:focus-visible { outline: none; }
.heatmap__zone:focus-visible .heatmap__circle { stroke: var(--pip-trust) !important; stroke-width: 3 !important; stroke-opacity: 1 !important; }

.heatmap__city-label {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  pointer-events: none; user-select: none;
}

/* Legend */
.heatmap__legend { margin-top: 16px; }
.heatmap__legend-bar {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.heatmap__legend-label { font-size: 0.75rem; font-weight: 600; color: var(--n500); white-space: nowrap; }
.heatmap__legend-gradient {
  flex: 1; height: 10px; border-radius: 5px;
  background: linear-gradient(90deg, #4A7A2E, #7CB342, #F0C040, #D4A017, #E67E22, #C0392B);
  max-width: 300px;
}

.heatmap__stats { display: flex; gap: 24px; flex-wrap: wrap; }
.heatmap__stat { display: flex; flex-direction: column; gap: 2px; }
.heatmap__stat-value { font-size: 1.125rem; font-weight: 700; color: var(--pip-crimson); font-family: var(--font-heading); }
.heatmap__stat-label { font-size: 0.75rem; color: var(--n400); font-weight: 500; }

/* Tooltip */
.heatmap__tooltip {
  display: none; position: absolute; z-index: 50;
  background: #fff; border: 1px solid var(--n200); border-radius: var(--radius-lg);
  padding: 16px; min-width: 240px; max-width: 300px;
  box-shadow: 0 12px 32px rgba(26,24,20,.12), 0 4px 8px rgba(26,24,20,.06);
  pointer-events: none; font-size: 0.8125rem;
}
.heatmap__tip-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-bottom: 10px;
}
.heatmap__tip-header strong { font-size: 0.9375rem; color: var(--pip-black); }
.heatmap__tip-threat {
  font-size: 0.625rem; font-weight: 700; color: #fff; text-transform: uppercase;
  padding: 2px 8px; border-radius: var(--radius-xl); letter-spacing: 0.04em;
}
.heatmap__tip-intensity { margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.heatmap__tip-meter {
  flex: 1; height: 6px; background: var(--n200); border-radius: 3px; overflow: hidden;
}
.heatmap__tip-meter > div { height: 100%; border-radius: 3px; transition: width 0.3s ease; }
.heatmap__tip-intensity > span { font-weight: 600; color: var(--n600); font-size: 0.75rem; white-space: nowrap; }
.heatmap__tip-label { font-size: 0.6875rem; font-weight: 600; color: var(--n400); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; display: block; }
.heatmap__tip-pests { margin-bottom: 10px; }
.heatmap__tip-pest { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.heatmap__tip-pest-name { font-size: 0.8125rem; color: var(--n700); min-width: 80px; }
.heatmap__tip-pest-bar {
  flex: 1; height: 4px; background: var(--n200); border-radius: 2px; overflow: hidden;
}
.heatmap__tip-pest-bar > span { display: block; height: 100%; border-radius: 2px; }
.heatmap__tip-cta { padding-top: 8px; border-top: 1px solid var(--n200); }
.heatmap__tip-cta a {
  font-size: 0.8125rem; font-weight: 600; color: var(--pip-crimson);
  display: flex; align-items: center; gap: 4px;
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 639px) {
  .heatmap__header { flex-direction: column; }
  .heatmap__season-toggle { align-self: stretch; justify-content: center; }
  .heatmap__stats { gap: 16px; }
  .heatmap__tooltip { min-width: 200px; max-width: 260px; font-size: 0.75rem; padding: 12px; }
  .heatmap__season-btn { padding: 6px 12px; font-size: 0.75rem; }
  .heatmap__season-btn span { display: none; }
}

/* ── CITY PAGE SEO SECTIONS ────────────────────────────────────────────── */

/* City Hero (deep version with real <img> for SEO) */
.city-hero--deep {
  padding: 80px 0 64px; min-height: 320px;
  display: flex; align-items: flex-end;
  background-color: var(--pip-black); color: #fff;
  position: relative; overflow: hidden;
}

/* Full-bleed <img> replaces CSS background for SEO alt-tag benefit */
.city-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  display: block;
}

/* Gradient overlay sits on top of the image */
.city-hero--deep::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(26,26,26,.45) 0%,
    rgba(26,26,26,.6) 50%,
    rgba(107,16,16,.5) 100%
  );
}

/* Content layer above overlay */
.city-hero__inner { position: relative; z-index: 2; }

/* City archetype tag (e.g. "Your Hometown Pest Experts") */
.city-hero__tag {
  display: inline-block;
  background: rgba(139,26,26,.7); backdrop-filter: blur(4px);
  color: #fff; font-size: 0.8125rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.15);
}

.city-hero--deep h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  margin-bottom: 12px; line-height: 1.15;
  color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.city-hero__desc {
  color: rgba(255,255,255,.88); font-size: 1rem;
  max-width: 720px; line-height: 1.65; margin-bottom: 20px;
}
.city-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* Trust badges row inside hero */
.city-hero .hero__trust {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px;
}

@media (min-width: 768px) {
  .city-hero--deep { padding: 100px 0 72px; min-height: 380px; }
  .city-hero__desc { font-size: 1.0625rem; }
  .city-hero__tag { font-size: 0.875rem; padding: 7px 18px; }
}
@media (min-width: 1024px) {
  .city-hero--deep { padding: 130px 0 88px; min-height: 440px; }
  .city-hero__bg { object-position: center 35%; }
}

/* Review Strip */
.city-review-strip {
  padding: 20px 0; background: var(--n50); border-top: 1px solid var(--n200); border-bottom: 1px solid var(--n200);
}
.city-review-strip--alt { background: rgba(74,122,46,.04); border-color: rgba(74,122,46,.1); }
.city-review {
  font-size: 0.9375rem; color: var(--n600); line-height: 1.6;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  font-style: italic; margin: 0;
}
.city-review .fa-quote-left { color: var(--pip-crimson); font-size: 0.875rem; opacity: .5; font-style: normal; }
.city-review__stars { color: #F59E0B; font-size: 0.75rem; font-style: normal; white-space: nowrap; margin-left: auto; }

/* Local Entity Section */
.city-local__grid { display: grid; gap: 32px; }
.city-local__text { line-height: 1.65; color: var(--n600); }
.city-local__text p { margin-bottom: 14px; }
.city-local__facts {
  display: grid; gap: 12px;
  background: var(--n50); border-radius: var(--radius-lg); padding: 20px;
  border: 1px solid var(--n200);
}
.city-fact {
  display: grid; grid-template-columns: 32px 1fr; gap: 8px; align-items: start;
  font-size: 0.875rem; color: var(--n600);
}
.city-fact__icon { color: var(--pip-green); font-size: 0.875rem; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(74,122,46,.08); border-radius: 50%; }
.city-fact__label { font-weight: 600; color: var(--pip-black); font-size: 0.8125rem; }
.city-fact__value { grid-column: 2; font-size: 0.8125rem; line-height: 1.45; }
.city-local__areas { margin-top: 28px; }
.city-local__areas h3 { font-size: 1rem; margin-bottom: 12px; color: var(--pip-black); }
@media (min-width: 768px) {
  .city-local__grid { grid-template-columns: 1.2fr 1fr; }
}

/* Tags large */
.tag--lg { padding: 6px 14px; font-size: 0.875rem; }
.tag-group--lg { gap: 10px; }

/* City Services (Accordion) */
.city-services { display: flex; flex-direction: column; gap: 12px; }
.city-service {
  border: 1px solid var(--n200); border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; transition: box-shadow var(--duration) var(--ease);
}
.city-service--open, .city-service:has(.city-service__content:not([hidden])) {
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.city-service__toggle {
  width: 100%; display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border: none; background: transparent; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--pip-black);
  text-align: left;
}
.city-service__toggle-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(139,26,26,.08), rgba(139,26,26,.03));
  display: flex; align-items: center; justify-content: center;
  color: var(--pip-crimson); font-size: 0.875rem; flex-shrink: 0;
}
.city-service__toggle-text { flex: 1; }
.city-service__arrow {
  color: var(--n400); font-size: 0.75rem;
  transition: transform var(--duration) var(--ease);
}
.city-service--open .city-service__arrow,
.city-service:has(.city-service__content:not([hidden])) .city-service__arrow {
  transform: rotate(180deg);
}
.city-service__content { padding: 0 20px 20px; }
.city-service__grid { display: grid; gap: 24px; }
.city-service__main h3 { font-size: 1rem; color: var(--pip-crimson); margin-bottom: 8px; }
.city-service__main h4 { font-size: 0.9375rem; margin: 16px 0 8px; color: var(--pip-black); }
.city-service__main p { font-size: 0.875rem; line-height: 1.6; color: var(--n600); }
.city-service__treatment { display: flex; flex-direction: column; gap: 16px; }
.treatment-step {
  display: grid; grid-template-columns: 32px 1fr; gap: 8px; align-items: start;
  padding: 14px; background: var(--n50); border-radius: var(--radius); border-left: 3px solid var(--pip-green);
}
.treatment-step__num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--pip-green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700;
}
.treatment-step h4 { font-size: 0.875rem; margin-bottom: 4px; }
.treatment-step p { font-size: 0.8125rem; line-height: 1.5; color: var(--n600); grid-column: 2; }
.city-service__cta { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--n200); }
@media (min-width: 768px) {
  .city-service__grid { grid-template-columns: 1fr 1fr; }
}

/* Seasonal Authority */
.city-seasons { display: grid; gap: 20px; }
.city-season {
  border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid var(--n200); background: #fff;
  border-left: 4px solid var(--n300);
}
.city-season--spring { border-left-color: var(--success); background: linear-gradient(135deg, rgba(22,163,74,.02) 0%, transparent 50%); }
.city-season--summer { border-left-color: var(--warning); background: linear-gradient(135deg, rgba(234,179,8,.02) 0%, transparent 50%); }
.city-season--fall { border-left-color: #EA580C; background: linear-gradient(135deg, rgba(234,88,12,.02) 0%, transparent 50%); }
.city-season--winter { border-left-color: var(--info); background: linear-gradient(135deg, rgba(14,165,233,.02) 0%, transparent 50%); }
.city-season__header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.city-season__header i { font-size: 1.25rem; }
.city-season--spring .city-season__header i { color: var(--success); }
.city-season--summer .city-season__header i { color: var(--warning); }
.city-season--fall .city-season__header i { color: #EA580C; }
.city-season--winter .city-season__header i { color: var(--info); }
.city-season__header h3 { font-size: 1.0625rem; margin: 0; }
.city-season__body { display: grid; gap: 16px; }
.city-season__body h4 { font-size: 0.875rem; font-weight: 700; color: var(--pip-black); margin-bottom: 6px; }
.city-season__body p { font-size: 0.875rem; line-height: 1.6; color: var(--n600); }
.city-season__recs ul { list-style: none; padding: 0; margin: 0; }
.city-season__recs li {
  display: flex; gap: 8px; align-items: baseline;
  font-size: 0.8125rem; line-height: 1.5; color: var(--n600); padding: 3px 0;
}
.city-season__recs li i { color: var(--pip-green); font-size: 0.6875rem; flex-shrink: 0; }
@media (min-width: 768px) {
  .city-seasons { grid-template-columns: 1fr 1fr; }
  .city-season__body { gap: 12px; }
}

/* First Visit / Inspection */
.city-visit__steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.visit-step {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--n200); position: relative;
}
.visit-step:last-child { border-bottom: none; }
.visit-step__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pip-crimson), var(--pip-crimson-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700;
}
.visit-step__content h3 { font-size: 1rem; margin-bottom: 4px; }
.visit-step__content h3 i { color: var(--pip-green); margin-right: 6px; font-size: 0.875rem; }
.visit-step__content p { font-size: 0.875rem; line-height: 1.6; color: var(--n600); }
.city-visit__grid { display: grid; gap: 24px; }
.city-visit__checklist, .city-visit__timeline {
  padding: 20px; border-radius: var(--radius-lg); border: 1px solid var(--n200); background: var(--n50);
}
.city-visit__checklist h3, .city-visit__timeline h3 { font-size: 1rem; margin-bottom: 14px; }
.city-visit__checklist h3 i, .city-visit__timeline h3 i { color: var(--pip-green); margin-right: 6px; }

/* Timeline */
.timeline { position: relative; padding-left: 20px; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 0; bottom: 0; width: 2px; background: var(--n200); }
.timeline__item { position: relative; padding-bottom: 18px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute; left: -20px; top: 4px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--pip-green); border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--pip-green);
}
.timeline__content { padding-left: 8px; }
.timeline__content strong { font-size: 0.875rem; }
.timeline__duration { font-size: 0.75rem; color: var(--pip-green); font-weight: 600; margin-left: 8px; }
.timeline__content p { font-size: 0.8125rem; line-height: 1.5; color: var(--n600); margin-top: 2px; }

.city-visit__maintenance {
  margin-top: 24px; padding: 20px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(74,122,46,.04), rgba(74,122,46,.01));
  border: 1px solid rgba(74,122,46,.12);
}
.city-visit__maintenance h3 { font-size: 1rem; margin-bottom: 12px; }
.city-visit__maintenance h3 i { color: var(--pip-green); margin-right: 6px; }
.icon-list { list-style: none; padding: 0; margin: 0; }
.icon-list li {
  display: flex; gap: 8px; align-items: baseline;
  font-size: 0.875rem; color: var(--n600); padding: 4px 0; line-height: 1.5;
}
.icon-list li i { color: var(--pip-green); font-size: 0.75rem; flex-shrink: 0; }

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

/* Internal Link Architecture */
.city-links__grid { display: grid; gap: 24px; }
.city-links__col h3 {
  font-size: 0.9375rem; margin-bottom: 10px; color: var(--pip-black);
  padding-bottom: 8px; border-bottom: 2px solid var(--n200);
}
.city-links__col h3 i { color: var(--pip-crimson); margin-right: 6px; font-size: 0.8125rem; }
.city-links__col ul { list-style: none; padding: 0; margin: 0; }
.city-links__col li { padding: 3px 0; }
.city-links__col a {
  font-size: 0.875rem; color: var(--pip-green); transition: color var(--duration-fast) var(--ease);
}
.city-links__col a:hover { color: var(--pip-crimson); }
@media (min-width: 768px) {
  .city-links__grid { grid-template-columns: 1fr 1fr 1fr; }
}

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

/* ── PRINT ──────────────────────────────────────────────────────────────── */
/* ── PEST × CITY AUTHORITY PAGES ──────────────────────────────────────── */

/* PC Hero */
.pc-hero {
  padding: 80px 0 56px; min-height: 320px;
  display: flex; align-items: flex-end;
  background-color: var(--pip-black); color: #fff;
  position: relative; overflow: hidden;
}
.pc-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.pc-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,26,26,.6) 0%, rgba(26,26,26,.75) 55%, rgba(107,16,16,.55) 100%);
}
.pc-hero__inner { position: relative; z-index: 2; }
.pc-hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.pc-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 5px 12px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2);
}
.pc-hero__badge--pest { background: rgba(139,26,26,.7); color: #fff; }
.pc-hero__badge--city { background: rgba(74,122,46,.7); color: #fff; }
.pc-hero__badge--emergency { background: rgba(192,57,43,.8); color: #fff; animation: pulse-glow 2s infinite; }
.pc-hero h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 10px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.5); line-height: 1.15; }
.pc-hero__intro { color: rgba(255,255,255,.92); font-size: 0.9375rem; max-width: 720px; line-height: 1.65; margin-bottom: 16px; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.pc-hero__trust { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.pc-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
@media (min-width: 768px) {
  .pc-hero { padding: 100px 0 64px; min-height: 360px; }
  .pc-hero__intro { font-size: 1rem; }
}
@media (min-width: 1024px) {
  .pc-hero { padding: 120px 0 72px; min-height: 400px; }
}

/* Pest+City and City page section headings — crimson for readability */
.section h2, .section--alt h2 { color: var(--pip-crimson); }

/* Environmental Grid */
.pc-env__grid { display: grid; gap: 24px; margin-top: 24px; }
@media (min-width: 768px) { .pc-env__grid { grid-template-columns: 1fr 1fr; } }
.pc-env__col { display: flex; flex-direction: column; gap: 20px; }
.pc-env__card {
  background: #fff; border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid var(--n200); box-shadow: var(--shadow-card);
}
.pc-env__card h3 {
  font-size: 1rem; font-weight: 700; color: var(--pip-black);
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.pc-env__card h3 i { color: var(--pip-green); }
.pc-env__card p { font-size: 0.9375rem; line-height: 1.65; color: var(--n600); }
.pc-env__card--behavior { border-left: 4px solid var(--pip-crimson); }

/* CTA Strip */
.pc-cta-strip {
  padding: 28px 0; background: var(--pip-crimson); color: #fff;
  border-top: 3px solid var(--pip-crimson-dark);
}
.pc-cta-strip--green { background: var(--pip-green); border-top-color: var(--pip-green-dark); }
.pc-cta-strip__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.pc-cta-strip__text h3 {
  font-size: 1.125rem; font-weight: 800; margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px; color: #fff;
}
.pc-cta-strip__text p { font-size: 0.9rem; color: rgba(255,255,255,.9); max-width: 640px; line-height: 1.55; }
.pc-cta-strip__actions { display: flex; gap: 10px; flex-shrink: 0; }
.pc-cta-strip .btn--emergency { background: #fff; color: var(--pip-crimson); }
.pc-cta-strip .btn--emergency:hover { background: var(--n100); }
.pc-cta-strip--green .btn--primary { background: #fff; color: var(--pip-green); }
.pc-cta-strip--green .btn--primary:hover { background: var(--n100); }

/* Seasonal Grid */
.pc-seasons { display: grid; gap: 20px; margin-top: 24px; }
@media (min-width: 768px) { .pc-seasons { grid-template-columns: 1fr 1fr; } }
.pc-season {
  background: #fff; border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid var(--n200); box-shadow: var(--shadow-card);
}
.pc-season__header {
  display: flex; align-items: center; gap: 10px; padding-bottom: 12px;
  margin-bottom: 12px; border-bottom: 1px solid var(--n200);
  padding-left: 12px;
}
.pc-season__header i { font-size: 1.25rem; }
.pc-season__header h3 { font-size: 0.9375rem; font-weight: 700; flex: 1; }
.pc-season__bar {
  width: 80px; height: 8px; border-radius: 4px; background: var(--n200);
  overflow: hidden; flex-shrink: 0;
}
.pc-season__fill {
  height: 100%; border-radius: 4px; display: flex; align-items: center; justify-content: flex-end;
  padding-right: 2px;
}
.pc-season__fill span { font-size: 0.6rem; font-weight: 700; color: #fff; }
.pc-season__fill--spring { background: #5D9B3A; }
.pc-season__fill--summer { background: #EAB308; }
.pc-season__fill--fall { background: #C0392B; }
.pc-season__fill--winter { background: #0EA5E9; }
.pc-season p { font-size: 0.9rem; line-height: 1.6; color: var(--n600); }
.pc-season__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: 0.8125rem; font-weight: 600; color: var(--pip-green);
  text-decoration: none; transition: gap var(--duration-fast) var(--ease);
}
.pc-season__link:hover { gap: 10px; color: var(--pip-green-light); }

/* Treatment Steps */
.pc-steps { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.pc-step {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--n200);
}
.pc-step:last-child { border-bottom: none; }
.pc-step__num {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--pip-crimson); color: #fff;
  font-size: 1.125rem; font-weight: 800; font-family: var(--font-heading);
}
.pc-step__content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--pip-black); }
.pc-step__content p { font-size: 0.9rem; line-height: 1.6; color: var(--n600); }

/* Safety Box */
.pc-safety-box {
  display: flex; align-items: flex-start; gap: 16px;
  margin-top: 28px; padding: 20px 24px;
  background: rgba(74,122,46,.06); border: 1px solid rgba(74,122,46,.15);
  border-radius: var(--radius-lg); border-left: 4px solid var(--pip-green);
}
.pc-safety-box > i { font-size: 1.25rem; color: var(--pip-green); flex-shrink: 0; margin-top: 2px; }
.pc-safety-box h4 { font-size: 0.9375rem; font-weight: 700; color: var(--pip-green-dark); margin-bottom: 4px; }
.pc-safety-box p { font-size: 0.875rem; line-height: 1.6; color: var(--n600); }

/* PC Internal Links */
.pc-links__grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .pc-links__grid { grid-template-columns: 1fr 1fr 1fr; } }
.pc-links__col h3 {
  font-size: 0.9375rem; font-weight: 700; color: var(--pip-black);
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--pip-crimson);
}
.pc-links__col h3 i { color: var(--pip-crimson); }
.pc-links__col li { margin-bottom: 8px; line-height: 1.45; }
.pc-links__col li a { color: var(--pip-green); font-weight: 500; text-decoration: none; font-size: 0.875rem; }
.pc-links__col li a:hover { color: var(--pip-green-light); text-decoration: underline; }
.pc-links__col li small { display: block; color: var(--n500); font-size: 0.75rem; margin-top: 2px; }
.pc-links__more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: 0.8125rem; font-weight: 600; color: var(--pip-crimson);
  text-decoration: none;
}
.pc-links__more:hover { color: var(--pip-crimson-light); }

@media (max-width: 639px) {
  .pc-cta-strip__inner { flex-direction: column; text-align: center; }
  .pc-cta-strip__actions { justify-content: center; width: 100%; }
  .pc-season__header { flex-wrap: wrap; }
  .pc-season__bar { width: 100%; margin-top: 6px; }
}

@media print {
  .emergency-banner, .nav, .seasonal-alert, .hero__actions, .cta-section, .booking-section, .nav__cta { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hero { background: #fff !important; color: #000 !important; padding: 24px 0; }
  .hero__title { color: #000; }
}

/* ── GEO-POST CARDS & HUB ──────────────────────────────────────────────── */
.geo-cat-card {
  background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.geo-cat-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.geo-cat-card h3 { font-size: 1.15rem; margin: 0 0 8px; display: flex; align-items: center; gap: 8px; }
.geo-cat-card p { font-size: .95rem; color: #555; margin: 0 0 12px; line-height: 1.5; }
.geo-cat-card__count {
  display: inline-block; background: #f3f4f6; padding: 4px 10px; border-radius: 20px;
  font-size: .8rem; font-weight: 600; color: #374151;
}

.geo-post-card {
  background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: 10px; transition: transform .15s, box-shadow .2s;
}
.geo-post-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.geo-post-card__cat {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 20px;
  font-size: .75rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .5px;
  width: fit-content;
}
.geo-post-card h3 { font-size: 1.05rem; margin: 0; line-height: 1.35; }
.geo-post-card h3 a { color: #1a1a1a; text-decoration: none; }
.geo-post-card h3 a:hover { color: var(--pip-crimson); }
.geo-post-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.geo-post-card__tag {
  display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 12px;
  font-size: .72rem; font-weight: 500; background: #f3f4f6; color: #555;
}
.geo-post-card__tag--pest { background: #fef3c7; color: #92400e; }
.geo-post-card__date { font-size: .8rem; color: #888; margin: 0; }
.geo-post-card__link {
  margin-top: auto; font-size: .9rem; font-weight: 600; color: var(--pip-crimson);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.geo-post-card__link:hover { color: var(--pip-crimson-light); }

/* Geo-post detail intro */
.geo-post-intro { font-size: 1.08rem; line-height: 1.75; color: #333; }
.geo-post-intro p { margin-bottom: 1.2em; }
.geo-post-intro strong { color: #1a1a1a; }

@media (max-width: 767px) {
  .geo-cat-card { padding: 16px; }
  .geo-post-card { padding: 16px; }
}

/* ── NO CONTRACTS BANNER ─────────────────────────────────────────────── */
.no-contracts-banner {
  background: linear-gradient(90deg, #065F46, #047857, #059669);
  color: #fff; padding: 9px 0; font-size: 0.85rem; font-weight: 500;
  border-bottom: 2px solid rgba(255,255,255,.12);
}
.no-contracts-banner__inner {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  text-align: center;
}
.no-contracts-banner__inner i {
  font-size: 1rem; color: #A7F3D0; flex-shrink: 0;
}
.no-contracts-banner__inner strong {
  color: #A7F3D0; letter-spacing: .02em;
}

/* ── BUSINESS HOURS COMPONENT ────────────────────────────────────────── */
.biz-hours { margin-top: 16px; }
.biz-hours__title {
  font-size: 1rem; font-weight: 700; color: var(--pip-black);
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.biz-hours__title i { color: var(--pip-crimson); }
.biz-hours__grid { display: flex; flex-direction: column; gap: 4px; }
.biz-hours__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 10px; border-radius: var(--radius-sm); font-size: 0.875rem;
  transition: background var(--duration-fast) var(--ease);
}
.biz-hours__day { font-weight: 600; color: var(--n700); min-width: 90px; }
.biz-hours__time { color: var(--n500); font-size: 0.8125rem; }
.biz-hours__row--today {
  background: linear-gradient(135deg, rgba(139,26,26,.06), rgba(139,26,26,.02));
  border: 1px solid rgba(139,26,26,.12); font-weight: 700;
}
.biz-hours__row--today .biz-hours__day { color: var(--pip-crimson); }
.biz-hours__row--today .biz-hours__time { color: var(--pip-crimson); font-weight: 600; }
.biz-hours__row--closed { opacity: .55; }
.biz-hours__emergency {
  margin-top: 10px; font-size: 0.8125rem; font-weight: 700; color: var(--pip-emergency);
  display: flex; align-items: center; gap: 6px;
}
.biz-hours__emergency a { color: var(--pip-emergency); font-weight: 700; }
.biz-hours__emergency i { animation: pulse 2s infinite; }

/* Compact variant for footer */
.biz-hours--compact .biz-hours__grid { gap: 2px; }
.biz-hours--compact .biz-hours__row { padding: 4px 8px; font-size: 0.8125rem; }
.biz-hours--compact .biz-hours__day { min-width: 40px; font-size: 0.75rem; color: rgba(255,255,255,.7); }
.biz-hours--compact .biz-hours__time { font-size: 0.75rem; color: rgba(255,255,255,.5); }
.biz-hours--compact .biz-hours__row--today { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.biz-hours--compact .biz-hours__row--today .biz-hours__day { color: #A7F3D0; }
.biz-hours--compact .biz-hours__row--today .biz-hours__time { color: #fff; font-weight: 600; }
.biz-hours--compact .biz-hours__row--closed .biz-hours__time { color: rgba(255,255,255,.3); }
.biz-hours--compact .biz-hours__row--closed .biz-hours__day { color: rgba(255,255,255,.35); }
.biz-hours--compact .biz-hours__emergency { color: #FBBF24; font-size: 0.75rem; margin-top: 8px; }

/* Footer no-contracts & referral link */
.footer__no-contracts {
  margin-top: 12px; font-size: 0.8125rem; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 6px;
  padding: 8px 0; border-top: 1px solid rgba(255,255,255,.08);
}
.footer__no-contracts i { color: #A7F3D0; }
.footer__no-contracts strong { color: #A7F3D0; }
.footer__referral-link { color: #FBBF24 !important; font-weight: 600 !important; }
.footer__referral-link:hover { color: #FCD34D !important; }
.footer__referral-link i { margin-right: 4px; }

/* Trust badge highlight (No Contracts) in hero */
.trust-badge--highlight {
  background: rgba(5,150,105,.2) !important; border-color: rgba(5,150,105,.3) !important;
  color: #A7F3D0 !important; font-weight: 600;
}

/* Footer grid adjustment for 5 columns */
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
}

/* ── REFERRAL PAGE ───────────────────────────────────────────────────── */

/* Referral Hero */
.referral-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A1A1A 40%, #6B1010 100%);
  color: #fff; padding: 64px 0 48px; position: relative; overflow: hidden;
}
.referral-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(139,26,26,.3), transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(74,122,46,.15), transparent 50%);
}
.referral-hero__content { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; }
.referral-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 20px; border-radius: var(--radius-xl); font-size: 0.9rem;
  font-weight: 700; margin-bottom: 20px; backdrop-filter: blur(4px);
  color: #A7F3D0;
}
.referral-hero__badge i { color: #FBBF24; }
.referral-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; margin-bottom: 16px;
  line-height: 1.1; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.referral-hero__subtitle {
  font-size: 1.125rem; color: rgba(255,255,255,.85); margin-bottom: 36px;
  max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.65;
}
.referral-hero__subtitle strong { color: #FBBF24; }

/* Hero Cards (You Get / They Get) */
.referral-hero__highlights {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
}
.referral-hero__card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg); padding: 28px 32px; text-align: center;
  min-width: 220px; flex: 1; max-width: 280px; position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.referral-hero__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.referral-hero__card--you { border-color: rgba(139,26,26,.4); }
.referral-hero__card--you::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pip-crimson), var(--pip-crimson-light));
}
.referral-hero__card--friend { border-color: rgba(74,122,46,.4); }
.referral-hero__card--friend::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pip-green), var(--pip-green-light));
}
.referral-hero__card-icon {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.referral-hero__card--you .referral-hero__card-icon {
  background: linear-gradient(135deg, var(--pip-crimson), var(--pip-crimson-dark)); color: #fff;
}
.referral-hero__card--friend .referral-hero__card-icon {
  background: linear-gradient(135deg, var(--pip-green), var(--pip-green-dark)); color: #fff;
}
.referral-hero__card h2 {
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px;
}
.referral-hero__discount {
  font-size: clamp(2rem, 5vw, 2.75rem); font-weight: 800;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 6px; line-height: 1;
}
.referral-hero__card p { font-size: 0.9rem; color: rgba(255,255,255,.7); margin: 0; }
.referral-hero__arrow {
  font-size: 1.5rem; color: rgba(255,255,255,.3); flex-shrink: 0;
}

@media (max-width: 639px) {
  .referral-hero__highlights { flex-direction: column; gap: 16px; }
  .referral-hero__card { min-width: unset; max-width: 100%; width: 100%; }
  .referral-hero__arrow { transform: rotate(90deg); }
}

/* How It Works */
.referral-steps {
  display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 24px;
}
@media (min-width: 768px) { .referral-steps { grid-template-columns: repeat(3, 1fr); } }
.referral-step {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-card); border: 1px solid var(--n200); position: relative;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.referral-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.referral-step__number {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--pip-crimson); color: #fff; font-size: 0.8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #fff; box-shadow: 0 2px 8px rgba(139,26,26,.3);
}
.referral-step__icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(139,26,26,.08), rgba(139,26,26,.03));
  color: var(--pip-crimson); font-size: 1.25rem;
  border: 1px solid rgba(139,26,26,.1);
}
.referral-step h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.referral-step p { font-size: 0.9rem; color: var(--n500); line-height: 1.6; margin: 0; }

/* Referral Tiers */
.referral-tier-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 24px;
}
@media (min-width: 640px) { .referral-tier-grid { grid-template-columns: repeat(3, 1fr); } }
.referral-tier {
  background: #fff; border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow-card); border: 1px solid var(--n200);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  position: relative;
}
.referral-tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.referral-tier--featured {
  border: 2px solid var(--pip-crimson); box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.referral-tier--featured:hover { transform: scale(1.02) translateY(-3px); }
.referral-tier__header {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--n200);
}
.referral-tier__header i { font-size: 1.5rem; }
.referral-tier__header h3 { font-size: 1rem; margin: 0; }
.referral-tier__header--bronze i { color: #CD7F32; }
.referral-tier__header--silver i { color: #8B1A1A; }
.referral-tier__header--gold i { color: #D4AF37; }
.referral-tier__discount {
  font-size: 2rem; font-weight: 800; color: var(--pip-crimson); margin-bottom: 4px;
  font-family: var(--font-heading);
}
.referral-tier p { font-size: 0.9rem; color: var(--n500); margin: 0; }
.referral-tier__badge {
  position: absolute; top: -10px; right: 16px;
  background: var(--pip-crimson); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-xl); text-transform: uppercase;
  letter-spacing: .04em; box-shadow: 0 2px 8px rgba(139,26,26,.3);
}

/* No Limit Box */
.referral-no-limit {
  margin-top: 24px; padding: 18px 24px;
  background: linear-gradient(135deg, rgba(139,26,26,.04), rgba(139,26,26,.01));
  border: 1px solid rgba(139,26,26,.1); border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: 14px; justify-content: center;
  text-align: center;
}
.referral-no-limit i { font-size: 1.25rem; color: var(--pip-crimson); flex-shrink: 0; }
.referral-no-limit p { margin: 0; font-size: 0.9375rem; color: var(--n600); line-height: 1.5; }

/* Referral Form Section */
.referral-form-section { background: var(--n100); }
.referral-form-wrapper {
  display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 1000px; margin: 0 auto;
}
@media (min-width: 768px) { .referral-form-wrapper { grid-template-columns: 1fr 1fr; } }
.referral-form-info h2 { font-size: 1.5rem; margin-bottom: 12px; }
.referral-form-info > p { font-size: 0.9375rem; color: var(--n600); line-height: 1.65; margin-bottom: 20px; }
.referral-form-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.referral-benefit {
  display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: var(--n700);
}
.referral-benefit i { color: var(--pip-green); font-size: 1rem; flex-shrink: 0; }

/* Referral Form */
.referral-form {
  background: #fff; padding: 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--n200);
}
.referral-form h3 {
  font-size: 1rem; font-weight: 700; color: var(--pip-black);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.referral-form__divider {
  border: none; border-top: 1px solid var(--n200); margin: 20px 0;
}
.referral-form .form-group { margin-bottom: 14px; }
.referral-form .btn { margin-top: 8px; }

/* ── TRUST GRID 6-COLUMN ADJUSTMENT ─────────────────────────────────── */
@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── LEGAL PAGES (Privacy, Terms) ────────────────────────────────────── */
.legal-page {
  max-width: 800px; margin: 0 auto;
}
.legal-page__updated {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--n100); padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 0.9375rem; color: var(--n600); margin-bottom: 32px;
  border: 1px solid var(--n200);
}
.legal-page__updated i { color: var(--pip-green); }
.legal-page__intro {
  font-size: 1.0625rem; line-height: 1.75; color: var(--n700);
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid var(--n200);
}
.legal-page__intro a { font-weight: 600; }

/* Table of Contents */
.legal-page__toc {
  background: var(--n50); border: 1px solid var(--n200);
  border-radius: var(--radius-lg); padding: 28px 32px;
  margin-bottom: 40px;
}
.legal-page__toc h2 {
  font-size: 1.125rem; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  color: var(--pip-crimson);
}
.legal-page__toc h2 i { color: var(--pip-crimson); font-size: 0.875rem; }
.legal-page__toc ol {
  list-style: decimal; padding-left: 20px;
  display: grid; gap: 6px;
}
@media (min-width: 640px) {
  .legal-page__toc ol { grid-template-columns: 1fr 1fr; column-gap: 32px; }
}
.legal-page__toc li {
  font-size: 0.9375rem; line-height: 1.5;
  color: var(--n600);
}
.legal-page__toc li a {
  color: var(--n700); text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}
.legal-page__toc li a:hover { color: var(--pip-crimson); }

/* Legal Sections */
.legal-section {
  padding-bottom: 32px; margin-bottom: 32px;
  border-bottom: 1px solid var(--n200);
}
.legal-section:last-child { border-bottom: none; margin-bottom: 0; }
.legal-section h2 {
  font-size: 1.375rem; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  color: var(--pip-crimson);
}
.legal-section h2 i { color: var(--pip-crimson); font-size: 1rem; }
.legal-section h3 {
  font-size: 1.0625rem; margin: 20px 0 10px;
  color: var(--pip-black); font-weight: 700;
}
.legal-section p {
  font-size: 0.9375rem; line-height: 1.75; color: var(--n700);
  margin-bottom: 12px;
}
.legal-section ul {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.legal-section ul li {
  position: relative; padding-left: 20px;
  font-size: 0.9375rem; line-height: 1.75; color: var(--n700);
  margin-bottom: 6px;
}
.legal-section ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pip-crimson);
}
.legal-section ul li i.fa-check-circle {
  color: var(--pip-green); margin-right: 4px; font-size: 0.8125rem;
}
.legal-section ul li i.fa-check-circle ~ * { }
.legal-section ul li:has(> i) { padding-left: 0; }
.legal-section ul li:has(> i)::before { display: none; }

/* Legal Callout Boxes */
.legal-callout {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 24px; border-radius: var(--radius-lg);
  margin: 20px 0; border: 1px solid;
}
.legal-callout > i {
  font-size: 1.25rem; flex-shrink: 0; margin-top: 2px;
}
.legal-callout p {
  font-size: 0.9375rem; line-height: 1.65; margin: 0;
}
.legal-callout--green {
  background: rgba(74, 122, 46, .06);
  border-color: rgba(74, 122, 46, .2);
}
.legal-callout--green > i { color: var(--pip-green); }
.legal-callout--green p { color: var(--n800); }
.legal-callout--crimson {
  background: rgba(139, 26, 26, .04);
  border-color: rgba(139, 26, 26, .15);
}
.legal-callout--crimson > i { color: var(--pip-crimson); }
.legal-callout--crimson p { color: var(--n800); }

/* Legal Table */
.legal-table-wrap {
  overflow-x: auto; margin: 16px 0;
  border-radius: var(--radius-lg); border: 1px solid var(--n200);
}
.legal-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9375rem;
}
.legal-table th {
  background: var(--n100); text-align: left;
  padding: 12px 16px; font-weight: 700;
  color: var(--pip-black); font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: .04em;
  border-bottom: 2px solid var(--n200);
}
.legal-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--n100);
  color: var(--n700); line-height: 1.5;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:hover td { background: var(--n50); }

/* Rights Grid */
.legal-rights-grid {
  display: grid; gap: 16px; margin: 20px 0;
}
@media (min-width: 640px) {
  .legal-rights-grid { grid-template-columns: 1fr 1fr; }
}
.legal-right {
  background: #fff; border: 1px solid var(--n200);
  border-radius: var(--radius-lg); padding: 20px;
  text-align: center; transition: box-shadow var(--duration-fast) var(--ease);
}
.legal-right:hover { box-shadow: var(--shadow-card); }
.legal-right i {
  font-size: 1.5rem; color: var(--pip-crimson);
  margin-bottom: 10px; display: block;
}
.legal-right h4 {
  font-size: 0.9375rem; color: var(--pip-black);
  margin-bottom: 6px;
}
.legal-right p {
  font-size: 0.8125rem; color: var(--n500);
  line-height: 1.5; margin: 0;
}

/* Contact Card */
.legal-contact-card {
  background: var(--n50); border: 1px solid var(--n200);
  border-radius: var(--radius-lg); padding: 24px;
  margin-top: 16px;
}
.legal-contact-card h3 {
  font-size: 1.0625rem; color: var(--pip-crimson);
  margin-bottom: 16px;
}
.legal-contact-card__grid {
  display: grid; gap: 16px;
}
@media (min-width: 640px) {
  .legal-contact-card__grid { grid-template-columns: 1fr 1fr; }
}
.legal-contact-card p {
  font-size: 0.9375rem; color: var(--n700);
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.legal-contact-card p i {
  color: var(--pip-crimson); width: 16px; text-align: center;
}
.legal-contact-card a { font-weight: 600; }
