/* ============================================================
   LANDING PAGE STYLES
   ============================================================ */

.hero {
  padding: 72px 32px 48px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12.5px;
  color: #8a6508;
  margin-bottom: 28px;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero h1 {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  color: var(--navy);
  font-style: normal;
  position: relative;
}

.hero-sub {
  font-size: 16.5px;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.savings-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-muted);
  flex-wrap: wrap;
}

.strikethrough {
  text-decoration: line-through;
  color: var(--danger);
}

.savings-highlight {
  color: var(--success);
  font-weight: 600;
}

/* ── Stats row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  background: var(--paper-2);
  padding: 28px;
  text-align: center;
  border-left: 1px solid var(--border);
}
.stat:first-child { border-left: none; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12.5px;
  color: var(--ink-muted);
}

/* ── Features ── */
.features {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 19px;
}

.feature-icon-danger { background: var(--danger-bg); }
.feature-icon-gold { background: var(--gold-bg); }
.feature-icon-success { background: var(--success-bg); }

.feature-title {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.feature-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ── How it works steps ── */
.how-steps {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 32px 56px;
}

.section-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 32px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 8px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px;
  margin: 0 auto 14px;
}

.step-title {
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  color: var(--ink);
}

.step-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── Free banner ── */
.free-banner {
  max-width: 1120px;
  margin: 0 auto 56px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.free-banner-text {
  font-size: 15px;
  color: var(--ink);
}

.free-banner-text span {
  color: #8a6508;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .features, .steps-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--border); }
  .stat:first-child { border-top: none; }
  .free-banner { flex-direction: column; text-align: center; }
}
