/* ============================================================
   HomeOfferIQ — Landing Page Styles (index.html)
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold-400);
  position: relative;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 3px;
  background: var(--gold-400);
  opacity: 0.4;
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--slate-300);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  animation: fadeUp 0.8s 1.0s forwards;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
}

.trust-label {
  font-size: 0.8rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.how-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s;
}
.how-card:hover {
  border-color: rgba(240,192,64,0.3);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.how-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(240,192,64,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.how-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.how-card p {
  font-size: 0.9rem;
  color: var(--slate-300);
  line-height: 1.6;
}

/* ── TWO PATHS ───────────────────────────────────────────── */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.path-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}
.path-card.seller { border-top: 3px solid var(--gold-400); }
.path-card.buyer  { border-top: 3px solid #60a5fa; }
.path-card:hover  { transform: translateY(-6px); background: rgba(255,255,255,0.06); }

.path-icon { font-size: 2.5rem; line-height: 1; }

.path-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}
.path-card p {
  color: var(--slate-300);
  font-size: 0.95rem;
  line-height: 1.6;
}

.path-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.path-features li {
  font-size: 0.9rem;
  color: var(--slate-300);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.path-features li::before {
  content: '→';
  color: var(--gold-400);
  font-weight: 700;
  flex-shrink: 0;
}

.path-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
}
.seller .path-cta { color: var(--gold-400); }
.buyer  .path-cta { color: #60a5fa; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pricing-card.featured {
  background: rgba(240,192,64,0.06);
  border-color: rgba(240,192,64,0.4);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}

.pricing-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-950);
  background: var(--gold-400);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  width: fit-content;
}

.pricing-tier { font-size: 0.85rem; color: var(--slate-400); font-weight: 500; }

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.pricing-price span {
  font-size: 1rem;
  color: var(--slate-400);
  font-family: var(--font-body);
}

.pricing-desc { font-size: 0.85rem; color: var(--slate-300); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li {
  font-size: 0.85rem;
  color: var(--slate-300);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pricing-features li .check { color: var(--success); flex-shrink: 0; }
.pricing-features li .lock  { color: var(--slate-400); flex-shrink: 0; }

.btn-plan {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
  margin-top: auto;
}
.btn-plan-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.btn-plan-outline:hover { border-color: var(--gold-400); color: var(--gold-400); }
.btn-plan-gold { background: var(--gold-400); color: var(--navy-950); }
.btn-plan-gold:hover { background: var(--gold-300); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--slate-400);
  font-size: 0.85rem;
}
footer a { color: var(--slate-400); text-decoration: none; }
footer a:hover { color: var(--gold-400); }
.footer-links { display: flex; gap: 2rem; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .paths-grid    { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}