/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1b2a;
  --navy-mid: #152335;
  --accent: #f5a623;
  --accent-hover: #e09415;
  --text-dark: #1a2332;
  --text-mid: #4a5568;
  --text-muted: #8fa3bd;
  --text-light: #e8edf3;
  --green: #2ecc71;
  --white: #ffffff;
  --gray-bg: #f4f6f9;
  --card-border: #e2e8f0;
  --card-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 17.6px;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--navy);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo span { color: var(--accent); }

.header-badge {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: url('hero.jpeg') center center / cover no-repeat;
  padding: 80px 0 70px;
  text-align: center;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,38,0.92) 0%, rgba(13,27,42,0.82) 60%, rgba(10,20,38,0.70) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 620px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
}

.highlight { color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(232,237,243,0.85);
  max-width: 500px;
  margin: 0 auto 28px;
}

/* ===== SEARCH FORM ===== */
.search-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.input-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.input-wrap:focus-within { border-color: var(--accent); }

.phone-icon {
  padding: 0 12px;
  font-size: 1rem;
  flex-shrink: 0;
}

.input-wrap input {
  flex: 1;
  padding: 15px 12px 15px 0;
  font-size: 1rem;
  border: none;
  outline: none;
  color: #111;
  background: transparent;
  min-width: 0;
}

.input-wrap input.error { background: #fff5f5; }

.btn-search {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: #111;
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.2px;
}

.btn-search:hover { background: var(--accent-hover); }
.btn-search:active { transform: scale(0.98); }

.btn-inline {
  display: inline-block;
  width: auto;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
}

.cta-center { text-align: center; margin-top: 36px; }

.form-note {
  font-size: 0.8rem;
  color: rgba(232,237,243,0.7);
  margin-top: 8px;
}

/* ===== FOOTER NOTICE (combined) ===== */
.footer-notice {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 22px 26px;
  font-size: 0.78rem;
  color: #8aa0b8;
  line-height: 1.75;
  margin-bottom: 28px;
  text-align: left;
}

.footer-notice > strong:first-child {
  display: block;
  color: #c8d8e8;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.footer-notice p + p { margin-top: 10px; }

.footer-notice strong { color: #b0c4d8; }

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: 10px 20px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: #a8bdd0;
  font-weight: 600;
}

@media (max-width: 520px) {
  .trust-badges {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    justify-items: center;
    max-width: 100%;
  }
}

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }

.section-white { background: var(--white); }
.section-gray  { background: var(--gray-bg); }
.section-dark  { background: var(--navy); color: var(--text-light); }

.section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 32px;
}

.section-white h2, .section-gray h2 { color: var(--text-dark); }
.section-dark h2 { color: var(--white); }

.section-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-top: -20px;
  margin-bottom: 44px;
}

/* ===== WHAT A SEARCH MAY REVEAL ===== */
.findings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.finding-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.section-gray .finding-card { background: var(--white); }

.finding-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-color: var(--accent);
}

.finding-icon { font-size: 1.8rem; margin-bottom: 10px; }

.finding-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}

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

.findings-caveat {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

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

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}

.testimonial {
  background: var(--gray-bg);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 22px 20px;
}

.testimonial p {
  font-size: 1rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial span {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

.testimonial-caveat {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--card-border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 36px 18px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--navy); }

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-mid);
  transition: transform 0.2s;
}

.faq-q[aria-expanded="true"]::after {
  content: '−';
}

.faq-a {
  display: none;
  padding: 0 0 18px;
}

.faq-a.open { display: block; }

.faq-a p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta { text-align: center; }

.bottom-cta p {
  color: rgba(232,237,243,0.75);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-disclaimer {
  margin-top: 14px !important;
  margin-bottom: 0 !important;
  font-size: 0.78rem !important;
  color: rgba(232,237,243,0.45) !important;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #080f18;
  padding: 44px 0 32px;
  text-align: center;
}


.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 14px;
}

.footer-links a {
  color: #4a6278;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.8rem;
  color: #4a6278;
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: #2e4055;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 640px) {
  .hero {
    padding: 50px 0 50px;
    min-height: auto;
    text-align: center;
  }

  .hero-content { text-align: center; }

  .hero h1 { font-size: 2rem; }

  .search-form { max-width: 100%; }


  .section { padding: 48px 0; }

  .findings-grid { grid-template-columns: 1fr 1fr; }


  .steps { grid-template-columns: 1fr; gap: 28px; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .header-badge { display: none; }

  .btn-inline { width: 100%; text-align: center; display: block; padding: 15px; }

  .faq-q { font-size: 0.9rem; }

  .fcra-notice { padding: 16px; }
}

@media (max-width: 400px) {
  .findings-grid { grid-template-columns: 1fr; }
}
