/* ===== THE PROPERTY WHOLESALING NETWORK — SHARED STYLES ===== */

:root {
  --navy: #0d1b2a;
  --navy-mid: #1b2e45;
  --navy-light: #243b55;
  --gold: #c9a227;
  --gold-light: #e8c54a;
  --gold-dark: #a07d1a;
  --white: #ffffff;
  --off-white: #f5f4ef;
  --gray-light: #e8e8e8;
  --gray: #9a9a9a;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --green: #27ae60;
  --red: #c0392b;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.28);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: all 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.bold { font-weight: 700; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,162,39,0.45);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,162,39,0.6);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

.btn-lg { padding: 20px 48px; font-size: 1.15rem; }
.btn-block { width: 100%; text-align: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  padding: 16px 0;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.navbar-logo-text span { color: var(--gold); display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }

.navbar-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.navbar-links a:hover { color: var(--gold); }

.navbar-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a5c 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.68);
  font-size: 0.85rem;
  font-weight: 500;
}

.check-icon {
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 11px;
  font-weight: 900;
}

/* Hero Card (Lead Form) */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--gold);
}

.hero-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  text-align: center;
}
.hero-card-sub {
  font-size: 0.88rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--off-white);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ===== PAIN STRIP ===== */
.pain-strip {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
}

.pain-strip-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pain-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
}
.pain-strip-item .icon { color: var(--gold); font-size: 1rem; }

/* ===== SECTION BASES ===== */
section { padding: 96px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-navy-mid { background: var(--navy-mid); color: var(--white); }
.section-off-white { background: var(--off-white); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

.section-dark .section-sub,
.section-navy-mid .section-sub { color: rgba(255,255,255,0.65); }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.3;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(201,162,39,0.4);
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p { font-size: 0.92rem; color: var(--text-mid); }

/* ===== WHY US / BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(201,162,39,0.15);
  transition: var(--transition);
}

.benefit-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,162,39,0.35);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.benefit-text p { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.6; }

/* ===== PAIN POINTS / EMPATHY SECTION ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pain-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--red);
  transition: var(--transition);
}

.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pain-emoji { font-size: 2.2rem; margin-bottom: 14px; }
.pain-card h4 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.pain-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ===== SOLUTION SECTION ===== */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.solution-list { list-style: none; margin-top: 28px; }
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,162,39,0.12);
  font-size: 0.96rem;
  color: rgba(255,255,255,0.85);
}
.solution-list li:last-child { border-bottom: none; }
.solution-list .check { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.solution-list strong { color: var(--white); display: block; margin-bottom: 2px; }

.solution-visual {
  position: relative;
}

.offer-card {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(201,162,39,0.3);
}

.offer-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 8px;
}

.offer-card-headline {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.offer-checklist {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.offer-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  padding: 6px 0;
}

.offer-checklist li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 5rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.stars { color: #f1c40f; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.author-detail { font-size: 0.78rem; color: var(--gray); }

/* ===== SEGMENT CARDS (Homepage) ===== */
.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.segment-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.segment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.segment-card-header {
  padding: 36px 28px 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  text-align: center;
}

.segment-icon { font-size: 3rem; margin-bottom: 16px; }
.segment-card-header h3 { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.segment-card-header p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

.segment-card-body {
  padding: 24px 28px;
  background: var(--white);
}

.segment-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.segment-tag {
  padding: 4px 12px;
  background: var(--off-white);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--gray-light);
}

.segment-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.segment-link:hover { gap: 12px; }

/* ===== FAQ ===== */
.faq-list { margin-top: 48px; max-width: 780px; margin-left: auto; margin-right: auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  gap: 16px;
  transition: var(--transition);
  font-family: inherit;
}

.faq-question:hover { color: var(--gold); }

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  transition: var(--transition);
  line-height: 1;
}

.faq-item.open .faq-toggle { background: var(--gold); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p { padding: 0 0 22px; font-size: 0.94rem; color: var(--text-mid); line-height: 1.75; }

.faq-item.open .faq-answer { max-height: 300px; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.88rem; font-weight: 600; color: var(--navy-mid); text-transform: uppercase; letter-spacing: 1px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.12) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 540px;
  position: relative;
  border-top: 6px solid var(--gold);
  transform: scale(0.95) translateY(12px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
  transition: var(--transition);
  font-family: inherit;
}
.modal-close:hover { color: var(--navy); }

.modal-title { font-size: 1.6rem; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.modal-sub { font-size: 0.92rem; color: var(--gray); margin-bottom: 28px; }

.success-state { text-align: center; padding: 20px 0; display: none; }
.success-state .success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.success-state h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.success-state p { color: var(--gray); font-size: 0.94rem; }

/* ===== FOOTER ===== */
footer {
  background: #070f18;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  max-width: 720px;
  line-height: 1.6;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== DISTRESS HERO VARIANTS ===== */
.hero-red-accent { border-top: 5px solid var(--red); }
.hero-orange-accent { border-top: 5px solid #e67e22; }
.hero-teal-accent { border-top: 5px solid #16a085; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 73px;
  left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(201,162,39,0.2);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: var(--gold); }
.mobile-menu .btn { margin-top: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 540px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .segment-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .navbar-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }
  .hero { padding: 100px 0 64px; }
  .hero-ctas { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-box { padding: 36px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
