/* ─── Roofing Landing Page Extensions ─── */

/* Hero */
.roofing-hero { padding: 130px 32px 96px; }
.hero-cta-group { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: #e8981a; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--muted); color: var(--text); }
.btn-accent {
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-accent:hover { background: #e8981a; }
.btn-outline {
  background: transparent;
  color: var(--accent);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--accent);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--accent); color: var(--bg); }

/* Call log */
.call-log .call-item { cursor: default; transition: background 0.2s; }
.call-log .call-item:hover { background: #2a302d; }
.queued-tag {
  font-size: 0.625rem;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(140,146,136,0.15);
  color: var(--muted);
}

/* Proofbar numbers */
.stat-num.accent { color: var(--text); }

/* Booking section */
.booking-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 32px;
}
.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking-desc { font-size: 1rem; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.booking-perks { display: flex; flex-direction: column; gap: 14px; }
.perk-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9375rem; color: var(--text); }
.perk-check { color: var(--accent); font-weight: 700; font-size: 1rem; margin-top: 1px; flex-shrink: 0; }

/* GHL form */
.ghl-form-wrapper { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.ghl-placeholder { padding: 32px; }
.placeholder-header {
  display: flex; gap: 6px; margin-bottom: 24px;
}
.placeholder-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--surface);
}
.placeholder-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.placeholder-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 28px; }
.placeholder-fields { display: flex; flex-direction: column; gap: 12px; }
.ph-field { height: 44px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }
.ph-cta { height: 48px; background: var(--accent); border-radius: 8px; opacity: 0.6; }
.placeholder-note {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  padding: 12px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.placeholder-note code { font-family: monospace; background: var(--bg2); padding: 2px 5px; border-radius: 4px; }

/* Email capture */
.email-capture-section {
  padding: 96px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.email-capture-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.email-capture-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.email-capture-content p { font-size: 1rem; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.email-capture-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto 12px; }
.email-input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
}
.email-input::placeholder { color: var(--muted); }
.email-input:focus { border-color: var(--accent); }
.email-fine-print { font-size: 0.75rem; color: var(--muted); }
.email-success {
  background: var(--surface);
  border: 1px solid rgba(58,125,74,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.9375rem;
  color: #5cb872;
  margin-top: 16px;
}
.success-check { font-weight: 700; }

/* Demo section */
.demo-section {
  padding: 96px 32px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.demo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.demo-desc { font-size: 1rem; color: var(--muted); line-height: 1.65; margin-bottom: 32px; }
.demo-features { display: flex; flex-direction: column; gap: 20px; }
.demo-feature { display: flex; gap: 16px; align-items: flex-start; }
.demo-feature-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.demo-feature strong { display: block; font-size: 0.9375rem; margin-bottom: 4px; }
.demo-feature p { font-size: 0.8125rem; color: var(--muted); line-height: 1.55; }

/* Dashboard frame */
.dashboard-frame {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.dashboard-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-logo { font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; color: var(--accent); }
.dash-nav { display: flex; gap: 4px; }
.dash-tab {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
}
.dash-tab.active { background: var(--bg2); color: var(--text); }
.dashboard-body { padding: 20px; }
.dash-stats {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.dash-stat {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.dash-stat:last-child { border-right: none; }
.dash-stat-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}
.dash-stat-val.accent-val { color: var(--accent); }
.dash-stat-label { font-size: 0.65rem; color: var(--muted); margin-top: 2px; }
.dash-call-list { display: flex; flex-direction: column; gap: 8px; }
.dash-call-row {
  background: var(--surface);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.dash-call-row.highlight { border: 1px solid rgba(245,166,35,0.25); }
.dash-call-info { display: flex; flex-direction: column; gap: 3px; }
.dash-call-name { font-size: 0.8125rem; font-weight: 600; }
.dash-call-detail { font-size: 0.7rem; color: var(--muted); }
.dash-call-badges { display: flex; gap: 6px; flex-shrink: 0; }

/* Pricing */
.pricing-section {
  padding: 96px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-lede { font-size: 1rem; color: var(--muted); margin-bottom: 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 6px;
}
.pricing-price span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.pricing-detail { font-size: 0.8rem; color: var(--muted); margin-bottom: 24px; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }
.pricing-card.featured .pricing-features li { color: var(--text); }
.pricing-features li:first-child { color: var(--text); }

/* FAQ */
.faq-section {
  padding: 96px 32px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q { font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.faq-a { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* Responsive */
@media (max-width: 900px) {
  .booking-inner, .demo-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .hero-cta-group { flex-direction: column; }
  .email-capture-form { flex-direction: column; }
}
@media (max-width: 600px) {
  .roofing-hero { padding: 120px 20px 64px; }
  .booking-section, .email-capture-section, .demo-section, .pricing-section, .faq-section { padding: 64px 20px; }
}