:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#475569;
  --line:#e5e7eb;
  --card:#ffffff;

  --red:#e11d48;
  --blue:#2563eb;

  --shadow: 0 14px 40px rgba(2,6,23,.08);
  --radius:18px;
  --max:1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  line-height:1.55;
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(225,29,72,.10), transparent 60%),
    var(--bg);
}

a{ color:inherit; }
.container{ max-width:var(--max); margin:0 auto; padding:0 20px; }

.topbar{
  position:sticky; top:0; z-index:20;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}

.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand__logo{
  width:40px; height:40px; border-radius:12px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  box-shadow: 0 12px 24px rgba(37,99,235,.16);
}
.brand__title{ display:block; font-size:14px; letter-spacing:.2px; }
.brand__subtitle{ display:block; font-size:12px; color:var(--muted); }

.nav{ display:flex; gap:10px; flex-wrap:wrap; }
.nav__link{
  font-size:13px;
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
}
.nav__link:hover{
  border-color:var(--line);
  background:#fff;
  color:var(--text);
}

.hero{ padding:42px 0 20px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:start;
}
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.78);
  color:var(--muted);
  font-size:13px;
}
.badge__dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  display:inline-block;
}

.h1{
  margin:14px 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.1;
  letter-spacing:-.02em;
}
.h1--small{ font-size: 28px; }

.h2{ margin:0 0 10px; font-size:18px; }
.h3{ margin:10px 0 8px; font-size:16px; }

.lead{ margin:0 0 16px; font-size:16px; color:var(--muted); }
.muted{ color:var(--muted); }

.pills{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
.pill{
  font-size:12px; color:var(--muted);
  padding:7px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.78);
}

.cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.fine{ font-size:12px; color:var(--muted); margin-top:10px; }

.card{
  background: rgba(255,255,255,.90);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form{ padding:18px; }
.field{ display:flex; flex-direction:column; gap:6px; margin:10px 0; }
label, .label{ font-size:13px; color:var(--muted); }

input{
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  font-size:14px;
}

.levels{ display:grid; gap:10px; margin:10px 0 6px; }
.level{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.level__body{ display:block; }
.level__body strong{ display:block; font-size:14px; }
.level__body small{ display:block; color:var(--muted); margin-top:2px; }
.level__price{
  margin-left:auto;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(2,6,23,.06);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(225,29,72,.12));
  white-space:nowrap;
}

.check{
  display:flex; gap:10px; align-items:flex-start;
  font-size:12px; color:var(--muted);
  margin-top:12px;
}
.check input{ margin-top:2px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
  font-size:14px;
  text-decoration:none;
  cursor:pointer;
}
.btn--primary{
  border:0;
  color:#fff;
  background: linear-gradient(135deg, var(--blue), var(--red));
  box-shadow: 0 16px 34px rgba(37,99,235,.18);
}
.btn--block{ width:100%; margin-top:14px; }

.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.note{ font-size:12px; color:var(--muted); margin-top:10px; }

.section{ padding:18px 0; }
.grid3{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 980px){
  .grid3{ grid-template-columns:1fr; }
}
.feature{ padding:16px; }
.icon{
  width:42px; height:42px; border-radius:14px;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(225,29,72,.12));
  border:1px solid rgba(2,6,23,.06);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
}

.longtext{ padding:18px; }
.bullets{ margin:10px 0 0 18px; color:var(--muted); }
.bullets li{ margin:6px 0; }
.divider{ height:1px; background:var(--line); margin:16px 0; }

.page{ padding:28px 0 46px; }
.pagecard{ padding:18px; }
.list{ color:var(--muted); margin:10px 0 0 18px; }
.list li{ margin:8px 0; }
.back{ margin-top:14px; }

.stack{ display:grid; gap:12px; margin-top:12px; }
.innercard{ padding:14px; box-shadow:none; background:#fff; }

.footer{
  border-top:1px solid var(--line);
  margin-top:36px;
  padding:18px 0 26px;
  color:var(--muted);
  font-size:12px;
}
.footer__grid{
  display:grid; gap:14px;
  grid-template-columns: 1.4fr 1fr;
}
@media (max-width: 980px){
  .footer__grid{ grid-template-columns:1fr; }
}
.footer__title{ color:var(--text); font-weight:800; margin-bottom:8px; }
.footer__text{ line-height:1.6; }
.footer__links a{ color:var(--muted); text-decoration:none; }
.footer__links a:hover{ text-decoration:underline; }

.disclaimer{ margin-top:10px; font-size:11px; color:var(--muted); }
