/* ============================
   RESET / GERAL
============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.12);
  --accent-strong: #16a34a;
  --text: #e5e7eb;
  --text-soft: #94a3b8;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --radius-lg: 18px;
  --radius-full: 999px;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #0f172a 0, #020617 45%, #000 100%);
  color: var(--text);
}

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

/* TOPBAR */
.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); background: rgba(2, 6, 23, 0.85);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-text span { font-weight: 600; font-size: 1.1rem; display: block; }
.logo-text small { color: var(--text-soft); font-size: 0.75rem; }

.nav { display: flex; align-items: center; gap: 1.3rem; }
.nav-link { color: var(--text-soft); text-decoration: none; font-size: 0.95rem; }
.nav-link:hover, .nav-link.active { color: var(--accent); }

/* HERO & BUTTONS */
.hero { padding: 3rem 0; }
.hero-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; }
.hero-text h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 1rem; }
.hero-text p { color: var(--text-soft); font-size: 1rem; line-height: 1.6; }

.btn {
  padding: 0.85rem 1.4rem; border-radius: 999px; font-size: 0.9rem; font-weight: 500;
  text-decoration: none; cursor: pointer; transition: 0.2s; border: 1px solid transparent;
  display: inline-block; text-align: center;
}
.btn-primary { background: linear-gradient(135deg, #22c55e, #16a34a); color: #ecfdf5; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(22, 163, 74, 0.4); }
.btn-ghost { border: 1px solid rgba(148, 163, 184, 0.4); color: var(--text); }
.btn-ghost:hover { background: rgba(148, 163, 184, 0.15); }
.btn-outline { border: 1px solid var(--accent); color: var(--accent); background: transparent; }

/* CARDS & GRIDS */
.hero-card {
  padding: 1.3rem; background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.25); border-radius: 18px;
}
.hero-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.hero-list li { font-size: 0.92rem; }
.hero-card-footer { border-top: 1px dashed rgba(148, 163, 184, 0.25); padding-top: 0.6rem; margin-top: 1rem; font-size: 0.85rem; color: var(--text-soft); }
.hero-card-footer a { color: var(--accent); text-decoration: none; }

section { padding: 3rem 0; }
h2 { margin-bottom: 0.3rem; font-size: 1.6rem; }
.section-subtitle { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 1.6rem; }

.pricing-grid, .services-grid, .steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem;
}
.pricing-card, .service-card, .step-card, .admin-card {
  background: var(--bg-soft); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 1.5rem;
}
.pricing-card:hover, .service-card:hover { transform: translateY(-5px); border-color: var(--accent); }

.step-number { font-size: 3rem; font-weight: 800; color: var(--accent-soft); display: block; margin-bottom: 0.5rem; line-height: 1; }
.price-value { font-size: 1.4rem; font-weight: 700; color: var(--accent); margin: 0.5rem 0; display: block; }
.pill { font-size: 1rem; background: var(--accent-soft); color: var(--accent-strong); padding: 0.3rem 0.8rem; border-radius: var(--radius-full); display: inline-block; margin-top: 0.5rem; font-weight: 600; }
.price-obs { font-size: 0.85rem; color: var(--text-soft); }

/* CTA & ADMIN */
.cta { margin-top: 4rem; background: linear-gradient(to right, var(--bg-soft), #0f2515); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }

.form { display: grid; gap: 1rem; max-width: 500px; }
.input { width: 100%; padding: 0.8rem; background: var(--bg); border: 1px solid var(--border-subtle); border-radius: 8px; color: white; margin-top: 0.4rem; font-size: 1rem; }
.table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 0.95rem; }
.table th, .table td { text-align: left; padding: 1rem; border-bottom: 1px solid var(--border-subtle); }
.tag { background: rgba(255, 255, 255, 0.1); padding: 4px 8px; border-radius: 4px; font-size: 0.8rem; }

/* FOOTER */
.footer { margin-top: 4rem; padding: 2rem 0; border-top: 1px solid var(--border-subtle); background: var(--bg-soft); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-link { color: var(--text-soft); text-decoration: none; margin-left: 1.5rem; }

/* MOBILE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-actions { justify-content: center; }
  .hero-card { margin: 0 auto; text-align: left; }
}

@media (max-width: 640px) {
  .topbar-inner { flex-direction: column; height: auto; padding: 1rem; gap: 1rem; }
  .nav { display: flex; width: 100%; justify-content: center; flex-wrap: wrap; gap: 10px; }
  .nav-link { font-size: 0.85rem; background: rgba(255,255,255,0.05); padding: 6px 12px; border-radius: 8px; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-right { display: flex; flex-direction: column; gap: 0.8rem; }
  .footer-link { margin: 0; }
  .cta-inner { flex-direction: column; text-align: center; }
}
