/* ============================================================
   NO MORE JUNK — styles.css
   Portland, OR Junk Removal
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --green:      #1B4332;
  --green-mid:  #15803d;
  --green-lite: #f0fdf4;
  --blue:       #0EA5E9;
  --blue-dark:  #0891b2;
  --dark:       #0D1117;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-700:   #374151;
  --white:      #ffffff;
  --font-head:  'DM Sans', system-ui, sans-serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
  --radius:     12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --shadow:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
}

/* ── Typography helpers ───────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .6rem;
}
.section-label--light { color: #6ee7b7; }

.section-title       { font-size: clamp(1.75rem, 4vw, 3rem); color: var(--dark); }
.section-title--light{ font-size: clamp(1.75rem, 4vw, 3rem); color: var(--white); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--dark); }
.section--green { background: var(--green); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .15s, box-shadow .18s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--green  { background: var(--green); color: var(--white); box-shadow: var(--shadow-md); }
.btn--green:hover { background: var(--green-mid); box-shadow: var(--shadow-lg); }

.btn--blue   { background: var(--blue); color: var(--white); box-shadow: var(--shadow-md); }
.btn--blue:hover { background: var(--blue-dark); box-shadow: var(--shadow-lg); }

.btn--white  { background: var(--white); color: var(--green); box-shadow: var(--shadow-md); }
.btn--white:hover { background: var(--gray-50); box-shadow: var(--shadow-lg); }

.btn--outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline-green:hover { background: var(--green); color: var(--white); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--green); }

.btn--outline-google {
  background: transparent;
  color: #4285F4;
  border-color: #4285F4;
  font-size: .875rem;
  padding: .65rem 1.1rem;
}
.btn--outline-google:hover { background: #4285F4; color: var(--white); }

.btn--google-solid {
  background: #4285F4;
  color: var(--white);
  font-size: .875rem;
  padding: .65rem 1.1rem;
  box-shadow: var(--shadow);
}
.btn--google-solid:hover { background: #3367D6; }

.btn--lg { font-size: 1.05rem; padding: 1.05rem 2rem; }
.btn--full { width: 100%; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.btn-group--center { justify-content: center; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .25s, box-shadow .25s, padding .25s;
  padding: 1.25rem 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.09);
  padding: .75rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.main-nav a {
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: 8px;
  color: var(--gray-700);
  transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--green); background: var(--green-lite); }
.header-cta {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--gray-100);
  padding: 1rem 1.25rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 1rem;
}
.mobile-menu nav a {
  display: block;
  padding: .75rem 1rem;
  font-weight: 500;
  border-radius: 10px;
  color: var(--gray-700);
}
.mobile-menu nav a:hover { background: var(--green-lite); color: var(--green); }
.mobile-menu .btn-group { flex-direction: column; }
.mobile-menu .btn { width: 100%; justify-content: center; }

/* spacer under fixed header */
.header-spacer { height: 88px; }

/* ── Hero logo (homepage banner) ─────────────────────────── */
.hero-logo-banner {
  background: var(--white);
  padding: 0;
  display: block;
}
.hero-logo-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,.95) 0%, rgba(13,17,23,.85) 60%);
  z-index: 1;
}
.hero-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 100%;
  background: rgba(27,67,50,.25);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  padding: 6rem 0 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(27,67,50,.6);
  border: 1px solid rgba(110,231,183,.3);
  border-radius: 99px;
  padding: .4rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-badge span { font-size: .75rem; font-weight: 600; color: #6ee7b7; letter-spacing: .05em; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero h1 .accent {
  background: linear-gradient(90deg, #4ade80, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}
.hero-trust-item svg { color: #4ade80; flex-shrink: 0; }

/* Estimate card */
.estimate-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.estimate-card h2 {
  font-size: 1.4rem;
  margin-bottom: .4rem;
}
.estimate-card p { font-size: .875rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.estimate-card .cta-stack { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.review-snippet {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1rem;
}
.review-snippet .stars { display: flex; gap: 2px; margin-bottom: .5rem; }
.review-snippet blockquote {
  font-size: .78rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: .3rem;
}
.review-snippet cite { font-size: .72rem; color: var(--gray-400); font-style: normal; }

/* ── Trust badges ─────────────────────────────────────────── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  padding: 2.5rem 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 99px;
  padding: .45rem 1rem;
  font-size: .825rem;
  font-weight: 500;
  color: var(--gray-700);
  box-shadow: var(--shadow);
}

/* ── Card grids ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-2-1 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, border-color .2s;
}
.card:hover { box-shadow: var(--shadow-md); }

.service-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { border-color: rgba(27,67,50,.3); box-shadow: var(--shadow-lg); }
.service-card .icon {
  width: 48px; height: 48px;
  background: rgba(27,67,50,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.service-card h3 { font-size: 1.1rem; transition: color .15s; }
.service-card:hover h3 { color: var(--green); }
.service-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.6; flex: 1; }
.service-card .learn-more {
  display: flex; align-items: center; gap: .3rem;
  font-size: .85rem; font-weight: 600; color: var(--green);
  margin-top: auto;
}
.service-card .learn-more svg { transition: transform .2s; }
.service-card:hover .learn-more svg { transform: translateX(3px); }

/* ── Testimonials ─────────────────────────────────────────── */
.review-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.review-card .top-row { display: flex; align-items: center; justify-content: space-between; }
.review-card .stars { display: flex; gap: 2px; }
.review-card blockquote {
  font-size: .875rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-style: normal;
  flex: 1;
}
.review-card blockquote::before { content: '\201C'; }
.review-card blockquote::after  { content: '\201D'; }
.review-card .reviewer { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.reviewer-avatar {
  width: 38px; height: 38px;
  background: rgba(27,67,50,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  color: var(--green);
  flex-shrink: 0;
}
.reviewer-name { font-size: .85rem; font-weight: 600; }
.reviewer-source {
  display: flex; align-items: center; gap: .3rem;
  font-size: .72rem; color: var(--gray-400);
}

/* ── Google rating badge ──────────────────────────────────── */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: .5rem .9rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, border-color .2s;
  text-decoration: none;
}
.google-badge:hover { box-shadow: var(--shadow-md); border-color: rgba(66,133,244,.3); }
.google-badge .g-stars { display: flex; gap: 2px; }
.google-badge .g-text { font-size: .8rem; color: var(--gray-700); }
.google-badge .g-text strong { font-weight: 700; }

.google-badge--dark {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
}
.google-badge--dark .g-text { color: rgba(255,255,255,.9); }

/* ── How it works ─────────────────────────────────────────── */
.step-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.step-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.step-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-num { font-size: 2.5rem; font-family: var(--font-head); font-weight: 800; color: rgba(255,255,255,.15); }
.step-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: .5rem; }
.step-card p { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ── Photo estimate CTA ───────────────────────────────────── */
.photo-cta {
  background: linear-gradient(135deg, rgba(14,165,233,.08), rgba(27,67,50,.08));
  border: 1px solid rgba(14,165,233,.2);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.photo-cta-icon {
  width: 54px; height: 54px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.photo-cta-text { flex: 1; min-width: 180px; }
.photo-cta-text h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.photo-cta-text p { font-size: .85rem; color: var(--gray-500); }

/* ── Areas grid ───────────────────────────────────────────── */
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.area-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.area-card .area-icon {
  width: 36px; height: 36px;
  background: rgba(27,67,50,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.area-card .area-name { font-size: .9rem; font-weight: 600; }
.area-card .area-state { font-size: .75rem; color: var(--gray-400); }

/* ── FAQ accordion ────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .6rem;
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  transition: background .15s;
}
.faq-btn:hover { background: var(--gray-50); }
.faq-chevron {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--green);
  transition: transform .2s;
}
.faq-btn[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-body {
  display: none;
  padding: .25rem 1.4rem 1.1rem;
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}
.faq-body.open { display: block; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner { padding: 5rem 0; text-align: center; }
.cta-banner h2 { font-size: clamp(1.6rem,3.5vw,2.6rem); color: var(--white); margin-bottom: 1rem; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 2rem; }
.cta-banner .note { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 1rem; }

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero { padding: 5rem 0 3.5rem; }
.page-hero--green { background: var(--green); }
.page-hero--dark  { background: var(--dark);  }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 600px; line-height: 1.7; margin-bottom: 1.75rem; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── Check list ───────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: .75rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--gray-700); }
.check-list li svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

.items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem .75rem;
}
.items-grid li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--gray-700);
}
.items-grid li svg { color: var(--green); flex-shrink: 0; }

/* ── Why-us grid ──────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.why-item { display: flex; gap: 1rem; }
.why-icon {
  width: 40px; height: 40px;
  background: rgba(27,67,50,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.why-item h3 { font-size: .9rem; font-weight: 600; margin-bottom: .2rem; }
.why-item p  { font-size: .8rem; color: var(--gray-500); line-height: 1.55; }

/* ── Stat cards ───────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.stat-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.stat-card .stat-val { font-size: 2rem; font-family: var(--font-head); font-weight: 800; color: var(--white); }
.stat-card .stat-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #6ee7b7; margin: .15rem 0 .1rem; }
.stat-card .stat-sub   { font-size: .72rem; color: rgba(255,255,255,.5); }

/* ── Related cards ────────────────────────────────────────── */
.related-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.related-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.related-card .r-icon { font-size: 1.5rem; flex-shrink: 0; }
.related-card .r-name { font-size: .9rem; font-weight: 600; flex: 1; }
.related-card .r-arrow { color: var(--gray-400); flex-shrink: 0; }

/* ── Contact form ─────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-size: .825rem; font-weight: 600; color: var(--gray-700); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,67,50,.1);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field.full { grid-column: 1 / -1; }
.form-success {
  display: none;
  background: rgba(27,67,50,.07);
  border: 1px solid rgba(27,67,50,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.form-success.show { display: block; }
.form-success svg { color: var(--green); margin: 0 auto 1rem; }
.form-success h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.form-success p { font-size: .9rem; color: var(--gray-500); }

/* ── Contact methods ──────────────────────────────────────── */
.contact-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 3.5rem; }
.contact-method {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.contact-method:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.contact-method .cm-icon {
  width: 46px; height: 46px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.contact-method h3 { font-size: 1rem; margin-bottom: .2rem; }
.contact-method .cm-val { font-weight: 600; color: var(--green); font-size: .9rem; margin-bottom: .2rem; }
.contact-method .cm-note { font-size: .8rem; color: var(--gray-400); }

/* ── Before/after ─────────────────────────────────────────── */
.before-after {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-side {
  aspect-ratio: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
}
.ba-side.before { background: var(--gray-100); color: var(--gray-500); }
.ba-side.after  { background: rgba(27,67,50,.06); color: var(--green); }
.ba-label { padding: .75rem 1rem; background: var(--white); }
.ba-label h4 { font-size: .875rem; font-weight: 600; }
.ba-label p  { font-size: .75rem; color: var(--gray-400); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: var(--gray-400); }
.footer-cta {
  background: var(--green);
  padding: 3.5rem 0;
  text-align: center;
}
.footer-cta h2 { font-size: clamp(1.4rem,3vw,2.2rem); color: var(--white); margin-bottom: .75rem; }
.footer-cta p  { color: rgba(255,255,255,.75); margin-bottom: 1.75rem; font-size: .95rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem 0;
}
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .875rem;
  color: var(--gray-400);
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }
.footer-desc { font-size: .85rem; line-height: 1.65; margin-bottom: 1rem; }
.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  margin-bottom: .75rem;
  transition: color .15s;
}
.footer-rating:hover { color: var(--white); }
.footer-rating .stars { display: flex; gap: 2px; }
.footer-rating span { font-size: .8rem; }
.footer-location { display: flex; align-items: center; gap: .5rem; font-size: .8rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(27,67,50,.4);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #6ee7b7;
}
.footer-contact-text .label { font-size: .7rem; color: var(--gray-500); }
.footer-contact-text .val   { font-size: .875rem; font-weight: 600; color: var(--white); }
.footer-contact-text .sub   { font-size: .72rem; color: var(--gray-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: var(--gray-500); }
.footer-bottom-links a:hover { color: var(--gray-400); }

/* ── Mobile sticky bar ────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
  padding: .75rem 1rem;
  padding-bottom: max(.75rem, env(safe-area-inset-bottom));
  gap: .6rem;
}

/* ── SVG icons (inline) ───────────────────────────────────── */
svg { display: inline-block; vertical-align: middle; }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-2  { margin-bottom: .5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.gap-4 { gap: 1rem; }
.note-box {
  background: #fefce8;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .85rem;
  color: #92400e;
  margin-top: 1.5rem;
}
.info-box {
  background: rgba(14,165,233,.07);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.info-box h3 { font-size: 1rem; margin-bottom: .5rem; }
.info-box p  { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }

.section-header { margin-bottom: 3.5rem; }
.section-header p { font-size: 1.05rem; color: var(--gray-500); max-width: 560px; line-height: 1.7; margin-top: .75rem; }
.section-header--center { text-align: center; }
.section-header--center p { margin: .75rem auto 0; }

.divider { border: none; border-top: 1px solid var(--gray-100); margin: 2rem 0; }
.process-list { display: flex; flex-direction: column; gap: 1.5rem; }
.process-item { display: flex; gap: 1.25rem; }
.process-num {
  width: 38px; height: 38px;
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  flex-shrink: 0;
  font-size: .9rem;
}
.process-item h3 { font-size: .95rem; font-weight: 600; margin-bottom: .2rem; }
.process-item p  { font-size: .85rem; color: var(--gray-500); line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .estimate-card { display: none; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-methods { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .items-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mobile-cta-bar { display: flex; }
  .hero { min-height: auto; }
  .hero-inner { padding: 3rem 0 2rem; }
  .header-spacer { height: 72px; }
  /* extra bottom padding so mobile bar doesn't cover content */
  main { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .trust-row { gap: .4rem; }
  .trust-badge { font-size: .775rem; padding: .4rem .75rem; }
  .btn--lg { font-size: .95rem; padding: .9rem 1.5rem; }
}
