:root {
  --bg0: #070a12;
  --bg1: #0b1220;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.04);
  --stroke: rgba(148, 163, 184, 0.22);
  --text: #e7eefc;
  --muted: rgba(231, 238, 252, 0.72);
  --primary: #2d6cdf;
  --primary2: #7c3aed;
  --shadow: 0 14px 50px rgba(0, 0, 0, 0.45);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  color-scheme: dark;
  background: radial-gradient(1200px 600px at 15% 10%, rgba(45, 108, 223, 0.22), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(124, 58, 237, 0.18), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(700px 260px at 12% 15%, rgba(45, 108, 223, 0.22), transparent 60%),
    radial-gradient(520px 240px at 82% 22%, rgba(124, 58, 237, 0.18), transparent 60%),
    radial-gradient(520px 240px at 58% 82%, rgba(56, 189, 248, 0.10), transparent 60%);
  filter: blur(2px);
  opacity: 0.9;
  animation: aurora 16s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.045;
  mix-blend-mode: overlay;
}

@keyframes aurora {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.5%, -1%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(-1.2%, 1.4%, 0) scale(1.05);
  }
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.muted {
  color: var(--muted);
}

.tiny {
  font-size: 12px;
}

.pager {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin: 8px 0 12px;
}

.pager > div {
  flex: 1;
  text-align: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(7, 10, 18, 0.6);
  border-bottom: 1px solid var(--stroke);
}

.promo-banner {
  width: 100%;
  background: rgba(245, 158, 11, 0.16);
  border-bottom: 1px solid rgba(245, 158, 11, 0.26);
  color: rgba(255, 236, 203, 0.95);
  font-weight: 650;
}

.promo-banner .container {
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 0 0 4px rgba(45, 108, 223, 0.18);
}

.brand-name {
  font-weight: 650;
  letter-spacing: 0.2px;
}

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

.nav-link {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.section {
  padding: 54px 0;
}

.section-head {
  margin-bottom: 18px;
}

.page-title {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.4px;
}

.hero {
  position: relative;
  padding: 56px 0 28px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 13px;
}

.hero-title {
  margin: 14px 0 8px;
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: -0.8px;
}

.hero-sub {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  max-width: 56ch;
}

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

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.badge {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 10px 12px;
}

.badge-title {
  font-weight: 600;
  font-size: 13px;
}

.badge-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.hero-card {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-card-top {
  margin-bottom: 12px;
}

.hero-card-title {
  font-weight: 700;
  font-size: 16px;
}

.hero-card-sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.hero-card-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 14px;
}

.hero-glow {
  position: absolute;
  inset: -120px -120px auto -120px;
  height: 420px;
  background: radial-gradient(closest-side at 50% 50%, rgba(45, 108, 223, 0.24), transparent 66%);
  pointer-events: none;
  filter: blur(10px);
}

.card {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 16px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 108, 223, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.card-title {
  margin: 0 0 10px;
  font-size: 18px;
}

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

.feature {
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.feature h3 {
  margin: 10px 0 6px;
  font-size: 16px;
}

.feature p {
  margin: 0;
  line-height: 1.45;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: rgba(231, 238, 252, 0.86);
}

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

.price {
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.price.highlight {
  border-color: rgba(45, 108, 223, 0.55);
  box-shadow: 0 18px 70px rgba(45, 108, 223, 0.12);
}

.price-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.price-title {
  font-weight: 600;
  color: var(--muted);
  font-size: 13px;
}

.price-value {
  font-size: 34px;
  margin-top: 6px;
  letter-spacing: -0.3px;
}

.tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  white-space: nowrap;
}

.tag.primary {
  border-color: rgba(45, 108, 223, 0.55);
  background: rgba(45, 108, 223, 0.14);
  color: rgba(231, 238, 252, 0.92);
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 14px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: center;
}

.check-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 0 0 4px rgba(45, 108, 223, 0.14);
  flex: 0 0 auto;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 108, 223, 0.42);
  background: radial-gradient(500px 220px at 10% 0%, rgba(45, 108, 223, 0.24), transparent 55%),
    radial-gradient(420px 200px at 85% 0%, rgba(124, 58, 237, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.04);
}

.cta-title {
  margin: 0 0 6px;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-body {
  margin-top: 10px;
  line-height: 1.5;
}

.tutorial-body {
  font-size: 13px;
  line-height: 1.55;
  word-break: break-word;
}

.tutorial-accordion {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  max-height: 520px;
  overflow: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(45, 108, 223, 0.65) rgba(255, 255, 255, 0.06);
}

.tutorial-accordion::-webkit-scrollbar {
  width: 10px;
}

.tutorial-accordion::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.tutorial-accordion::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(45, 108, 223, 0.85), rgba(124, 58, 237, 0.75));
  border-radius: 999px;
  border: 2px solid rgba(7, 10, 18, 0.65);
}

.tutorial-accordion::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(45, 108, 223, 0.95), rgba(124, 58, 237, 0.85));
}

.tutorial-acc-item {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.tutorial-acc-head {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 650;
}

.tutorial-acc-head:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tutorial-acc-head::after {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  transition: transform 180ms ease;
}

.tutorial-acc-item.open .tutorial-acc-head::after {
  transform: rotate(180deg);
}

.tutorial-acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 220ms ease;
}

.tutorial-acc-inner {
  padding: 0 14px 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.footer {
  border-top: 1px solid var(--stroke);
  background: rgba(7, 10, 18, 0.5);
  padding: 18px 0;
}

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

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

.link {
  color: var(--muted);
  text-decoration: none;
}

.link:hover {
  color: var(--text);
}

.form {
  display: grid;
  gap: 10px;
}

.label {
  font-size: 13px;
  color: var(--muted);
}

.input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  outline: none;
}

.input:focus {
  border-color: rgba(45, 108, 223, 0.75);
  box-shadow: 0 0 0 4px rgba(45, 108, 223, 0.16);
}

select.input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
}

select.input option {
  background: #0b1220;
  color: #e7eefc;
}

select.input option:checked {
  background: rgba(45, 108, 223, 0.45);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

.button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button.primary {
  border-color: rgba(45, 108, 223, 0.7);
  background: linear-gradient(135deg, rgba(45, 108, 223, 0.95), rgba(124, 58, 237, 0.85));
}

.button.primary:hover {
  filter: brightness(1.03);
}

.button.secondary {
  border-color: rgba(124, 58, 237, 0.7);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(45, 108, 223, 0.85));
}

.button.secondary:hover {
  filter: brightness(1.03);
}

.button.whatsapp {
  border-color: rgba(34, 197, 94, 0.65);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(16, 185, 129, 0.85));
  color: #f0fdf4;
}

.button.whatsapp:hover {
  filter: brightness(1.03);
}

.button.ghost {
  background: transparent;
}

.button.small {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
}

.block {
  width: 100%;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.support-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}

.support-fab button {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(45, 108, 223, 0.5);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.support-fab button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.support-fab .fab-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(34, 197, 94, 0.75);
  background: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
}

.phone-wrap {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  align-items: center;
}

.phone-prefix {
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  user-select: none;
}

.phone-flag {
  font-size: 16px;
  line-height: 1;
}

.phone-ddi {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.phone-input {
  width: 100%;
}

.status {
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.22);
}

.status.success {
  border-color: rgba(16, 185, 129, 0.55);
  background: rgba(16, 185, 129, 0.12);
}

.status.error {
  border-color: rgba(244, 63, 94, 0.55);
  background: rgba(244, 63, 94, 0.12);
}

.status.info {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.1);
}

.wa-banner {
  margin-top: 0;
  margin-bottom: 14px;
}

.admin-health {
  margin-bottom: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.admin-health-title {
  font-weight: 650;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

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

.admin-health-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.admin-health-status {
  margin-top: 0;
}

@media (max-width: 720px) {
  .admin-health-grid {
    grid-template-columns: 1fr;
  }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.modal {
  width: 100%;
  max-width: 420px;
  padding: 18px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.pin-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pin-input {
  text-align: center;
  font-size: 22px;
  padding: 12px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  align-items: start;
}

.divider {
  height: 1px;
  background: var(--stroke);
  margin: 14px 0;
}

.mini-pricing {
  display: grid;
  gap: 10px;
}

.client-kpis {
  grid-template-columns: repeat(3, 1fr);
}

.mini-price {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.mini-price.highlight {
  border-color: rgba(45, 108, 223, 0.55);
  background: linear-gradient(180deg, rgba(45, 108, 223, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}

.mini-title {
  color: var(--muted);
  font-size: 13px;
}

.mini-value {
  font-size: 22px;
  margin-top: 6px;
}

.steps {
  display: grid;
  gap: 10px;
}

.step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
}

.step-n {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

.step-t {
  font-weight: 600;
}

.qr {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
}

.qr img {
  max-width: 320px;
  width: 100%;
  border-radius: 12px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card.inner {
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.card.inner:hover {
  transform: none;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.content-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  max-height: 430px;
  overflow: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(45, 108, 223, 0.65) rgba(255, 255, 255, 0.06);
}

.content-list::-webkit-scrollbar {
  width: 10px;
}

.content-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.content-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(45, 108, 223, 0.85), rgba(124, 58, 237, 0.75));
  border-radius: 999px;
  border: 2px solid rgba(7, 10, 18, 0.65);
}

.content-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(45, 108, 223, 0.95), rgba(124, 58, 237, 0.85));
}

.content-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: background 160ms ease, border-color 160ms ease;
}

.content-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(45, 108, 223, 0.35);
}

.content-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
}

.content-name {
  font-weight: 650;
}

.content-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.content-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(45, 108, 223, 0.42);
  background: rgba(45, 108, 223, 0.12);
  color: rgba(231, 238, 252, 0.92);
  font-size: 11px;
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skeleton {
  display: grid;
  gap: 10px;
}

.skeleton-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.tabs {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.18);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}

.tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.tab.active {
  color: var(--text);
  border-color: rgba(45, 108, 223, 0.5);
  background: rgba(45, 108, 223, 0.14);
}

.tab-content {
  min-height: 80px;
}

.acc {
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.18);
  padding: 12px;
  margin-bottom: 12px;
}

.acc[open] {
  background: rgba(0, 0, 0, 0.22);
}

.acc-head {
  cursor: pointer;
  user-select: none;
  font-weight: 650;
  color: rgba(231, 238, 252, 0.92);
  padding: 4px 2px;
}

.acc > summary {
  list-style: none;
}

.acc > summary::-webkit-details-marker {
  display: none;
}

.row {
  display: flex;
  gap: 12px;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.field {
  flex: 1 1 320px;
  min-width: 240px;
}

.table-wrap {
  width: 100%;
  overflow: auto;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.18);
}

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

.table th,
.table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  text-align: left;
  font-size: 13px;
}

.table th {
  position: sticky;
  top: 0;
  background: rgba(7, 10, 18, 0.92);
  backdrop-filter: blur(10px);
  color: rgba(231, 238, 252, 0.92);
  font-weight: 650;
  letter-spacing: 0.2px;
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.tab {
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.tab.active {
  background: rgba(45, 108, 223, 0.15) !important;
  border-color: rgba(45, 108, 223, 0.6) !important;
  color: #fff !important;
}

@media (max-width: 980px) {
  .client-kpis { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-list { max-height: 320px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 40px; }
  .hero-badges { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .nav-link { display: none; }
  .table { min-width: 680px; }
}
