:root {
  --bg: #0a0d12;
  --bg-alt: #0f141b;
  --panel: #131a23;
  --border: #1f2937;
  --text: #e6edf3;
  --muted: #93a1b1;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --green: #34d399;
  --amber: #fbbf24;
  --red: #f87171;
  --radius: 14px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 12px; letter-spacing: -0.02em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(10, 13, 18, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.brand-accent { color: var(--accent); }

.brand-mark {
  width: 26px;
  height: 26px;
  fill: var(--accent-soft);
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-check { fill: none; }

.site-nav {
  display: flex;
  gap: 22px;
  margin-inline-start: auto;
  font-size: 15px;
  color: var(--muted);
}

.site-nav a:hover { color: var(--text); }

.lang-menu { position: relative; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  padding: 7px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.lang-toggle:hover { border-color: var(--accent); }

.icon-globe, .icon-chevron {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-globe { color: var(--accent); }
.icon-chevron { color: var(--muted); transition: transform 0.18s ease; }
.lang-toggle[aria-expanded="true"] .icon-chevron { transform: rotate(180deg); }

.lang-list {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 10px);
  min-width: 170px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  z-index: 40;
  animation: menu-in 0.14s ease-out;
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  padding: 9px 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: start;
  cursor: pointer;
}

.lang-list button:hover { background: rgba(255, 255, 255, 0.05); color: var(--text); }

.lang-list button.active { color: var(--accent); background: var(--accent-soft); }
.lang-list button.active::after { content: "✓"; font-size: 13px; }

.hero-glow {
  position: absolute;
  inset-inline-start: 50%;
  top: -180px;
  width: 900px;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(249, 115, 22, 0.16), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

main { position: relative; overflow-x: clip; }

.hero {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 28px 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 { font-size: clamp(32px, 4.4vw, 52px); }

.lead { color: var(--muted); font-size: 18px; max-width: 46ch; }

.cta-row { display: flex; gap: 12px; margin: 26px 0 30px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

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

.btn-primary { background: var(--accent); color: #0a0d12; }
.btn-primary:hover { background: #fb8c3c; }

.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-block { display: block; text-align: center; }

.hero-facts {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { font-size: 22px; color: var(--accent); }
.hero-facts span { color: var(--muted); font-size: 14px; }

.hero-panel {
  background: linear-gradient(180deg, #141b25, #10161e);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #0e141c;
}

.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.red { background: var(--red); }
.dot.amber { background: var(--amber); }
.dot.green { background: var(--green); }

.panel-title { margin-inline-start: 8px; color: var(--muted); font-size: 13px; }

.report-list {
  list-style: none;
  margin: 0;
  padding: 8px 20px;
}

.report-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.report-list li:last-child { border-bottom: 0; }

.report-list em {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.report-list .ok { color: var(--green); }
.report-list .warn { color: var(--amber); }

.report-foot {
  margin: 0;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.panel-body {
  margin: 0;
  padding: 20px;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13.5px;
  line-height: 1.75;
  color: #cbd5e1;
  overflow-x: auto;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 28px;
}

.section-alt {
  max-width: none;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section h2 { font-size: clamp(26px, 3vw, 36px); }

.section-lead { color: var(--muted); margin: 0 0 40px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
  background-color: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  border-color: rgba(249, 115, 22, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--accent-soft);
  margin-bottom: 16px;
}

.card-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 { font-size: 18px; }
.card p { color: var(--muted); margin: 0; font-size: 15px; }

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.steps li {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.steps h3 { font-size: 17px; }
.steps p { color: var(--muted); margin: 0; font-size: 15px; }

.price-card {
  max-width: 460px;
  background: var(--panel);
  border: 1px solid var(--accent);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.08);
}

.price-name { color: var(--muted); font-weight: 600; }

.price-amount {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 6px 0 22px;
}

.price-amount span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.price-list { list-style: none; padding: 0; margin: 0 0 26px; }

.price-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 15px;
}

.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.contact-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-item span { color: var(--muted); font-size: 14px; }
.contact-item strong { font-size: 17px; }
a.contact-item:hover { border-color: var(--accent); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .site-nav { display: none; }
  .lang-menu { margin-inline-start: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
