/* ============================================================
   NORTHERN FORGE CONSTRUCTION — Components
   ============================================================ */

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  gap: 8px;
  letter-spacing: .01em;
  text-align: center;
}
/* Orange = PRIMARY action (Get Inspection, Call Now, Emergency) */
.btn-primary, .btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover, .btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,74,12,.3);
}
/* Green = secondary prominent buttons */
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(36,130,50,.3);
}
.btn-black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-black:hover { background: #222; border-color: #222; }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green-bg); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: var(--beige-light); border-color: var(--beige-light); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-realtor { background: var(--realtor); color: var(--white); border-color: var(--realtor); }
.btn-realtor:hover { background: var(--realtor-light); border-color: var(--realtor-light); transform: translateY(-1px); }
.btn-bordeaux { background: var(--bordeaux); color: var(--white); border-color: var(--bordeaux); }
.btn-bordeaux:hover { background: var(--bordeaux-light); border-color: var(--bordeaux-light); transform: translateY(-1px); }
.btn-lg { padding: 17px 38px; font-size: 16px; }
.btn-full { width: 100%; }

/* ── TRUST BADGES ────────────────────────────────────────── */
.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.trust-badge .check { color: var(--green-light); font-size: 14px; }
.trust-badge a { color: var(--green-light); text-decoration: underline; font-size: 12px; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: var(--green); padding: 44px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item h3, .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1;
  display: block;
}
.stat-item p { font-size: 14px; color: rgba(255,255,255,.82); font-weight: 500; margin-top: 6px; }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: var(--off-white); box-shadow: var(--shadow-lg); z-index: 1; }
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 15px; line-height: 1.65; margin-bottom: 18px; }
.card-link { font-weight: 700; font-size: 12px; color: var(--green); letter-spacing: .05em; text-transform: uppercase; }
.card-link:hover { color: var(--green-dark); }

/* ── WHY US (DARK) ───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-card { background: #0c0c0c; padding: 36px 28px; transition: background var(--transition); }
.why-card:hover { background: #141414; }
.why-number { font-size: 52px; font-weight: 900; color: var(--green); margin-bottom: 14px; line-height: 1; letter-spacing: -.04em; }
.why-card h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.65; }

/* ── TESTIMONIALS / REVIEW CARDS ─────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 72px;
  color: var(--green);
  opacity: .12;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #f59e0b; font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-card blockquote { font-size: 15px; line-height: 1.75; color: var(--text); margin-bottom: 20px; }
.testimonial-card cite { font-style: normal; font-weight: 700; font-size: 14px; color: var(--black); }
.testimonial-card cite span { font-weight: 400; color: var(--text-light); }

/* Google Review Card variant */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow);
}
.review-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-meta strong { display: block; font-size: 15px; font-weight: 700; color: var(--black); }
.review-meta span { font-size: 12px; color: var(--text-muted); }
.review-google-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  opacity: .6;
}
.review-stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 14px; line-height: 1.7; color: var(--text); }

/* ── BEFORE/AFTER SLIDER ─────────────────────────────────── */
.before-after-section { background: var(--black); }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.before-after-label {
  text-align: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
img-comparison-slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  --divider-width: 2px;
  --divider-color: var(--green);
  --handle-size: 44px;
}

/* Placeholder for before/after until real photos added */
.before-after-placeholder {
  width: 100%;
  height: 280px;
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 14px;
  border: 1px dashed rgba(255,255,255,.1);
}

/* ── VIDEO CONTAINER ─────────────────────────────────────── */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── OWNER PROMISE ───────────────────────────────────────── */
.owner-promise {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
}
.owner-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--green);
}
.owner-photo-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  border: 4px solid var(--green);
  flex-shrink: 0;
}
.owner-promise blockquote {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  border-left: 4px solid var(--green);
  padding-left: 24px;
}
.owner-promise cite { font-style: normal; font-weight: 700; font-size: 15px; color: var(--black); }

/* ── COMPARISON TABLE ────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.comparison-table thead th { padding: 18px 24px; text-align: left; font-size: 14px; font-weight: 700; }
.comparison-table thead th:first-child { background: #111; color: rgba(255,255,255,.6); }
.comparison-table thead th:nth-child(2) { background: var(--green); color: var(--white); }
.comparison-table thead th:last-child { background: var(--off-white); color: var(--text-muted); font-weight: 500; }
.comparison-table tbody tr { border-bottom: 1px solid var(--border); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody td { padding: 15px 24px; font-size: 14px; vertical-align: middle; }
.comparison-table tbody td:first-child { background: var(--off-white); color: var(--text-light); font-weight: 500; font-size: 13px; }
.comparison-table tbody td:nth-child(2) { background: rgba(36,130,50,.04); color: var(--green-dark); font-weight: 600; }
.comparison-table tbody td:last-child { background: var(--white); color: var(--text-muted); }

/* Responsive: stack comparison table below 600px */
@media (max-width: 600px) {
  .comparison-table thead { display: none; }
  .comparison-table tbody tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .comparison-table tbody td {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .comparison-table tbody td:first-child::before { content: 'Category: '; font-weight: 700; }
  .comparison-table tbody td:nth-child(2)::before { content: 'With Northern Forge: '; font-weight: 700; color: var(--green); }
  .comparison-table tbody td:last-child::before { content: 'With Most Contractors: '; font-weight: 700; color: var(--text-muted); }
}

/* What Makes Us Different: 2-column comparison */
.nfc-vs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.nfc-vs-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}
.nfc-vs-table th:first-child { background: var(--green); color: var(--white); }
.nfc-vs-table th:last-child { background: #111; color: rgba(255,255,255,.6); }
.nfc-vs-table td { padding: 14px 20px; font-size: 14px; vertical-align: top; border-bottom: 1px solid var(--border); }
.nfc-vs-table td:first-child { background: rgba(36,130,50,.04); color: var(--text); font-weight: 500; }
.nfc-vs-table td:last-child { background: var(--off-white); color: var(--text-muted); }
.nfc-vs-table tr:last-child td { border-bottom: none; }

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-question[aria-expanded="true"] { color: var(--green); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-answer.open { max-height: 600px; }
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
}
.faq-answer-inner p + p { margin-top: 12px; }

/* ── CATEGORY FILTER BAR ─────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  min-height: 40px;
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── PROCESS STEPS ───────────────────────────────────────── */
.process-grid { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.process-step { text-align: center; flex: 1; max-width: 210px; padding: 0 10px; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.process-connector { width: 44px; height: 2px; background: var(--beige-dark); margin-top: 28px; flex-shrink: 0; }

/* Numbered steps (storm damage 7-step) */
.numbered-steps { display: flex; flex-direction: column; gap: 20px; }
.numbered-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}
.numbered-step:hover { border-color: var(--green); }
.step-num {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}
.numbered-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.numbered-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* HOA 4-step workflow */
.workflow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.workflow-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color var(--transition);
}
.workflow-step:hover { border-color: var(--green); }
.workflow-step-num {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.workflow-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.workflow-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── CHECKLIST ───────────────────────────────────────────── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
.checklist-lg li { font-size: 16px; }
.checklist-lg li::before { width: 26px; height: 26px; min-width: 26px; font-size: 13px; }

/* ── PARTNER SECTIONS ────────────────────────────────────── */
.partner-teasers { padding: 0; overflow: hidden; }
.partner-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; }
.partner-teaser { padding: 80px 60px; position: relative; overflow: hidden; }
.partner-teaser-realtor { background: linear-gradient(135deg, #0a1e2e 0%, #1a4f7a 100%); }
.partner-teaser-adjuster { background: linear-gradient(135deg, #150306 0%, #550c18 100%); }
.partner-teaser-content { position: relative; z-index: 1; }
.partner-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.partner-label.blue { background: rgba(90,174,255,.12); color: #7fc4ff; border: 1px solid rgba(90,174,255,.18); }
.partner-label.red { background: rgba(255,154,171,.1); color: #ff9aab; border: 1px solid rgba(255,154,171,.18); }
.partner-teaser h2 { color: var(--white); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -.025em; }
.partner-teaser p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; margin-bottom: 28px; max-width: 420px; }
.partner-stats { display: flex; gap: 32px; margin-bottom: 36px; }
.partner-stat strong { display: block; font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.partner-stat span { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 3px; display: block; }
.partner-teaser-realtor .partner-stat strong { color: #7fc4ff; }
.partner-teaser-adjuster .partner-stat strong { color: #ff9aab; }

/* ── VALUE GRID ──────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.value-card:hover { border-color: var(--green); }
.value-icon {
  width: 72px;
  height: 72px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.value-icon svg { stroke: var(--green-light); }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 15px; color: var(--text-light); }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner { background: var(--black); padding: 80px 0; border-top: 1px solid rgba(255,255,255,.06); }
.cta-banner.green-bg { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); border-top: none; }
.cta-banner.bordeaux-bg { background: linear-gradient(135deg, var(--bordeaux-dark) 0%, var(--bordeaux) 100%); border-top: none; }
.cta-banner.orange-bg { background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%); border-top: none; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 8px; letter-spacing: -.025em; }
.cta-text p { color: rgba(255,255,255,.7); font-size: 17px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PHOTO STRIP ─────────────────────────────────────────── */
.photo-strip { background: var(--black); overflow: hidden; }
.photo-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; height: 420px; gap: 3px; }
.photo-cell { position: relative; overflow: hidden; background: #111; }
.photo-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.photo-cell:hover img { transform: scale(1.05); }
.photo-cell-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.8) 100%); }
.photo-cell-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px; }
.photo-cell-label span {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* ── HOA CALLOUT BOX ─────────────────────────────────────── */
.hoa-callout {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.hoa-callout h2 { font-size: clamp(1.4rem, 2vw, 1.9rem); font-weight: 800; margin-bottom: 12px; }
.hoa-callout p { font-size: 16px; color: var(--text-light); line-height: 1.7; }

/* ── PROCESS CARDS (realtor page) ────────────────────────── */
.process-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
}
.process-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.process-card-num {
  width: 40px; height: 40px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  margin: 0 auto 14px;
}
.process-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.process-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ── REFERRAL BOX ────────────────────────────────────────── */
.referral-box {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.referral-box h2 { color: var(--white); font-size: 2rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -.025em; }
.referral-box > div:first-child > p { color: rgba(255,255,255,.68); font-size: 16px; margin-bottom: 28px; }
.referral-features { display: flex; flex-direction: column; gap: 20px; }
.referral-feature { display: flex; gap: 14px; align-items: flex-start; }
.referral-feature-icon { width: 36px; height: 36px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.referral-feature-icon svg { stroke: white; width: 17px; height: 17px; }
.referral-feature h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.referral-feature p { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.55; }

/* ── CLAIM STEPS (adjuster page) ─────────────────────────── */
.claim-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.claim-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.claim-step:hover { border-color: var(--bordeaux); box-shadow: var(--shadow); }
.claim-step-icon {
  width: 56px; height: 56px;
  background: var(--bordeaux);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.claim-step-icon svg { stroke: white; }
.claim-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.claim-step p { font-size: 14px; color: var(--text-light); line-height: 1.55; }

/* ── WHY ADJ CARDS ───────────────────────────────────────── */
.why-adjuster-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-adj-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  align-items: flex-start;
  transition: border-color var(--transition);
}
.why-adj-card:hover { border-color: rgba(255,154,171,.25); }
.why-adj-icon {
  width: 44px; height: 44px;
  background: rgba(85,12,24,.3);
  border: 1px solid rgba(85,12,24,.4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-adj-icon svg { stroke: #ff9aab; }
.why-adj-card h3 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.why-adj-card p { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.65; }

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.google-form-container { overflow: hidden; border-radius: var(--radius); margin-bottom: 16px; }
.google-form-container iframe { display: block; width: 100%; min-height: 800px; border: none; }
.form-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 16px;
}
.form-privacy-note svg { stroke: var(--green); flex-shrink: 0; margin-top: 2px; }
.form-privacy-note p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin: 0; }

.instant-quote { background: var(--off-white); }
.instant-quote-wrapper { max-width: 900px; margin: 0 auto; }
.instant-quote-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.instant-quote-frame iframe { display: block; width: 100%; min-height: 600px; border: none; }
.instant-quote-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 16px;
}
.instant-quote-note svg { stroke: var(--slate); flex-shrink: 0; margin-top: 2px; }
.instant-quote-note p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ── MATERIAL COMPARISON TABLE ───────────────────────────── */
.material-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 14px;
}
.material-table th {
  background: var(--black);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
}
.material-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.material-table tr:last-child td { border-bottom: none; }
.material-table tr:nth-child(even) td { background: var(--off-white); }
.rating { color: #f59e0b; letter-spacing: 2px; }

/* ── CITY GRID (service areas) ───────────────────────────── */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
  display: block;
}
.city-card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.city-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--black); }
.city-card p { font-size: 13px; color: var(--text-light); }
.city-card .city-arrow { color: var(--green); font-size: 18px; margin-top: 8px; display: block; }

/* ── GALLERY GRID ────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.gallery-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.gallery-card figure { margin: 0; }
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #eee;
}
.gallery-card figcaption {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
}
.gallery-placeholder {
  width: 100%;
  height: 220px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-card figcaption { padding: 14px 16px; font-size: 13px; font-weight: 600; }

/* ── 3-STEP WHAT HAPPENS BLOCK ───────────────────────────── */
.three-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.three-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.three-step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}
.three-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.three-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── BLOG CARDS ──────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-image { height: 200px; overflow: hidden; background: #111; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 28px; }
.blog-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  background: var(--green-bg);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.blog-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body h3 a { color: var(--black); transition: color var(--transition); }
.blog-card-body h3 a:hover { color: var(--green); }
.blog-card-body p { color: var(--text-light); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.blog-card-meta { font-size: 12px; color: var(--text-muted); }
.blog-card-author { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ── EXIT INTENT POPUP ───────────────────────────────────── */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.exit-popup-overlay.open { display: flex; }
.exit-popup {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 460px;
  width: 90%;
  position: relative;
  text-align: center;
}
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-muted);
}
.exit-popup h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.exit-popup p { color: var(--text-light); margin-bottom: 24px; font-size: 15px; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid, .why-grid, .testimonial-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-cards { grid-template-columns: repeat(3, 1fr); }
  .claim-steps { grid-template-columns: repeat(2, 1fr); }
  .referral-box { grid-template-columns: 1fr; gap: 36px; padding: 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: 1fr; }
  .owner-promise { grid-template-columns: 1fr; text-align: center; }
  .owner-photo, .owner-photo-placeholder { margin: 0 auto; }
  .owner-promise blockquote { border-left: none; border-top: 4px solid var(--green); padding: 16px 0 0; }
}

@media (max-width: 768px) {
  .services-grid, .why-grid, .testimonial-grid, .values-grid, .why-adjuster-grid { grid-template-columns: 1fr; }
  .process-grid { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 28px; }
  .partner-teaser-grid { grid-template-columns: 1fr; }
  .partner-teaser { padding: 52px 28px; }
  .partner-stats { flex-wrap: wrap; gap: 20px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; flex-direction: column; align-items: center; }
  .google-form-container iframe { min-height: 600px; }
  .instant-quote-frame iframe { min-height: 500px; }
  .process-cards { grid-template-columns: 1fr 1fr; }
  .claim-steps { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .referral-box { padding: 32px 24px; }
  .photo-grid { grid-template-columns: 1fr; height: auto; }
  .photo-cell { height: 260px; }
  .workflow-steps { grid-template-columns: 1fr; }
  .three-steps { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .filter-bar { gap: 6px; }
  .hoa-callout { grid-template-columns: 1fr; text-align: center; }
  .numbered-step { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .process-cards { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; align-items: center; }
}
