:root {
  --bg: #07040f;
  --bg-soft: #120822;
  --panel: #120f1d;
  --panel-soft: #19132a;
  --line: #3d2a64;
  --text: #f3ecff;
  --muted: #b6a7d1;
  --accent: #8b4dff;
  --accent-2: #b57cff;
  --ok: #3ddfa0;
  --warn: #ffd26a;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -20%, rgba(139, 77, 255, 0.35), transparent 70%),
    radial-gradient(900px 420px at -10% 10%, rgba(181, 124, 255, 0.2), transparent 68%),
    linear-gradient(150deg, var(--bg), var(--bg-soft));
  font-family: "Space Grotesk", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.45;
}

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(7, 4, 15, 0.7);
  border-bottom: 1px solid rgba(181, 124, 255, 0.2);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  width: 32px;
  height: 24px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(181, 124, 255, 0.32));
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  border-color: rgba(181, 124, 255, 0.25);
  background: rgba(139, 77, 255, 0.12);
}

.nav-link.active {
  color: var(--text);
  border-color: rgba(181, 124, 255, 0.45);
  background: rgba(139, 77, 255, 0.2);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.lang-btn {
  border: 1px solid rgba(181, 124, 255, 0.3);
  background: rgba(255, 255, 255, 0.01);
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  cursor: pointer;
}

.lang-btn.active {
  color: var(--text);
  border-color: rgba(181, 124, 255, 0.8);
  background: rgba(139, 77, 255, 0.3);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(181, 124, 255, 0.48);
  padding: 11px 16px;
  font-weight: 600;
  cursor: pointer;
}

.cta-btn.primary {
  color: #fff;
  background: linear-gradient(120deg, #7f44f8, #a85eff);
  border-color: rgba(181, 124, 255, 0.9);
  box-shadow: 0 12px 24px rgba(127, 68, 248, 0.35);
}

.cta-btn.secondary {
  color: var(--text);
  background: rgba(139, 77, 255, 0.12);
}

.page {
  padding: 36px 0 60px;
}

.hero {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}

.panel {
  border: 1px solid rgba(181, 124, 255, 0.25);
  background: linear-gradient(165deg, rgba(24, 16, 39, 0.95), rgba(16, 12, 28, 0.95));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 26px;
}

.kicker {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 10px 0 12px;
  line-height: 1.06;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-size: 13px;
  color: #d6c8ef;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(181, 124, 255, 0.3);
  background: rgba(139, 77, 255, 0.11);
}

.widget-panel {
  padding: 18px;
}

.widget-panel h2 {
  margin: 0 0 8px;
  font-size: 1.03rem;
}

.widget-panel p {
  margin: 0;
  color: var(--muted);
}

.field {
  margin-top: 12px;
}

.field label {
  display: block;
  font-size: 13px;
  color: #d7c9ef;
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  border: 1px solid rgba(181, 124, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}

.widget-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.small-btn {
  border: 1px solid rgba(181, 124, 255, 0.42);
  background: rgba(139, 77, 255, 0.16);
  color: var(--text);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 13px;
  cursor: pointer;
}

.small-btn.primary {
  background: linear-gradient(120deg, #7f44f8, #9f58ff);
}

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

.status.ok {
  color: var(--ok);
}

.status.warn {
  color: var(--warn);
}

.hint {
  margin-top: 8px;
  font-size: 12px;
  color: #9e8cbf;
}

.section {
  margin-top: 24px;
  padding: 22px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.section-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
}

.cards-3 {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(181, 124, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  padding: 15px;
}

.card h3 {
  margin: 0 0 7px;
  font-size: 1.02rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-card {
  border: 1px solid rgba(181, 124, 255, 0.32);
  border-radius: 14px;
  background: linear-gradient(185deg, rgba(32, 20, 52, 0.7), rgba(21, 15, 33, 0.7));
  padding: 16px;
}

.plan-card h3 {
  margin: 0;
  font-size: 1rem;
}

.plan-price {
  margin-top: 9px;
  font-size: 1.45rem;
  font-weight: 700;
}

.plan-line {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.93rem;
}

.tax-note {
  margin-top: 13px;
  color: #c2b3dc;
  font-size: 0.92rem;
}

.faq-item {
  border-top: 1px solid rgba(181, 124, 255, 0.2);
  padding-top: 12px;
  margin-top: 12px;
}

.faq-item h3 {
  margin: 0 0 5px;
  font-size: 1.02rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(181, 124, 255, 0.25);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(181, 124, 255, 0.18);
}

th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d9cbf1;
  background: rgba(139, 77, 255, 0.12);
}

td {
  color: #efe8ff;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li {
  margin: 5px 0;
}

.split {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.footer {
  margin-top: 30px;
  border-top: 1px solid rgba(181, 124, 255, 0.18);
  padding: 20px 0 10px;
  color: #a997c8;
  font-size: 13px;
}

.footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards-3,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    align-items: flex-start;
    padding: 10px 0;
    flex-direction: column;
  }
  .nav {
    width: 100%;
    flex-wrap: wrap;
  }
  .lang-switch {
    width: 100%;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
