:root {
  --bg: #0b1020;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.04);
  --text: #e8ecf3;
  --muted: #a7b0c0;
  --brand: #5eead4;
  --brand-2: #60a5fa;
  --brand-3: #8b5cf6;
  --border: rgba(255,255,255,0.12);
  --shadow: 0 20px 50px rgba(0,0,0,0.25);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(96,165,250,0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(94,234,212,0.18), transparent 30%),
    linear-gradient(180deg, #0b1020 0%, #0f172a 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11,16,32,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 1.05rem;
}

.brand-mark {
  width: 88px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--brand-3));
  box-shadow: 0 10px 30px rgba(94,234,212,0.25);
  display: grid;
  place-items: center;
  color: #04111d;
  font-weight: 900;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #08111f;
  box-shadow: 0 14px 34px rgba(96,165,250,0.22);
}

.btn-primary:hover, .btn-secondary:hover, .whatsapp-float:hover { transform: translateY(-2px); }

.btn-secondary {
  border-color: var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.hero { padding: 78px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  color: var(--brand);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #dbe7ff;
  font-size: 0.88rem;
  font-weight: 600;
}

h1, h2, h3 { margin: 0 0 14px; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: 1.15rem; }

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.stat strong { display: block; font-size: 1.55rem; margin-bottom: 6px; }
.muted { color: var(--muted); }

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(94,234,212,0.28), transparent 70%);
  pointer-events: none;
}

.dashboard { display: grid; gap: 16px; position: relative; z-index: 1; }
.dash-box {
  background: rgba(11,16,32,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 18px;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  margin-top: 12px;
}

.bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.highlight-box {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(96,165,250,0.12));
  border: 1px solid rgba(139,92,246,0.25);
  color: #e7ddff;
  font-weight: 600;
}

section { padding: 46px 0; }
.section-head { margin-bottom: 24px; max-width: 780px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.card:hover { transform: translateY(-4px); }
.card.featured {
  border: 1px solid rgba(94,234,212,0.28);
  background: linear-gradient(180deg, rgba(94,234,212,0.08), rgba(255,255,255,0.04));
  position: relative;
  overflow: hidden;
}

.card.featured::after {
  content: "Featured";
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #04111d;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  padding: 6px 10px;
  border-radius: 999px;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(94,234,212,0.18), rgba(96,165,250,0.18));
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.bullet-list { display: grid; gap: 14px; margin-top: 18px; }
.bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(94,234,212,0.14);
  color: var(--brand);
  flex: 0 0 auto;
  font-weight: 900;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-panel, .form-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-item:last-child { border-bottom: none; }

form { display: grid; gap: 16px; }
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: #d9e1ef;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

input:focus, textarea:focus {
  border-color: rgba(94,234,212,0.55);
  transform: translateY(-1px);
}

textarea { min-height: 150px; resize: vertical; }

footer {
  padding: 26px 0 42px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #25d366, #16a34a);
  color: white;
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
  z-index: 40;
}

.center-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thank-card {
  width: min(100%, 700px);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.thank-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #04111d;
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero-grid, .about, .contact-wrap, .grid-3 { grid-template-columns: 1fr; }
  .stats, .field-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding-top: 54px; }
}

@media (max-width: 640px) {
  h1 { font-size: 2.35rem; }
  .hero-card, .card, .contact-panel, .form-panel, .thank-card { padding: 20px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}