/* HERO */

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

.hero-title {
  font-size: clamp(2.2rem, 3.3vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: 0.9rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.3rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dot-green {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* HERO CARD */

.hero-card {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.25), transparent 55%), rgba(15, 23, 42, 0.96);
  border-radius: 1.4rem;
  padding: 1.4rem 1.3rem 1.2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.85);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.hero-card-title {
  font-weight: 600;
}

.hero-pill {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.card-metric-row {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
}

.metric {
  flex: 1;
  padding: 0.6rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(30, 64, 175, 0.9);
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  margin-bottom: 0.1rem;
}

.metric-value {
  font-weight: 600;
}

.metric-highlight {
  color: var(--accent);
}

.hero-card-plans {
  margin-top: 0.7rem;
  border-radius: 1rem;
  padding: 0.75rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px dashed rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
}

.hero-card-plans h4 {
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.hero-card-plans ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.2rem;
}

.hero-card-plans li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.3rem;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-card-footer span strong {
  color: var(--accent);
}

/* WHY */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* PLANS */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.plan-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.2rem;
  padding: 1.2rem;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.25);
  position: relative;
}

.plan-badge {
  display: inline-flex;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.7rem;
  margin-bottom: 0.3rem;
}

.plan-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.plan-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.plan-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.plan-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.3rem;
}

.plan-specs {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.plan-specs li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}

.plan-specs li::before {
  content: "✓";
  color: var(--accent);
  font-size: 0.8rem;
}

.plan-card .btn {
  width: 100%;
  margin-top: 0.3rem;
}

.plan-footnote {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* PAYMENT & CONTACT */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.list {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 1rem;
}

.list li {
  margin-bottom: 0.3rem;
}

.contact-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.1rem;
  padding: 1rem;
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.contact-label {
  color: var(--text-muted);
}

.contact-value {
  font-weight: 500;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.5rem;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-grid,
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-card {
    margin-top: 0.8rem;
  }

  .why-grid,
  .plans-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.contact-qr {
  margin-top: 0.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.contact-qr-image {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 0.6rem;
  overflow: hidden;
  border: 1px solid rgba(75, 85, 99, 0.8);
  background: rgba(15, 23, 42, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-qr-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-qr-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-qr-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.2rem;
}

.contact-qr-sub {
  font-size: 0.78rem;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .contact-qr {
    flex-direction: row;
    align-items: flex-start;
  }
}
