/* === /proof page — contractor close page === */
:root {
  --teal-900: #0d3d35;
  --teal-800: #115846;
  --teal-700: #167557;
  --teal-600: #1a9369;
  --teal-500: #22b07a;
  --teal-400: #3ec98f;
  --teal-300: #6ee0ae;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --bg: #ffffff;
  --bg-warm: #f4faf7;
  --fg: #0d3d35;
  --fg-muted: #3d6b5e;
  --border: #b8d9ce;
  --border-light: #e4f2eb;
  --accent: #1a9369;
  --accent-dim: rgba(26, 147, 105, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-soft: 0 4px 24px rgba(13, 61, 53, 0.08);
  --radius: 16px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

/* ── NAV ── */
.proof-nav {
  background: var(--teal-900);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.proof-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.proof-nav-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-600);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.proof-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-nav-links .nav-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.proof-nav-links .nav-link:hover { color: white; }
.btn-nav-cta {
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-400) 100%);
  color: var(--teal-900) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.btn-nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ── HERO ── */
.proof-hero {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  padding: 100px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.proof-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(62,201,143,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.proof-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,191,36,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.proof-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.proof-hero-badge {
  display: inline-block;
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.35);
  color: var(--amber-400);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.proof-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 24px;
}
.proof-hero h1 span { color: var(--amber-400); }
.proof-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 40px;
}
.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-400) 100%);
  color: var(--teal-900);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 48px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
  letter-spacing: 0.01em;
}
.btn-hero:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
}
.proof-hero-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ── HOW IT WORKS ── */
.proof-how {
  padding: 88px 48px;
  background: var(--bg);
}
.proof-how-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.proof-how h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 12px;
}
.proof-how-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 56px;
}
.proof-how-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.proof-how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
.proof-how-step-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.proof-how-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 4px;
}
.proof-how-step p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.proof-how-step-arrow {
  font-size: 1.8rem;
  color: var(--border);
  flex-shrink: 0;
  align-self: center;
  padding-bottom: 20px;
}

/* ── CHECKLIST ── */
.proof-checklist {
  padding: 88px 48px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
}
.proof-checklist-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.proof-checklist-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 12px;
}
.proof-checklist-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 36px;
}
.proof-checklist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.proof-checklist-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.5;
}
.check-icon {
  width: 22px;
  height: 22px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon--off {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}
.btn-primary {
  display: inline-block;
  background: var(--teal-700);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.btn-primary:hover {
  background: var(--teal-800);
  transform: translateY(-1px);
}

/* ── SAMPLE LEAD CARD ── */
.proof-checklist-card {
  display: flex;
  justify-content: center;
}
.proof-sample-lead {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 380px;
  position: relative;
}
.proof-sample-lead-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.proof-sample-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}
.proof-sample-row:last-of-type { border-bottom: none; }
.proof-sample-key {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.proof-sample-val {
  font-size: 0.88rem;
  color: var(--fg);
  font-weight: 500;
  text-align: right;
}
.proof-sample-blur {
  /* Blurred until signup — visual hint */
  filter: blur(4px);
  user-select: none;
  transition: filter 0.3s ease;
}
.proof-sample-lead:hover .proof-sample-blur { filter: blur(3px); }
.proof-sample-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── TRUST STRIP ── */
.proof-trust {
  background: var(--teal-900);
  padding: 40px 48px;
}
.proof-trust-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
}
.proof-trust-item strong { color: white; }
.proof-trust-icon { font-size: 1.1rem; }
.proof-trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}

/* ── FAQ ── */
.proof-faq {
  padding: 88px 48px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
}
.proof-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.proof-faq-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--fg);
  margin-bottom: 40px;
  text-align: center;
}
.faq-list { border-top: 1px solid var(--border-light); }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  transition: color 0.15s ease;
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 220px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.93rem; color: var(--fg-muted); line-height: 1.7; }

/* ── FINAL CTA ── */
.proof-final-cta {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  padding: 100px 48px;
  text-align: center;
}
.proof-final-cta-inner { max-width: 600px; margin: 0 auto; }
.proof-final-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.proof-final-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.65;
}
.proof-final-skip {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 0 !important;
}
.proof-final-skip a {
  color: var(--teal-300);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}
.proof-final-skip a:hover { color: white; }

/* ── FOOTER ── */
.proof-footer {
  padding: 28px 48px;
  background: var(--teal-900);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.proof-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.proof-footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
}
.proof-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.proof-footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.15s ease;
}
.proof-footer-links a:hover { color: rgba(255,255,255,0.9); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .proof-how-steps {
    flex-direction: column;
    gap: 24px;
  }
  .proof-how-step-arrow { display: none; }
  .proof-checklist-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .proof-checklist-card { order: -1; }
  .proof-trust-inner { gap: 20px; }
}
@media (max-width: 700px) {
  .proof-hero, .proof-how, .proof-checklist, .proof-faq, .proof-final-cta { padding: 60px 24px; }
  .proof-trust { padding: 32px 24px; }
  .proof-nav { padding: 14px 24px; }
  .proof-trust-divider { display: none; }
  .proof-trust-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .proof-footer { padding: 20px 24px; }
  .proof-footer-inner { flex-direction: column; text-align: center; gap: 12px; }
}
@media (max-width: 480px) {
  .proof-hero, .proof-how, .proof-checklist, .proof-faq, .proof-final-cta { padding: 48px 16px; }
  .proof-nav-links .nav-link { display: none; }
  .btn-hero { padding: 16px 32px; font-size: 0.95rem; }
}
