/* =========================================================
   LeadBridge — styles.css
   Brand: LeadBridge | Legal: Skip The Line LLC
   Stripe descriptor: SKIPLINE*LEADBRIDGE
   ========================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:   #1A2238;
  --cream:  #F8F5F2;
  --gold:   #C5A059;
  --onyx:   #2D2D2D;
  --border: #DDD6CC;
  --white:  #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --max-width: 1160px;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--onyx);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 96px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--mid  { background: #EDE9E4; }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.label--light { color: var(--gold); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-headline--light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: #5a5a5a;
  max-width: 580px;
  line-height: 1.8;
}
.section-sub--light { color: rgba(255,255,255,0.75); }

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: #b38d40;
  border-color: #b38d40;
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(197,160,89,0.2);
  padding: 0 2rem;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.site-logo span { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 2.2rem; }
.site-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--gold); }
.site-nav .btn { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: rgba(197,160,89,0.04);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-scarcity {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
}
.hero-scarcity strong { color: var(--gold); }

.hero-image-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 3px;
  /* Replace with hero-placeholder.jpg */
  background: linear-gradient(135deg, #243050 0%, #1a2238 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
}
.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.hero-badge-txt {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ════════════════════════════════════════════
   VISUAL IMPACT
════════════════════════════════════════════ */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.impact-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.impact-img {
  border-radius: 2px;
  background: #ddd6cc;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Replace with actual images */
}
.impact-img--tall {
  height: 340px;
  grid-column: 1;
  /* card-in-hand-placeholder.jpg */
}
.impact-img--short {
  height: 260px;
  align-self: end;
  /* countertop-placeholder.jpg */
}
.impact-img .img-placeholder-label { color: rgba(45,45,45,0.35); }
.impact-stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.impact-stat {}
.impact-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.impact-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-top: 0.25rem;
}

/* ════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 2rem 1.75rem;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(197,160,89,0.18);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.steps-scarcity {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.steps-scarcity em { color: var(--gold); font-style: normal; }

/* ════════════════════════════════════════════
   CATEGORY GRID
════════════════════════════════════════════ */
.category-intro {
  max-width: 560px;
  margin-bottom: 3rem;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.category-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.status-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.status-badge--available {
  background: rgba(107,169,120,0.12);
  color: #3d8050;
}
.status-badge--reserved {
  background: rgba(197,160,89,0.12);
  color: #8a6d2a;
}
.status-badge--limited {
  background: rgba(200,90,60,0.1);
  color: #b04020;
}

/* ════════════════════════════════════════════
   FOUNDING PARTNER
════════════════════════════════════════════ */
.founding-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.founding-content {}
.founding-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.founding-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.founding-highlight-icon {
  width: 32px;
  height: 32px;
  background: rgba(197,160,89,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.founding-highlight-icon svg { width: 14px; height: 14px; }
.founding-highlight-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.founding-highlight-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}
.founding-image {
  height: 440px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* service-placeholder.jpg */
}
.founding-cta { margin-top: 2.5rem; }

/* ════════════════════════════════════════════
   WHY THIS WORKS
════════════════════════════════════════════ */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.comparison-card {
  border-radius: 3px;
  padding: 2.5rem;
}
.comparison-card--typical {
  background: var(--white);
  border: 1px solid var(--border);
}
.comparison-card--leadbridge {
  background: var(--navy);
  color: var(--white);
}
.comparison-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.comparison-card--typical .comparison-card-label { color: #999; }
.comparison-card--leadbridge .comparison-card-label { color: var(--gold); }
.comparison-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  line-height: 1.2;
}
.comparison-card--typical .comparison-card-title { color: var(--navy); }
.comparison-list { display: flex; flex-direction: column; gap: 0.85rem; }
.comparison-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
}
.comparison-list-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 0.45em;
  flex-shrink: 0;
}
.comparison-card--typical .comparison-list-item {
  color: #777;
}
.comparison-card--typical .comparison-list-item::before {
  background: #ccc;
}
.comparison-card--leadbridge .comparison-list-item {
  color: rgba(255,255,255,0.8);
}
.comparison-card--leadbridge .comparison-list-item::before {
  background: var(--gold);
}

/* ════════════════════════════════════════════
   DESIGN & CREATIVE
════════════════════════════════════════════ */
.design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.design-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.design-feature {
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
}
.design-feature-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.design-feature-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
}
.design-image {
  height: 400px;
  background: #ede9e4;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* card-in-hand-placeholder.jpg secondary use */
}

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 780px;
  margin: 3rem auto 0;
}
.pricing-card {
  border-radius: 3px;
  padding: 2.5rem;
  position: relative;
  transition: transform var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--single {
  background: var(--white);
  border: 1px solid var(--border);
}
.pricing-card--preferred {
  background: var(--navy);
  color: var(--white);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}
.pricing-plan {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.pricing-card--single .pricing-plan { color: #888; }
.pricing-card--preferred .pricing-plan { color: var(--gold); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing-card--single .pricing-price { color: var(--navy); }
.pricing-period {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 1.5rem;
}
.pricing-card--preferred .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card--preferred .pricing-desc {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.12);
}

/* ── STRIPE LINK PLACEHOLDERS ── */
/* 
   STRIPE INTEGRATION:
   Replace each button's href="#" with your Stripe hosted payment link.
   Single:    https://buy.stripe.com/YOUR_SINGLE_LINK
   3-Month:   https://buy.stripe.com/YOUR_3MONTH_LINK
   Stripe descriptor: SKIPLINE*LEADBRIDGE
*/
.pricing-btn-wrap { }
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #999;
}
.pricing-protection {
  max-width: 640px;
  margin: 2rem auto 0;
  background: #f0ece7;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   WHAT HAPPENS NEXT
════════════════════════════════════════════ */
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin-top: 2.5rem;
}
.next-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.next-step:last-child { border-bottom: none; }
.next-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.next-step-content {}
.next-step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.next-step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.next-no-payment {
  margin-top: 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
}

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin: 2.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  gap: 1rem;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1rem;
  line-height: 1;
  color: var(--navy);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 1.5rem 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
}

/* ════════════════════════════════════════════
   AVAILABILITY FORM
════════════════════════════════════════════ */
.form-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3rem;
  max-width: 700px;
  margin: 3rem auto 0;
}
.form-intro {
  margin-bottom: 2rem;
}
.form-intro p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--onyx);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; }
.form-consent {
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 3px;
}
.form-consent-label {
  font-size: 0.75rem;
  color: #777;
  line-height: 1.65;
}
.form-consent-label a {
  color: var(--navy);
  text-decoration: underline;
}
.form-submit-wrap {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-submit-wrap .btn {
  width: 100%;
  text-align: center;
  padding: 1rem;
}
.btn--form {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn--form:hover {
  background: #111827;
  border-color: #111827;
}
.form-note {
  font-size: 0.72rem;
  color: #999;
  text-align: center;
  line-height: 1.6;
}
.form-error {
  font-size: 0.72rem;
  color: #c0392b;
  margin-top: 0.25rem;
}
.form-success-state {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(107,169,120,0.1);
  border: 2px solid #6ba978;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}
.form-success-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.form-success-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #555;
  margin-top: 1rem;
}
.about-body p { margin-bottom: 1rem; }
.about-legal {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 0.5rem;
}
.about-image {
  height: 400px;
  background: #ede9e4;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 2rem;
}
.contact-card-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.contact-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-card-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
/* Replace these with real contact details: */
/* PHONE: (XXX) XXX-XXXX */
/* EMAIL: info@leadbridgelocal.com */
/* SERVICE AREA: [Your Metro Area] */

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.footer-legal {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════════
   INNER PAGES (Terms, Privacy, Thank You)
════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  color: var(--white);
}
.page-hero-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
}
.page-content {
  padding: 80px 0;
  max-width: 760px;
  margin: 0 auto;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.page-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.page-content ul li {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  list-style: disc;
}
.page-content strong { color: var(--navy); }

/* Thank you */
.thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 2rem;
}
.thankyou-inner { max-width: 520px; }
.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(197,160,89,0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
}
.thankyou-headline {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}
.thankyou-sub {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid,
  .impact-grid,
  .founding-inner,
  .about-grid,
  .design-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-img { height: 360px; }
  .hero-badge { left: 1rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0; }
  .impact-images { grid-template-columns: 1fr; }
  .impact-img--tall { height: 260px; }
  .impact-stat-row { flex-wrap: wrap; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .form-section { padding: 2rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .founding-inner { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
}
