/* ── HOME PAGE ───────────────────────────────────────────────────────
   Sections: hero, search-card, services, steps, why, pricing, faq, cta-banner.
   All scoped to landing page sections only: nothing shared here.
──────────────────────────────────────────────────────────────────── */

/* HERO -------------------------------------------------------------- */
.hero {
  background: var(--navy);
  color: white;
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.015) 0px,
    rgba(255,255,255,.015) 1px,
    transparent 1px,
    transparent 80px
  );
  pointer-events: none;
}
.hero-stripe { position: absolute; left: 0; top: 0; width: 5px; height: 100%; background: var(--teal); }
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--teal-light); }
.hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  color: white;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal-light);
  border-bottom: 2px solid rgba(var(--teal-rgb),.4);
}
.hero-sub { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 36px; font-weight: 300; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.6); }

/* SEARCH CARD ------------------------------------------------------- */
.search-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--teal);
}
.search-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.search-card h3 { font-family: Arial, Helvetica, sans-serif; font-size: 18px; color: #ffffff; margin-bottom: 6px; font-weight: 700; }
.search-card > p { font-size: 13px; color: var(--slate); margin-bottom: 18px; }
#search-results { margin-top: 14px; }

/* SERVICES ---------------------------------------------------------- */
.services { padding: 72px 0; background: var(--bg); }
.services-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.services-header { text-align: center; margin-bottom: 48px; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.service-card {
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: all .2s;
}
.service-card:hover { border-left-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card.featured { border-left-color: var(--teal); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon.teal { background: var(--teal-bg); }
.service-icon.gold { background: var(--gold-bg); }
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: #ffffff; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: #d0d8e0; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.service-price { font-size: 28px; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
.service-price-note { font-size: 12px; color: var(--slate); margin-bottom: 20px; min-height: 2.8em; }
.service-card .btn { margin-top: auto; }

/* STEPS ------------------------------------------------------------- */
.steps-section {
  padding: 72px 0;
  background: var(--surface-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; text-align: center; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  border: 3px solid var(--surface-mid);
  box-shadow: 0 0 0 2px var(--teal);
}
/* FIX: was --navy (near-invisible on dark bg) */
.step-item h4 { font-size: 15px; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.step-item p  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* WHY -------------------------------------------------------------- */
.why { padding: 72px 0; background: var(--navy); color: white; }
.why-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.why-header { text-align: center; margin-bottom: 52px; }
.why-label { color: var(--teal-light); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.why-title { font-family: Arial, Helvetica, sans-serif; color: white; font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; letter-spacing: -.5px; }
.why-sub { color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.7; margin-top: 10px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}
.why-card-icon {
  width: 40px; height: 40px;
  background: rgba(var(--teal-rgb),.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card-icon svg { width: 20px; height: 20px; stroke: var(--teal-light); }
.why-card h4 { font-size: 15px; font-weight: 600; color: white; margin-bottom: 6px; }
.why-card p  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* PRICING ----------------------------------------------------------- */
.pricing { padding: 72px 0; background: var(--bg); }
.pricing-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.pricing-header { text-align: center; margin-bottom: 32px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
}
.price-card.featured {
  border-color: var(--teal);
  border-top: 4px solid var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  letter-spacing: .8px;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-name { font-size: 11px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.price-amount { font-size: 44px; font-weight: 700; color: #ffffff; letter-spacing: -.5px; line-height: 1; }
.price-amount sup { font-size: 20px; vertical-align: top; margin-top: 8px; }
.price-period { font-size: 13px; color: var(--slate); margin: 5px 0 20px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li {
  font-size: 14px;
  color: #d0d8e0;
  padding: 7px 0;
  border-bottom: 1px solid var(--surface-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before { content: ''; display: block; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }

/* FAQ --------------------------------------------------------------- */
.faq { padding: 72px 0; background: var(--surface-mid); }
.faq-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.faq-header { margin-bottom: 36px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--surface);
}
.faq-q {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-q:hover { background: var(--surface-mid); }
.faq-icon { font-size: 20px; color: var(--teal); transition: transform .25s; flex-shrink: 0; }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* CTA BANNER -------------------------------------------------------- */
.cta-banner { padding: 72px 0; background: var(--navy); color: white; }
.cta-banner-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; text-align: center; }
.cta-banner h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; letter-spacing: -.5px; margin-bottom: 12px; }
.cta-banner h2 span { color: var(--teal-light); }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; max-width: 440px; }
  .steps-grid       { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-grid::before { display: none; }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 360px; }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid         { grid-template-columns: 1fr; }
  .cta-buttons      { flex-direction: column; align-items: center; }
}
