:root {
  --bg: #07101e;
  --bg-deep: #040913;
  --surface: rgba(16, 28, 48, 0.72);
  --surface-muted: rgba(13, 23, 41, 0.72);
  --text: #eaf1ff;
  --muted: #9cb0d3;
  --line: rgba(167, 190, 232, 0.24);
  --brand: #4a8dff;
  --brand-2: #35d6ff;
  --accent: #2ce6b0;
  --warning: #ffb04b;
  --glass-bg: rgba(17, 28, 48, 0.62);
  --glass-bg-strong: rgba(14, 23, 40, 0.82);
  --glass-highlight: rgba(186, 209, 255, 0.2);
  --radius-xl: 28px;
  --radius: 18px;
  --shadow: 0 26px 60px rgba(2, 8, 18, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(42rem 42rem at 6% -8%, rgba(39, 93, 197, 0.35), transparent 65%),
    radial-gradient(40rem 40rem at 100% 4%, rgba(17, 165, 211, 0.26), transparent 60%),
    radial-gradient(40rem 40rem at 50% 100%, rgba(35, 66, 124, 0.26), transparent 62%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(160, 190, 245, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 190, 245, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 20%, #000 15%, transparent 75%);
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: radial-gradient(34rem 34rem at 20% 10%, rgba(79, 127, 243, 0.12), transparent 65%),
    radial-gradient(30rem 30rem at 80% 80%, rgba(44, 230, 176, 0.09), transparent 65%);
  animation: ambientShift 12s ease-in-out infinite alternate;
}

@keyframes ambientShift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -12px, 0) scale(1.04);
  }
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.grid {
  display: grid;
  gap: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 14, 27, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.logo-text {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.3rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

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

.btn::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -120%;
  width: 70%;
  height: 380%;
  transform: rotate(24deg);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.24), transparent);
  transition: left 0.45s ease;
}

.btn:hover::after {
  left: 150%;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(59, 129, 255, 0.45);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(23, 37, 62, 0.72);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(150, 187, 255, 0.55);
  background: rgba(31, 49, 81, 0.85);
}

.page {
  overflow: hidden;
}

.section {
  padding: 5.2rem 0;
}

.section-tight {
  padding: 3.2rem 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.74rem;
  font-weight: 800;
  color: #8fb9ff;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.15;
}

h1,
h2 {
  font-family: "Sora", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4.7vw, 4.4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  margin-bottom: 0.8rem;
}

p {
  margin: 0;
}

.section p + p {
  margin-top: 0.7rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero {
  padding-top: 4.6rem;
}

.hero h1 {
  text-wrap: balance;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.hero-grid > *,
.split > * {
  min-width: 0;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.kpi-row {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kpi-row li {
  border: 1px solid var(--line);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 0.8rem;
}

.kpi-row strong {
  font-family: "Sora", sans-serif;
  font-size: 1.34rem;
  display: block;
}

.kpi-row span {
  font-size: 0.87rem;
  color: var(--muted);
}

.dashboard-card {
  background: linear-gradient(155deg, rgba(11, 24, 45, 0.95), rgba(20, 48, 92, 0.95) 55%, rgba(15, 96, 160, 0.9));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  color: #fff;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 36px rgba(1, 8, 20, 0.6);
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -30% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(15, 211, 155, 0.45), transparent 70%);
}

.panel {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.panel + .panel {
  margin-top: 0.9rem;
}

.panel small {
  display: block;
  opacity: 0.8;
}

.panel strong {
  font-size: 1.4rem;
  font-family: "Sora", sans-serif;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.77rem;
  font-weight: 700;
  background: rgba(44, 230, 176, 0.16);
  color: #ccfff0;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 18, 33, 0.68);
  backdrop-filter: blur(8px);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.marquee-item {
  font-weight: 700;
  color: #c6dcff;
  padding: 1rem 1.5rem;
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.3rem;
  background: linear-gradient(165deg, rgba(20, 34, 58, 0.78), rgba(13, 24, 42, 0.74));
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 24px rgba(2, 9, 21, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card h3 {
  margin-bottom: 0.6rem;
}

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(2, 9, 21, 0.48);
  border-color: rgba(149, 190, 255, 0.52);
}

.cards-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card-showcase {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  background: linear-gradient(165deg, rgba(20, 34, 58, 0.78), rgba(13, 24, 42, 0.74));
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 24px rgba(2, 9, 21, 0.35);
}

.cards-showcase .card-showcase:last-child {
  grid-column: span 2;
}

.zuno-card {
  position: relative;
  border-radius: 18px;
  min-height: 190px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 28px rgba(3, 10, 24, 0.45);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  transform-style: preserve-3d;
}

.zuno-card::before {
  content: "";
  position: absolute;
  inset: -45% -10% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.24), transparent 70%);
}

.zuno-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-140%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.zuno-card:hover {
  transform: perspective(900px) rotateX(5deg) rotateY(-5deg) translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 22px 34px rgba(3, 10, 24, 0.52);
}

.zuno-card:hover::after {
  transform: translateX(140%);
}

.zuno-card-top,
.zuno-card-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zuno-chip {
  width: 34px;
  height: 24px;
  border-radius: 7px;
  background: linear-gradient(145deg, #e8edf7, #9da9bf);
}

.zuno-network {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.zuno-card-brand {
  position: relative;
  z-index: 1;
}

.zuno-card-brand span {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.zuno-card-brand small {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.zuno-card-number {
  position: relative;
  z-index: 1;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.zuno-basic {
  background: linear-gradient(145deg, #2f4f7f, #15263f 52%, #0e1b32);
}

.zuno-premium {
  background: linear-gradient(145deg, #1771a7, #0f3c63 52%, #0c1f36);
}

.zuno-premium-plus {
  background: linear-gradient(145deg, #1f6d62, #15473f 52%, #0d2621);
}

.zuno-prestige {
  background: linear-gradient(145deg, #5a4a2b, #342910 52%, #171007);
}

.zuno-black-gold {
  color: #f7e9bb;
  background: linear-gradient(150deg, #171717, #090909 56%, #15110a);
  border-color: rgba(219, 180, 91, 0.55);
}

.zuno-black-gold .zuno-chip {
  background: linear-gradient(145deg, #f3d98d, #be8d2c);
}

.zuno-black-gold .zuno-network {
  color: #f5d783;
}

.zuno-card.compact {
  min-height: 145px;
  border-radius: 14px;
  padding: 0.78rem;
  margin: 0.35rem 0 0.5rem;
}

.zuno-card.compact .zuno-chip {
  width: 26px;
  height: 18px;
}

.zuno-card.compact .zuno-card-brand span {
  font-size: 0.9rem;
}

.zuno-card.compact .zuno-card-brand small {
  font-size: 0.64rem;
}

.zuno-card.compact .zuno-card-number {
  font-size: 0.78rem;
}

.zuno-card.compact .zuno-network,
.zuno-card.compact .zuno-card-meta {
  font-size: 0.62rem;
}

.zuno-card-tag {
  position: absolute;
  top: 0.56rem;
  right: 0.56rem;
  z-index: 2;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.18rem 0.34rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.highlight {
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(12, 24, 44, 0.95), rgba(10, 37, 72, 0.9) 55%, rgba(10, 74, 126, 0.88));
  color: #fff;
  backdrop-filter: blur(10px);
}

.check-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
}

.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.62rem;
  background: var(--accent);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(20, 34, 58, 0.78), rgba(13, 24, 42, 0.74));
  backdrop-filter: blur(10px);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card.featured {
  border-color: rgba(119, 179, 255, 0.8);
  box-shadow: 0 20px 36px rgba(48, 112, 230, 0.4);
  transform: translateY(-6px);
}

.price-card .btn {
  margin-top: auto;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px rgba(2, 9, 21, 0.5);
}

.price {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  margin: 0.7rem 0;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.list li {
  padding: 0.36rem 0;
  color: var(--text);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(12, 22, 40, 0.82);
  border: 1px solid var(--line);
  table-layout: fixed;
}

.compare th,
.compare td {
  text-align: left;
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.compare th {
  background: rgba(23, 38, 65, 0.9);
  font-weight: 700;
}

.compare tbody tr {
  transition: background-color 0.2s ease;
}

.compare tbody tr:hover {
  background: rgba(55, 93, 157, 0.2);
}

.faq {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12, 22, 40, 0.82);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.faq[open] {
  border-color: rgba(140, 188, 255, 0.5);
  box-shadow: 0 10px 20px rgba(3, 11, 26, 0.35);
}

.faq + .faq {
  margin-top: 0.8rem;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem;
  font-weight: 700;
}

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

.faq p {
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.cta-banner {
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: linear-gradient(130deg, rgba(8, 24, 48, 0.95), rgba(8, 52, 104, 0.9) 48%, rgba(14, 108, 172, 0.86));
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 1rem;
  align-items: center;
}

.cta-banner h2 {
  margin-bottom: 0.35rem;
}

.section-head {
  margin-bottom: 1.3rem;
}

.section-head .lead {
  max-width: 70ch;
}

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

.step {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 1.2rem;
  background: linear-gradient(165deg, rgba(20, 34, 58, 0.8), rgba(13, 24, 42, 0.72));
  backdrop-filter: blur(10px);
}

.step-index {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.spotlight {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.6rem;
  background: radial-gradient(circle at 100% 0%, rgba(96, 164, 255, 0.2) 0%, transparent 45%),
    linear-gradient(165deg, rgba(20, 34, 58, 0.8), rgba(13, 24, 42, 0.72));
  backdrop-filter: blur(10px);
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.logo-chip {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: #cfe1ff;
  background: rgba(16, 28, 49, 0.7);
  backdrop-filter: blur(8px);
}

.form {
  background: rgba(12, 22, 40, 0.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.4rem;
  backdrop-filter: blur(10px);
}

label {
  font-size: 0.86rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  color: var(--text);
  background: rgba(9, 17, 31, 0.8);
  border: 1px solid rgba(150, 181, 228, 0.35);
  margin-bottom: 0.85rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(74, 141, 255, 0.2);
  border-color: #7baeff;
}

.form-message {
  margin-top: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.form-message.success {
  color: #0f8c67;
}

.form-message.error {
  color: #b12f2f;
}

.site-footer {
  background: linear-gradient(180deg, rgba(6, 12, 24, 0.92), rgba(4, 9, 18, 0.96));
  color: #b9cceb;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.footer-title {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.55rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.38rem;
}

.footer-links a {
  text-decoration: none;
  color: #c7d6ef;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(123, 145, 177, 0.35);
  font-size: 0.85rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floaty {
  animation: float 5.2s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.pill-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #c8dcff;
  background: rgba(16, 28, 49, 0.7);
  backdrop-filter: blur(8px);
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.62rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

.metric:last-child {
  border-bottom: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 90;
  background: transparent;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--accent));
  box-shadow: 0 0 18px rgba(53, 214, 255, 0.72);
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .footer-grid,
  .cta-banner,
  .cards-showcase,
  .card-grid,
  .price-grid,
  .steps-grid,
  .logo-cloud {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .cards-showcase .card-showcase:last-child {
    grid-column: auto;
  }

  .kpi-row {
    grid-template-columns: 1fr;
  }

  .compare th,
  .compare td {
    padding: 0.72rem;
    font-size: 0.92rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 4vw 1.2rem;
    background: rgba(7, 14, 27, 0.97);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .main-nav a::after {
    bottom: -4px;
  }

  .main-nav.open {
    display: flex;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 4.2rem 0;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .scroll-progress {
    height: 2px;
  }

  .kpi-row li,
  .card,
  .price-card,
  .highlight,
  .dashboard-card {
    border-radius: 16px;
  }
}

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

  .marquee-track {
    animation: none !important;
  }
}
