:root {
  --bg: #0f172a;
  --panel: #111827;
  --panel-2: #1f2937;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --line: rgba(255,255,255,0.08);
  --brand: #f97316;
  --brand-2: #fb923c;
  --ok: #22c55e;
  --max: 1180px;
  --shadow: 0 20px 60px rgba(0,0,0,.25);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(249,115,22,.18), transparent 28%),
    linear-gradient(180deg, #0b1120 0%, #111827 100%);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11,17,32,.76);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .3px;
}
.brand-badge {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white; box-shadow: var(--shadow);
}
.menu { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.menu a { color: var(--muted); font-weight: 600; }
.menu a:hover, .menu a.active { color: white; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 18px; border-radius: 999px; font-weight: 700;
  border: 1px solid transparent; transition: .2s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: white; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-outline { border-color: var(--line); color: white; background: rgba(255,255,255,.03); }
.hero {
  padding: 84px 0 50px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center;
}
.kicker {
  display: inline-flex; gap: 10px; align-items: center;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(249,115,22,.25);
  background: rgba(249,115,22,.09); color: #fed7aa; font-size: 14px; font-weight: 700;
}
.hero h1, h1.page-title {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06;
  margin: 18px 0 16px;
}
.lead { font-size: 18px; color: #cbd5e1; max-width: 760px; }
.hero-card, .panel {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-card { padding: 28px; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 22px; }
.stat, .mini-card {
  padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.03);
}
.stat strong { display: block; font-size: 28px; }
.section { padding: 34px 0; }
.section h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.1; margin: 0 0 12px; }
.section p.section-text { max-width: 800px; color: #cbd5e1; }
.grid-3, .grid-4, .grid-2 {
  display: grid; gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.card {
  background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 22px; padding: 22px;
}
.card h3 { margin-top: 0; margin-bottom: 10px; font-size: 22px; }
.card p, .card li { color: #cbd5e1; }
.checklist { padding-left: 18px; }
.price {
  font-size: 28px; font-weight: 800; color: #fff; margin: 10px 0;
}
.tag {
  display: inline-block; font-size: 13px; font-weight: 700; color: #fed7aa;
  padding: 7px 10px; border-radius: 999px; background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.2);
}
.feature-banner {
  padding: 26px; border-radius: 26px; background:
  linear-gradient(135deg, rgba(249,115,22,.18), rgba(255,255,255,.03)); border: 1px solid var(--line);
}
.testimonial {
  border-left: 4px solid var(--brand); padding-left: 18px; color: #e2e8f0;
}
.faq-item {
  padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.03);
}
.faq-item + .faq-item { margin-top: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
label { display: block; font-weight: 700; margin-bottom: 8px; }
input, textarea, select {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(255,255,255,.03); color: white; outline: none;
}
textarea { min-height: 150px; resize: vertical; }
.table-wrap { overflow-x: auto; }
table {
  width: 100%; border-collapse: collapse; border-spacing: 0; background: rgba(255,255,255,.02);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: #fff; background: rgba(255,255,255,.05); }
.footer {
  margin-top: 46px; padding: 30px 0 60px; border-top: 1px solid var(--line); color: var(--muted);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 24px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.notice {
  padding: 18px 20px; border-radius: 18px; background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.18);
}
@media (max-width: 960px) {
  .hero-grid, .grid-4, .grid-3, .grid-2, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .menu { display: none; }
  .hero { padding-top: 52px; }
}
