/* ============================================
   Local Service Site Engine — Shared Styles
   Trust-focused, conversion-optimized design
   ============================================ */

:root {
  --brand: #0d5f52;
  --brand-dark: #094a3f;
  --brand-light: #e8f4f1;
  --ink: #1a1d21;
  --ink-light: #4a5568;
  --bg: #f7f6f3;
  --card: #ffffff;
  --border: #e2e5e4;
  --accent: #d97706;
  --accent-light: #fef3c7;
  --white: #ffffff;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.10);
  --max-w: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; transition: color 0.15s; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { line-height: 1.25; color: var(--ink); }
h1 { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 1.45rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--ink-light); }
ul, ol { margin: 0 0 1rem 1.25rem; color: var(--ink-light); }
li { margin-bottom: 0.4rem; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* === NAVIGATION === */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 60px;
}

.nav-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-brand:hover { text-decoration: none; }

.nav-brand svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.15s;
  position: relative;
}
.nav-links a:hover { color: var(--brand); text-decoration: none; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(13,95,82,0.3);
}
.nav-phone:hover {
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(13,95,82,0.4);
  transform: translateY(-1px);
}

.nav-phone svg { flex-shrink: 0; }

/* Hamburger toggle (CSS-only, no JS) */
.nav-toggle-cb { display: none; }
.nav-hamburger { display: none; }

@media (max-width: 768px) {
  .nav-inner { height: 54px; position: relative; }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    order: 2;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-hamburger span,
  .nav-hamburger::before,
  .nav-hamburger::after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.2s;
  }

  .nav-phone { order: 3; padding: 7px 14px; font-size: 0.82rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .nav-links li { list-style: none; }
  .nav-links a {
    display: block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
  }
  .nav-links a:hover { background: var(--bg); color: var(--brand); }
  .nav-links a::after { display: none; }

  /* Show menu when checkbox is checked */
  .nav-toggle-cb:checked ~ .nav-links { display: flex; }

  /* Animate hamburger → X */
  .nav-toggle-cb:checked ~ .nav-hamburger span { opacity: 0; }
  .nav-toggle-cb:checked ~ .nav-hamburger::before { transform: translateY(7px) rotate(45deg); }
  .nav-toggle-cb:checked ~ .nav-hamburger::after { transform: translateY(-7px) rotate(-45deg); }
}

/* === HERO (dark dramatic variant from Lovable) === */
.hero {
  background: linear-gradient(135deg, #0a3a30 0%, #0d5f52 40%, #1a4a5a 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

/* Decorative blurs */
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(13,95,82,0.25);
  border-radius: 50%;
  filter: blur(80px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: rgba(217,119,6,0.08);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,95,82,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--accent); }
.hero-badge span {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--white);
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero .btn-accent {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(217,119,6,0.4);
}

.hero .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .hero { padding: 48px 0 44px; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1.05rem; max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero .btn-accent, .hero .btn-secondary { width: 100%; justify-content: center; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(13,95,82,0.3);
}
.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 4px 12px rgba(13,95,82,0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-secondary:hover { background: var(--brand-light); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(217,119,6,0.3);
}
.btn-accent:hover {
  background: #b45309;
  box-shadow: 0 4px 12px rgba(217,119,6,0.4);
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-items {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon--bolt {
  background: #fef3c7;
  color: #d97706;
}

.trust-icon--star {
  background: #fef3c7;
  color: #d97706;
}

.trust-icon--shield {
  background: var(--brand-light);
  color: var(--brand);
}

.trust-icon--pin {
  background: var(--brand-light);
  color: var(--brand);
}

.trust-icon svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
  .trust-items { gap: 16px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .trust-item { font-size: 0.82rem; gap: 6px; }
  .trust-icon { width: 30px; height: 30px; }
  .trust-icon svg { width: 14px; height: 14px; }
}

/* === SECTIONS === */
.section {
  padding: 64px 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13,95,82,0.1);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.section-badge--accent {
  background: rgba(217,119,6,0.1);
  color: var(--accent);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--ink-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* === CARD GRID === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #c0d4ce;
  transform: translateY(-4px);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-light), rgba(13,95,82,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon svg { width: 28px; height: 28px; color: var(--brand); }

.card h3 { margin-bottom: 6px; }
.card h3 a { color: var(--ink); text-decoration: none; }
.card h3 a:hover { color: var(--brand); text-decoration: none; }
.card p { font-size: 0.92rem; color: var(--ink-light); margin-bottom: 12px; }
.card .card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.card:hover .card-link { gap: 8px; text-decoration: none; }

/* === CTA BLOCK === */
.cta-block {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 60%, var(--brand) 100%);
  border-radius: 18px;
  padding: 56px 40px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13,95,82,0.25);
}

/* Dot pattern overlay */
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.4) 1px, transparent 0);
  background-size: 32px 32px;
}

.cta-block::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-block h2 {
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 10px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.cta-block p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.cta-block .btn-accent {
  font-size: 1.1rem;
  padding: 15px 32px;
  position: relative;
  z-index: 1;
}
.cta-block .btn-secondary {
  position: relative;
  z-index: 1;
}

/* === BREADCRUMB === */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--ink-light);
}

.breadcrumb a { color: var(--ink-light); }
.breadcrumb a:hover { color: var(--brand); text-decoration: none; }
.breadcrumb .sep { margin: 0 6px; opacity: 0.4; }

/* === CONTENT PAGE (service, area, blog) === */
.content-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.content-page h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.content-page h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.content-page h2:first-of-type { border-top: none; padding-top: 0; }

.content-page ul { margin: 0 0 1.2rem 1.5rem; }
.content-page li {
  margin-bottom: 0.5rem;
  padding-left: 4px;
}
.content-page li::marker { color: var(--brand); }

/* === INNER PAGE HEADER === */
.page-header {
  background: linear-gradient(135deg, #f0faf7 0%, #e0f2ee 100%);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* === FAQ === */
.faq-list { list-style: none; margin: 0; padding: 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  background: var(--white);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s;
}

.faq-item summary:hover { background: #fafaf8; }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brand);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}

.faq-item[open] summary::after {
  content: '\2212';
  background: var(--brand);
  color: var(--white);
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  color: var(--ink-light);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13,95,82,0.1);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info-card {
  background: var(--brand-light);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-info-card h3 { margin-bottom: 16px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.contact-info-item strong { color: var(--ink); display: block; margin-bottom: 2px; }
.contact-info-item svg { flex-shrink: 0; color: var(--brand); margin-top: 2px; }

/* === BLOG LISTING === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-card h3 { margin-bottom: 8px; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--brand); text-decoration: none; }
.blog-card p { font-size: 0.9rem; color: var(--ink-light); }
.blog-card .read-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* === FOOTER === */
.footer {
  background: #1a2332;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

/* Gradient accent bar at top */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--brand));
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
  position: relative;
}

.footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 8px; }

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; text-decoration: none; }

.footer-phone {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 16px;
  background: rgba(217,119,6,0.15);
  border-radius: 8px;
  transition: background 0.15s;
}
.footer-phone:hover { background: rgba(217,119,6,0.25); text-decoration: none; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* === STICKY CALL BAR (mobile) === */
.sticky-call {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 1rem;
  z-index: 200;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

.sticky-call a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sticky-call svg { width: 18px; height: 18px; }

@media (min-width: 769px) {
  .sticky-call { display: none; }
}

/* add padding so sticky bar doesn't cover content on mobile */
@media (max-width: 768px) {
  body { padding-bottom: 56px; }
}

/* === HOW IT WORKS === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
  position: relative;
}

/* Dashed connector (desktop) */
.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 20%;
  right: 20%;
  height: 0;
  border-top: 2px dashed rgba(13,95,82,0.2);
}

.step {
  text-align: center;
  position: relative;
  padding: 24px 16px;
}

/* Large background number */
.step-bg-num {
  font-size: 5rem;
  font-weight: 900;
  color: var(--brand);
  opacity: 0.06;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 20px;
  box-shadow: 0 6px 16px rgba(13,95,82,0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
}

.step:hover .step-number { transform: scale(1.1); }

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.step p {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps::before { display: none; }
  .step { display: flex; text-align: left; gap: 16px; align-items: flex-start; padding: 8px 0; }
  .step-bg-num { display: none; }
  .step-number { margin: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 1.1rem; border-radius: 12px; }
  .step p { max-width: none; }
  .step-text { flex: 1; }
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(135deg, #f0faf7 0%, #e8f4f1 100%);
  padding: 56px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.testimonial-loc {
  font-size: 0.82rem;
  color: var(--ink-light);
  font-weight: 400;
}

/* Quote icon */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  line-height: 1;
  color: var(--brand);
  opacity: 0.12;
  font-family: Georgia, serif;
}

/* === STATS BAR === */
.stats-bar {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark), var(--brand));
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

/* Dot pattern */
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.15) 1px, transparent 0);
  background-size: 40px 40px;
}

.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.stat {
  text-align: center;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.stat-icon svg { width: 28px; height: 28px; color: var(--accent); }

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 1.8rem; }
  .stat-icon { width: 44px; height: 44px; border-radius: 12px; }
  .stat-icon svg { width: 22px; height: 22px; }
}

/* === UTILITY === */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* === ANIMATIONS === */
@media (prefers-reduced-motion: no-preference) {
  .card, .blog-card, .faq-item, .btn, .testimonial-card {
    will-change: transform;
  }
}

/* === COMPARISON TABLES === */
.comparison-table {
  overflow-x: auto;
  margin: 1.5rem 0;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table thead th {
  background: var(--brand);
  color: var(--white);
  font-weight: 600;
}
.comparison-table thead th:first-child {
  background: var(--ink);
}
.comparison-table tbody tr:nth-child(even) {
  background: var(--brand-light);
}
.comparison-table tbody td:first-child {
  font-weight: 500;
  color: var(--ink);
}

/* === PRICING TABLE === */
.pricing-table {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.pricing-table th,
.pricing-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table thead th {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}
.pricing-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}
.pricing-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}
.pricing-table tbody tr:nth-child(even) {
  background: var(--brand-light);
}
.pricing-table tbody td:first-child {
  font-weight: 500;
}
.price-range {
  font-size: 1.15rem;
  color: var(--brand);
  margin: 4px 0 12px;
}
.disclaimer {
  color: var(--ink-light);
  margin-top: 2rem;
}

/* === EMERGENCY CTA === */
.emergency-cta {
  background: #b91c1c;
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  text-align: center;
}
.emergency-cta h2 { color: #fff; margin-bottom: 0.5rem; }
.emergency-cta a { color: #fef3c7; font-weight: 700; }
.urgent-intro {
  font-size: 1.1rem;
  background: #fef2f2;
  border-left: 4px solid #b91c1c;
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1rem 0;
}

/* === REVIEW STARS === */
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.review-card .stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.review-card .reviewer { font-weight: 600; margin-top: 0.5rem; color: var(--ink); }
.review-card blockquote { margin: 0.5rem 0 0; font-style: italic; color: var(--ink-light); }
.rating-summary {
  background: var(--brand-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
}
.rating-summary .big-rating { font-size: 3rem; font-weight: 700; color: var(--brand); }
.rating-summary .stars-large { color: #f59e0b; font-size: 1.5rem; letter-spacing: 3px; }

/* === NEIGHBORHOOD GRID === */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.neighborhood-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.neighborhood-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}

.neighborhood-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.neighborhood-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.neighborhood-card h3 a:hover { color: var(--brand); }

.neighborhood-card p {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin: 0;
}

.neighborhood-card .zip {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  background: var(--bg);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--ink-light);
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.gallery-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.gallery-before-after > div {
  aspect-ratio: 4/3;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--ink-light);
  border-right: 1px solid var(--border);
}

.gallery-before-after > div:last-child { border-right: none; }

.gallery-item p {
  padding: 12px 16px;
  margin: 0;
  font-size: 0.9rem;
}

/* === TABLE OF CONTENTS (pillar page) === */
.toc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
}

.toc ol {
  margin: 12px 0 0 20px;
}

.toc li {
  margin-bottom: 6px;
}

.toc a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.toc a:hover { text-decoration: underline; }

/* === TRUST BADGES BAR === */
.trust-badges {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  padding: 10px 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.trust-badges-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding: 0 16px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  white-space: nowrap;
}

.trust-badge svg {
  flex-shrink: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .trust-badges { padding: 8px 0; font-size: 0.75rem; }
  .trust-badges-inner { gap: 4px 16px; }
}

/* === INLINE QUOTE FORM (CTA blocks) === */
.cta-form-block {
  text-align: center;
}

.cta-form-sub {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.inline-form {
  max-width: 560px;
  margin: 0 auto;
}

.inline-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.inline-form input[type="text"],
.inline-form input[type="tel"],
.inline-form input[type="email"],
.inline-form select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.inline-form input::placeholder { color: rgba(255,255,255,0.6); }
.inline-form select { color: rgba(255,255,255,0.8); cursor: pointer; }
.inline-form select option { color: var(--ink); background: var(--white); }

.inline-form input:focus,
.inline-form select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.18);
}

.btn-submit {
  width: 100%;
  padding: 14px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-subtext {
  margin-top: 16px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.cta-phone {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-phone:hover { text-decoration: underline; color: var(--white); }
.cta-phone svg { vertical-align: middle; }

@media (max-width: 768px) {
  .inline-form-grid { grid-template-columns: 1fr; }
  .inline-form { max-width: 100%; }
  .btn-submit { font-size: 1rem; padding: 12px 20px; }
}

/* === URGENCY BANNER === */
.urgency-banner {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  color: #fff;
  padding: 10px 16px;
  text-align: center;
  font-size: .88rem;
  line-height: 1.5;
  position: relative;
  z-index: 101;
}
.urgency-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.urgency-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.urgency-cta {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.urgency-cta:hover { color: #fef08a; }

/* === TEXT CTA BUTTON === */
.text-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #1e40af;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s;
}
.text-cta-btn:hover { background: #1e3a8a; }

/* === STICKY DUAL BAR (Call + Text) === */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  z-index: 200;
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
}
.sticky-call-btn, .sticky-text-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: filter .2s;
}
.sticky-call-btn { background: var(--brand, #0d5f52); }
.sticky-text-btn { background: #1e40af; }
.sticky-call-btn:hover, .sticky-text-btn:hover { filter: brightness(1.1); }
@media (min-width: 860px) { .sticky-bar { display: none; } }
/* Give body bottom padding so sticky bar doesn't cover content */
@media (max-width: 859px) { body { padding-bottom: 56px; } }

/* === PERFORMANCE — Core Web Vitals === */
.footer, .section:nth-child(n+3) {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
