/* Landing Page CSS */

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 60%, #1d4ed8 100%);
  color: white;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__badge { display: inline-block; background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.4); color: var(--mint); padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; margin-bottom: 20px; }
.hero__title { font-size: 52px; line-height: 1.1; margin-bottom: 16px; }
.hero__highlight { color: var(--mint); }
.hero__sub { font-size: 17px; opacity: 0.85; margin-bottom: 20px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero__trust span { background: rgba(255,255,255,0.1); padding: 4px 12px; border-radius: 100px; font-size: 12px; }
.hero__disclaimer { font-size: 12px; opacity: 0.6; margin-top: 10px; }

.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 24px; text-align: center; }
.stat-card__num { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 800; color: var(--mint); }
.stat-card__label { font-size: 12px; opacity: 0.7; margin-top: 4px; }

/* How it works */
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: start; margin-top: 48px; }
.step { text-align: center; padding: 24px 16px; }
.step--arrow { display: flex; align-items: flex-start; padding-top: 40px; font-size: 24px; color: var(--blue); opacity: 0.4; }
.step__icon { font-size: 40px; margin-bottom: 12px; }
.step h3 { font-size: 16px; margin-bottom: 8px; color: var(--navy); }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Calc teaser */
.calc-teaser__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.calc-teaser__text h2 { font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.calc-teaser__text p { color: var(--text-muted); margin-bottom: 20px; }
.calc-teaser__cta { display: flex; flex-direction: column; gap: 12px; }

/* Trust */
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust__item { display: flex; align-items: center; gap: 10px; padding: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; }
.trust__icon { font-size: 20px; }

/* Final CTA */
.final-cta { background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%); color: white; }
.final-cta h2 { font-size: 32px; color: white; margin-bottom: 8px; }
.final-cta p { opacity: 0.8; margin-bottom: 24px; }
.text-center { text-align: center; }

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__title { font-size: 36px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step--arrow { display: none; }
  .calc-teaser__inner { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
}
