/* ═══════════ HERO ═══════════ */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(13, 194, 165, 0.12);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 56px;
  max-width: 780px;
  margin: 0 auto 22px;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-size: 36px;
  color: var(--accent);
  font-weight: 800;
}
.hero-stat span { color: var(--text-muted); font-size: 14px; }

/* ═══════════ WHY GRID ═══════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-grid .card p { color: var(--text-muted); font-size: 14px; }

@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero-stats { gap: 32px; }
}

/* ═══════════ HOW STEPS ═══════════ */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.how-step {
  text-align: center;
  padding: 0 16px;
}
.how-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 18px;
}
.how-step p { color: var(--text-muted); font-size: 14px; }

@media (max-width: 760px) {
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════ PRICING PREVIEW ═══════════ */
.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.price-card {
  position: relative;
  text-align: center;
}
.price-card.popular { border-color: var(--accent); }
.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { margin-bottom: 8px; }
.price-card .price {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  margin: 12px 0 4px;
}
.price-card .price span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.price-card .price-feat {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 22px;
}

@media (max-width: 860px) {
  .pricing-preview-grid { grid-template-columns: 1fr; }
}

/* ═══════════ TRUST / CTA FINALE ═══════════ */
.trust-cta {
  text-align: center;
  background: linear-gradient(145deg, var(--bg-card-1), var(--bg-card-2));
  border: 2px solid var(--border-accent);
  border-radius: 24px;
  padding: 64px 32px;
}
.trust-cta h2 { max-width: 560px; margin: 0 auto 14px; }
.trust-cta p { color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; }