:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --card: #1f2937;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --primary: #22c55e;
  --primary-dark: #16a34a;
  --accent: #38bdf8;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, #1e293b, var(--bg));
}

.container { width: min(1120px, 92%); margin: 0 auto; }
.row-between { display:flex; justify-content:space-between; align-items:center; gap: 16px; }
.grid-2 { display:grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }

.topbar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(2,6,23,.78);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 0;
}
.brand { font-weight: 700; color: #d1fae5; }

.hero { padding: 64px 0 40px; }
.badge {
  display:inline-block; padding: 8px 12px; border-radius: 999px;
  background: rgba(56,189,248,.15); color: #bae6fd; margin-bottom: 12px; font-weight: 600;
}
h1 {
  font-family: 'Prata', serif;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.1;
  margin: 0 0 14px;
}
.lead { color: var(--muted); font-size: 18px; line-height: 1.6; }
.hero-points { margin: 18px 0 0; padding-left: 18px; color: #d1d5db; }
.hero-points li { margin: 8px 0; }

.hero-card {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(15, 23, 42, .78), rgba(15, 23, 42, .62)),
    url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  box-shadow: 0 16px 40px rgba(2, 6, 23, .35);
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(34,197,94,.18), rgba(56,189,248,.14));
  z-index: -1;
}
.hero-card h3 { margin-top: 0; color: #dcfce7; }
.hero-card p { color: #f1f5f9; }
.meta { color: #e2e8f0; margin-top: 8px; font-weight: 600; }

.section { padding: 62px 0; }
h2 { font-size: clamp(26px, 3.8vw, 40px); margin: 0 0 24px; font-family: 'Prata', serif; }
.cards {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: rgba(17,24,39,.9);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px;
}
.card h3 { margin: 0 0 10px; }
.card p { margin: 0; color: var(--muted); line-height: 1.5; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,.20);
  transition: .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,.55);
  box-shadow: 0 12px 34px rgba(56,189,248,.18);
}
.service-card h3 { margin: 0 0 8px; }
.service-card p { margin: 0; color: #d1d5db; line-height: 1.5; }
.price {
  margin-top: 10px !important;
  font-weight: 800;
  color: #86efac !important;
}
.hint {
  margin-top: 12px;
  color: #cbd5e1;
  font-size: 13px;
}

.lead-form {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(2,6,23,.45);
  color: #e5e7eb;
  padding: 12px 14px;
  outline: none;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(34,197,94,.7);
}
.consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #cbd5e1;
  font-size: 14px;
}
.form-status {
  margin: 2px 0 0;
  color: #bbf7d0;
  min-height: 20px;
}
.form-status.error { color: #fecaca; }
.form-status.ok { color: #bbf7d0; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.metric {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.metric strong {
  display: block;
  font-size: 28px;
  color: #86efac;
  margin-bottom: 6px;
}
.metric span { color: #d1d5db; font-size: 14px; }

.faq details {
  background: rgba(17,24,39,.9);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); margin: 10px 0 0; }

.cta-wrap {
  background: linear-gradient(120deg, rgba(34,197,94,.22), rgba(56,189,248,.18));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 26px;
}
.cta-wrap p { color: #d1d5db; max-width: 720px; }

.hero-actions { display:flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none; color: #052e16;
  background: var(--primary);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 800;
  transition: .2s ease;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #d1fae5;
  border-color: rgba(209,250,229,.35);
}
.btn-ghost:hover { background: rgba(209,250,229,.08); }
.btn-sm { padding: 9px 12px; font-size: 14px; }

.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  color: var(--muted);
}
.footer a { color: #bae6fd; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(14px); transition: all .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  .grid-2, .cards, .service-cards, .form-grid, .metrics-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; }
}
