/* ── /for-builders — New Construction landing page ── */
.fb-page { background: var(--sp-ivory); color: var(--sp-charcoal); }

/* Hero */
.fb-hero {
  position: relative;
  padding: 150px 24px 90px;
  background: linear-gradient(180deg, #0a1310 0%, #0d1a14 100%);
  overflow: hidden;
}
.fb-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 75% 15%, rgba(196,148,58,0.18), transparent 70%);
  pointer-events: none;
}
.fb-hero-inner { max-width: 920px; margin: 0 auto; position: relative; text-align: center; }
.fb-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sp-gold); margin-bottom: 22px;
}
.fb-hero h1 {
  font-family: var(--sp-serif); font-weight: 700; color: #fff;
  font-size: clamp(38px, 6vw, 66px); line-height: 1.08; margin: 0 0 22px;
}
.fb-hero h1 em { font-style: italic; color: var(--sp-gold); }
.fb-hero-sub {
  font-size: clamp(17px, 2.2vw, 20px); line-height: 1.6; color: rgba(255,255,255,0.74);
  max-width: 640px; margin: 0 auto 34px;
}
.fb-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.fb-hero-note { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,0.45); }

/* Section shell */
.fb-section { padding: 86px 24px; }
.fb-section--ivory { background: var(--sp-ivory); }
.fb-section--sage { background: var(--sp-sage-light); }
.fb-section--dark { background: #0c1712; }
.fb-inner { max-width: 1080px; margin: 0 auto; }
.fb-label {
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sp-gold-dark); text-align: center; margin-bottom: 14px;
}
.fb-headline {
  font-family: var(--sp-serif); font-weight: 700; font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15; text-align: center; margin: 0 auto 16px; max-width: 760px; color: var(--sp-charcoal);
}
.fb-section--dark .fb-headline { color: #fff; }
.fb-section--dark .fb-label { color: var(--sp-gold); }
.fb-sub {
  font-size: 17px; line-height: 1.65; text-align: center; color: var(--sp-text-dim);
  max-width: 640px; margin: 0 auto 48px;
}
.fb-section--dark .fb-sub { color: rgba(255,255,255,0.66); }

/* The problem — pain cards */
.fb-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fb-pain {
  background: #fff; border: 1px solid rgba(42,42,42,0.09); border-radius: 14px;
  padding: 26px 24px; text-align: left;
}
.fb-pain h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--sp-charcoal); }
.fb-pain p { font-size: 14.5px; line-height: 1.6; color: var(--sp-text-dim); margin: 0; }

/* Steps */
.fb-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 12px; }
.fb-step { text-align: center; padding: 8px; }
.fb-step-num {
  width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(196,148,58,0.14); border: 1px solid rgba(196,148,58,0.4);
  color: var(--sp-gold-dark); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.fb-step h3 { font-size: 16px; font-weight: 700; margin: 0 0 7px; color: var(--sp-charcoal); }
.fb-step p { font-size: 14px; line-height: 1.55; color: var(--sp-text-dim); margin: 0; }

/* Feature rows (why it fits new construction) */
.fb-feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.fb-feat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(196,148,58,0.22);
  border-radius: 16px; padding: 30px 28px;
}
.fb-feat h3 { font-family: var(--sp-serif); font-size: 22px; font-weight: 600; margin: 0 0 10px; color: #fff; }
.fb-feat p { font-size: 15px; line-height: 1.62; color: rgba(255,255,255,0.72); margin: 0; }

/* FAQ */
.fb-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 40px; max-width: 900px; margin: 0 auto; }
.fb-faq-item h4 { font-size: 16px; font-weight: 700; margin: 0 0 7px; color: var(--sp-charcoal); }
.fb-faq-item p { font-size: 14.5px; line-height: 1.62; color: var(--sp-text-dim); margin: 0; }

/* Final CTA */
.fb-cta { text-align: center; }
.fb-cta .fb-headline { color: #fff; }
.fb-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* Footer (duplicated so page doesn't depend on how-it-works.css) */
.hiw-footer {
  background: var(--sp-charcoal); color: #fff; padding: 40px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.hiw-footer-brand { font-family: var(--sp-serif); font-size: 20px; font-weight: 700; }
.hiw-footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.hiw-footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; }
.hiw-footer-links a:hover { color: #fff; }

/* Responsive */
@media (max-width: 860px) {
  .fb-pain-grid { grid-template-columns: 1fr; }
  .fb-steps { grid-template-columns: repeat(2, 1fr); }
  .fb-feat-grid { grid-template-columns: 1fr; }
  .fb-faq-grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 520px) {
  .fb-hero { padding: 130px 20px 70px; }
  .fb-section { padding: 64px 20px; }
  .fb-steps { grid-template-columns: 1fr; }
  .hiw-footer { flex-direction: column; text-align: center; }
  .hiw-footer-links { justify-content: center; }
}
