:root{
  --bg: #0b0f19;
  --fg: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.66);
  --card: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.14);
  --stroke2: rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --r: 22px;
  --r2: 28px;
  --container: 1100px;
  --px: 16px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--fg);
  background:
    radial-gradient(1100px 600px at 20% -10%, rgba(98,129,255,.24), transparent 55%),
    radial-gradient(900px 520px at 80% 10%, rgba(122,255,224,.14), transparent 52%),
    radial-gradient(1000px 700px at 50% 120%, rgba(255,162,98,.12), transparent 55%),
    var(--bg);
  font: 16px/1.55 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  letter-spacing: .1px;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.container{
  width:min(var(--container), calc(100% - (var(--px)*2)));
  margin:0 auto;
}

.muted{ color:var(--muted); }
.tiny{ font-size:12px; }

.lnd{ overflow:hidden; }

/* HERO */
.hero{
  position:relative;
  padding: 54px 0 26px;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(700px 420px at 30% 30%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(900px 540px at 80% 50%, rgba(255,255,255,.06), transparent 60%);
  pointer-events:none;
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}
.kicker{
  display:inline-flex;
  padding: 8px 12px;
  border:1px solid var(--stroke2);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  backdrop-filter: blur(10px);
}
.hero__h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.hero__lead{
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.45vw, 18px);
  max-width: 56ch;
}
.hero__cta{ display:flex; gap: 12px; flex-wrap:wrap; margin: 18px 0 10px; }
.hero__meta{ margin-top: 12px; }

.chips{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

/* Panel */
.hero__panel .panel{
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 18px;
}
.panel__title{ font-weight: 650; margin-bottom: 12px; }
.panel__row{
  display:flex; justify-content:space-between; gap:14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.panel__row:last-of-type{ border-bottom:none; }
.panel__label{ color: rgba(255,255,255,.62); font-size: 13px; }
.panel__value{ font-weight: 600; }
.panel__actions{ display:flex; gap:10px; margin-top: 14px; flex-wrap:wrap; }
.panel__note{ margin-top: 10px; color: rgba(255,255,255,.58); font-size: 12px; }

/* Hero image layer */
.hero__image{
  position:absolute;
  right:-120px;
  top:-80px;
  width: 720px;
  max-width: 72vw;
  opacity: .22;
  filter: saturate(1.1) contrast(1.05);
  transform: rotate(10deg);
  pointer-events:none;
}
.hero__image img{ width:100%; height:auto; display:block; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 650;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.18); }
.btn--primary{
  background: linear-gradient(135deg, rgba(98,129,255,.95), rgba(122,255,224,.62));
  border-color: rgba(255,255,255,.20);
  color: rgba(10,12,18,.92);
}
.btn--ghost{ background: rgba(255,255,255,.05); }
.btn--full{ width:100%; }
.btn--wa,.btn--tg{ background: rgba(255,255,255,.06); }

/* Sections */
.sec{ padding: 30px 0; }
.sec--soft{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sec__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap: 18px; margin-bottom: 16px;
}
.sec__head h2{
  margin:0;
  font-size: clamp(20px, 2.3vw, 28px);
  letter-spacing: -0.2px;
}
.sec__head p{ margin:0; max-width: 60ch; }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 50px rgba(0,0,0,.18);
  padding: 16px 16px 14px;
}
.card--soft{ background: rgba(255,255,255,.05); }
.card h3{ margin:0 0 8px; font-size: 17px; letter-spacing: -0.1px; }
.card p{ margin:0; }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.step{
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 14px;
  display:flex; gap: 12px;
}
.step__n{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 800;
}
.step__t{ font-weight: 700; margin-bottom: 4px; }

/* FAQ */
.faq{ display:grid; gap: 10px; }
.faq__item{
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 12px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight: 700;
  list-style:none;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__a{ margin-top: 8px; }

/* Lead */
.lead{
  border-radius: calc(var(--r2) + 2px);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lead__copy h2{ margin:0 0 8px; }
.lead__form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content:start;
}
.fld{ display:flex; flex-direction:column; gap:6px; }
.fld--full{ grid-column: 1 / -1; }
.fld span{ font-size: 13px; color: rgba(255,255,255,.66); }
input,textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,12,18,.35);
  color: rgba(255,255,255,.92);
  padding: 12px 12px;
  outline:none;
}
input:focus,textarea:focus{ border-color: rgba(122,255,224,.38); }

/* Footer */
.foot{
  padding: 26px 0 38px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.foot__row{
  display:flex; justify-content:space-between; gap: 14px;
  flex-wrap:wrap;
}
.foot__brand{ color: rgba(255,255,255,.78); font-weight: 750; letter-spacing: .2px; }
.foot__links{ display:flex; gap: 14px; color: rgba(255,255,255,.70); }

/* Responsive */
@media (max-width: 960px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__image{ right:-160px; top:-110px; width: 680px; opacity:.18; }
  .grid3{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .lead{ grid-template-columns: 1fr; }
  .lead__form{ grid-template-columns: 1fr; }
}
