/* ============================================
   ROOFING PAGE — STYLES
   ============================================ */

/* ---- HERO ---- */
.roof-hero {
  background: linear-gradient(135deg, #0f1a0f 0%, #1a2e1a 55%, #2d4a2d 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.roof-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(100,180,60,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.roof-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.roof-badge {
  display: inline-block;
  background: rgba(100,180,60,0.18);
  color: #86efac;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(100,180,60,0.35);
}
.roof-hero h1 { color: #fff; margin-bottom: 18px; }
.roof-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.roof-sub strong { color: #fff; }

.roof-hero-price {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.roof-price-tag {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.roof-dollar { color: #86efac; font-size: 1.5rem; font-weight: 700; margin-top: 4px; }
.roof-amount { color: #fff; font-size: 3.5rem; font-weight: 900; }
.roof-per { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; align-self: flex-end; margin-bottom: 6px; }
.roof-price-notes { display: flex; flex-direction: column; gap: 6px; }
.roof-note { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; }

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

.roof-hero-right { display: flex; flex-direction: column; gap: 20px; }

.roof-call-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
}
.roof-call-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.2);
}
.roof-call-dot { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.roof-call-dot-yellow { background: #eab308; }
.roof-call-dot-green  { background: #22c55e; }
.roof-call-body {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}
.roof-call-icon { font-size: 2rem; }
.roof-call-info { flex: 1; }
.roof-call-name { color: #fff; font-weight: 700; font-size: 0.95rem; }
.roof-call-detail { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin: 2px 0; }
.roof-call-location { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.roof-call-cost { color: #86efac; font-size: 1.4rem; font-weight: 900; }
.roof-call-footer {
  padding: 10px 16px;
  background: rgba(0,0,0,0.15);
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.roof-call-footer strong { color: rgba(255,255,255,0.85); }

.roof-stat-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.roof-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---- STEPS ---- */
.roof-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.roof-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
}
.roof-step-icon {
  font-size: 2.2rem;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #4ade80, #16a34a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.roof-step-content { flex: 1; }
.roof-step-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 4px;
}
.roof-step-content h3 { margin-bottom: 8px; }
.roof-step-content p { color: var(--gray-600); }
.roof-step-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, #4ade80, #16a34a);
  margin-left: 31px;
  opacity: 0.4;
}

/* ---- CTA ---- */
.roof-cta {
  background: linear-gradient(135deg, #0f1a0f 0%, #1a2e1a 60%, #2d4a2d 100%);
  padding: 80px 0;
}
.roof-cta-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.roof-cta-content h2 { color: #fff; margin-bottom: 16px; }
.roof-cta-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }
.roof-cta-actions { display: flex; flex-direction: column; gap: 16px; }
.roof-cta-reassurance { display: flex; gap: 20px; flex-wrap: wrap; }
.roof-cta-reassurance span { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; }

.roof-cta-price-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}
.cta-roof-price-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.cta-roof-price-main { color: #fff; font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.cta-roof-price-main span { font-size: 1.5rem; color: #86efac; }
.cta-roof-price-compare { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 20px; }
.cta-roof-price-features { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.cta-roof-price-features div { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .roof-hero-inner,
  .roof-cta-inner {
    grid-template-columns: 1fr;
  }
  .roof-hero-right { display: none; }
}
