/* ================================================================
   KLIENZ  -  Aurora Borealis x Bento Grid Design System
   getklienz.sekinsoft.com
   Concept: Deep space backdrop with atmospheric aurora light,
            glassmorphic surfaces, bento grid composition.
   ================================================================ */

/* =================================================================
   0. CUSTOM PROPERTIES
   ================================================================= */
:root {
  /* ---- backgrounds ---- */
  --bg:        #050816;
  --bg-alt:    #0A0D1F;
  --surface:   rgba(255,255,255,.04);
  --surface-h: rgba(255,255,255,.07);
  --surface-s: rgba(255,255,255,.10);

  /* ---- text ---- */
  --text:      rgba(255,255,255,.92);
  --text-mid:  rgba(255,255,255,.65);
  --text-dim:  rgba(255,255,255,.40);

  /* ---- palette ---- */
  --primary:   #00F5A0;
  --secondary: #00D9FF;
  --accent:    #7B61FF;
  --whatsapp:  #25D366;
  --danger:    #FF4D6A;
  --warning:   #FFB347;

  /* ---- gradients ---- */
  --grad-mint:   linear-gradient(135deg, #00F5A0, #00D9FF);
  --grad-purple: linear-gradient(135deg, #00D9FF, #7B61FF);
  --grad-aurora: linear-gradient(135deg, #00F5A0, #00D9FF, #7B61FF);
  --grad-warm:   linear-gradient(135deg, #FFB347, #FF4D6A);

  /* ---- sizing ---- */
  --container:   1200px;
  --container-lg:1400px;
  --radius:      20px;
  --radius-sm:   12px;
  --radius-xs:   8px;

  /* ---- transitions ---- */
  --ease-out:  cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.175,.885,.32,1.275);

  /* ---- spacing scale ---- */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;
  --sp-4xl: 96px;
  --sp-5xl: 128px;

  /* ---- typography ---- */
  --font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono:'JetBrains Mono', 'Fira Code', monospace;

  /* ---- z-index scale ---- */
  --z-base:    1;
  --z-dropdown:100;
  --z-sticky:  500;
  --z-header:  1000;
  --z-overlay: 2000;
  --z-modal:   3000;
  --z-toast:   4000;
}


/* =================================================================
   1. RESET & BASE
   ================================================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .25s ease;
}
a:hover { color: var(--secondary); }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); letter-spacing: -.015em; }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: .95rem; }

p {
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 65ch;
}

::selection {
  background: rgba(0,245,160,.25);
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.12);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,.2);
}


/* =================================================================
   2. NOISE TEXTURE OVERLAY
   ================================================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}


/* =================================================================
   3. AURORA BACKGROUND
   ================================================================= */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.aurora::before,
.aurora::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .15;
  animation: auroraMove 20s ease-in-out infinite alternate;
}

.aurora::before {
  background: radial-gradient(circle, #00F5A0 0%, transparent 70%);
  top: -50%;
  left: -25%;
}

.aurora::after {
  background: radial-gradient(circle, #00D9FF 0%, transparent 70%);
  bottom: -50%;
  right: -25%;
  animation-delay: -10s;
  animation-direction: alternate-reverse;
}

.aurora__blob {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, #7B61FF 0%, transparent 70%);
  top: 20%;
  left: 40%;
  filter: blur(140px);
  opacity: .08;
  animation: auroraMove 25s ease-in-out infinite alternate-reverse;
  animation-delay: -5s;
}

@keyframes auroraMove {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%  { transform: translate(30px, -50px) rotate(5deg) scale(1.1); }
  66%  { transform: translate(-20px, 20px) rotate(-3deg) scale(.95); }
  100% { transform: translate(10px, -30px) rotate(2deg) scale(1.05); }
}


/* =================================================================
   4. LAYOUT: CONTAINER & SECTIONS
   ================================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.container--lg {
  max-width: var(--container-lg);
}

.container--sm {
  max-width: 800px;
}

.section {
  position: relative;
  padding: var(--sp-5xl) 0;
  z-index: var(--z-base);
}

.section--sm  { padding: var(--sp-4xl) 0; }
.section--lg  { padding: 160px 0; }
.section--flush { padding: 0; }

.section__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--sp-3xl);
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--grad-mint);
  border-radius: 1px;
}

.section__title {
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-inline: auto;
}


/* =================================================================
   5. HEADER / NAVIGATION
   ================================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: 16px 0;
  transition: all .3s ease;
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(5,8,22,.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo img {
  height: 32px;
  width: auto;
}

.header__logo span {
  background: var(--grad-mint);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-xs);
  transition: color .25s ease, background .25s ease;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
  background: rgba(255,255,255,.05);
}

.nav__link.active {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ---- Mobile hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius-xs);
  transition: background .2s;
}

.hamburger:hover {
  background: rgba(255,255,255,.05);
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}

.hamburger.open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile nav overlay ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-header) - 1);
  background: rgba(5,8,22,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav .nav__link {
  font-size: 1.15rem;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}

.mobile-nav .nav__link:hover {
  background: rgba(255,255,255,.06);
}

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}


/* =================================================================
   6. GLASSMORPHIC CARDS
   ================================================================= */
.glass {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  transition: all .4s var(--ease-out);
}

.glass:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,245,160,.2);
  box-shadow:
    0 8px 40px rgba(0,245,160,.08),
    0 0 0 1px rgba(0,245,160,.05);
  transform: translateY(-4px);
}

.glass--static:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}

.glass--accent:hover {
  border-color: rgba(123,97,255,.25);
  box-shadow:
    0 8px 40px rgba(123,97,255,.08),
    0 0 0 1px rgba(123,97,255,.05);
}

.glass--secondary:hover {
  border-color: rgba(0,217,255,.25);
  box-shadow:
    0 8px 40px rgba(0,217,255,.08),
    0 0 0 1px rgba(0,217,255,.05);
}

.glass--lg {
  border-radius: 24px;
  padding: 40px;
}

.glass--sm {
  border-radius: var(--radius-sm);
  padding: 20px;
}


/* =================================================================
   7. BENTO GRID LAYOUT
   ================================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
  padding: 0 24px;
}

.bento__item {
  position: relative;
  overflow: hidden;
}

.bento__item--wide {
  grid-column: span 2;
}

.bento__item--tall {
  grid-row: span 2;
}

.bento__item--hero {
  grid-column: span 2;
  grid-row: span 2;
}

.bento__item--full {
  grid-column: 1 / -1;
}

.bento__content {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(0,245,160,.08);
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.bento__icon--secondary {
  background: rgba(0,217,255,.08);
  color: var(--secondary);
}

.bento__icon--accent {
  background: rgba(123,97,255,.08);
  color: var(--accent);
}

.bento__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.bento__desc {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Bento item inner glow */
.bento__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.bento__item:hover::after {
  opacity: 1;
}


/* =================================================================
   8. GRADIENT TEXT
   ================================================================= */
.gradient-text {
  background: linear-gradient(135deg, #00F5A0, #00D9FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text--purple {
  background: linear-gradient(135deg, #00D9FF, #7B61FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text--aurora {
  background: linear-gradient(135deg, #00F5A0, #00D9FF, #7B61FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.gradient-text--warm {
  background: linear-gradient(135deg, #FFB347, #FF4D6A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* =================================================================
   9. BUTTONS
   ================================================================= */
.btn-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
  white-space: nowrap;
  line-height: 1.4;
}

/* Primary */
.btn-glow--primary {
  background: var(--grad-mint);
  color: #050816;
}

.btn-glow--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  filter: blur(20px);
  opacity: .4;
  z-index: -1;
  transition: opacity .3s;
}

.btn-glow--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,245,160,.3);
  color: #050816;
}

.btn-glow--primary:hover::after {
  opacity: .6;
}

.btn-glow--primary:active {
  transform: translateY(0);
}

/* Ghost */
.btn-glow--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.15);
}

.btn-glow--ghost:hover {
  border-color: var(--primary);
  background: rgba(0,245,160,.05);
  box-shadow: 0 0 20px rgba(0,245,160,.1);
  transform: translateY(-2px);
  color: var(--text);
}

.btn-glow--ghost:active {
  transform: translateY(0);
}

/* WhatsApp Green */
.btn-glow--green {
  background: var(--whatsapp);
  color: #fff;
}

.btn-glow--green::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--whatsapp);
  filter: blur(20px);
  opacity: .3;
  z-index: -1;
  transition: opacity .3s;
}

.btn-glow--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(37,211,102,.3);
  color: #fff;
}

.btn-glow--green:hover::after { opacity: .5; }

/* Accent / Purple */
.btn-glow--accent {
  background: linear-gradient(135deg, #7B61FF, #A78BFF);
  color: #fff;
}

.btn-glow--accent::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  filter: blur(20px);
  opacity: .35;
  z-index: -1;
  transition: opacity .3s;
}

.btn-glow--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(123,97,255,.3);
  color: #fff;
}

/* Secondary / Outline Cyan */
.btn-glow--secondary {
  background: transparent;
  color: var(--secondary);
  border: 1px solid rgba(0,217,255,.3);
}

.btn-glow--secondary:hover {
  background: rgba(0,217,255,.08);
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(0,217,255,.15);
  transform: translateY(-2px);
  color: var(--secondary);
}

/* Danger */
.btn-glow--danger {
  background: var(--danger);
  color: #fff;
}

.btn-glow--danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255,77,106,.3);
  color: #fff;
}

/* Sizes */
.btn-glow--sm  { padding: 10px 22px; font-size: .85rem; }
.btn-glow--xs  { padding: 7px 16px; font-size: .8rem; border-radius: var(--radius-xs); }
.btn-glow--lg  { padding: 18px 40px; font-size: 1.05rem; border-radius: 14px; }

/* Full width */
.btn-glow--block { width: 100%; }

/* Button group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-group--center { justify-content: center; }


/* =================================================================
   10. HERO SECTION
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  z-index: var(--z-base);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  max-width: 580px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 6px;
  border-radius: 100px;
  background: rgba(0,245,160,.06);
  border: 1px solid rgba(0,245,160,.15);
  font-size: .82rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,245,160,.4); }
  50% { opacity: .7; box-shadow: 0 0 0 8px rgba(0,245,160,0); }
}

.hero__title {
  margin-bottom: 24px;
}

.hero__desc {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  color: var(--text-mid);
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.hero__stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: .82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ---- Hero mockup ---- */
.hero-mockup {
  position: relative;
  perspective: 1000px;
}

.hero-mockup__screen {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 20px 60px rgba(0,0,0,.5),
    0 0 100px rgba(0,245,160,.05);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform .6s ease;
}

.hero-mockup:hover .hero-mockup__screen {
  transform: rotateY(0) rotateX(0);
}

.hero-mockup__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(0,245,160,.15), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.hero-mockup__dots {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background-image:
    radial-gradient(circle, rgba(0,245,160,.2) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: .5;
  pointer-events: none;
}


/* =================================================================
   11. SCROLL REVEAL ANIMATIONS
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity .8s var(--ease-out),
    transform .8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-30px);
}
.reveal--left.visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(30px);
}
.reveal--right.visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(.95);
}
.reveal--scale.visible {
  transform: scale(1);
}

.reveal--zoom {
  transform: scale(.85);
  opacity: 0;
}
.reveal--zoom.visible {
  transform: scale(1);
  opacity: 1;
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible > *:nth-child(1)  { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2)  { transition-delay: .1s; }
.reveal-stagger.visible > *:nth-child(3)  { transition-delay: .2s; }
.reveal-stagger.visible > *:nth-child(4)  { transition-delay: .3s; }
.reveal-stagger.visible > *:nth-child(5)  { transition-delay: .4s; }
.reveal-stagger.visible > *:nth-child(6)  { transition-delay: .5s; }
.reveal-stagger.visible > *:nth-child(7)  { transition-delay: .6s; }
.reveal-stagger.visible > *:nth-child(8)  { transition-delay: .7s; }
.reveal-stagger.visible > *:nth-child(9)  { transition-delay: .8s; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: .9s; }
.reveal-stagger.visible > *:nth-child(11) { transition-delay: 1s; }
.reveal-stagger.visible > *:nth-child(12) { transition-delay: 1.1s; }


/* =================================================================
   12. SECTION DIVIDERS / GLOW LINES
   ================================================================= */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,245,160,.3), rgba(0,217,255,.3), transparent);
  margin: 0;
  border: none;
}

.glow-line--accent {
  background: linear-gradient(90deg, transparent, rgba(123,97,255,.3), rgba(0,217,255,.3), transparent);
}

.glow-line--subtle {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}


/* =================================================================
   13. TESTIMONIAL CARDS
   ================================================================= */
.testimonial {
  padding: 32px;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 64px;
  font-weight: 800;
  background: var(--grad-mint);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .3;
  line-height: 1;
  pointer-events: none;
}

.testimonial__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,245,160,.2);
}

.testimonial__name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
}

.testimonial__role {
  font-size: .82rem;
  color: var(--text-dim);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial__star {
  color: var(--primary);
  font-size: 14px;
}


/* =================================================================
   14. PRICING CARDS
   ================================================================= */
.price-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card--featured {
  border-color: rgba(0,245,160,.3);
  background: rgba(0,245,160,.04);
}

.price-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-mint);
}

.price-card__badge {
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--grad-mint);
  color: #050816;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.price-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.price-card__desc {
  font-size: .88rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.price-card__price {
  margin-bottom: 8px;
}

.price-card__currency {
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: top;
  margin-right: 2px;
}

.price-card__amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.price-card__period {
  font-size: .88rem;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.price-card__divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 24px 0;
}

.price-card__features {
  text-align: left;
  margin-bottom: 32px;
}

.price-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  color: var(--text-mid);
}

.price-card__feature--yes::before {
  content: '\2713';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card__feature--no {
  opacity: .4;
}

.price-card__feature--no::before {
  content: '\2014';
  color: var(--text-dim);
  flex-shrink: 0;
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px;
  border-radius: 100px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.billing-toggle__btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  background: none;
}

.billing-toggle__btn.active {
  background: var(--grad-mint);
  color: #050816;
  font-weight: 600;
}

.billing-toggle__save {
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0,245,160,.1);
  padding: 2px 10px;
  border-radius: 100px;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}


/* =================================================================
   15. COMPARISON TABLE
   ================================================================= */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .9rem;
}

.comparison-table thead th {
  padding: 20px 16px;
  text-align: center;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th.featured {
  background: rgba(0,245,160,.04);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  color: var(--primary);
}

.comparison-table tbody td {
  padding: 14px 16px;
  text-align: center;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.comparison-table tbody td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}

.comparison-table tbody td.featured {
  background: rgba(0,245,160,.02);
}

.comparison-table tbody tr:hover td {
  background: rgba(255,255,255,.02);
}

.comparison-table tbody tr:hover td.featured {
  background: rgba(0,245,160,.05);
}

.comparison-table .check {
  color: var(--primary);
  font-weight: 700;
}

.comparison-table .cross {
  color: var(--text-dim);
}


/* =================================================================
   16. FAQ ACCORDION
   ================================================================= */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background .2s;
  background: none;
  border: none;
}

.faq-item__trigger:hover {
  background: rgba(255,255,255,.03);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  font-size: .75rem;
  transition: transform .3s ease, background .3s ease;
  color: var(--primary);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(0,245,160,.1);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .4s var(--ease-out);
}

.faq-item.open .faq-item__content {
  max-height: 500px;
}

.faq-item__answer {
  padding: 0 24px 24px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-mid);
}


/* =================================================================
   17. STATS / METRICS DISPLAY
   ================================================================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 32px;
  text-align: center;
}

.stat-card__value {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: .88rem;
  color: var(--text-mid);
}

.stat-card__trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: .8rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 100px;
}

.stat-card__trend--up {
  color: var(--primary);
  background: rgba(0,245,160,.08);
}

.stat-card__trend--down {
  color: var(--danger);
  background: rgba(255,77,106,.08);
}


/* =================================================================
   18. SPLIT LAYOUT (two-column image + text)
   ================================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}
.split--reverse > * {
  direction: ltr;
}

.split__visual {
  position: relative;
}

.split__image {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.split__image img {
  width: 100%;
  height: auto;
  display: block;
}

.split__content {
  max-width: 500px;
}

.split__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.split__list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.split__list-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0,245,160,.08);
  color: var(--primary);
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.split__list-text {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.split__list-text strong {
  color: var(--text);
  font-weight: 600;
}


/* =================================================================
   19. SCREENSHOT / SHOT DISPLAY
   ================================================================= */
.shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

.shot__toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.shot__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.shot__dot--red    { background: #FF5F56; }
.shot__dot--yellow { background: #FFBD2E; }
.shot__dot--green  { background: #27C93F; }

.shot__url {
  flex: 1;
  text-align: center;
  font-size: .75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.shot__body {
  position: relative;
}

.shot__body img {
  display: block;
  width: 100%;
}

.shot--glow::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(0,245,160,.08), transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}


/* =================================================================
   20. BLOG CARDS
   ================================================================= */
.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}

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

.blog-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  background: rgba(5,8,22,.7);
  backdrop-filter: blur(8px);
  color: var(--primary);
  border: 1px solid rgba(0,245,160,.2);
}

.blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap .25s ease;
}

.blog-card__link:hover {
  gap: 10px;
  color: var(--primary);
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


/* =================================================================
   21. CTA PANELS
   ================================================================= */
.cta-panel {
  position: relative;
  padding: 64px;
  border-radius: var(--radius);
  text-align: center;
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-aurora);
}

.cta-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,245,160,.06), transparent 70%);
  pointer-events: none;
}

.cta-panel__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-panel__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-inline: auto;
  margin-bottom: 32px;
  max-width: 550px;
  position: relative;
  z-index: 1;
}

.cta-panel__actions {
  position: relative;
  z-index: 1;
}

/* Compact inline CTA */
.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  border-radius: var(--radius);
}

.cta-inline__text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.cta-inline__text span {
  color: var(--text-mid);
  font-weight: 400;
}


/* =================================================================
   22. FOOTER
   ================================================================= */
.footer {
  position: relative;
  padding: 80px 0 32px;
  z-index: var(--z-base);
  border-top: 1px solid rgba(255,255,255,.04);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  text-decoration: none;
}

.footer__logo img {
  height: 28px;
  width: auto;
}

.footer__tagline {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--text-mid);
  font-size: .9rem;
  transition: all .25s ease;
}

.footer__social-link:hover {
  background: rgba(0,245,160,.08);
  border-color: rgba(0,245,160,.2);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer__heading {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: .9rem;
  color: var(--text-mid);
  transition: color .2s;
}

.footer__link:hover {
  color: var(--primary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.04);
}

.footer__copy {
  font-size: .82rem;
  color: var(--text-dim);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: .82rem;
  color: var(--text-dim);
  transition: color .2s;
}

.footer__bottom-links a:hover {
  color: var(--text-mid);
}


/* =================================================================
   23. WHATSAPP FLOATING BUTTON & MODAL
   ================================================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-float__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  border: none;
  box-shadow:
    0 4px 20px rgba(37,211,102,.3),
    0 0 40px rgba(37,211,102,.1);
  transition: all .3s ease;
  position: relative;
}

.wa-float__btn:hover {
  transform: scale(1.08);
  box-shadow:
    0 4px 30px rgba(37,211,102,.4),
    0 0 60px rgba(37,211,102,.15);
}

.wa-float__btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0;
  animation: waPing 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes waPing {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: .2; transform: scale(1.3); }
}

.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5,8,22,.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  font-size: .82rem;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.wa-float__btn:hover + .wa-float__tooltip,
.wa-float__tooltip:hover {
  opacity: 1;
  pointer-events: auto;
}

/* WhatsApp modal */
.wa-modal {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 360px;
  max-height: 480px;
  z-index: var(--z-overlay);
  border-radius: var(--radius);
  overflow: hidden;
  transform: translateY(16px) scale(.95);
  opacity: 0;
  pointer-events: none;
  transition: all .3s var(--ease-out);
}

.wa-modal.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.wa-modal__header {
  background: var(--whatsapp);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-modal__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
}

.wa-modal__info {
  flex: 1;
}

.wa-modal__name {
  font-weight: 600;
  color: #fff;
  font-size: .95rem;
}

.wa-modal__status {
  font-size: .78rem;
  color: rgba(255,255,255,.8);
}

.wa-modal__close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  border: none;
  font-size: .8rem;
}

.wa-modal__body {
  padding: 20px;
  background: #050816;
}

.wa-modal__bubble {
  background: rgba(255,255,255,.06);
  border-radius: 0 12px 12px 12px;
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 85%;
  margin-bottom: 12px;
}

.wa-modal__time {
  font-size: .72rem;
  color: var(--text-dim);
  text-align: right;
}

.wa-modal__footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: #050816;
}

.wa-modal__input {
  display: flex;
  gap: 8px;
}

.wa-modal__input input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text);
  font-size: .88rem;
}

.wa-modal__input input::placeholder {
  color: var(--text-dim);
}

.wa-modal__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: background .2s;
}

.wa-modal__send:hover {
  background: #1EBE5A;
}


/* =================================================================
   24. LANGUAGE SWITCHER
   ================================================================= */
.lang-switch {
  position: relative;
}

.lang-switch__current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  transition: all .2s;
}

.lang-switch__current:hover {
  border-color: rgba(255,255,255,.15);
  color: var(--text);
}

.lang-switch__flag {
  width: 18px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-switch__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: rgba(10,13,31,.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 6px;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: all .2s ease;
  z-index: var(--z-dropdown);
}

.lang-switch.open .lang-switch__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-switch__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  font-size: .85rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.lang-switch__option:hover {
  background: rgba(255,255,255,.05);
  color: var(--text);
}

.lang-switch__option.active {
  color: var(--primary);
}


/* =================================================================
   25. FEATURE CARDS (icon cards, gradient border cards)
   ================================================================= */
.feature-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0,245,160,.06);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all .3s ease;
}

.feature-card:hover .feature-card__icon {
  background: rgba(0,245,160,.12);
  transform: scale(1.05);
}

.feature-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card__desc {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Gradient border variant */
.feature-card--gradient-border {
  background: transparent;
  border: none;
  padding: 1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0,245,160,.2), rgba(0,217,255,.1), rgba(123,97,255,.1), rgba(255,255,255,.04));
}

.feature-card--gradient-border .feature-card__inner {
  background: var(--bg);
  border-radius: calc(var(--radius) - 1px);
  padding: 32px;
  height: 100%;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }


/* =================================================================
   26. LOGO STRIP / TRUSTED-BY
   ================================================================= */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  padding: 40px 0;
}

.logo-strip__item {
  height: 28px;
  opacity: .35;
  filter: grayscale(1) brightness(2);
  transition: all .3s ease;
}

.logo-strip__item:hover {
  opacity: .7;
  filter: grayscale(0) brightness(1);
}

.logo-strip__label {
  width: 100%;
  text-align: center;
  font-size: .82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 24px;
}


/* =================================================================
   27. BADGE / CHIP / TAG
   ================================================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.4;
}

.badge--primary {
  background: rgba(0,245,160,.1);
  color: var(--primary);
  border: 1px solid rgba(0,245,160,.2);
}

.badge--secondary {
  background: rgba(0,217,255,.1);
  color: var(--secondary);
  border: 1px solid rgba(0,217,255,.2);
}

.badge--accent {
  background: rgba(123,97,255,.1);
  color: var(--accent);
  border: 1px solid rgba(123,97,255,.2);
}

.badge--danger {
  background: rgba(255,77,106,.1);
  color: var(--danger);
  border: 1px solid rgba(255,77,106,.2);
}

.badge--neutral {
  background: rgba(255,255,255,.06);
  color: var(--text-mid);
  border: 1px solid rgba(255,255,255,.08);
}


/* =================================================================
   28. FORMS & INPUTS
   ================================================================= */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text);
  font-size: .95rem;
  transition: all .25s ease;
}

.form-input::placeholder {
  color: var(--text-dim);
}

.form-input:focus {
  border-color: var(--primary);
  background: rgba(0,245,160,.03);
  box-shadow: 0 0 0 3px rgba(0,245,160,.08);
}

.form-input--error {
  border-color: var(--danger);
}

.form-input--error:focus {
  box-shadow: 0 0 0 3px rgba(255,77,106,.08);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-hint {
  font-size: .8rem;
  color: var(--text-dim);
  margin-top: 6px;
}

.form-error {
  font-size: .8rem;
  color: var(--danger);
  margin-top: 6px;
}

/* Checkbox & radio custom */
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text-mid);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}


/* =================================================================
   29. AVATAR & AVATAR GROUP
   ================================================================= */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}

.avatar--sm { width: 32px; height: 32px; }
.avatar--lg { width: 56px; height: 56px; }
.avatar--xl { width: 72px; height: 72px; }

.avatar-group {
  display: flex;
}

.avatar-group .avatar {
  margin-left: -10px;
  border: 2px solid var(--bg);
  position: relative;
}

.avatar-group .avatar:first-child {
  margin-left: 0;
}

.avatar-group__more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-left: -10px;
  border: 2px solid var(--bg);
}


/* =================================================================
   30. TOOLTIPS
   ================================================================= */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  background: rgba(10,13,31,.95);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text);
  font-size: .78rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all .2s ease;
  z-index: var(--z-toast);
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* =================================================================
   31. TOAST / NOTIFICATION
   ================================================================= */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: var(--z-toast);
  min-width: 300px;
  max-width: 420px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transform: translateX(120%);
  opacity: 0;
  transition: all .4s var(--ease-out);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast--success {
  background: rgba(0,245,160,.08);
  border: 1px solid rgba(0,245,160,.2);
}

.toast--error {
  background: rgba(255,77,106,.08);
  border: 1px solid rgba(255,77,106,.2);
}

.toast--info {
  background: rgba(0,217,255,.08);
  border: 1px solid rgba(0,217,255,.2);
}

.toast__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.toast__content { flex: 1; }

.toast__title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.toast__message {
  font-size: .82rem;
  color: var(--text-mid);
}

.toast__close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-dim);
  transition: all .2s;
  border: none;
  background: none;
  flex-shrink: 0;
}

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


/* =================================================================
   32. MODAL / DIALOG
   ================================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(5,8,22,.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius);
  background: #0A0D1F;
  border: 1px solid rgba(255,255,255,.08);
  transform: translateY(16px) scale(.97);
  transition: transform .3s var(--ease-out);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.modal__title {
  font-size: 1.1rem;
  font-weight: 600;
}

.modal__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-mid);
  background: rgba(255,255,255,.04);
  border: none;
  transition: all .2s;
}

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

.modal__body {
  padding: 24px;
}

.modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}


/* =================================================================
   33. TABS
   ================================================================= */
.tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.tabs__item {
  padding: 10px 20px;
  border-radius: var(--radius-xs);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  background: none;
}

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

.tabs__item.active {
  color: #050816;
  background: var(--grad-mint);
  font-weight: 600;
}

.tabs--underline {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-radius: 0;
  padding: 0;
  gap: 0;
}

.tabs--underline .tabs__item {
  border-radius: 0;
  padding: 12px 20px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tabs--underline .tabs__item.active {
  background: none;
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
  border-bottom-color: var(--primary);
}


/* =================================================================
   34. PROGRESS / LOADING
   ================================================================= */
.progress {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

.progress__bar {
  height: 100%;
  border-radius: 3px;
  background: var(--grad-mint);
  transition: width .6s var(--ease-out);
}

.progress__bar--accent {
  background: var(--grad-purple);
}

/* Spinner */
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255,255,255,.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.spinner--sm { width: 16px; height: 16px; }
.spinner--lg { width: 40px; height: 40px; border-width: 3px; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,.04) 25%, rgba(255,255,255,.08) 50%, rgba(255,255,255,.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-xs);
}

.skeleton--text {
  height: 14px;
  width: 80%;
  margin-bottom: 8px;
}

.skeleton--title {
  height: 24px;
  width: 60%;
  margin-bottom: 12px;
}

.skeleton--circle {
  border-radius: 50%;
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}


/* =================================================================
   35. DIVIDER
   ================================================================= */
.divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  border: none;
  margin: 32px 0;
}

.divider--sm { margin: 16px 0; }
.divider--lg { margin: 48px 0; }

.divider--dashed {
  background: none;
  border-top: 1px dashed rgba(255,255,255,.08);
}


/* =================================================================
   36. COUNT-DOWN / TIMER
   ================================================================= */
.countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.countdown__unit {
  text-align: center;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  min-width: 72px;
}

.countdown__value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.countdown__label {
  font-size: .72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .04em;
}


/* =================================================================
   37. MARQUEE / INFINITE SCROLL
   ================================================================= */
.marquee {
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* =================================================================
   38. HOW-IT-WORKS / STEPS
   ================================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,245,160,.2), rgba(0,217,255,.2), transparent);
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,245,160,.06);
  border: 1px solid rgba(0,245,160,.15);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.step__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.step__desc {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 280px;
  margin-inline: auto;
}


/* =================================================================
   39. FLOATING ORBIT ANIMATION (decorative)
   ================================================================= */
.orbit {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.04);
  pointer-events: none;
}

.orbit__item {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbit 20s linear infinite;
}

@keyframes orbit {
  0%   { transform: rotate(0deg) translateX(200px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}


/* =================================================================
   40. NUMBER COUNTER (animated)
   ================================================================= */
.counter {
  font-variant-numeric: tabular-nums;
  transition: all .3s;
}


/* =================================================================
   41. SCROLL INDICATOR
   ================================================================= */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: calc(var(--z-header) + 1);
  background: rgba(255,255,255,.03);
}

.scroll-indicator__bar {
  height: 100%;
  background: var(--grad-mint);
  border-radius: 0 2px 2px 0;
  transition: width .1s linear;
}


/* =================================================================
   42. BACK-TO-TOP
   ================================================================= */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: var(--z-sticky);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: all .3s ease;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(0,245,160,.08);
  border-color: rgba(0,245,160,.2);
  color: var(--primary);
}


/* =================================================================
   43. UTILITY CLASSES
   ================================================================= */

/* ---- Display ---- */
.d-none       { display: none !important; }
.d-block      { display: block !important; }
.d-flex       { display: flex !important; }
.d-inline     { display: inline !important; }
.d-inline-flex{ display: inline-flex !important; }
.d-grid       { display: grid !important; }

/* ---- Flex ---- */
.flex-row       { flex-direction: row; }
.flex-col       { flex-direction: column; }
.flex-wrap      { flex-wrap: wrap; }
.flex-nowrap    { flex-wrap: nowrap; }
.flex-1         { flex: 1; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.items-end      { align-items: flex-end; }
.items-stretch  { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between{ justify-content: space-between; }
.justify-start  { justify-content: flex-start; }
.justify-end    { justify-content: flex-end; }
.gap-xs  { gap: var(--sp-xs); }
.gap-sm  { gap: var(--sp-sm); }
.gap-md  { gap: var(--sp-md); }
.gap-lg  { gap: var(--sp-lg); }
.gap-xl  { gap: var(--sp-xl); }
.gap-2xl { gap: var(--sp-2xl); }

/* ---- Text ---- */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.text-sm      { font-size: .82rem; }
.text-base    { font-size: 1rem; }
.text-lg      { font-size: 1.15rem; }
.text-xl      { font-size: 1.35rem; }
.text-2xl     { font-size: 1.8rem; }
.text-dim     { color: var(--text-dim); }
.text-mid     { color: var(--text-mid); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent  { color: var(--accent); }
.text-danger  { color: var(--danger); }
.text-white   { color: #fff; }
.font-light   { font-weight: 300; }
.font-normal  { font-weight: 400; }
.font-medium  { font-weight: 500; }
.font-semibold{ font-weight: 600; }
.font-bold    { font-weight: 700; }
.font-black   { font-weight: 900; }
.uppercase    { text-transform: uppercase; }
.lowercase    { text-transform: lowercase; }
.capitalize   { text-transform: capitalize; }
.tracking-tight  { letter-spacing: -.02em; }
.tracking-wide   { letter-spacing: .04em; }
.tracking-wider  { letter-spacing: .08em; }
.leading-tight   { line-height: 1.2; }
.leading-normal  { line-height: 1.6; }
.leading-relaxed { line-height: 1.8; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Spacing (margin) ---- */
.m-0    { margin: 0; }
.m-auto { margin: auto; }
.mx-auto{ margin-inline: auto; }
.mt-xs  { margin-top: var(--sp-xs); }
.mt-sm  { margin-top: var(--sp-sm); }
.mt-md  { margin-top: var(--sp-md); }
.mt-lg  { margin-top: var(--sp-lg); }
.mt-xl  { margin-top: var(--sp-xl); }
.mt-2xl { margin-top: var(--sp-2xl); }
.mt-3xl { margin-top: var(--sp-3xl); }
.mt-4xl { margin-top: var(--sp-4xl); }
.mb-xs  { margin-bottom: var(--sp-xs); }
.mb-sm  { margin-bottom: var(--sp-sm); }
.mb-md  { margin-bottom: var(--sp-md); }
.mb-lg  { margin-bottom: var(--sp-lg); }
.mb-xl  { margin-bottom: var(--sp-xl); }
.mb-2xl { margin-bottom: var(--sp-2xl); }
.mb-3xl { margin-bottom: var(--sp-3xl); }
.mb-4xl { margin-bottom: var(--sp-4xl); }
.ml-auto{ margin-left: auto; }
.mr-auto{ margin-right: auto; }

/* ---- Spacing (padding) ---- */
.p-0    { padding: 0; }
.p-sm   { padding: var(--sp-sm); }
.p-md   { padding: var(--sp-md); }
.p-lg   { padding: var(--sp-lg); }
.p-xl   { padding: var(--sp-xl); }
.p-2xl  { padding: var(--sp-2xl); }
.px-md  { padding-inline: var(--sp-md); }
.px-lg  { padding-inline: var(--sp-lg); }
.px-xl  { padding-inline: var(--sp-xl); }
.py-md  { padding-block: var(--sp-md); }
.py-lg  { padding-block: var(--sp-lg); }
.py-xl  { padding-block: var(--sp-xl); }
.py-2xl { padding-block: var(--sp-2xl); }
.py-3xl { padding-block: var(--sp-3xl); }

/* ---- Width / Height ---- */
.w-full   { width: 100%; }
.w-auto   { width: auto; }
.h-full   { height: 100%; }
.max-w-sm { max-width: 480px; }
.max-w-md { max-width: 640px; }
.max-w-lg { max-width: 800px; }
.max-w-xl { max-width: 1000px; }

/* ---- Position ---- */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; top: 0; }

/* ---- Overflow ---- */
.overflow-hidden  { overflow: hidden; }
.overflow-auto    { overflow: auto; }
.overflow-x-auto  { overflow-x: auto; }

/* ---- Border radius ---- */
.rounded       { border-radius: var(--radius); }
.rounded-sm    { border-radius: var(--radius-sm); }
.rounded-xs    { border-radius: var(--radius-xs); }
.rounded-full  { border-radius: 9999px; }
.rounded-none  { border-radius: 0; }

/* ---- Opacity ---- */
.opacity-0   { opacity: 0; }
.opacity-50  { opacity: .5; }
.opacity-75  { opacity: .75; }
.opacity-100 { opacity: 1; }

/* ---- Pointer ---- */
.pointer       { cursor: pointer; }
.no-pointer    { pointer-events: none; }

/* ---- Z-index ---- */
.z-0    { z-index: 0; }
.z-10   { z-index: 10; }
.z-50   { z-index: 50; }
.z-100  { z-index: 100; }

/* ---- Visually hidden ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---- Background helpers ---- */
.bg-surface   { background: var(--surface); }
.bg-surface-h { background: var(--surface-h); }


/* =================================================================
   44. GRID HELPERS
   ================================================================= */
.grid      { display: grid; }
.grid-2    { grid-template-columns: repeat(2, 1fr); }
.grid-3    { grid-template-columns: repeat(3, 1fr); }
.grid-4    { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.col-span-full { grid-column: 1 / -1; }


/* =================================================================
   45. RESPONSIVE BREAKPOINTS
   ================================================================= */

/* ---- max 1199px (below desktop) ---- */
@media (max-width: 1199px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero-mockup {
    max-width: 600px;
    margin-inline: auto;
  }

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

  .split--reverse {
    direction: ltr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .feature-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps::before {
    display: none;
  }
}

/* ---- max 991px (tablet) ---- */
@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-table {
    font-size: .82rem;
  }

  .cta-panel {
    padding: 48px 32px;
  }

  .cta-inline {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* ---- max 767px (mobile) ---- */
@media (max-width: 767px) {
  html { font-size: 15px; }

  .container { padding-inline: 16px; }

  .section   { padding: var(--sp-3xl) 0; }
  .section--lg { padding: var(--sp-4xl) 0; }

  /* Header mobile */
  .nav,
  .header__actions .btn-glow,
  .header__actions .lang-switch {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Bento single column */
  .bento {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .bento__item--wide,
  .bento__item--tall,
  .bento__item--hero {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Hero adjustments */
  .hero {
    min-height: auto;
    padding: 120px 0 64px;
  }

  .hero__badge {
    margin-inline: auto;
  }

  .hero__desc {
    margin-inline: auto;
  }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-mockup__screen {
    transform: none;
  }

  /* Grids go single column */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .feature-grid--2,
  .feature-grid--4 {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .split__content {
    max-width: 100%;
    text-align: center;
  }

  .split__list-item {
    text-align: left;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Tabs horizontal scroll */
  .tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .tabs__item {
    flex-shrink: 0;
  }

  /* Comparison table scroll */
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 600px;
  }

  /* CTA */
  .cta-panel {
    padding: 40px 24px;
  }

  /* WhatsApp */
  .wa-float {
    bottom: 16px;
    right: 16px;
  }

  .wa-modal {
    right: 16px;
    left: 16px;
    width: auto;
    bottom: 90px;
  }

  /* Button group stack */
  .btn-group--responsive {
    flex-direction: column;
  }

  .btn-group--responsive .btn-glow {
    width: 100%;
    justify-content: center;
  }

  /* Pricing columns */
  .pricing-grid {
    max-width: 100%;
  }

  /* Back to top adjust */
  .back-to-top {
    bottom: 90px;
    right: 16px;
  }

  /* Countdown */
  .countdown {
    gap: 8px;
  }

  .countdown__unit {
    min-width: 56px;
    padding: 12px 8px;
  }

  .countdown__value {
    font-size: 1.5rem;
  }
}

/* ---- max 479px (small mobile) ---- */
@media (max-width: 479px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .price-card {
    padding: 32px 24px;
  }

  .price-card__amount {
    font-size: 2.8rem;
  }

  .glass--lg {
    padding: 24px;
  }

  .billing-toggle {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* =================================================================
   46. REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .aurora::before,
  .aurora::after,
  .aurora__blob {
    animation: none;
    opacity: .08;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }

  .hero-mockup__screen {
    transform: none;
  }
}


/* =================================================================
   47. PRINT STYLES
   ================================================================= */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  body::before,
  .aurora,
  .header,
  .wa-float,
  .wa-modal,
  .back-to-top,
  .scroll-indicator,
  .hamburger,
  .mobile-nav {
    display: none !important;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .glass {
    border: 1px solid #ddd;
    backdrop-filter: none;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: .8em;
    color: #666;
  }

  .gradient-text,
  .gradient-text--purple,
  .gradient-text--aurora {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #000;
    background-clip: unset;
  }

  .btn-glow {
    border: 1px solid #333;
    padding: 8px 16px;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  .section {
    padding: 24pt 0;
    page-break-inside: avoid;
  }
}


/* =================================================================
   48. DARK MODE ENFORCED (site is dark-first)
   ================================================================= */
@media (prefers-color-scheme: light) {
  /* Intentionally keep dark palette for brand consistency.
     The site is designed dark-first with the aurora borealis theme. */
}


/* =================================================================
   49. COOKIE BANNER
   ================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-overlay);
  padding: 20px;
  background: rgba(10,13,31,.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.06);
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin-inline: auto;
}

.cookie-banner__text {
  font-size: .88rem;
  color: var(--text-mid);
  flex: 1;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}


/* =================================================================
   50. MISCELLANEOUS COMPONENTS
   ================================================================= */

/* ---- Pill navigation ---- */
.pill-nav {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 100px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.pill-nav__item {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  background: none;
}

.pill-nav__item.active {
  background: var(--grad-mint);
  color: #050816;
  font-weight: 600;
}

/* ---- Inline code ---- */
code {
  font-family: var(--font-mono);
  font-size: .88em;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--secondary);
}

/* ---- Blockquote ---- */
blockquote {
  padding: 20px 24px;
  border-left: 3px solid var(--primary);
  background: rgba(0,245,160,.03);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-style: italic;
  color: var(--text-mid);
}

blockquote strong {
  color: var(--text);
}

/* ---- Horizontal rule ---- */
hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 32px 0;
}

/* ---- Table (standard) ---- */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

th {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .04em;
}

td {
  font-size: .9rem;
  color: var(--text);
}

tbody tr:hover td {
  background: rgba(255,255,255,.02);
}

/* ---- Anchor link offset ---- */
[id] {
  scroll-margin-top: 80px;
}

/* ---- Focus visible ---- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ---- Image placeholder ---- */
.img-placeholder {
  background: rgba(255,255,255,.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: .82rem;
  border-radius: var(--radius-sm);
  aspect-ratio: 16/9;
}

/* ---- Dot separator ---- */
.dot-sep::before {
  content: '\00B7';
  margin: 0 8px;
  color: var(--text-dim);
}

/* ---- Gradient border frame ---- */
.gradient-border {
  position: relative;
  padding: 1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0,245,160,.3), rgba(0,217,255,.15), rgba(123,97,255,.15), rgba(255,255,255,.04));
}

.gradient-border__inner {
  background: var(--bg);
  border-radius: calc(var(--radius) - 1px);
  padding: 32px;
  height: 100%;
}

/* ---- Glow dot decoration ---- */
.glow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(0,245,160,.4);
}

.glow-dot--secondary {
  background: var(--secondary);
  box-shadow: 0 0 12px rgba(0,217,255,.4);
}

.glow-dot--accent {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(123,97,255,.4);
}

/* ---- Floating icon badge ---- */
.icon-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.icon-badge--primary {
  background: rgba(0,245,160,.08);
  color: var(--primary);
}

.icon-badge--secondary {
  background: rgba(0,217,255,.08);
  color: var(--secondary);
}

.icon-badge--accent {
  background: rgba(123,97,255,.08);
  color: var(--accent);
}

/* ---- Video embed ---- */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
}

.video-embed iframe,
.video-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---- Play button overlay ---- */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,245,160,.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,245,160,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 5;
}

.play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--primary);
  margin-left: 4px;
}

.play-btn:hover {
  background: rgba(0,245,160,.25);
  transform: translate(-50%, -50%) scale(1.08);
}

/* ---- Responsive hide/show ---- */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hide-tablet { display: none !important; }
}

/* ---- Animated underline links ---- */
.link-underline {
  position: relative;
  color: var(--text);
  text-decoration: none;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width .3s ease;
}

.link-underline:hover::after {
  width: 100%;
}

/* ---- Micro-interactions ---- */
.hover-lift {
  transition: transform .3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-scale {
  transition: transform .3s ease;
}
.hover-scale:hover {
  transform: scale(1.03);
}

.hover-glow {
  transition: box-shadow .3s ease;
}
.hover-glow:hover {
  box-shadow: 0 0 30px rgba(0,245,160,.1);
}

/* ---- RTL support ---- */
[dir="rtl"] .section__label::before {
  order: 1;
}

[dir="rtl"] .split--reverse {
  direction: ltr;
}

[dir="rtl"] .split--reverse > * {
  direction: rtl;
}

/* ---- Aspect ratio helpers ---- */
.aspect-video  { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1; }
.aspect-4-3    { aspect-ratio: 4/3; }

/* ---- Object fit ---- */
.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }

/* ---- High contrast mode ---- */
@media (forced-colors: active) {
  .glass {
    border: 1px solid ButtonText;
  }

  .btn-glow {
    border: 1px solid ButtonText;
  }

  .gradient-text,
  .gradient-text--purple,
  .gradient-text--aurora {
    background: none;
    -webkit-text-fill-color: unset;
  }
}
