/* =======================================================================
   CHEAP LOCKSMITH — Consumer Guide 2026
   Palette: Deep Navy #1e3a5f + Savings Green #22c55e + Clean White #f8fafc
   Font: Inter (self-hosted woff2 only — NO Google Fonts CDN)
   ======================================================================= */

/* === SELF-HOSTED FONTS (no @import, no CDN) ========================== */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* === DESIGN TOKENS ==================================================== */
:root {
  /* Brand palette */
  --navy:          #1e3a5f;
  --navy-dark:     #0f1e30;
  --navy-mid:      #2d5282;
  --green:         #22c55e;
  --green-dark:    #15803d;
  --green-light:   #86efac;
  --green-pale:    #dcfce7;
  --white:         #ffffff;
  --offwhite:      #f8fafc;
  --cream:         #f0f9ff;
  --text:          #1a1a2e;
  --text-mid:      #374151;
  --text-muted:    #6b7280;
  --text-light:    #e2e8f0;
  --text-dim:      #94a3b8;
  --border:        #e2e8f0;
  --border-dark:   #334155;
  --amber:         #f59e0b;
  --red:           #ef4444;
  --red-pale:      #fef2f2;

  /* CTA = green */
  --cta:           #22c55e;
  --cta-hover:     #16a34a;
  --cta-text:      #ffffff;

  /* Typography */
  --font:          'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-pad:   clamp(60px, 8vw, 100px) 0;
  --container:     1200px;

  /* Borders */
  --radius:        8px;
  --radius-lg:     14px;
  --radius-xl:     22px;

  /* Shadows */
  --shadow:        0 2px 12px rgba(0,0,0,.08);
  --shadow-md:     0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.18);

  /* Ease */
  --ease:          cubic-bezier(.22,.61,.36,1);
}

/* === RESET ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy-mid); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--green-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY ======================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* === LAYOUT HELPERS =================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }
.section--light { background: var(--offwhite); }
.section--dark  { background: var(--navy-dark); color: var(--text-light); }
.section--navy  { background: var(--navy); color: var(--text-light); }
.section--green-pale { background: var(--green-pale); }

/* Dark section text overrides */
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 {
  color: var(--white);
}
.section--dark p, .section--dark li, .section--dark span,
.section--navy p, .section--navy li, .section--navy span {
  color: var(--text-light);
}
.section--dark a:not(.btn), .section--navy a:not(.btn) { color: var(--green-light); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section--dark .section-label,
.section--navy .section-label {
  color: var(--navy-dark);
  background: var(--green);
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; margin-top: 12px; }
.section--dark .section-header p,
.section--navy .section-header p { color: var(--text-dim); }

/* === BUTTONS ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s var(--ease), color .18s var(--ease), transform .12s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: var(--cta);
  color: var(--cta-text);
  border-color: var(--cta);
}
.btn-primary:hover { background: var(--cta-hover); border-color: var(--cta-hover); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: .9rem; }

/* === HEADER =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.site-header__brand strong { color: var(--green); }
.site-header__brand small {
  font-size: .65rem;
  font-weight: 400;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.site-nav a:hover, .site-nav a.active {
  background: rgba(34,197,94,.15);
  color: var(--green-light);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* === HERO ============================================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,30,48,.90) 0%, rgba(15,30,48,.72) 40%, rgba(15,30,48,.30) 80%, rgba(15,30,48,.10) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(60px, 10vw, 110px) 24px;
  max-width: 760px;
}
.page-hero--center .page-hero__content { text-align: center; max-width: 860px; margin: 0 auto; }
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.page-hero__eyebrow svg { width: 14px; height: 14px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero .lead {
  font-size: 1.18rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.7;
}
.page-hero--center .lead { margin-left: auto; margin-right: auto; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-light);
}
.trust-chip svg { width: 14px; height: 14px; color: var(--green); }

/* === TRUST STRIP ====================================================== */
.trust-strip { background: var(--navy); padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.trust-strip__item { display: flex; align-items: center; gap: 12px; }
.trust-strip__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(34,197,94,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.trust-strip__icon svg { width: 20px; height: 20px; }
.trust-strip__text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--white); }
.trust-strip__text span  { font-size: .78rem; color: var(--text-dim); }

/* === TIP CARDS ======================================================== */
.tip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.tip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tip-card__media {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: var(--radius);
  margin: -28px -24px 16px;
}
.tip-card__media img { width: 100%; height: 100%; object-fit: cover; }
.tip-card__num {
  width: 32px; height: 32px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  flex-shrink: 0;
}
.tip-card__head { display: flex; align-items: flex-start; gap: 12px; }
.tip-card h3 { font-size: 1.05rem; color: var(--navy); margin: 0; }
.tip-card p  { font-size: .9rem; color: var(--text-muted); margin: 0; flex: 1; }
.tip-card__badge {
  font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  background: var(--green-pale); color: var(--green-dark);
  display: inline-block;
}

/* === QUESTIONS / CHECKLIST SECTION ==================================== */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.checklist-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.checklist-item--warn {
  border-color: #fde68a;
  background: #fffbeb;
}
.checklist-item--good {
  border-color: var(--green-light);
  background: var(--green-pale);
}
.checklist-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700;
}
.checklist-icon--warn { background: #fde68a; color: #92400e; }
.checklist-icon--good { background: var(--green-light); color: var(--green-dark); }
.checklist-icon--bad  { background: #fecaca; color: #991b1b; }
.checklist-item__body h4 { font-size: .95rem; color: var(--text); margin-bottom: 4px; }
.checklist-item__body p  { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* === FEATURE ROWS ===================================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: var(--section-pad);
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-row__img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-row__img img { width: 100%; height: 100%; object-fit: cover; }
.feature-row__text h2 { margin-bottom: 16px; }
.feature-row__text p  { color: var(--text-muted); margin-bottom: 14px; }
.feature-row__text ul { margin: 16px 0; }
.feature-row__text li {
  display: flex; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.feature-row__text li:last-child { border-bottom: none; }
.feature-row__text li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-pale);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
}

/* === PRICING TABLE ==================================================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  font-size: .95rem;
}
.pricing-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pricing-table tbody tr:nth-child(even) { background: var(--offwhite); }
.pricing-table tbody tr:hover { background: var(--cream); }
.pricing-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.pricing-table td:first-child { font-weight: 600; color: var(--navy); }
.badge-fixed { background: #fef3c7; color: #92400e; padding: 3px 10px; border-radius: 100px; font-size: .75rem; font-weight: 700; }
.badge-neg   { background: var(--green-pale); color: var(--green-dark); padding: 3px 10px; border-radius: 100px; font-size: .75rem; font-weight: 700; }
.badge-cond  { background: #ede9fe; color: #5b21b6; padding: 3px 10px; border-radius: 100px; font-size: .75rem; font-weight: 700; }

/* === COMPARE GRID (DIY vs PRO) ======================================== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.compare-card--diy  { border-color: var(--amber); }
.compare-card--pro  { border-color: var(--navy-mid); }
.compare-card__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.compare-card--diy  .compare-card__badge { background: #fef3c7; color: #92400e; }
.compare-card--pro  .compare-card__badge { background: var(--cream); color: var(--navy); }
.compare-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--navy); }
.compare-card ul { margin: 16px 0; }
.compare-card li { padding: 7px 0; border-bottom: 1px solid var(--border); font-size: .92rem; color: var(--text-mid); }
.compare-card li:last-child { border-bottom: none; }
.compare-card li::before { content: '-- '; color: var(--text-dim); }

/* === HOW PRICING WORKS ================================================ */
.pricing-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}
.pricing-block.accent { border-top-color: var(--green); }
.pricing-block.warn   { border-top-color: var(--amber); }
.pricing-block h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.pricing-block .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.pricing-block .amount span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-block p { font-size: .88rem; color: var(--text-muted); margin-top: 8px; }

/* === GALLERY ========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease);
}
.gallery-grid img:hover { transform: scale(1.02); }

/* === REVIEWS ========================================================== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card__stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 2px; }
.review-card__quote { font-size: .95rem; color: var(--text-mid); line-height: 1.7; font-style: italic; flex: 1; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-card__name strong { display: block; font-size: .92rem; font-weight: 600; color: var(--text); }
.review-card__name span   { font-size: .8rem; color: var(--text-muted); }
.review-policy {
  text-align: center;
  margin-top: 28px;
  font-size: .85rem;
  color: var(--text-muted);
  padding: 16px;
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* === FAQ ACCORDION ==================================================== */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  background: var(--white);
  transition: background .15s;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { background: var(--offwhite); }
.faq-item[open] .faq-item__q { background: var(--navy); color: var(--white); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform .2s var(--ease);
  color: var(--text-muted);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--green-light); }
.faq-item__a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease), padding .3s var(--ease);
}
.faq-item[open] .faq-item__a {
  padding: 20px 24px;
  max-height: 600px;
}
.faq-item__a p { font-size: .95rem; color: var(--text-muted); margin-bottom: 8px; }
.faq-item__a p:last-child { margin-bottom: 0; }

/* === REGIONAL TIPS GRID =============================================== */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.region-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  transition: transform .2s var(--ease);
}
.region-card:hover { transform: translateY(-2px); }
.region-card__flag { font-size: 1.8rem; margin-bottom: 10px; }
.region-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.region-card .price-range {
  font-size: 1.3rem; font-weight: 800; color: var(--green-dark); margin-bottom: 8px;
}
.region-card p { font-size: .85rem; color: var(--text-muted); }

/* === CTA BAND ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: clamp(60px, 8vw, 100px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 32px; }
.cta-band .btn-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* === METHODOLOGY ====================================================== */
.methodology-strip {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  padding: var(--section-pad);
  background: var(--offwhite);
}
.methodology-strip__label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 10px; }
.methodology-strip h2 { font-size: 1.6rem; margin-bottom: 12px; }
.methodology-strip p { color: var(--text-muted); font-size: .95rem; }
.methodology-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.method-pill {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.method-pill__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
}
.method-pill__icon svg { width: 16px; height: 16px; }
.method-pill h4 { font-size: .88rem; color: var(--navy); margin-bottom: 4px; }
.method-pill p  { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* === MINI STAT CARDS ================================================== */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card .stat-num { font-size: 2.2rem; font-weight: 800; color: var(--navy-dark); }
.stat-card .stat-num span { color: var(--green-dark); }
.stat-card .stat-label { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }

/* === BREADCRUMBS ====================================================== */
.breadcrumb {
  padding: 12px 0 0;
  font-size: .82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb span { color: var(--text-dim); margin: 0 6px; }

/* === CONTACT FORM ===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color .15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--navy-mid);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.hp-field { display: none !important; }
.form-success {
  display: none;
  padding: 20px;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--green-dark);
  font-weight: 600;
}

/* === FOOTER =========================================================== */
.site-footer { background: var(--navy-dark); color: var(--text-light); padding: 64px 0 0; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .footer-logo-link {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 16px;
  font-size: 1.15rem; font-weight: 700; color: var(--white);
}
.footer-brand .footer-logo-link strong { color: var(--green); }
.footer-brand p { font-size: .88rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 10px; }
.footer-disclaimer { font-size: .78rem; color: var(--border-dark); border-top: 1px solid var(--border-dark); padding-top: 10px; margin-top: 10px; }
.footer-disclaimer a { color: var(--text-dim); }
.footer-nav-group h4 { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px; }
.footer-nav-group ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-group a { font-size: .88rem; color: var(--text-light); text-decoration: none; transition: color .15s; }
.footer-nav-group a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 24px;
  text-align: center;
  font-size: .8rem;
  color: var(--text-dim);
  max-width: 100%;
}
.footer-bottom a { color: var(--green-light); text-decoration: none; }

/* === DARK-SECTION OVERRIDES (prevent dark-on-dark) =================== */
.site-footer p, .site-footer li, .site-footer span,
.section--dark p, .section--dark li, .section--dark span,
.cta-band p, .page-hero p, .page-hero span,
.trust-strip p, .trust-strip span { color: var(--text-dim); }
.site-footer__brand p { color: var(--text-light); }
.section--dark h1, .section--dark h2, .section--dark h3,
.cta-band h1, .cta-band h2, .cta-band h3,
.page-hero h1 { color: var(--white); }
.trust-strip__text strong { color: var(--white) !important; }

/* === SCROLL ANIMATIONS ================================================ */
/* Elements are VISIBLE by default. JS adds .js-ready to <html> to enable
   the animation. This prevents blank pages when JS runs late or on SSR. */
.js-ready .fade-up { opacity: 0; transform: translateY(24px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.js-ready .fade-up.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js-ready .fade-up, .js-ready .fade-up.visible { opacity: 1; transform: none; transition: none; } }

/* === PAGE-SPECIFIC =================================================== */
.prose { max-width: 740px; margin: 0 auto; }
.prose h2 { margin: 40px 0 14px; font-size: 1.5rem; }
.prose h3 { margin: 28px 0 10px; }
.prose p  { margin-bottom: 14px; color: var(--text-mid); }
.prose ul, .prose ol { margin: 14px 0 14px 1.4em; color: var(--text-mid); }
.prose li { margin-bottom: 6px; padding-left: 4px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

/* Steps grid */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.step-card__num {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.step-card p  { font-size: .88rem; color: var(--text-muted); }

/* Warning boxes */
.warn-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin: 20px 0;
}
.warn-box strong { color: #92400e; }
.warn-box p { font-size: .9rem; color: #78350f; margin: 4px 0 0; }
.good-box {
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin: 20px 0;
}
.good-box strong { color: var(--green-dark); }
.good-box p { font-size: .9rem; color: #166534; margin: 4px 0 0; }

/* Related strip */
.related-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px;
  background: var(--offwhite);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}
.related-strip__label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); flex-basis: 100%; }
.related-strip a {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.related-strip a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* === RESPONSIVE ======================================================= */
@media (max-width: 1024px) {
  .tip-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-breakdown { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .methodology-strip { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .tip-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row--reverse { direction: ltr; }
  .compare-grid { grid-template-columns: 1fr; }
  .pricing-breakdown { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .methodology-pillars { grid-template-columns: 1fr; }
  .site-nav { display: none; position: fixed; inset: 68px 0 0; background: var(--navy-dark); padding: 20px; flex-direction: column; overflow-y: auto; z-index: 99; }
  .site-nav.open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 4px; }
  .site-nav a { font-size: 1rem; padding: 14px 18px; }
  .nav-toggle { display: flex; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .trust-strip__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* === ENHANCED REVIEW CARDS v2 (May 2026) =========================== */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.review-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s cubic-bezier(.22,.61,.36,1);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.review-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.review-card__stars { color: #FFC107; font-size: 1.3rem; letter-spacing: 3px; line-height: 1; }
.review-card__badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 4px 11px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.8); letter-spacing: .04em; white-space: nowrap;
}
.review-card__quote {
  color: rgba(255,255,255,.9);
  font-size: 1rem; line-height: 1.72; font-style: italic; flex: 1;
  margin-bottom: 24px;
  border-left: 3px solid var(--copper-light,#d4964d);
  padding-left: 18px;
}
.review-card__author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
}
.review-card__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--copper-light,#d4964d);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  background: rgba(255,255,255,.1);
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--white,#fff); line-height: 1.2; }
.review-card__meta, .review-card__location { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 3px; }

/* === MAP + NEIGHBORHOODS LAYOUT ==================================== */
.areas-map-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: start; margin-bottom: 32px;
}
.areas-map-iframe {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  border: 1px solid var(--border,#d8eaee);
  line-height: 0;
}
.areas-map-iframe iframe { display: block; border: 0; width: 100%; min-height: 400px; }

@media (max-width: 900px) {
  .areas-map-layout { grid-template-columns: 1fr; }
  .areas-map-iframe iframe { min-height: 320px; }
}
@media (max-width: 768px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px 20px; }
  .review-card__quote { font-size: .95rem; }
}
