@charset "UTF-8";
:root {
  --bg: #0a0a0f;
  --fg: #f0f0f0;
  --fg-off: #f6efe5;
  --fg-muted: #9a9a9a;
  --fg-micro: #6a6a6a;
  --fg-dim: #2a2a2a;
  --accent: #6b46c0;
  --accent-vibrant: #7c3aed;
  --accent-deep: #4c1d95;
  --black: #0a0a0a;
  --accent-soft: rgba(107, 70, 192, 0.15);
  --accent-glow: rgba(107, 70, 192, 0.3);
  --accent-glow-strong: rgba(107, 70, 192, 0.55);
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  --font-sans: 'Fellix', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'PP Supply Sans', 'SF Mono', monospace;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --spacing-xs: 10px;
  --spacing-s: clamp(20px, 3vw, 60px);
  --spacing-base: 15px;
  --spacing-m: clamp(40px, 6vw, 100px);
  --spacing-l: clamp(60px, 10vw, 160px);
  --spacing-xl: clamp(80px, 15vw, 240px);
  --radius: 0.5rem;
}

/* ========================================
   FONTS
======================================== */
@font-face {
  font-family: "Fellix";
  src: url("../fonts/Fellix-Regular.10723e27be45.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fellix";
  src: url("../fonts/Fellix-Medium.9dab6dfff0ad.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Supply Sans";
  src: url("../fonts/PPSupplySans-Regular.420ae3ffd384.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: #0a0a0f;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

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

img {
  border-radius: var(--radius);
}

.main-wrapper {
  padding-left: var(--spacing-s);
  padding-right: var(--spacing-s);
  position: relative;
}

/* ========================================
   TYPOGRAPHY
======================================== */
.display {
  font-family: var(--font-sans);
  font-size: clamp(3rem, 6vw, 8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.4vw;
}

.heading-2 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06rem;
  color: var(--fg);
}

.heading-3 {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.1rem;
  color: var(--fg);
}

.heading-4 {
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2vw, 2.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.1rem;
}

.heading-5 {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04rem;
}

.body-large {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02rem;
}

.body-medium {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--fg-muted);
}

.subheading {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  line-height: 1;
  color: var(--fg-micro);
}

.subheading.is-white {
  color: var(--fg-off);
}

.micro-text {
  font-family: var(--font-mono);
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-size: 0.6rem;
  line-height: 1.2;
  color: var(--fg-micro);
}

.center-align {
  text-align: center;
}

.gradient-text {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #898989, #494949);
  -webkit-background-clip: text;
  background-clip: text;
}

.micro {
  color: var(--fg-micro);
}

/* ========================================
   DASHED DIVIDER
======================================== */
.dashed-divider {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--accent-glow);
}

/* ========================================
   ANIMATION INITIAL STATES
======================================== */
.anim-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.anim-number {
  transform: translateY(100%);
  display: block;
}

.anim-word {
  opacity: 0;
  transform: translateY(30px);
}

.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.02);
  }
}
.float-anim {
  animation: float-slow 6s ease-in-out infinite;
}

/* ========================================
   SCROLLBAR
======================================== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--fg-dim);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ========================================
   PRELOADER
======================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-expo), visibility 0.8s;
}

#preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.preloader-logo {
  animation: pulse-glow 2s ease-in-out infinite;
}

.preloader-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--fg-muted);
}

.preloader-bar-track {
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--fg);
  transition: width 0.3s ease;
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 8px var(--accent-glow));
    opacity: 0.7;
  }
  50% {
    filter: drop-shadow(0 0 20px var(--accent-glow-strong));
    opacity: 1;
  }
}
/* ========================================
   PERIMETER GLOW
======================================== */
.perimeter-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  box-shadow: inset 0 0 120px 40px rgba(107, 70, 192, 0.06), inset 0 0 60px 20px rgba(107, 70, 192, 0.04);
  opacity: 0;
  transition: opacity 1.5s;
}

body:not(.is-loading) .perimeter-glow {
  opacity: 1;
}

/* ========================================
   NAVIGATION
======================================== */
nav#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem var(--spacing-s);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.3s;
}

.nav-logo:hover .logo-text {
  color: var(--fg);
}

.nav-center {
  display: flex;
  gap: 2.5rem;
}

.nav-item {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-full {
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}

.nav-item:hover .nav-abbr {
  opacity: 0;
}

.nav-item:hover .nav-full {
  opacity: 1;
  transform: translateY(0);
}

.nav-item:hover {
  color: var(--fg);
}

.btn-cta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  background: transparent;
  backdrop-filter: blur(10px);
}

.btn-cta:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 25px var(--accent-glow), inset 0 0 25px rgba(107, 70, 192, 0.05);
}

.btn-glow-ring {
  position: absolute;
  inset: -1px;
  opacity: 0;
  transition: opacity 0.4s;
  box-shadow: 0 0 15px var(--accent-glow);
}

.btn-cta:hover .btn-glow-ring {
  opacity: 1;
}

/* ========================================
   NAV BACKGROUND ON SCROLL (Applied via JS)
======================================== */
nav#main-nav.scrolled {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ========================================
   MOBILE MENU TOGGLE
======================================== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1100;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--fg);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s, width 0.35s;
  transform-origin: center;
}
.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ========================================
   MOBILE NAV OVERLAY
======================================== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 6rem var(--spacing-s) var(--spacing-m);
}
.mobile-nav-overlay.is-open {
  display: flex;
}

.mobile-nav-item {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 5vw, 2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav-item:hover {
  color: var(--fg);
}
.mobile-nav-item.is-active {
  color: var(--accent);
}

.mobile-nav-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}
.mobile-nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* ========================================
   SECTION LABELS
======================================== */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  margin-bottom: var(--spacing-base);
}

.section-label.is-industry,
.section-label.is-manifesto {
  justify-content: center;
}

.section-label .label-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 4px;
}

.section-label .label-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}

/* ========================================
   LAYOUT GRIDS & FLEX CONTAINERS
======================================== */
.global-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--spacing-base);
  width: 100%;
}

.intro-flex {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-l);
  margin-top: var(--spacing-xl);
}

.intro-body-grid {
  display: flex;
  gap: var(--spacing-xl);
}

.intro-col {
  flex: 1;
}

.medium-flex {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-base);
}

.small-flex {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
  height: 100.5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: calc(var(--spacing-s) * -1);
  margin-right: calc(var(--spacing-s) * -1);
  width: calc(100% + var(--spacing-s) * 2);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: var(--spacing-base);
  flex: 1;
  justify-content: center;
  padding-top: 8%;
}

.hero-subheading {
  color: var(--fg-muted);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 80%;
  text-align: center;
  font-weight: 500;
  /* Slightly bolder for premium feel */
}

.title-line {
  display: block;
  overflow: hidden;
  padding: 0.1em 0;
}
.title-line:last-child {
  background: linear-gradient(135deg, var(--accent) 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bottom {
  position: absolute;
  bottom: var(--spacing-m);
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.nav-bar-inline {
  display: flex;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.nav-button {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.nav-button:hover {
  color: var(--fg);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-s);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-100%);
  animation: scroll-down 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scroll-down {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
/* ========================================
   ANIMATIONS & MIXINS
======================================== */
@keyframes border-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ========================================
   INTRO / VISION
======================================== */
.intro-section {
  padding: var(--spacing-xl) 0 var(--spacing-l);
  position: relative;
  display: flex;
  flex-direction: column;
}

.intro-title-contain {
  grid-column: 2/12;
}

/* ========================================
   PROTECTION / OPPORTUNITIES
======================================== */
.protection-section {
  padding: var(--spacing-l) 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.protection-inner {
  display: flex;
  gap: var(--spacing-l);
  align-items: center;
  margin-top: var(--spacing-l);
}

/* ========================================
   INDUSTRY / PIONEERS
======================================== */
.industry-section {
  padding: var(--spacing-xl) 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: calc(var(--spacing-s) * -1);
  margin-right: calc(var(--spacing-s) * -1);
  width: calc(100% + var(--spacing-s) * 2);
}

.section-intro {
  max-width: 800px;
  margin: 0 auto var(--spacing-l);
  position: relative;
  z-index: 10;
}

.industry-words-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  align-items: center;
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: var(--spacing-l);
}

.industry-word {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.05em;
  color: var(--fg-muted);
  transition: color 0.4s ease, transform 0.4s ease;
  cursor: default;
}

.industry-word:hover {
  color: var(--fg);
  transform: scale(1.05);
}

/* ========================================
   STATS SECTION
======================================== */
.stats-section {
  padding: var(--spacing-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.content-wrapper.center-content {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-l);
}

.stat-left,
.stat-right {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
}

.stat-right {
  align-items: flex-end;
  text-align: right;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  position: relative;
}

.stat-number-circle-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  pointer-events: none;
  z-index: -1;
}

.stat-circle-bg,
.stat-circle-fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat-circle-bg circle {
  stroke: rgba(255, 255, 255, 0.06) !important;
}

.stat-circle-fg circle {
  stroke: var(--accent) !important;
  stroke-width: 1 !important;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: var(--fg);
}

.stat-suffix {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2vw, 2rem);
  color: var(--accent);
  margin-left: 0.5rem;
}

.stat-descriptor {
  max-width: 280px;
}

/* ========================================
   PROCESS SECTION
======================================== */
.process-section {
  padding: var(--spacing-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.process-title-contain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.subtitle-text {
  color: var(--fg-muted);
}

.robot-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
}

.step-row {
  display: flex;
  gap: var(--spacing-m);
}

.step-row > .dashed-divider {
  flex: 0 0 1px;
  width: 1px !important;
  height: auto;
  border-bottom: none;
  border-right: 1px dashed var(--fg-dim);
  align-self: stretch;
}

.step-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.step-item::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, transparent 15%, var(--accent-vibrant) 50%, transparent 85%, transparent 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: border-rotate 3s linear infinite;
  z-index: -2;
  opacity: 1;
}
.step-item::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #0a0a0f;
  border-radius: calc(var(--radius) - 1px);
  z-index: -1;
  transition: background 0.5s var(--ease-expo);
}
.step-item {
  padding: var(--spacing-s);
  color: #fff;
  transition: box-shadow 0.4s, transform 0.4s;
}
.step-item .heading-5 {
  color: #fff;
}
.step-item .body-medium {
  color: rgba(255, 255, 255, 0.7);
}
.step-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px var(--accent-glow-strong);
  transform: translateY(-2px);
}

.number-mask {
  height: 8vw;
  overflow: hidden;
  position: relative;
}

.step-number-big {
  font-family: var(--font-sans);
  font-size: clamp(4rem, 10vw, 12rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: #fff !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.25) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  bottom: -15%;
  left: -2%;
}

.step-flex {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
  position: relative;
}

/* ========================================
   BENEFITS SECTION
======================================== */
.benefits-section {
  padding: var(--spacing-xl) 0;
  display: flex;
  position: relative;
  margin-left: calc(var(--spacing-s) * -1);
  margin-right: calc(var(--spacing-s) * -1);
  width: calc(100% + var(--spacing-s) * 2);
}

.benefits-inner {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 10;
}

.benefits-left {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.benefits-left-inner {
  padding: 30vh var(--spacing-l) 30vh var(--spacing-s);
  display: flex;
  flex-direction: column;
  gap: 40vh;
}

.benefit-block {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.benefit-block::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, transparent 15%, var(--accent-vibrant) 50%, transparent 85%, transparent 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: border-rotate 3s linear infinite;
  z-index: -2;
  opacity: 1;
}
.benefit-block::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #0a0a0f;
  border-radius: calc(var(--radius) - 1px);
  z-index: -1;
  transition: background 0.5s var(--ease-expo);
}
.benefit-block {
  padding: var(--spacing-s);
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}

.old-world-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0.6;
}

.benefits-right {
  width: 50%;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-l) var(--spacing-s) var(--spacing-l) 0;
}

.benefits-top {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-box {
  width: 100%;
  max-width: 480px;
  position: relative;
}

.benefits-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: var(--radius);
  z-index: 0;
}

.benefits-box-inner {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: var(--spacing-s);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}

.benefits-box-logo {
  height: 24px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0);
}

.benefits-box-content {
  min-height: 120px;
  display: flex;
  align-items: center;
}

.benefits-bottom {
  height: 100px;
  display: flex;
  align-items: flex-end;
}

.benefits-nav {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.benefits-nav-number {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--fg-muted);
  transition: color 0.3s;
}

.benefits-nav-number.active {
  color: var(--fg);
  font-weight: 500;
}

/* ========================================
   SOCIAL PROOF MARQUEE
======================================== */
.logo-section {
  padding: var(--spacing-m) 0;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.social-proof-strip {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0;
  position: relative;
}
.social-proof-strip::before, .social-proof-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}
.social-proof-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.social-proof-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.marquee-advanced {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee-advanced__scroll {
  display: flex;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
  will-change: transform;
}

.marquee-reverse {
  animation: scroll-x-reverse 45s linear infinite;
}

.marquee-advanced__collection {
  display: flex;
  flex-shrink: 0;
}

.marquee-advanced__item {
  display: inline-flex;
  align-items: center;
  padding: 0 0.4rem;
}

.marquee-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.75rem;
  margin: 0 0.5rem;
  border: 1px solid rgba(107, 70, 192, 0.12);
  border-radius: 100px;
  background: rgba(107, 70, 192, 0.04);
  transition: all 0.4s ease;
  white-space: nowrap;
}
.marquee-stat:hover {
  background: rgba(107, 70, 192, 0.08);
  border-color: rgba(107, 70, 192, 0.25);
  transform: translateY(-1px);
}

.marquee-icon {
  width: 16px;
  height: 16px;
  color: rgba(167, 139, 250, 0.7);
  flex-shrink: 0;
}

.marquee-highlight {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}

.marquee-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.marquee-text {
  font-family: var(--font-sans);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.06) !important;
  white-space: nowrap;
}

.marquee-dot {
  font-family: var(--font-sans);
  font-size: clamp(3rem, 6vw, 6rem);
  color: rgba(255, 255, 255, 0.04) !important;
  margin-left: 2rem;
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scroll-x-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
/* ========================================
   MANIFESTO / LETTER
======================================== */
.letter-section {
  padding: var(--spacing-xl) 0;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: calc(var(--spacing-s) * -1);
  margin-right: calc(var(--spacing-s) * -1);
  width: calc(100% + var(--spacing-s) * 2);
}

.letter-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-l);
  padding-bottom: var(--spacing-xl);
  padding-top: var(--spacing-m);
}

.letter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-m);
  max-width: 44rem;
  margin: 0 auto;
}

.letter-body {
  color: var(--fg-muted);
}

.letter-closing {
  color: var(--fg-muted);
}

.letter-final {
  color: var(--fg);
  font-weight: 400;
}

/* ========================================
   PREMIUM CARD SYSTEM
   ======================================== */
.premium-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.premium-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, transparent 15%, var(--accent-vibrant) 50%, transparent 85%, transparent 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: border-rotate 3s linear infinite;
  z-index: -2;
  opacity: 1;
}
.premium-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #0a0a0f;
  border-radius: calc(var(--radius) - 1px);
  z-index: -1;
  transition: background 0.5s var(--ease-expo);
}
.premium-card {
  padding: var(--spacing-s);
  transition: all 0.5s var(--ease-expo);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
}
.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 40px var(--accent-glow-strong);
}
.premium-card:hover::before {
  opacity: 1;
  animation-duration: 1.2s;
}
.premium-card:hover::after {
  background: #11111a;
}
.premium-card.is-dark {
  background: #07070a;
  overflow: hidden;
}
.premium-card.is-dark::after {
  background: #07070a;
}
.premium-card.is-dark {
  background-image: linear-gradient(135deg, rgba(107, 70, 192, 0.05) 0%, transparent 60%, rgba(139, 92, 246, 0.03) 100%);
}
.premium-card.is-glass {
  background: rgba(255, 255, 255, 0.05);
}
.premium-card.is-glass::after {
  background: rgba(25, 25, 30, 0.9);
}
.premium-card.is-glass {
  backdrop-filter: blur(20px);
}
.premium-card.is-glass:hover {
  background: rgba(255, 255, 255, 0.1);
}
.premium-card.is-glass:hover::after {
  background: rgba(30, 30, 35, 0.95);
}

.premium-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-m);
  width: 100%;
}

.tag-card {
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-light);
  border-radius: 100px;
}
.tag-card i {
  width: 14px;
  height: 14px;
  color: var(--accent-vibrant);
  z-index: 2;
}
.tag-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-vibrant);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
  padding: var(--spacing-xl) 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-wrapper {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--spacing-s);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-m);
  align-items: stretch;
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.pricing-card {
  position: relative;
}
.pricing-card.is-popular::before {
  opacity: 0.6;
}
.pricing-card.is-popular::after {
  background: #0a0a14;
}

.pricing-card-header {
  position: relative;
  z-index: 2;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  position: relative;
  z-index: 2;
  padding: var(--spacing-s) 0 0;
}

.pricing-currency {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--accent-vibrant);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.pricing-amount {
  font-family: var(--font-sans);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--fg);
}

.pricing-period {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-left: 0.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
}
.pricing-features li i {
  flex-shrink: 0;
}

.pricing-popular-badge {
  position: absolute;
  top: -1px;
  right: var(--spacing-s);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-vibrant));
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  border-radius: 0 0 8px 8px;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(107, 70, 192, 0.4);
}

/* ========================================
   ADJUSTMENTS
======================================== */
.display,
.heading-2,
.heading-3 {
  color: var(--fg);
}

/* Smoother transition zones between dark and light sections - REMOVED */
/* Subtitle text in process section */
.subtitle-text {
  color: var(--fg-muted);
}

/* Logo section (marquee) — subtle bg */
.logo-section {
  background: var(--bg);
}

.marquee-text {
  color: rgba(255, 255, 255, 0.06) !important;
}

.marquee-dot {
  color: rgba(255, 255, 255, 0.04) !important;
}

/* Full-width video element */
.full-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stat descriptor right alignment */
.stat-descriptor.is-right {
  margin-left: auto;
}

/* ========================================
   FOOTER
======================================== */
.footer-section {
  z-index: 5;
  background: var(--bg);
  width: 100%;
  position: relative;
  color: var(--fg);
  border-top: 3px solid var(--accent);
}

.footer-inner {
  padding: 0 var(--spacing-s);
}

.footer-top {
  padding: calc(var(--spacing-xl) * 0.8) 0 var(--spacing-l);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.footer-logo-img {
  width: 100%;
  max-width: 500px;
}

.footer-mid {
  display: flex;
  justify-content: center;
  padding: var(--spacing-l) 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.footer-gate-btn {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  padding: 1rem 2.8rem;
  background: transparent;
  transition: all 0.4s ease;
}

.footer-gate-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 25px var(--accent-glow), inset 0 0 25px rgba(107, 70, 192, 0.05);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 3rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.footer-left svg {
  color: rgba(255, 255, 255, 0.4);
}

.footer-right {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-micro);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ========================================
   PAGE-SPECIFIC STYLES
   Migrated from inline <style> blocks.
   Each section is scoped to its page.
======================================== */
/* ----------------------------------------
   ABOUT PAGE
---------------------------------------- */
.about-timeline {
  position: relative;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(139, 92, 246, 0.5), rgba(139, 92, 246, 0.1));
}

.about-timeline-step {
  position: relative;
  padding-left: 56px;
}

.about-timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0a0a14;
  border: 2px solid rgba(139, 92, 246, 0.5);
  z-index: 2;
}

.about-timeline-dot.is-active {
  background: #8b5cf6;
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.team-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-img-wrap:hover img {
  transform: scale(1.05);
}

.team-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

/* ----------------------------------------
   BLOG PAGE
---------------------------------------- */
.blog-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
}

.blog-img-wrap img,
.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

.featured-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 0.75rem;
  overflow: hidden;
}

.featured-card:hover .featured-img-wrap img {
  transform: scale(1.03);
}

.cat-pill {
  cursor: pointer;
  transition: all 0.3s ease;
}

.cat-pill:hover,
.cat-pill.is-active {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  color: #a78bfa;
}

.newsletter-input:focus {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  outline: none;
}

/* ----------------------------------------
   CASE STUDIES PAGE
---------------------------------------- */
/* Aggregate stat boxes at the top — smaller display size */
.cs-aggregate .stat-number {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Inline result stats inside case cards */
.case-card .stat-number {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}

.case-card {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-card:hover {
  transform: translateY(-4px);
}

/* ----------------------------------------
   HOW IT WORKS PAGE
---------------------------------------- */
.arch-flow {
  position: relative;
}

.arch-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.3) 20%, rgba(139, 92, 246, 0.3) 80%, transparent);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .arch-flow::before {
    left: 24px;
    transform: none;
  }
}
.hero-counter {
  font-family: var(--font-sans);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
.step-pulse {
  position: relative;
}

.step-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.4);
  animation: pulse-ring 2s ease-out infinite;
}

.tech-icon-card {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-icon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
}

/* ----------------------------------------
   INTEGRATIONS PAGE
---------------------------------------- */
.integration-card {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.integration-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.12);
}

@keyframes flow-pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.flow-dot {
  animation: flow-pulse 2s ease-in-out infinite;
}

.flow-dot:nth-child(2) {
  animation-delay: 0.3s;
}

.flow-dot:nth-child(3) {
  animation-delay: 0.6s;
}

/* ----------------------------------------
   PRICING PAGE
---------------------------------------- */
.pricing-hero-price {
  font-family: var(--font-sans);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #fff;
}

.pricing-hero-currency {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--accent-vibrant);
  vertical-align: super;
}

.pricing-hero-period {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.onboarding-timeline {
  position: relative;
}

.onboarding-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(139, 92, 246, 0.5), rgba(139, 92, 246, 0.1));
}

.timeline-step {
  position: relative;
  padding-left: 56px;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0a0a14;
  border: 2px solid rgba(139, 92, 246, 0.5);
  z-index: 2;
}

.timeline-dot.is-active {
  background: #8b5cf6;
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.compare-table td,
.compare-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.compare-table th {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.compare-table thead th {
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

/* ----------------------------------------
   LEGAL PAGES (Privacy + Terms)
---------------------------------------- */
.legal-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  margin-top: 2.5rem;
}

.legal-section p,
.legal-section li {
  color: rgb(163, 163, 163);
  font-size: 0.9rem;
  line-height: 1.7;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.legal-section ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.5);
}

/* ========================================
   DASHBOARD — uses the main site design
   system tokens. Light theme by default;
   dark via .is-dark on body.
======================================== */
/* ----------------------------------------
   THEME TOKENS — scoped to dashboard body
   Overrides :root tokens for light mode.
   .is-dark restores the site's dark values.
---------------------------------------- */
.zq_dashboard-body {
  --bg: #f3f3f8;
  --fg: #0a0a14;
  --fg-off: #1c1c30;
  --fg-muted: #52526b;
  --fg-micro: #8a8aaa;
  --fg-dim: #e2e2ee;
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.07);
  --accent-soft: rgba(107, 70, 192, 0.1);
  --accent-glow: rgba(107, 70, 192, 0.2);
  --accent-glow-strong: rgba(107, 70, 192, 0.35);
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --surface-overlay: rgba(255, 255, 255, 0.95);
  --color-success: #16a34a;
  --color-warning: #d97706;
  --color-danger: #dc2626;
}
.zq_dashboard-body.is-dark {
  --bg: #0a0a0f;
  --fg: #f0f0f0;
  --fg-off: #f6efe5;
  --fg-muted: #9a9a9a;
  --fg-micro: #6a6a6a;
  --fg-dim: #2a2a2a;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  --accent-soft: rgba(107, 70, 192, 0.15);
  --accent-glow: rgba(107, 70, 192, 0.3);
  --accent-glow-strong: rgba(107, 70, 192, 0.55);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-raised: rgba(255, 255, 255, 0.07);
  --surface-overlay: rgba(10, 10, 15, 0.96);
}

/* ----------------------------------------
   BASE — reset within dashboard scope
---------------------------------------- */
.zq_dashboard-body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
.zq_dashboard-body *, .zq_dashboard-body *::before, .zq_dashboard-body *::after {
  box-sizing: border-box;
}
.zq_dashboard-body h1, .zq_dashboard-body h2, .zq_dashboard-body h3, .zq_dashboard-body h4, .zq_dashboard-body h5, .zq_dashboard-body h6 {
  font-family: var(--font-sans);
  color: var(--fg);
  font-weight: 500;
}
.zq_dashboard-body a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.zq_dashboard-body a:hover {
  color: var(--accent-vibrant);
}
.zq_dashboard-body p {
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}
.zq_dashboard-body img {
  border-radius: var(--radius);
}
.zq_dashboard-body button {
  font-family: var(--font-sans);
  cursor: pointer;
}
.zq_dashboard-body input, .zq_dashboard-body select, .zq_dashboard-body textarea {
  font-family: var(--font-sans);
  color: var(--fg);
}

/* ----------------------------------------
   LAYOUT
---------------------------------------- */
.zq_dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.zq_dashboard-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bg);
}

/* ----------------------------------------
   SIDEBAR
---------------------------------------- */
.zq_dashboard-sidebar {
  width: 256px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-right: 1px solid var(--border);
  height: 100vh;
  position: sticky;
  top: 0;
  overflow-y: auto;
  z-index: 200;
}
.zq_dashboard-sidebar::-webkit-scrollbar {
  width: 3px;
}
.zq_dashboard-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.zq_dashboard-sidebar::-webkit-scrollbar-thumb {
  background: var(--fg-dim);
  border-radius: 4px;
}

.zq_dashboard-logo {
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.zq_dashboard-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--fg);
}
.zq_dashboard-logo-link:hover {
  color: var(--fg);
}

.zq_dashboard-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}

.zq_dashboard-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.zq_dashboard-logo-title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.zq_dashboard-logo-subtitle {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-micro);
}

/* Sidebar navigation */
.zq_dashboard-nav {
  flex: 1;
  padding: 1rem 0.75rem;
}
.zq_dashboard-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.zq_dashboard-nav li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.zq_dashboard-nav li a i {
  font-size: 0.875rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.zq_dashboard-nav li a:hover {
  color: var(--fg);
  background: var(--accent-soft);
}
.zq_dashboard-nav li.active a {
  color: var(--accent);
  background: var(--accent-soft);
}
.zq_dashboard-nav li.active a i {
  color: var(--accent);
}

/* Sidebar footer */
.zq_dashboard-sidebar-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
}

.zq_dashboard-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.zq_dashboard-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  flex-shrink: 0;
}

.zq_dashboard-user-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.zq_dashboard-user-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zq_dashboard-user-email {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--fg-micro);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sidebar backdrop (mobile) */
.zq_dashboard-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 199;
}

/* ----------------------------------------
   TOPBAR
---------------------------------------- */
.zq_dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  height: 60px;
  flex-shrink: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.zq_dashboard-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.zq_dashboard-breadcrumb-home {
  color: var(--fg-micro);
}

.zq_dashboard-breadcrumb-sep {
  color: var(--fg-dim);
}

.zq_dashboard-breadcrumb-current {
  color: var(--fg-muted);
}

.zq_dashboard-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Icon button (topbar actions) */
.zq_dashboard-icon-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--fg-muted);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.zq_dashboard-icon-btn:hover {
  color: var(--fg);
  border-color: var(--border);
  background: var(--accent-soft);
}

/* Search (admin topbar) */
.zq_dashboard-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 0.75rem;
}
.zq_dashboard-search i {
  font-size: 0.7rem;
  color: var(--fg-micro);
}
.zq_dashboard-search input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.8rem;
  color: var(--fg);
  width: 160px;
}
.zq_dashboard-search input::placeholder {
  color: var(--fg-micro);
}

/* Notifications panel */
.zq_dashboard-notifications {
  position: relative;
}
.zq_dashboard-notifications:hover .zq_dashboard-notifications-panel, .zq_dashboard-notifications:focus-within .zq_dashboard-notifications-panel {
  display: block;
}

.zq_dashboard-notifications-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: var(--surface-overlay);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  backdrop-filter: blur(20px);
}

.zq_dashboard-notifications-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
}
.zq_dashboard-notifications-header h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0;
}
.zq_dashboard-notifications-header span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-micro);
  letter-spacing: 0.1em;
}

.zq_dashboard-notifications-empty {
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-micro);
}

/* Profile dropdown */
.zq_dashboard-profile {
  position: relative;
}
.zq_dashboard-profile:hover .zq_dashboard-profile-menu, .zq_dashboard-profile:focus-within .zq_dashboard-profile-menu {
  display: flex;
}

.zq_dashboard-profile-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.zq_dashboard-profile-chip:hover {
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.zq_dashboard-profile-initials {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.zq_dashboard-profile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--surface-overlay);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.zq_dashboard-profile-menu a, .zq_dashboard-profile-menu button {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.zq_dashboard-profile-menu a:last-child, .zq_dashboard-profile-menu button:last-child {
  border-bottom: none;
}
.zq_dashboard-profile-menu a:hover, .zq_dashboard-profile-menu button:hover {
  color: var(--fg);
  background: var(--accent-soft);
}

/* ----------------------------------------
   CONTENT AREA
---------------------------------------- */
.zq_dashboard-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 0;
}

.zq_dashboard-page-header h1 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin: 0 0 0.25rem;
}
.zq_dashboard-page-header p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-micro);
  margin: 0;
}

/* ----------------------------------------
   CARDS
---------------------------------------- */
.zq_dashboard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.zq_dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.zq_dashboard-card-header h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0;
}

.zq_dashboard-card-body {
  padding: 1.25rem;
}

/* Stat card */
.zq_dashboard-stat-card {
  padding: 1.25rem;
}

.zq_dashboard-stat-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.zq_dashboard-stat-main h3 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-micro);
  margin: 0 0 0.5rem;
}

.zq_dashboard-stat-value {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
}

.zq_dashboard-stat-meta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-micro);
}

/* Stat icon */
.zq_dashboard-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.zq_dashboard-stat-icon-blue {
  background: rgba(107, 70, 192, 0.12);
  color: var(--accent);
}

.zq_dashboard-stat-icon-green {
  background: rgba(22, 163, 74, 0.12);
  color: var(--color-success);
}

.zq_dashboard-stat-icon-amber {
  background: rgba(217, 119, 6, 0.12);
  color: var(--color-warning);
}

.zq_dashboard-stat-icon-red {
  background: rgba(220, 38, 38, 0.12);
  color: var(--color-danger);
}

.zq_dashboard-stat-icon-purple {
  background: rgba(107, 70, 192, 0.12);
  color: var(--accent-vibrant);
}

.zq_dashboard-body.is-dark .zq_dashboard-stat-icon-blue {
  background: rgba(107, 70, 192, 0.2);
}
.zq_dashboard-body.is-dark .zq_dashboard-stat-icon-green {
  background: rgba(22, 163, 74, 0.2);
}
.zq_dashboard-body.is-dark .zq_dashboard-stat-icon-amber {
  background: rgba(217, 119, 6, 0.2);
}
.zq_dashboard-body.is-dark .zq_dashboard-stat-icon-red {
  background: rgba(220, 38, 38, 0.2);
}
.zq_dashboard-body.is-dark .zq_dashboard-stat-icon-purple {
  background: rgba(107, 70, 192, 0.2);
}

/* Chart card */
.zq_dashboard-chart-card .zq_dashboard-chart-placeholder {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Alert card */
.zq_dashboard-alert {
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-size: 0.85rem;
  border-left: 3px solid;
  margin: 0;
}
.zq_dashboard-alert--info {
  border-left-color: var(--accent);
  background: var(--accent-soft);
  color: var(--fg);
}
.zq_dashboard-alert--success {
  border-left-color: var(--color-success);
  background: rgba(22, 163, 74, 0.08);
  color: var(--fg);
}
.zq_dashboard-alert--warning {
  border-left-color: var(--color-warning);
  background: rgba(217, 119, 6, 0.08);
  color: var(--fg);
}
.zq_dashboard-alert--danger {
  border-left-color: var(--color-danger);
  background: rgba(220, 38, 38, 0.08);
  color: var(--fg);
}

.zq_dashboard-body .alert {
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  color: var(--fg);
  font-size: 0.85rem;
  margin: 0;
}

/* ----------------------------------------
   TABLES
---------------------------------------- */
.zq_dashboard-table-wrap {
  overflow-x: auto;
}

.zq_dashboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.zq_dashboard-table th {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-micro);
  font-weight: 500;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.zq_dashboard-table td {
  padding: 0.85rem 1rem;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.zq_dashboard-table tr:last-child td {
  border-bottom: none;
}
.zq_dashboard-table tr:hover td {
  background: var(--accent-soft);
}

.zq_dashboard-table-empty {
  padding: 3rem 1rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-micro);
}

.zq_dashboard-table-user {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.zq_dashboard-table-user .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  flex-shrink: 0;
}
.zq_dashboard-table-user .name {
  font-size: 0.85rem;
  color: var(--fg);
}
.zq_dashboard-table-user .email {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--fg-micro);
  letter-spacing: 0.05em;
}

/* ----------------------------------------
   BADGES
---------------------------------------- */
.zq_dashboard-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-glow);
}
.zq_dashboard-badge--success, .zq_dashboard-badge--synced, .zq_dashboard-badge--active {
  background: rgba(22, 163, 74, 0.1);
  color: var(--color-success);
  border-color: rgba(22, 163, 74, 0.3);
}
.zq_dashboard-badge--warning, .zq_dashboard-badge--pending {
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-warning);
  border-color: rgba(217, 119, 6, 0.3);
}
.zq_dashboard-badge--danger, .zq_dashboard-badge--failed, .zq_dashboard-badge--locked {
  background: rgba(220, 38, 38, 0.1);
  color: var(--color-danger);
  border-color: rgba(220, 38, 38, 0.3);
}
.zq_dashboard-badge--info, .zq_dashboard-badge--ready {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent-glow);
}
.zq_dashboard-badge--neutral, .zq_dashboard-badge--offline {
  background: var(--fg-dim);
  color: var(--fg-micro);
  border-color: var(--border);
}

/* ----------------------------------------
   BUTTONS
---------------------------------------- */
.zq_dashboard-primary-btn,
.zq_dashboard-btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.zq_dashboard-primary-btn:hover,
.zq_dashboard-btn--primary:hover {
  background: var(--accent-vibrant);
  border-color: var(--accent-vibrant);
  box-shadow: 0 0 20px var(--accent-glow);
  color: #fff;
}

.zq_dashboard-secondary-btn,
.zq_dashboard-btn,
.zq_dashboard-btn--secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.zq_dashboard-secondary-btn:hover,
.zq_dashboard-btn:hover,
.zq_dashboard-btn--secondary:hover {
  color: var(--fg);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.zq_dashboard-btn--danger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: transparent;
  color: var(--color-danger);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.zq_dashboard-btn--danger:hover {
  background: rgba(220, 38, 38, 0.08);
}

.zq_dashboard-actions-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

/* ----------------------------------------
   FORM FIELDS
---------------------------------------- */
.zq_dashboard-modal-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.zq_dashboard-modal-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-micro);
}
.zq_dashboard-modal-field input, .zq_dashboard-modal-field select, .zq_dashboard-modal-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 0.875rem;
  font-size: 0.875rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.zq_dashboard-modal-field input:focus, .zq_dashboard-modal-field select:focus, .zq_dashboard-modal-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.zq_dashboard-modal-field input::placeholder, .zq_dashboard-modal-field select::placeholder, .zq_dashboard-modal-field textarea::placeholder {
  color: var(--fg-micro);
}
.zq_dashboard-modal-field select option {
  background: var(--surface);
  color: var(--fg);
}

.zq_dashboard-filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.zq_dashboard-filter-field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-micro);
}
.zq_dashboard-filter-field input, .zq_dashboard-filter-field select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.zq_dashboard-filter-field input:focus, .zq_dashboard-filter-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.zq_dashboard-filter-field input::placeholder, .zq_dashboard-filter-field select::placeholder {
  color: var(--fg-micro);
}

.zq_dashboard-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  align-items: end;
  width: 100%;
}

.zq_dashboard-center-form {
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
}

.zq_dashboard-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* ----------------------------------------
   MODAL
---------------------------------------- */
.zq_dashboard-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
}
.zq_dashboard-modal.is-open {
  display: block;
}

.zq_dashboard-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
}

.zq_dashboard-modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 100vw - 2rem);
  background: var(--surface-overlay);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  overflow: hidden;
}

.zq_dashboard-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.zq_dashboard-modal-header h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0;
}
.zq_dashboard-modal-header button {
  background: transparent;
  border: none;
  color: var(--fg-micro);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}
.zq_dashboard-modal-header button:hover {
  color: var(--fg);
}

.zq_dashboard-modal-body {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.zq_dashboard-modal-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.625rem;
  justify-content: flex-end;
}

/* ----------------------------------------
   CARD HEADER MODIFIER
   --split: header already uses space-between;
   this modifier adds a bottom padding/gap
   and allows multi-line left side.
---------------------------------------- */
.zq_dashboard-card-header--split {
  align-items: flex-start;
  padding-bottom: 0.875rem;
}
.zq_dashboard-card-header--split h3 {
  margin-bottom: 0.2rem;
}
.zq_dashboard-card-header--split p {
  font-size: 0.78rem;
  color: var(--fg-micro);
  margin: 0;
}

/* ----------------------------------------
   FILTER BAR
---------------------------------------- */
.zq_dashboard-filter-bar {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: flex-end;
}
.zq_dashboard-filter-bar.is-open {
  display: flex;
}

/* ----------------------------------------
   PAGINATION
---------------------------------------- */
.zq-pagination {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.zq-pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.zq-pagination-btn:hover, .zq-pagination-btn.is-active {
  color: var(--accent);
  border-color: var(--accent-glow);
  background: var(--accent-soft);
}
.zq-pagination-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.zq-pagination-info {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--fg-micro);
  padding: 0 0.5rem;
}

/* ----------------------------------------
   PROGRESS
---------------------------------------- */
.zq_dashboard-progress-bar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  height: 6px;
}
.zq_dashboard-progress-bar .bar {
  height: 100%;
  background: var(--accent);
  border-radius: 20px;
  transition: width 0.6s var(--ease-expo);
}
.zq_dashboard-progress-bar .bar.is-warning {
  background: var(--color-warning);
}
.zq_dashboard-progress-bar .bar.is-danger {
  background: var(--color-danger);
}
.zq_dashboard-progress-bar .bar.is-success {
  background: var(--color-success);
}
.zq_dashboard-progress-bar .bar.is-info {
  background: var(--accent);
}

.zq_dashboard-progress-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--fg-micro);
  margin-top: 0.375rem;
}

.zq_dashboard-progress-row-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.375rem;
}
.zq_dashboard-progress-row-label span:last-child {
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-micro);
}

/* ----------------------------------------
   GRID COMPAT (row / col)
---------------------------------------- */
.zq_dashboard-body .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.zq_dashboard-body .g-3,
.zq_dashboard-body .g-4 {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  row-gap: 1.5rem;
}
.zq_dashboard-body .g-3 > *,
.zq_dashboard-body .g-4 > * {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.zq_dashboard-body [class^=col-],
.zq_dashboard-body [class*=" col-"] {
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

@media (min-width: 768px) {
  .zq_dashboard-body .col-md-4 {
    width: 33.3333%;
  }
  .zq_dashboard-body .col-md-6 {
    width: 50%;
  }
  .zq_dashboard-body .col-md-8 {
    width: 66.6667%;
  }
}
@media (min-width: 1200px) {
  .zq_dashboard-body .col-xl-3 {
    width: 25%;
  }
  .zq_dashboard-body .col-xl-4 {
    width: 33.3333%;
  }
  .zq_dashboard-body .col-xl-6 {
    width: 50%;
  }
  .zq_dashboard-body .col-xl-8 {
    width: 66.6667%;
  }
}
/* ----------------------------------------
   PAGE-SPECIFIC LAYOUTS
---------------------------------------- */
.zq_dashboard-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  padding: 1.25rem;
}

.zq_dashboard-quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1.25rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.zq_dashboard-quick-action i {
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.2s;
}
.zq_dashboard-quick-action:hover {
  color: var(--fg);
  border-color: var(--accent-glow);
  background: var(--accent-soft);
}
.zq_dashboard-quick-action:hover i {
  transform: scale(1.1);
}

.zq_dashboard-detail-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.5rem;
  align-items: start;
}

.zq_dashboard-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.zq_dashboard-info-group {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.zq_dashboard-info-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.zq_dashboard-info-row dt, .zq_dashboard-info-row .label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-micro);
}
.zq_dashboard-info-row dd, .zq_dashboard-info-row .value {
  font-size: 0.9rem;
  color: var(--fg);
  margin: 0;
}

.zq_dashboard-signature {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  word-break: break-all;
  color: var(--fg-muted);
  white-space: pre-wrap;
}

.zq_dashboard-sub-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.zq_dashboard-plan-overview {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.zq_dashboard-plan-overview .plan-name {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.zq_dashboard-plan-overview .plan-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-micro);
  margin-bottom: 0.75rem;
}

.zq_dashboard-plan-rows {
  display: flex;
  flex-direction: column;
}

.zq_dashboard-plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.85rem;
}
.zq_dashboard-plan-row:last-child {
  border-bottom: none;
}
.zq_dashboard-plan-row .key {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-micro);
}
.zq_dashboard-plan-row .val {
  color: var(--fg);
}

.zq_dashboard-progress-row {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
}

.zq_dashboard-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.zq_dashboard-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.zq_dashboard-feature-item i {
  font-size: 0.75rem;
  color: var(--color-success);
}

.zq_dashboard-usage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.zq_dashboard-progress-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 0;
}
.zq_dashboard-progress-center .pct {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.zq_dashboard-progress-center .pct-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-micro);
}
.zq_dashboard-progress-center .zq_dashboard-progress-bar {
  width: 100%;
}

.zq_dashboard-info-block {
  padding: 0.875rem 1rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.zq_dashboard-resource-list {
  display: flex;
  flex-direction: column;
}

.zq_dashboard-resource-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-light);
}
.zq_dashboard-resource-row:last-child {
  border-bottom: none;
}
.zq_dashboard-resource-row .resource-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.zq_dashboard-resource-row .resource-info h6 {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--fg);
  margin: 0;
}
.zq_dashboard-resource-row .resource-info small {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--fg-micro);
}

.zq_dashboard-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.zq_dashboard-tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.zq_dashboard-tier-card:hover {
  border-color: var(--accent-glow);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.zq_dashboard-tier-card.is-current {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.zq_dashboard-tier-card .tier-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.zq_dashboard-tier-card .tier-price {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
}
.zq_dashboard-tier-card .tier-price small {
  font-size: 0.75rem;
  letter-spacing: 0;
  color: var(--fg-micro);
}
.zq_dashboard-tier-card .tier-receipt-cap {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--fg-micro);
}
.zq_dashboard-tier-card .tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.zq_dashboard-tier-card .tier-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.zq_dashboard-tier-card .tier-features li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ----------------------------------------
   TABLE UTILITIES
---------------------------------------- */
.zq_dashboard-body .text-right {
  text-align: right !important;
}
.zq_dashboard-body .text-bold {
  font-weight: 600 !important;
  color: var(--fg) !important;
}
.zq_dashboard-body .text-lg {
  font-size: 1.05rem !important;
}
.zq_dashboard-body .table-responsive {
  overflow-x: auto;
}

/* ----------------------------------------
   AUTH PAGES (login / register — standalone)
   Uses zq_auth-* class names.
---------------------------------------- */
.zq_auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 2rem 1.5rem;
}

.zq_auth-card {
  width: min(440px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

.zq_auth-brand {
  margin-bottom: 2rem;
}

.zq_auth-header {
  margin-bottom: 1.75rem;
}
.zq_auth-header .zq_auth-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.zq_auth-header h1 {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin: 0 0 0.375rem;
  line-height: 1.1;
}
.zq_auth-header p {
  font-size: 0.85rem;
  color: var(--fg-micro);
  margin: 0;
}

.zq_auth-messages {
  margin-bottom: 1.25rem;
}
.zq_auth-messages .alert {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.zq_auth-messages .alert:last-child {
  margin-bottom: 0;
}
.zq_auth-messages .btn-close {
  background: transparent;
  border: none;
  color: var(--fg-micro);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}

.zq_auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.zq_auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.zq_auth-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-micro);
}
.zq_auth-field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.875rem;
  font-size: 0.9rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.zq_auth-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.zq_auth-field input::placeholder {
  color: var(--fg-micro);
}

.zq_auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.zq_auth-remember {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.zq_auth-remember input[type=checkbox] {
  accent-color: var(--accent);
  cursor: pointer;
}
.zq_auth-remember label {
  cursor: pointer;
  font-size: 0.82rem;
}

.zq_auth-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.zq_auth-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--fg-micro);
  display: flex;
  gap: 0.375rem;
  justify-content: center;
  align-items: center;
}

.zq_auth-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.zq_auth-link:hover {
  color: var(--accent-vibrant);
}

/* ----------------------------------------
   PRELOADER
---------------------------------------- */
.zq_preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.zq_preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.zq_preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.zq_preloader-logo img {
  height: 40px;
  width: auto;
}

.zq_preloader-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ----------------------------------------
   RESPONSIVE
---------------------------------------- */
@media (max-width: 991px) {
  .zq_dashboard-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s var(--ease-expo);
    box-shadow: var(--shadow-lg);
    z-index: 200;
  }
  .zq_dashboard-body.is-sidebar-open .zq_dashboard-sidebar {
    transform: translateX(0);
  }
  .zq_dashboard-body.is-sidebar-open .zq_dashboard-sidebar-backdrop {
    display: block;
  }
  .zq_dashboard-detail-layout {
    grid-template-columns: 1fr;
  }
  .zq_dashboard-sub-layout {
    grid-template-columns: 1fr;
  }
  .zq_dashboard-usage-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .zq_dashboard-content {
    padding: 1rem;
    gap: 1rem;
  }
  .zq_dashboard-form-row {
    grid-template-columns: 1fr;
  }
  .zq_dashboard-two-col {
    grid-template-columns: 1fr;
  }
  .zq_dashboard-feature-grid {
    grid-template-columns: 1fr;
  }
  .zq_dashboard-tier-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991px) {
  .hero-title {
    max-width: 90%;
  }
  .intro-body-grid {
    flex-direction: column;
    gap: var(--spacing-s);
  }
  .protection-inner {
    flex-direction: column;
  }
  .benefits-section {
    display: block;
  }
  .benefits-inner {
    flex-direction: column;
  }
  .benefits-left {
    width: 100%;
  }
  .benefits-right {
    width: 100%;
    height: auto;
    position: relative;
    min-height: auto;
  }
  .benefits-left-inner {
    padding-top: var(--spacing-m);
    padding-bottom: var(--spacing-m);
    gap: var(--spacing-xl);
  }
  .step-row {
    flex-direction: column;
  }
  .stat-number {
    font-size: 20vw;
  }
  .stats-container {
    flex-direction: column;
    gap: var(--spacing-m);
  }
  .stat-left,
  .stat-right {
    width: 100%;
  }
  .number-mask {
    height: 15vw;
  }
  .step-number-big {
    font-size: 22vw;
  }
}
@media (max-width: 768px) {
  .nav-center {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-cta:not(.w-full) {
    display: none;
  }
  .hero-title {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .nav-bar-inline {
    display: none;
  }
}
