/* ═══════════════════════════════════════════════════════════
   PAGINA ERP — styles.css   |   Premium SaaS Design System
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────
   1. DESIGN TOKENS
───────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --yellow: #fecb18;
  --yellow-dark: #e6b400;
  --yellow-dim: rgba(254, 203, 24, 0.12);
  --yellow-glow: rgba(254, 203, 24, 0.30);

  /* Neutrals */
  --ink: #0a0d14;
  --ink-800: #111827;
  --ink-700: #1f2937;
  --ink-600: #374151;
  --muted: #6b7280;
  --subtle: #9ca3af;
  --border: #e5e7eb;
  --border-subtle: rgba(0, 0, 0, .06);

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --bg-muted: #f3f4f6;
  --bg-dark: #07090f;

  /* Accents */
  --violet: #6366f1;
  --green: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-ui: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Shadows — layered for realism */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .10), 0 4px 16px rgba(0, 0, 0, .06);
  --shadow-xl: 0 24px 80px rgba(0, 0, 0, .14), 0 8px 32px rgba(0, 0, 0, .08);
  --shadow-2xl: 0 48px 120px rgba(0, 0, 0, .18), 0 16px 48px rgba(0, 0, 0, .10);
  --glow-yellow: 0 0 40px rgba(254, 203, 24, .35), 0 0 80px rgba(254, 203, 24, .12);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 160ms;
  --dur-base: 280ms;
  --dur-slow: 480ms;
  --dur-slower: 700ms;

  /* Layout */
  --container: 1200px;
  --nav-h: 72px;
}

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

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

body {
  font-family: var(--font-ui);
  color: var(--ink-800);
  /*  background: var(--bg); */
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

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

/* ─────────────────────────────────────────────────────────
   3. LAYOUT
───────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* ─────────────────────────────────────────────────────────
   4. CUSTOM CURSOR  (desktop only)
───────────────────────────────────────────────────────── */
@media (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button,
  [role="button"] {
    cursor: none;
  }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-fast) var(--ease-out),
    width var(--dur-base) var(--ease-out),
    height var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out);
  will-change: transform;
}

.cursor.hovering {
  width: 14px;
  height: 14px;
  background: var(--yellow-dark);
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(254, 203, 24, .5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 120ms var(--ease-out),
    width var(--dur-slow) var(--ease-out),
    height var(--dur-slow) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
  will-change: transform;
}

.cursor-follower.hovering {
  width: 48px;
  height: 48px;
  border-color: rgba(254, 203, 24, .25);
}

/* ─────────────────────────────────────────────────────────
   5. TYPOGRAPHY SYSTEM
───────────────────────────────────────────────────────── */
.section-label-group {
  text-align: center;
  margin-bottom: var(--space-5);
}

.section-label-group--light {}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--yellow-dim);
  color: #7a4f00;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(254, 203, 24, .25);
  margin-bottom: var(--space-4);
}

.pill-tag--dim {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .75);
  border-color: rgba(255, 255, 255, .15);
}

.section-heading {
  font-family: var(--font-sans);
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink-800);
  margin-bottom: var(--space-4);
}

.section-heading--light {
  color: #fff;
}

.section-body {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.75;
}

.section-body--light {
  color: rgba(255, 255, 255, .6);
}

/* ─────────────────────────────────────────────────────────
   6. BUTTONS
───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 11px 22px;
  border-radius: var(--r-full);
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-base) var(--ease-spring),
    box-shadow var(--dur-base) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: inherit;
  opacity: 1;
  pointer-events: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset,
    0 2px 8px rgba(254, 203, 24, .3);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset,
    0 8px 24px rgba(254, 203, 24, .45),
    0 2px 6px rgba(254, 203, 24, .25);
}

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

.btn-outline {
  background: transparent;
  color: var(--bg-muted);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: 3;
  background: var(--bg-muted);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-600);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--ink-700);
  color: var(--ink-800);
  background: var(--bg-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost .play-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-spring);
}

.btn-ghost:hover .play-icon {
  transform: scale(1.12);
}

.btn-xl {
  padding: 15px 30px;
  font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────
   7. NAVBAR
───────────────────────────────────────────────────────── */
/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition:
    background var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
} */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  /* background: rgba(255, 255, 255, .7); */
  background: linear-gradient(135deg, var(--ink) 0%, #0f1d35 60%, #0e1826 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition:
    background var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.navbar__logo .logo-wordmark,
.nav-link {
  color: #fff;
}

.logo img {
  filter: drop-shadow(0 0 3px #0a0d14) drop-shadow(0 0 6px #0a0d14);
}




.navbar.scrolled {
  /*   background: rgba(255, 255, 255, .92); */
  background: linear-gradient(135deg, var(--ink) 0%, #0f1d35 60%, #0e1826 100%);
  border-color: var(--border);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.logo-mark {
  transition: transform var(--dur-base) var(--ease-spring);
}

.navbar__logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.05);
}

.logo-wordmark {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--ink-800);
  letter-spacing: -0.01em;
}

.logo-wordmark strong {
  font-weight: 900;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 15px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--yellow);
  border-radius: var(--r-full);
  transition: left var(--dur-base) var(--ease-spring),
    right var(--dur-base) var(--ease-spring);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink-800);
  background: var(--bg-muted);
}

.nav-link.active::after {
  left: 18px;
  right: 18px;
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink-800);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform var(--dur-base) var(--ease-out),
    opacity var(--dur-base) var(--ease-out),
    width var(--dur-base) var(--ease-out);
}

.hamburger span:nth-child(3) {
  width: 65%;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  width: 100%;
  transform: translateY(-7px) rotate(-45deg);
}

/* ─────────────────────────────────────────────────────────
   8. HERO
───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + var(--space-20));
  padding-bottom: var(--space-24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Grid background */
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

/* Glow orbs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__glow--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(254, 203, 24, .2) 0%, transparent 65%);
  top: -250px;
  right: -200px;
  animation: drift 12s ease-in-out infinite;
}

.hero__glow--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, .12) 0%, transparent 65%);
  bottom: -120px;
  left: -150px;
  animation: drift 16s ease-in-out infinite reverse;
}

.hero__glow--3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(16, 185, 129, .08) 0%, transparent 65%);
  top: 45%;
  left: 38%;
  animation: drift 20s ease-in-out infinite;
}

.hero__inner {
  container-type: inline-size;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

/* ── Hero content ── */
.hero__content {
  max-width: 580px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(254, 203, 24, .1);
  border: 1px solid rgba(254, 203, 24, .3);
  color: #7a4f00;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px 6px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-6);
  animation: fadeSlideDown var(--dur-slower) var(--ease-out) both;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}

.hero__heading {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink-800);
  margin-bottom: var(--space-5);
  animation: fadeSlideUp var(--dur-slower) 80ms var(--ease-out) both;
}

.heading-gradient {
  background: linear-gradient(135deg, var(--yellow) 0%, #f59e0b 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.hero__body {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  animation: fadeSlideUp var(--dur-slower) 160ms var(--ease-out) both;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
  animation: fadeSlideUp var(--dur-slower) 240ms var(--ease-out) both;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  animation: fadeSlideUp var(--dur-slower) 320ms var(--ease-out) both;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--bg);
  font-size: 0.625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -9px;
  box-shadow: var(--shadow-xs);
  color: #fff;
}

.proof-avatar:last-child {
  margin-right: 0;
}

.proof-avatar--more {
  background: var(--bg-muted);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.proof-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.875rem;
  color: var(--muted);
}

.proof-rating {
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.proof-text strong {
  color: var(--ink-800);
}

/* ── App Window Mockup ── */
.hero__visual {
  position: relative;
  animation: fadeSlideLeft var(--dur-slower) 120ms var(--ease-out) both;
}

.app-window {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow:
    var(--shadow-2xl),
    0 0 0 1px rgba(0, 0, 0, .06);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.app-titlebar {
  background: var(--ink-800);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.titlebar-dots {
  display: flex;
  gap: 6px;
}

.tdot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tdot--red {
  background: #ff5f56;
}

.tdot--yellow {
  background: #ffbd2e;
}

.tdot--green {
  background: #27c93f;
}

.titlebar-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
  text-align: center;
  flex: 1;
}

.titlebar-spacer {
  width: 42px;
}

.app-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Stats row */
.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.app-stat {
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-3) var(--space-3) var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  position: relative;
}

.app-stat__icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.app-stat__val {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--ink-800);
  line-height: 1.2;
  white-space: nowrap;
}

.app-stat__lbl {
  font-size: 0.625rem;
  color: var(--subtle);
  font-weight: 500;
  white-space: nowrap;
}

.app-stat__badge {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  font-size: 0.5625rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, .12);
  padding: 2px 5px;
  border-radius: var(--r-sm);
}

/* Chart */
.app-chart-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.app-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-chart-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink-800);
}

.app-chart-meta {
  font-size: 0.6875rem;
  color: var(--subtle);
  font-weight: 500;
}

.app-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 72px;
  padding: 0 2px;
}

.app-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  height: 100%;
}

.app-bar-fill {
  width: 100%;
  height: var(--bh);
  background: var(--bg-muted);
  border-radius: 4px 4px 0 0;
  transition: height 0.8s var(--ease-out);
}

.app-bar--peak .app-bar-fill {
  background: linear-gradient(180deg, var(--yellow) 0%, var(--amber) 100%);
  box-shadow: 0 4px 12px rgba(254, 203, 24, .3);
}

.app-bar span {
  font-size: 0.5rem;
  color: var(--subtle);
  font-weight: 600;
  text-transform: uppercase;
}

.app-bar--peak span {
  color: #92610a;
}

/* Orders */
.app-orders {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.app-orders__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink-800);
  margin-bottom: 4px;
}

.app-order {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px var(--space-3);
  border-radius: var(--r-md);
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  transition: background var(--dur-fast) var(--ease-out);
}

.app-order:hover {
  background: var(--bg-muted);
}

.app-order__av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-order__info {
  flex: 1;
  min-width: 0;
}

.app-order__name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-800);
}

.app-order__item {
  font-size: 0.625rem;
  color: var(--subtle);
}

.app-order__right {
  text-align: right;
  flex-shrink: 0;
}

.app-order__amt {
  font-size: 0.75rem;
  font-weight: 800;
  color: #059669;
}

.app-order__status {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #059669;
  background: rgba(16, 185, 129, .1);
  padding: 1px 5px;
  border-radius: var(--r-full);
}

/* Floating pills */
.hero-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 14px 8px 8px;
  box-shadow: var(--shadow-lg);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-800);
  white-space: nowrap;
  z-index: 3;
}

.pill-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-icon--green {
  background: rgba(16, 185, 129, .15);
  color: #059669;
}

.pill-icon--yellow {
  background: rgba(254, 203, 24, .2);
  color: #d97706;
}

.pill-icon--purple {
  background: rgba(99, 102, 241, .15);
  color: #6366f1;
}

.pill-time {
  font-size: 0.6875rem;
  color: var(--subtle);
  font-weight: 400;
}

.hero-pill--1 {
  bottom: 28px;
  left: -44px;
  animation: float-a 4s var(--ease-in-out) infinite;
}

.hero-pill--2 {
  top: 32px;
  right: -36px;
  animation: float-b 5s var(--ease-in-out) infinite;
}

.hero-pill--3 {
  bottom: 110px;
  right: -48px;
  animation: float-a 3.5s var(--ease-in-out) infinite 0.8s;
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 2;
}

.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .2));
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────
   9. TRUSTED BY
───────────────────────────────────────────────────────── */
.trusted {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  overflow: hidden;
}

.trusted__label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--space-8);
}

.trusted__track-wrap {
  overflow: hidden;
  position: relative;
}

.trusted__track-wrap::before,
.trusted__track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.trusted__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-soft), transparent);
}

.trusted__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-soft), transparent);
}

.trusted__track {
  overflow: hidden;
}

.trusted__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}

.brand-name {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--subtle);
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color var(--dur-base) var(--ease-out);
}

.brand-name:hover {
  color: var(--ink-800);
}

.brand-sep {
  color: var(--border);
  font-size: 1.2rem;
}

/* ─────────────────────────────────────────────────────────
   10. BENEFITS
───────────────────────────────────────────────────────── */
.benefits {
  padding: var(--space-10) 0;
  /*  background: var(--bg); */
  position: relative;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.bcard {
  position: relative;
  padding: var(--space-8) var(--space-6) var(--space-6);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition:
    transform var(--dur-base) var(--ease-spring),
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
}

.bcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim, rgba(254, 203, 24, .08)) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  pointer-events: none;
}

.bcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent, var(--yellow));
}

.bcard:hover::after {
  opacity: 1;
}

.bcard__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent, var(--yellow)) 0%, transparent 70%);
  opacity: 0.06;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.bcard:hover .bcard__glow {
  opacity: 0.12;
  transform: scale(1.3);
}

.bcard__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--accent-dim, var(--yellow-dim));
  color: var(--accent, var(--yellow-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-base) var(--ease-spring), background var(--dur-base) var(--ease-out);
  position: relative;
  z-index: 1;
}

.bcard:hover .bcard__icon {
  transform: scale(1.1) rotate(-4deg);
}

.bcard__title {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink-800);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.bcard__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  position: relative;
  z-index: 1;
}

.bcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.bcard__chip {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent, var(--yellow-dark));
  background: var(--accent-dim, var(--yellow-dim));
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.bcard__arrow {
  color: var(--subtle);
  transition: transform var(--dur-base) var(--ease-spring), color var(--dur-base) var(--ease-out);
}

.bcard:hover .bcard__arrow {
  transform: translateX(4px);
  color: var(--accent, var(--yellow-dark));
}

/* ─────────────────────────────────────────────────────────
   11. HOW IT WORKS
───────────────────────────────────────────────────────── */
.how {
  position: relative;
  padding: var(--space-10) 0;
  overflow: hidden;
}

.how__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ink) 0%, #0f1d35 60%, #0e1826 100%);
}

.how__inner {
  position: relative;
  z-index: 1;
}

.how__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: var(--space-16);
}

.how-step {
  text-align: center;
  padding: var(--space-8) var(--space-6);
}

.how-step__num {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: var(--space-5);
  letter-spacing: -0.04em;
}

.how-step__title {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-3);
}

.how-step__body {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
}

.how-step__connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(254, 203, 24, .3), rgba(254, 203, 24, .1));
  margin-top: 56px;
  position: relative;
}

.how-step__connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(254, 203, 24, .4);
  border-right: 1px solid rgba(254, 203, 24, .4);
  transform: rotate(45deg);
}

/* ─────────────────────────────────────────────────────────
   12. STATS
───────────────────────────────────────────────────────── */
.stats {
  padding: var(--space-10) 0;
  /*  background: var(--bg); */
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-16);
}

.stat-card {
  padding: var(--space-10) var(--space-6);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  transition:
    transform var(--dur-base) var(--ease-spring),
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow-dim);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--yellow-dim);
  color: var(--yellow-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card__num {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--yellow-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}

.stat-card__lbl {
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────
   13. TESTIMONIALS
───────────────────────────────────────────────────────── */
.testimonials {
  padding: var(--space-10) 0;
  background: var(--bg-soft);
}

.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: start;
}

.tcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-8) var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  transition:
    transform var(--dur-base) var(--ease-spring),
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
}

.tcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.tcard--featured {
  background: var(--ink-800);
  border-color: var(--ink-800);
  transform: scale(1.04);
  box-shadow: var(--shadow-2xl);
}

.tcard--featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: var(--shadow-2xl), var(--glow-yellow);
}

.tcard__quote-mark {
  position: absolute;
  top: var(--space-5);
  right: var(--space-6);
  font-size: 5rem;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.12;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.tcard--featured .tcard__quote-mark {
  opacity: 0.1;
}

.tcard__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
  flex: 1;
  position: relative;
}

.tcard--featured .tcard__text {
  color: rgba(255, 255, 255, .75);
}

.tcard__stars {
  font-size: 0.875rem;
  color: var(--yellow);
  letter-spacing: 3px;
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
}

.tcard--featured .tcard__author {
  border-color: rgba(255, 255, 255, .1);
}

.tcard__av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tcard__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink-800);
}

.tcard--featured .tcard__name {
  color: #fff;
}

.tcard__role {
  font-size: 0.8125rem;
  color: var(--subtle);
}

.tcard--featured .tcard__role {
  color: rgba(255, 255, 255, .4);
}

/* ─────────────────────────────────────────────────────────
   14. CTA SECTION
───────────────────────────────────────────────────────── */
.cta {
  padding: var(--space-10) 0 var(--space-10);
  /*  background: var(--bg); */
}

.cta__card {
  background: var(--ink-800);
  border-radius: var(--r-2xl);
  padding: var(--space-10) var(--space-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 203, 24, .12) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 8s ease-in-out infinite;
}

.cta__orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, .1) 0%, transparent 65%);
  bottom: -80px;
  left: -60px;
}

.cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 2;
}

.cta__heading {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
  max-width: 640px;
  margin-inline: auto;
}

.cta__body {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: var(--space-10);
  max-width: 440px;
  margin-inline: auto;
  line-height: 1.7;
}

.cta__form {
  max-width: 480px;
  margin-inline: auto;
}

.cta__field-wrap {
  margin-bottom: var(--space-3);
}

.cta__input-group {
  display: flex;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .15);
  border-radius: var(--r-full);
  padding: 6px 6px 6px 18px;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}

.cta__input-group:focus-within {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 0 0 4px rgba(254, 203, 24, .15);
}

.input-icon {
  color: rgba(255, 255, 255, .35);
  flex-shrink: 0;
  align-self: center;
}

.cta__input-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  min-width: 0;
}

.cta__input-group input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.cta__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, .35);
}

.cta__feedback {
  margin-top: var(--space-4);
  font-size: 0.875rem;
  font-weight: 600;
  min-height: 20px;
}

.cta__feedback.success {
  color: #34d399;
}

.cta__feedback.error {
  color: #f87171;
}

.cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-top: var(--space-10);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, .6);
}

/* ─────────────────────────────────────────────────────────
   15. FOOTER
───────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
}

.footer__top {
  padding: var(--space-20) 0 var(--space-16);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer__top-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.footer__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: var(--space-2);
}

.fsocial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  transition:
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    transform var(--dur-base) var(--ease-spring),
    border-color var(--dur-fast) var(--ease-out);
}

.fsocial:hover {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .45);
  transition: color var(--dur-fast) var(--ease-out);
  width: fit-content;
}

.footer__link:hover {
  color: #fff;
}

.footer__bottom {
  padding: var(--space-6) 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer__copy,
.footer__made {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, .25);
}

/* ─────────────────────────────────────────────────────────
   16. BACK TO TOP
───────────────────────────────────────────────────────── */
.btt {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition:
    opacity var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-spring);
  z-index: 999;
}

.btt.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.btt:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), var(--glow-yellow);
}

.btt:active {
  transform: scale(0.95);
}

/* ─────────────────────────────────────────────────────────
   17. SCROLL REVEAL UTILITY
───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slower) var(--ease-out),
    transform var(--dur-slower) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
  border: 1px solid #fff;
  border-radius: 16px;
}

.reveal-d1 {
  transition-delay: 60ms;
}

.reveal-d2 {
  transition-delay: 120ms;
}

.reveal-d3 {
  transition-delay: 180ms;
}

.reveal-d4 {
  transition-delay: 240ms;
}

/* ─────────────────────────────────────────────────────────
   18. KEYFRAME ANIMATIONS
───────────────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float-a {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-10px) rotate(1deg);
  }

  66% {
    transform: translateY(-4px) rotate(-1deg);
  }
}

@keyframes float-b {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  40% {
    transform: translateY(-12px) rotate(-1deg);
  }

  70% {
    transform: translateY(-5px) rotate(1deg);
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(24px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-16px, 12px) scale(0.97);
  }
}

@keyframes breathe {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(254, 203, 24, .5);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(254, 203, 24, 0);
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.8;
    transform: scaleY(1.1);
  }
}

/* ─────────────────────────────────────────────────────────
   19. RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .how__steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .how-step__connector {
    display: none;
  }

  .footer__top-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-16);
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero__body {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__proof {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .testi__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .tcard--featured {
    transform: none;
  }

  .tcard--featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .navbar__nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-6) var(--space-6) var(--space-8);
    gap: 2px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform var(--dur-slow) var(--ease-out),
      opacity var(--dur-slow) var(--ease-out);
    z-index: 999;
  }

  .navbar__nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    border-radius: var(--r-md);
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .btn-outline.btn:not(.hamburger) {
    display: none;
  }

  .hero {
    padding-top: calc(var(--nav-h) + var(--space-16));
    padding-bottom: var(--space-16);
    min-height: auto;
  }

  .benefits {
    padding: var(--space-20) 0;
  }

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

  .how {
    padding: var(--space-20) 0;
  }

  .stats {
    padding: var(--space-20) 0;
  }

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

  .testimonials {
    padding: var(--space-20) 0;
  }

  .cta {
    padding: var(--space-12) 0 var(--space-20);
  }

  .cta__card {
    padding: var(--space-12) var(--space-6);
    border-radius: var(--r-xl);
  }

  .cta__input-group {
    flex-direction: column;
    border-radius: var(--r-xl);
    padding: var(--space-3);
    gap: var(--space-3);
  }

  .cta__input-group input {
    padding: var(--space-2) var(--space-2);
  }

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

  .cta__trust {
    gap: var(--space-4);
  }

  .footer__top-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

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

  .btt {
    bottom: var(--space-5);
    right: var(--space-5);
  }

  /* Disable cursor on touch */
  .cursor,
  .cursor-follower {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────────────────
   20. REDUCED MOTION
───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-pill--1,
  .hero-pill--2,
  .hero-pill--3 {
    animation: none;
  }

  .trusted__inner {
    animation: none;
  }
}

/* 
header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
}

nav a {
  color: #333;
}

nav a:hover {
  color: #007bff;
} */

.navbar__logo .logo-wordmark,
.nav-link {
  color: #fff;
}