/* ============================================================
   DESIGN TOKENS — ADHIKAARI DESIGN SYSTEM v1.0
   ============================================================ */
:root {
  /* Brand Colors */
  --saffron:       #FF9933;
  --saffron-light: #FFB366;
  --saffron-dark:  #E6851A;
  --saffron-glow:  rgba(255,153,51,0.18);
  --green:         #138808;
  --green-light:   #1AA80A;
  --green-dark:    #0E6606;
  --white:         #FFFFFF;

  /* Neutral Palette */
  --ink-900:   #080C14;
  --ink-800:   #0F1623;
  --ink-700:   #1A2035;
  --ink-600:   #253048;
  --ink-500:   #3A4A6B;
  --ink-400:   #6278A0;
  --ink-300:   #9DAFC8;
  --ink-200:   #C8D4E4;
  --ink-100:   #EAF0F8;
  --ink-50:    #F5F8FD;

  /* Semantic */
  --bg-primary:   var(--ink-900);
  --bg-card:      var(--ink-800);
  --bg-surface:   var(--ink-700);
  --border:       rgba(255,255,255,0.08);
  --border-bright:rgba(255,153,51,0.3);
  --text-primary: #FFFFFF;
  --text-secondary:#C8D4E4;
  --text-muted:   #6278A0;

  /* Spacing Scale (4px base) */
  --s1: 4px;   --s2: 8px;   --s3: 12px;  --s4: 16px;
  --s5: 20px;  --s6: 24px;  --s7: 28px;  --s8: 32px;
  --s10: 40px; --s12: 48px; --s16: 64px; --s20: 80px;
  --s24: 96px; --s32: 128px;

  /* Typography Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Border Radius */
  --r1: 4px;  --r2: 8px;  --r3: 12px;
  --r4: 16px; --r5: 20px; --r6: 24px;
  --r-full: 9999px;

  /* Shadows / Elevation */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.5), 0 6px 16px rgba(0,0,0,0.4);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.6);
  --shadow-saffron: 0 8px 32px rgba(255,153,51,0.35);
  --shadow-green:   0 8px 32px rgba(19,136,8,0.35);

  /* Transitions */
  --t-fast:   150ms cubic-bezier(0.4,0,0.2,1);
  --t-base:   250ms cubic-bezier(0.4,0,0.2,1);
  --t-slow:   400ms cubic-bezier(0.4,0,0.2,1);
  --t-spring: 500ms cubic-bezier(0.34,1.56,0.64,1);

  /* Fonts — fallback stacks prevent FOUT layout shift */
  --font-display: 'Syne', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overscroll-behavior-y: none; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  touch-action: pan-y;
  padding-top: 120px; /* navbar + banner height */
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select {
  font-family: inherit;
  background: transparent;
  outline: none;
  border: none;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s6);
}
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 var(--s6); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.text-saffron { color: var(--saffron); }
.text-green  { color: var(--green-light); }
.hidden { display: none !important; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, var(--text-7xl));
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, var(--text-5xl));
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, var(--text-4xl));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.body-lg { font-size: var(--text-lg); line-height: 1.7; color: var(--text-secondary); }
.body-base { font-size: var(--text-base); line-height: 1.6; color: var(--text-secondary); }
.label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: var(--s3) var(--s6);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}
.btn:hover::before { background: rgba(255,255,255,0.1); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  box-shadow: var(--shadow-saffron);
  padding: var(--s4) var(--s8);
  font-size: var(--text-lg);
}
.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(255,153,51,0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  border: 1px solid var(--border);
  padding: var(--s4) var(--s8);
  font-size: var(--text-lg);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.2);
}
.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: var(--shadow-green);
  padding: var(--s4) var(--s8);
  font-size: var(--text-lg);
}
.btn-green:hover {
  box-shadow: 0 12px 40px rgba(19,136,8,0.5);
  transform: translateY(-2px);
}
.btn-sm {
  padding: var(--s2) var(--s5);
  font-size: var(--text-sm);
  border-radius: var(--r-full);
}
.btn-loading {
  pointer-events: none;
  opacity: 0.7;
}
.btn-loading::after {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: var(--s2);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   INPUTS
   ============================================================ */
.input-group { display: flex; flex-direction: column; gap: var(--s2); }
.input-label { font-size: var(--text-sm); font-weight: 500; color: var(--text-secondary); }
.input-field {
  width: 100%;
  padding: var(--s3) var(--s4);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: all var(--t-base);
}
.input-field:focus {
  border-color: var(--saffron);
  background: rgba(255,153,51,0.06);
  box-shadow: 0 0 0 3px rgba(255,153,51,0.12);
}
.input-field.error {
  border-color: #F87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,0.12);
}
.input-field.success {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(26,168,10,0.12);
}
.input-field::placeholder { color: var(--ink-400); }
.input-error-msg { font-size: var(--text-xs); color: #F87171; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r5);
  padding: var(--s8);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,153,51,0.4), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}
.card:hover { border-color: rgba(255,153,51,0.25); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }

.card-glass {
  background: rgba(255,255,255,0.04);
  /* backdrop-filter */: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r5);
}

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: var(--s1) var(--s3);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge-saffron { background: var(--saffron-glow); color: var(--saffron); border: 1px solid rgba(255,153,51,0.3); }
.badge-green   { background: rgba(19,136,8,0.15); color: #4ADE80; border: 1px solid rgba(26,168,10,0.3); }
.badge-blue    { background: rgba(59,130,246,0.12); color: #93C5FD; border: 1px solid rgba(59,130,246,0.25); }

/* ============================================================
   SECTION SPACING
   ============================================================ */
.section { padding: var(--s24) 0; }
.section-sm { padding: var(--s16) 0; }
.section-header { margin-bottom: var(--s16); }

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.018;
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--s4) 0;
  transition: all var(--t-slow);
}
.navbar.scrolled {
  background: rgba(8,12,20,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: var(--s3) 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: var(--r2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: var(--shadow-saffron);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}

/* First A → Authority (strong, stable) */
.logo-text .a-main {
  color: var(--saffron);
  font-weight: 900;
}

/* Extra “a” → Signature (subtle but distinctive) */
.logo-text .a-accent {
  color: var(--saffron);
  font-weight: 900;
  position: relative;
}

/* Create a minimal underline marker (signature detail) */
.logo-text .a-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--saffron);
  opacity: 0.6;
  border-radius: 2px;
}

/* Dot → Brand seal */
.logo-text .dot {
  color: var(--saffron);
  margin-left: 2px;
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s8);
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}
.nav-link:hover { color: var(--text-primary); }
.nav-actions { display: flex; align-items: center; gap: var(--s3); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t-base);
}

    .mobile-nav {
      position: fixed;
      inset: 0;
      background: var(--ink-900);
      z-index: 2000;

      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--s8);

      transform: translateX(100%);
      opacity: 0;
      pointer-events: none; /* 🔥 CRITICAL */
      transition: all 0.4s ease;
    }

    .mobile-nav.open {
      transform: translateX(0);
      opacity: 1;
      pointer-events: all; /* 🔥 enable only when open */
    }
.mobile-nav .nav-link { font-size: var(--text-2xl); font-family: var(--font-display); font-weight: 700; }
.mobile-close {
  position: absolute;
  top: var(--s6); right: var(--s6);
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-glow-1 {
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,153,51,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(19,136,8,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s6);
}
.hero-eyebrow-line {
  width: 32px; height: 2px;
  background: var(--saffron);
}
.hero-title {
  margin-bottom: var(--s6);
}
.hero-title .line { display: block; }
.hero-title .highlight {
  background: linear-gradient(135deg, var(--saffron), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .outline-text {
  -webkit-text-stroke: 2px rgba(255,255,255,0.25);
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  margin-bottom: var(--s8);
  max-width: 480px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: var(--s8);
  margin-top: var(--s10);
  padding-top: var(--s8);
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-primary);
}
.stat-label { font-size: var(--text-xs); color: var(--text-muted); }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 360px;
  height: 420px;
}
.hero-card-item {
  position: absolute;
  width: 280px;
  border-radius: var(--r5);
  padding: var(--s6);
  transition: all var(--t-slow);
}
.hc-main {
  top: 0; left: 40px;
  background: linear-gradient(135deg, var(--ink-700), var(--ink-800));
  border: 1px solid rgba(255,153,51,0.3);
  box-shadow: var(--shadow-xl);
  z-index: 3;
  animation: float1 6s ease-in-out infinite;
}
.hc-back1 {
  top: 30px; left: 10px;
  background: var(--ink-800);
  border: 1px solid var(--border);
  z-index: 2;
  opacity: 0.7;
  animation: float2 7s ease-in-out infinite;
}
.hc-back2 {
  top: 60px; left: -20px;
  background: var(--ink-700);
  border: 1px solid var(--border);
  z-index: 1;
  opacity: 0.4;
  animation: float3 8s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(0deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-5px) rotate(1.5deg); }
}
.hc-icon {
  width: 44px; height: 44px;
  border-radius: var(--r3);
  background: var(--saffron-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--s4);
  border: 1px solid rgba(255,153,51,0.3);
}
.hc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--s2);
}
.hc-status {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-size: var(--text-xs);
  color: #4ADE80;
  font-weight: 500;
}
.hc-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hc-progress { margin-top: var(--s4); }
.hc-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--s2);
}
.progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--green-light));
  border-radius: var(--r-full);
  transition: width 1s ease;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding: var(--s8) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: var(--s12);
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.trust-inner:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}
.trust-item-icon { font-size: 1.2rem; }
.trust-item-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item-text strong { color: var(--text-secondary); }
.trust-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--saffron);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r5);
  padding: var(--s6);
  cursor: pointer;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  group: true;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  transform: scaleX(0);
  transition: transform var(--t-base);
  transform-origin: left;
}
.service-card:hover {
  border-color: rgba(255,153,51,0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--r4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--s4);
  position: relative;
}
.service-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.15;
}
.si-saffron { background: var(--saffron-glow); border: 1px solid rgba(255,153,51,0.25); }
.si-green   { background: rgba(19,136,8,0.15);  border: 1px solid rgba(26,168,10,0.25); }
.si-blue    { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); }
.si-purple  { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); }

.service-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--s2);
}
.service-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--s4);
}
.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--saffron);
}
.service-time {
  font-size: var(--text-xs);
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: var(--s1) var(--s3);
  border-radius: var(--r-full);
}
.service-cta {
  margin-top: var(--s4);
  width: 100%;
  padding: var(--s3) var(--s4);
  border-radius: var(--r3);
  background: rgba(255,153,51,0.1);
  color: var(--saffron);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 1px solid rgba(255,153,51,0.2);
  transition: all var(--t-base);
}
.service-cta:hover {
  background: var(--saffron);
  color: #fff;
  box-shadow: var(--shadow-saffron);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s8);
  position: relative;
}
.hiw-connector {
  position: absolute;
  top: 40px;
  left: calc(33.33% - 40px);
  right: calc(33.33% - 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  opacity: 0.4;
}
.hiw-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hiw-num {
  width: 80px; height: 80px;
  margin: 0 auto var(--s6);
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(255,153,51,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--saffron);
  position: relative;
}
.hiw-num::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,153,51,0.15);
}
.hiw-icon { font-size: 2rem; }
.hiw-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--s3);
}
.hiw-desc { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  align-items: start;
}
.pricing-card {
  border-radius: var(--r5);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
}
.pricing-card-basic {
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.pricing-card-pro {
  background: linear-gradient(135deg, rgba(255,153,51,0.12), rgba(255,153,51,0.04));
  border: 2px solid var(--saffron);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(255,153,51,0.15);
}
.pricing-card-enterprise {
  background: linear-gradient(135deg, rgba(19,136,8,0.1), rgba(19,136,8,0.04));
  border: 1px solid rgba(19,136,8,0.4);
}
.pricing-popular {
  position: absolute;
  top: 0; right: 0;
  background: var(--saffron);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--s1) var(--s4);
  border-bottom-left-radius: var(--r3);
  letter-spacing: 0.08em;
}
.pricing-tier { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--s3); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.pricing-price {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--s2);
}
.pricing-price sup { font-size: var(--text-2xl); vertical-align: top; margin-top: 8px; }
.pricing-price-note { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--s8); }
.pricing-features { display: flex; flex-direction: column; gap: var(--s3); margin-bottom: var(--s8); }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.pricing-feature-check { color: #4ADE80; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.pricing-feature-x { color: var(--ink-400); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.pricing-btn { width: 100%; border-radius: var(--r3); padding: var(--s4); font-size: var(--text-base); font-weight: 600; }

/* ============================================================
   URGENCY BANNER
   ============================================================ */
.urgency-strip {
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
  padding: var(--s4) 0;
  text-align: center;
  position: relative;
  z-index: 1100; /* above navbar */
  overflow: hidden;
}
.urgency-strip::before {
  content: '';
  position: relative;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}
.urgency-text {
  font-size: var(--text-base);
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
}
.urgency-counter {
  background: rgba(0,0,0,0.2);
  border-radius: var(--r2);
  padding: 2px var(--s2);
  font-family: var(--font-display);
  font-weight: 800;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r5);
  padding: var(--s6);
  transition: all var(--t-base);
}
.testimonial-card:hover { border-color: rgba(255,153,51,0.2); transform: translateY(-4px); }
.testimonial-stars { font-size: var(--text-sm); color: var(--saffron); margin-bottom: var(--s4); letter-spacing: 2px; }
.testimonial-text { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--s5); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: var(--s3); }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: var(--text-sm); }
.testimonial-role { font-size: var(--text-xs); color: var(--text-muted); }

/* ============================================================
   STICKY BOTTOM BAR (Mobile)
   ============================================================ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  padding: var(--s3) var(--s4);
  background: rgba(8,12,20,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  gap: var(--s3);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 90px; right: var(--s6);
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  animation: wa-pulse 3s ease-in-out infinite;
  transition: transform var(--t-spring);
}
.wa-float:hover { transform: scale(1.12); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}
.wa-float svg { width: 32px; height: 32px; }

/* ============================================================
   MODAL SYSTEM
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r6);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--t-spring);
  position: relative;
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-header {
  padding: var(--s6) var(--s8);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
}
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--text-primary); }
.modal-body { padding: var(--s8); }
.modal-footer {
  padding: var(--s6) var(--s8);
  border-top: 1px solid var(--border);
  display: flex;
  gap: var(--s3);
  justify-content: flex-end;
}

/* ============================================================
   STEPPER / APPLICATION FLOW
   ============================================================ */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--s8);
}
.step-item {
  display: flex;
  align-items: center;
}
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--t-base);
  background: var(--bg-card);
  flex-shrink: 0;
}
.step-circle.active {
  border-color: var(--saffron);
  background: var(--saffron-glow);
  color: var(--saffron);
  box-shadow: 0 0 0 6px rgba(255,153,51,0.1);
}
.step-circle.done {
  border-color: var(--green);
  background: rgba(19,136,8,0.15);
  color: #4ADE80;
}
.step-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--s2);
  white-space: nowrap;
}
.step-label.active { color: var(--saffron); font-weight: 600; }
.step-label.done { color: #4ADE80; }
.step-connector {
  height: 2px;
  width: 60px;
  background: var(--border);
  flex-shrink: 0;
  transition: background var(--t-slow);
}
.step-connector.done { background: linear-gradient(90deg, var(--green), var(--saffron)); }
.step-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================================
   FORM STEPS
   ============================================================ */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeInUp 0.3s ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.step-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--s2);
}
.step-subtitle { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--s8); }

/* Service selection cards in form */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}
.service-select-item {
  padding: var(--s4);
  border: 2px solid var(--border);
  border-radius: var(--r3);
  cursor: pointer;
  transition: all var(--t-base);
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.service-select-item:hover { border-color: rgba(255,153,51,0.4); background: var(--saffron-glow); }
.service-select-item.selected {
  border-color: var(--saffron);
  background: var(--saffron-glow);
  box-shadow: 0 0 0 4px rgba(255,153,51,0.1);
}
.service-select-icon { font-size: 1.5rem; flex-shrink: 0; }
.service-select-name { font-size: var(--text-sm); font-weight: 600; }
.service-select-price { font-size: var(--text-xs); color: var(--saffron); }

/* Document Upload UI */
.doc-upload-zone {
  border: 2px dashed rgba(255,153,51,0.3);
  border-radius: var(--r4);
  padding: var(--s12);
  text-align: center;
  cursor: pointer;
  transition: all var(--t-base);
  background: rgba(255,153,51,0.03);
}
.doc-upload-zone:hover {
  border-color: var(--saffron);
  background: var(--saffron-glow);
}
.doc-upload-icon { font-size: 3rem; margin-bottom: var(--s3); }
.doc-upload-title { font-weight: 600; margin-bottom: var(--s2); }
.doc-upload-subtitle { font-size: var(--text-sm); color: var(--text-muted); }
.doc-checklist { display: flex; flex-direction: column; gap: var(--s3); margin-top: var(--s6); }
.doc-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s4);
  background: rgba(255,255,255,0.04);
  border-radius: var(--r3);
  font-size: var(--text-sm);
  border: 1px solid var(--border);
}
.doc-item-icon { color: var(--text-muted); font-size: 1rem; }
.doc-item-icon.uploaded { color: #4ADE80; }

/* Order summary */
.order-summary-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r4);
  padding: var(--s6);
}
.order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s3) 0;
  font-size: var(--text-sm);
}
.order-summary-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.order-summary-row.total {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-primary);
}
.order-summary-val { color: var(--text-secondary); }
.order-summary-val.price { color: var(--saffron); font-weight: 700; }
.upsell-toggle {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s4);
  background: rgba(255,153,51,0.07);
  border: 1px solid rgba(255,153,51,0.25);
  border-radius: var(--r3);
  cursor: pointer;
  margin-top: var(--s4);
  transition: all var(--t-base);
}
.upsell-toggle:hover { background: rgba(255,153,51,0.12); }
.toggle-switch {
  width: 44px; height: 24px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  position: relative;
  flex-shrink: 0;
  transition: background var(--t-base);
}
.toggle-switch.on { background: var(--saffron); border-color: var(--saffron); }
.toggle-knob {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left var(--t-base);
}
.toggle-switch.on .toggle-knob { left: 22px; }
.upsell-info { flex: 1; }
.upsell-title { font-size: var(--text-sm); font-weight: 600; margin-bottom: 2px; }
.upsell-desc { font-size: var(--text-xs); color: var(--text-muted); }
.upsell-price { color: var(--saffron); font-weight: 700; font-size: var(--text-sm); flex-shrink: 0; }

/* ============================================================
   ORDER TRACKING DASHBOARD
   ============================================================ */
.dashboard-section {
  padding: var(--s24) 0;
  border-top: 1px solid var(--border);
}
.order-track-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r5);
  padding: var(--s6);
  transition: all var(--t-base);
}
.order-track-card:hover { border-color: rgba(255,153,51,0.2); }
.order-id {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--saffron);
  letter-spacing: 0.1em;
  margin-bottom: var(--s2);
}
.order-service-name {
  font-weight: 600;
  font-size: var(--text-base);
  margin-bottom: var(--s4);
}
.order-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: var(--s4) 0;
}
.ot-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.ot-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-card);
  flex-shrink: 0;
  transition: all var(--t-base);
  position: relative;
  z-index: 1;
}
.ot-dot.done { border-color: var(--green); background: var(--green); }
.ot-dot.active {
  border-color: var(--saffron);
  background: var(--saffron);
  box-shadow: 0 0 0 4px rgba(255,153,51,0.2);
  animation: blink 2s infinite;
}
.ot-line { flex: 1; height: 2px; background: var(--border); margin-top: 7px; }
.ot-line.done { background: var(--green); }
.ot-label { font-size: 9px; color: var(--text-muted); margin-top: 6px; text-align: center; }
.ot-label.done { color: #4ADE80; }
.ot-label.active { color: var(--saffron); font-weight: 600; }
.order-actions { display: flex; gap: var(--s3); margin-top: var(--s4); }


.toast {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4) var(--s5);
  border-radius: var(--r4);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  max-width: 360px;
  transform: translateX(120%);
  opacity: 0;
  transition: all var(--t-spring);
  pointer-events: all;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast-success { background: rgba(26,168,10,0.15); border-color: rgba(26,168,10,0.4); }
.toast-error   { background: rgba(239,68,68,0.15);  border-color: rgba(239,68,68,0.4); }
.toast-info    { background: rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.4); }
.toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.toast-msg { font-size: var(--text-sm); font-weight: 500; flex: 1; }

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r3);
  overflow: hidden;
  margin-bottom: var(--s3);
  transition: border-color var(--t-base);
}
.faq-item.open { border-color: rgba(255,153,51,0.3); }
.faq-question {
  padding: var(--s5) var(--s6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: var(--text-base);
  transition: background var(--t-fast);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-chevron {
  font-size: 1.2rem;
  transition: transform var(--t-base);
  color: var(--text-muted);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.faq-answer-inner {
  padding: 0 var(--s6) var(--s5);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--s16) 0 var(--s8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s12);
  margin-bottom: var(--s12);
}
.footer-brand-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: var(--s4);
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: var(--s5);
  color: var(--text-secondary);
}
.footer-links { display: flex; flex-direction: column; gap: var(--s3); }
.footer-link {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer-link:hover { color: var(--text-primary); }
.footer-bottom {
  padding-top: var(--s8);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  gap: var(--s4);
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: var(--s5); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   SKELETON LOADING
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, var(--ink-700) 25%, var(--ink-600) 50%, var(--ink-700) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: var(--r2);
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   SECTION: GROWTH STRATEGY
   ============================================================ */
.growth-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s6); }
.growth-card {
  padding: var(--s6);
  border-radius: var(--r4);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.growth-num {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--saffron), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--s3);
}

/* ============================================================
   DECORATIVE ELEMENTS
   ============================================================ */
.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  opacity: 0.3;
  margin: 0;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s4);
  border-radius: var(--r-full);
  background: var(--saffron-glow);
  border: 1px solid rgba(255,153,51,0.25);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--saffron);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s5);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-pro { transform: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .growth-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-bar { display: flex; }
  .wa-float { bottom: 80px; }
  body { padding-bottom: 80px; }
  .service-select-grid { grid-template-columns: 1fr; }
  .modal { border-radius: var(--r4) var(--r4) 0 0; margin-top: auto; max-height: 95vh; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .pricing-grid { gap: var(--s4); }
  .hero-stats { gap: var(--s6); }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink-800); }
::-webkit-scrollbar-thumb { background: var(--ink-500); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--saffron); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection { background: rgba(255,153,51,0.3); color: #fff; }

/* ============================================================
   SUPERLATIVE ENHANCEMENT LAYER v2.0
   — Cinematic depth, premium motion, editorial typography
   ============================================================ */

/* --- DESIGN TOKEN UPGRADES --- */
:root {
  --saffron-vivid:   #FF8800;
  --gold:            #D4A017;
  --gold-light:      #F0C040;
  --chakra-blue:     #000080;
  --font-editorial:  'Playfair Display', Georgia, serif;

  /* Premium shadow system */
  --glow-saffron:    0 0 80px rgba(255,153,51,0.22), 0 0 160px rgba(255,153,51,0.10);
  --glow-green:      0 0 80px rgba(19,136,8,0.18);
  --shadow-card-xl:  0 40px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);

  /* Gradient utilities */
  --grad-tricolor:   linear-gradient(90deg, var(--saffron) 0%, var(--white) 50%, var(--green) 100%);
  --grad-saffron-gold: linear-gradient(135deg, var(--saffron) 0%, var(--gold-light) 50%, var(--saffron-dark) 100%);
  --grad-body-bg:    radial-gradient(ellipse at 20% 0%, rgba(255,153,51,0.07) 0%, transparent 50%),
                     radial-gradient(ellipse at 80% 100%, rgba(19,136,8,0.06) 0%, transparent 50%),
                     var(--ink-900);
}

/* --- BODY UPGRADE --- */
body {
  background: var(--grad-body-bg);
}

/* --- CANVAS BACKGROUND --- */
#chakra-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
}

/* --- URGENCY BANNER UPGRADE --- */
.urgency-strip {
  background: linear-gradient(90deg, #8B0000 0%, var(--saffron-dark) 30%, var(--saffron) 50%, var(--saffron-dark) 70%, #8B0000 100%);
  background-size: 200% 100%;
  animation: banner-flow 6s linear infinite;
  padding: var(--s3) 0;
  border-bottom: 2px solid rgba(255,255,255,0.12);
}
@keyframes banner-flow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.urgency-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
}

/* --- NAVBAR UPGRADE --- */
.navbar.scrolled {
  background: rgba(4,6,12,0.96);
  border-bottom: 1px solid rgba(255,153,51,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.logo-mark {
  background: var(--grad-saffron-gold);
  border-radius: var(--r3);
  box-shadow: 0 4px 20px rgba(255,153,51,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
  font-size: 1.35rem;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: rotate(30deg);
  animation: logo-sheen 4s ease-in-out infinite;
}
@keyframes logo-sheen {
  0%, 70%, 100% { transform: translateX(-100%) rotate(30deg); }
  30% { transform: translateX(100%) rotate(30deg); }
}
.logo-text {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}
.nav-link {
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--text-primary); }

/* --- HERO UPGRADE --- */
.hero {
  min-height: 100vh;
  background: transparent;
  overflow: visible;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,153,51,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(19,136,8,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  opacity: 0.6;
}
.hero-glow-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255,153,51,0.16) 0%, rgba(255,153,51,0.04) 40%, transparent 70%);
  animation: pulse 10s ease-in-out infinite;
  filter: blur(1px);
}
.hero-glow-2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(19,136,8,0.14) 0%, transparent 70%);
  animation: pulse 12s ease-in-out infinite reverse;
  filter: blur(1px);
}
.hero-left { position: relative; z-index: 2; }
.display-xl {
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: -0.04em;
  text-shadow: 0 2px 40px rgba(255,153,51,0.12);
}
.hero-title .highlight {
  background: var(--grad-saffron-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 30px rgba(255,153,51,0.4));
  background-size: 200% 100%;
  animation: gradient-shift 4s ease-in-out infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-title .outline-text {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.15);
  letter-spacing: -0.01em;
}
.hero-eyebrow {
  display: inline-flex;
  background: rgba(255,153,51,0.08);
  border: 1px solid rgba(255,153,51,0.2);
  padding: var(--s2) var(--s5);
  border-radius: var(--r-full);
  backdrop-filter: blur(10px);
}
.hero-eyebrow-line {
  width: 24px;
  background: var(--grad-saffron-gold);
  border-radius: 2px;
}

/* Hero stats upgrade */
.hero-stats {
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: var(--s12);
}
.stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--grad-saffron-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* Hero card stack upgrade */
.hc-main {
  background: linear-gradient(145deg, rgba(30,36,56,0.95), rgba(20,24,40,0.98));
  border: 1px solid rgba(255,153,51,0.35);
  box-shadow: var(--shadow-card-xl), 0 0 60px rgba(255,153,51,0.08);
  /* backdrop-filter */: blur(20px);
}
.hc-icon {
  background: var(--grad-saffron-gold);
  border: none;
  box-shadow: 0 4px 20px rgba(255,153,51,0.4);
}
.hc-back1 {
  background: rgba(20,24,40,0.7);
  /* backdrop-filter */: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
}
.hc-back2 {
  background: rgba(15,18,30,0.5);
  /* backdrop-filter */: blur(8px);
  border: 1px solid rgba(255,255,255,0.04);
}

/* --- TRICOLOR DIVIDER --- */
.divider-gradient {
  height: 2px;
  background: var(--grad-tricolor);
  opacity: 0.25;
  position: relative;
}
.divider-gradient::after {
  content: '⊕';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  color: rgba(255,153,51,0.4);
  font-size: 0.9rem;
  line-height: 1;
  background: var(--ink-900);
  padding: 0 var(--s3);
}

/* --- SECTION HEADER UPGRADE --- */
.section-eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  background: rgba(255,153,51,0.06);
  border: 1px solid rgba(255,153,51,0.18);
  backdrop-filter: blur(8px);
  font-size: 0.65rem;
}
.display-lg {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

/* --- TRUST STRIP UPGRADE --- */
.trust-strip{
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.1);
  border-bottom:1px solid rgba(255,255,255,.1);
  padding:10px 0;
}

.trust-track{
  display:flex;
  width:max-content;
  animation:scroll 20s linear infinite;
}

.trust-inner{
  display:flex;
  gap:40px;
  padding-right:40px;
  white-space:nowrap;
  font-size:14px;
  opacity:.8;
}

/* smooth infinite loop */
@keyframes scroll{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

@media(max-width:768px){
  .trust-track{
    animation:none;
    justify-content:center;
  }
}

/* --- SERVICE CARDS UPGRADE --- */
.service-card {
  background: linear-gradient(145deg, rgba(15,22,35,0.9), rgba(10,14,24,0.95));
  border: 1px solid rgba(255,255,255,0.05);
  /* backdrop-filter */: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-card:hover {
  background: linear-gradient(145deg, rgba(20,30,50,0.95), rgba(15,20,38,0.98));
  border-color: rgba(255,153,51,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(255,153,51,0.06), inset 0 1px 0 rgba(255,153,51,0.1);
  transform: translateY(-8px) scale(1.01);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,153,51,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.service-card:hover::before { opacity: 1; }
.service-name {
  font-size: var(--text-xl);
  letter-spacing: -0.01em;
}
.service-price {
  background: var(--grad-saffron-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--text-2xl);
}
.service-cta {
  background: rgba(255,153,51,0.07);
  border: 1px solid rgba(255,153,51,0.18);
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
  letter-spacing: 0.02em;
}
.service-cta:hover {
  background: var(--grad-saffron-gold);
  color: #000;
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(255,153,51,0.4);
  transform: translateY(-1px);
}
.si-saffron { box-shadow: 0 4px 20px rgba(255,153,51,0.2); }
.si-green   { box-shadow: 0 4px 20px rgba(19,136,8,0.2); }
.si-blue    { box-shadow: 0 4px 20px rgba(59,130,246,0.2); }
.si-purple  { box-shadow: 0 4px 20px rgba(139,92,246,0.2); }

/* --- HOW IT WORKS UPGRADE --- */
.hiw-num {
  background: linear-gradient(145deg, rgba(20,28,48,0.95), rgba(12,16,28,0.98));
  border: 1px solid rgba(255,153,51,0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 30px rgba(255,153,51,0.06);
  /* backdrop-filter */: blur(10px);
  width: 90px; height: 90px;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.hiw-step:hover .hiw-num {
  border-color: rgba(255,153,51,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 50px rgba(255,153,51,0.12);
  transform: translateY(-4px);
}
.hiw-num::after {
  inset: -12px;
  border: 1px solid rgba(255,153,51,0.08);
  animation: orbit-ring 8s linear infinite;
}
@keyframes orbit-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hiw-icon { font-size: 2.4rem; filter: drop-shadow(0 2px 8px rgba(255,153,51,0.3)); }
.hiw-title {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--s4);
}
.hiw-connector {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,153,51,0.5), rgba(19,136,8,0.5));
  top: 45px;
}

/* --- PRICING CARDS UPGRADE --- */
.pricing-card {
  /* backdrop-filter */: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card-basic {
  background: linear-gradient(145deg, rgba(15,22,35,0.9), rgba(10,14,24,0.95));
  border: 1px solid rgba(255,255,255,0.06);
}
.pricing-card-pro {
  background: linear-gradient(145deg, rgba(255,153,51,0.1), rgba(255,120,0,0.05));
  border: 1px solid rgba(255,153,51,0.5);
  box-shadow: 0 0 80px rgba(255,153,51,0.12), 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,153,51,0.2);
  transform: scale(1.04);
}
.pricing-card-pro:hover { transform: scale(1.04) translateY(-6px); }
.pricing-card-enterprise {
  background: linear-gradient(145deg, rgba(19,136,8,0.08), rgba(10,80,5,0.04));
  border: 1px solid rgba(19,136,8,0.35);
}
.pricing-popular {
  background: var(--grad-saffron-gold);
  color: #000;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}
.pricing-price {
  background: var(--grad-saffron-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card-enterprise .pricing-price {
  background: linear-gradient(135deg, #4ADE80, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
}

/* --- TESTIMONIALS UPGRADE --- */
.testimonial-card {
  background: linear-gradient(145deg, rgba(15,22,35,0.9), rgba(10,14,24,0.95));
  border: 1px solid rgba(255,255,255,0.05);
  /* backdrop-filter */: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: var(--s6);
  font-family: var(--font-editorial);
  font-size: 8rem;
  line-height: 1;
  color: rgba(255,153,51,0.06);
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: rgba(255,153,51,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.testimonial-stars {
  color: transparent;
  background: var(--grad-saffron-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--text-base);
  letter-spacing: 4px;
}
.testimonial-text { font-style: normal; color: rgba(200,212,228,0.85); line-height: 1.75; }
.testimonial-name { font-family: var(--font-display); letter-spacing: -0.01em; }
.testimonial-avatar {
  width: 46px; height: 46px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  font-size: var(--text-sm);
}

/* --- FAQ UPGRADE --- */
.faq-item {
  background: linear-gradient(145deg, rgba(15,22,35,0.8), rgba(10,14,24,0.85));
  /* backdrop-filter */: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r4);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.faq-item:hover { border-color: rgba(255,153,51,0.15); }
.faq-item.open {
  border-color: rgba(255,153,51,0.35);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(255,153,51,0.05);
}
.faq-question { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: -0.005em; }
.faq-chevron { color: var(--saffron); }

/* --- MODAL UPGRADE --- */
.modal {
  background: linear-gradient(145deg, rgba(15,22,38,0.97), rgba(8,12,22,0.99));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 80px rgba(255,153,51,0.06), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(30px);
}
.modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,153,51,0.02);
}
.modal-title { font-family: var(--font-display); font-size: var(--text-xl); letter-spacing: -0.02em; }
.modal-overlay { background: rgba(0,0,0,0.85); }

/* --- BUTTONS UPGRADE --- */
.btn-primary {
  background: var(--grad-saffron-gold);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(255,153,51,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 8px 40px rgba(255,153,51,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-3px) scale(1.02);
  color: #000;
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-green {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 4px 20px rgba(22,163,74,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  color: #fff;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.btn-green:hover {
  box-shadow: 0 8px 40px rgba(22,163,74,0.5);
  transform: translateY(-3px);
}

/* --- FOOTER UPGRADE --- */
.footer {
  background: rgba(4,6,12,0.95);
  border-top: 1px solid rgba(255,153,51,0.1);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-tricolor);
  opacity: 0.35;
}
.footer-col-title { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; }
.footer-link { color: rgba(98,120,160,0.7); }
.footer-link:hover { color: var(--saffron); }

/* --- CTA SECTION UPGRADE --- */
section.section:last-of-type > .container > div {
  background: linear-gradient(135deg,
    rgba(255,153,51,0.07) 0%,
    rgba(20,28,48,0.3) 50%,
    rgba(19,136,8,0.07) 100%) !important;
  border: 1px solid rgba(255,153,51,0.18) !important;
  box-shadow: 0 0 100px rgba(255,153,51,0.06), 0 40px 80px rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
}

/* --- INPUT UPGRADE --- */
.input-field {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r3);
  /* backdrop-filter */: blur(10px);
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.input-field:focus {
  background: rgba(255,153,51,0.04);
  border-color: rgba(255,153,51,0.5);
  box-shadow: 0 0 0 3px rgba(255,153,51,0.1), 0 4px 20px rgba(0,0,0,0.2);
}

/* --- BADGE UPGRADES --- */
.badge-saffron {
  background: rgba(255,153,51,0.1);
  border: 1px solid rgba(255,153,51,0.25);
  color: var(--gold-light);
}
.badge-green { background: rgba(19,136,8,0.12); }

/* --- SCROLLBAR STYLING --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink-900); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--saffron), var(--green));
  border-radius: 3px;
}

/* --- REVEAL ANIMATION UPGRADE --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1), transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- PROGRESS BAR UPGRADE --- */
.progress-bar-fill {
  background: var(--grad-saffron-gold);
  background-size: 200% 100%;
  animation: progress-shimmer 2s ease-in-out infinite;
}
@keyframes progress-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- WA FLOAT UPGRADE --- */
.wa-float {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.15);
  animation: wa-ripple 3s ease-out infinite;
}
@keyframes wa-ripple {
  0%   { box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.3); }
  50%  { box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* --- TOAST UPGRADE --- */
.toast {
  border-radius: var(--r4);
  backdrop-filter: blur(24px);
  background: rgba(15,22,35,0.95) !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
}
.toast-success { border-left: 3px solid #4ADE80 !important; }
.toast-error   { border-left: 3px solid #F87171 !important; }
.toast-info    { border-left: 3px solid #60A5FA !important; }

/* --- ORDER TRACKING UPGRADE --- */
.order-track-card {
  background: linear-gradient(145deg, rgba(15,22,35,0.9), rgba(10,14,24,0.95));
  /* backdrop-filter */: blur(16px);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.order-track-card:hover { border-color: rgba(255,153,51,0.2); }

/* --- STICKY BAR UPGRADE --- */
.sticky-bar {
  background: rgba(4,6,12,0.97);
  border-top: 1px solid rgba(255,153,51,0.12);
  backdrop-filter: blur(30px);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
}

/* --- CARD (Generic) UPGRADE --- */
.card {
  background: linear-gradient(145deg, rgba(15,22,35,0.9), rgba(10,14,24,0.95));
  border: 1px solid rgba(255,255,255,0.05);
  /* backdrop-filter */: blur(16px);
}
.card:hover {
  border-color: rgba(255,153,51,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(255,153,51,0.05);
}

/* --- DOC UPLOAD ZONE UPGRADE --- */
.doc-upload-zone {
  border-color: rgba(255,153,51,0.2);
  background: rgba(255,153,51,0.02);
  /* backdrop-filter */: blur(10px);
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.doc-upload-zone:hover {
  border-color: rgba(255,153,51,0.5);
  background: rgba(255,153,51,0.06);
  box-shadow: 0 0 30px rgba(255,153,51,0.08);
}

/* --- SERVICE MODAL INLINE CARD --- */
.card-glass {
  background: rgba(15,22,38,0.8);
  /* backdrop-filter */: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}


/* --- STEP CONNECTOR UPGRADE --- */
.step-connector.done {
  background: var(--grad-saffron-gold);
  box-shadow: 0 0 8px rgba(255,153,51,0.3);
}
.step-circle.active {
  background: rgba(255,153,51,0.12);
  border-color: var(--saffron);
  box-shadow: 0 0 20px rgba(255,153,51,0.25);
  color: var(--saffron);
}

/* --- UPSELL TOGGLE UPGRADE --- */
.upsell-toggle {
  background: rgba(255,153,51,0.05);
  border: 1px solid rgba(255,153,51,0.2);
  border-radius: var(--r4);
  /* backdrop-filter */: blur(10px);
}
.upsell-toggle:hover { background: rgba(255,153,51,0.1); }

/* --- GROWTH SECTION UPGRADE --- */
.growth-card {
  background: linear-gradient(145deg, rgba(15,22,35,0.9), rgba(10,14,24,0.95));
  /* backdrop-filter */: blur(16px);
  border: 1px solid rgba(255,255,255,0.05);
}

/* --- INLINE QUOTE (how it works) UPGRADE --- */
div[style*="background:var(--bg-card)"][style*="align-items:center"] {
  background: linear-gradient(135deg, rgba(15,22,38,0.9), rgba(10,15,28,0.95)) !important;
  border: 1px solid rgba(255,153,51,0.15) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,153,51,0.04);
}

/* --- PREFERS REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

    :root {
      --z-canvas: 0;
      --z-base: 10;
      --z-navbar: 1000;
      --z-banner: 1100;
      --z-instant: 1200;
      --z-mobile: 2000;
      --z-toast: 3000;
    }
    #chakra-canvas {
      position: fixed;
      inset: 0;
      z-index: var(--z-canvas);
      pointer-events: none;
    }
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: var(--z-navbar);
    }
    .urgency-strip {
      top: 0;
      left: 0;
      right: 0;
      position: relative;
      z-index: 1100; /* above navbar */
    }
    .navbar {
      position: fixed;
      top: 0;
      z-index: 1000;
    }
    
.instant-close-bar {
  position: fixed;

  bottom: 20px;
  left: 50%;
  transform: translateX(-50%); /* 🔥 center magic */

  width: auto;
  max-width: 600px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  padding: 12px 20px;

  background: linear-gradient(135deg, #FF9933, #E6851A);
  color: white;

  border-radius: 14px; /* 👈 floating look */
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);

  z-index: 1200;
}
.instant-close-bar button {
  background: white;
  color: #E6851A;

  border: none;
  padding: 8px 14px;
  border-radius: 8px;

  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .instant-close-bar {
    left: 10px;
    right: 10px;
    transform: none;
    width: auto;

    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .instant-close-bar button {
    width: 100%;
  }
}
.toast-container {
      position: fixed;
      right: var(--s6);
      z-index: 5000;

      /* REMOVE THIS */
      /* top: var(--s6); */

      top: 120px; /* safe fallback */
    }
    .top-stack {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1200;
    }

    .navbar {
      position: fixed;
      top: 0; /* dynamic via JS */
      z-index: 1100;
    }

    .urgency-strip {
      position: relative;
    }

/* ============================================================
   PERFORMANCE & SCROLL OPTIMISATION LAYER
   ============================================================ */

/* Native smooth scrolling with momentum on iOS */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* GPU-promote animated elements — browser creates compositor layers */
.hero-glow-1,
.hero-glow-2 {
  will-change: transform, opacity;
  transform: translateZ(0);
}
.hero-card-item {
  will-change: transform;
  transform: translateZ(0);
}
.trust-inner {
  will-change: transform;
  transform: translateZ(0);
}
#chakra-canvas {
  will-change: contents;
  transform: translateZ(0);
}
.wa-float {
  will-change: transform;
  transform: translateZ(0);
}
.btn-primary,
.btn-secondary,
.btn-green {
  will-change: transform;
  transform: translateZ(0);
}

/* contain: layout on sections — stops style recalcs from bubbling up */
.section,
.section-sm {
  contain: layout style;
}

/* content-visibility: auto on below-fold sections — browser skips
   rendering until near viewport. Gives massive scroll perf on long pages. */
#services       { content-visibility: auto; contain-intrinsic-size: 0 900px; }
#how-it-works   { content-visibility: auto; contain-intrinsic-size: 0 600px; }
#pricing        { content-visibility: auto; contain-intrinsic-size: 0 700px; }
#testimonials   { content-visibility: auto; contain-intrinsic-size: 0 600px; }
#track          { content-visibility: auto; contain-intrinsic-size: 0 500px; }
#faq            { content-visibility: auto; contain-intrinsic-size: 0 700px; }

/* Backdrop-filter only where it actually matters visually.
   Strip it from off-screen / hidden elements — each is a GPU layer. */
.service-card,
.testimonial-card,
.faq-item,
.growth-card,
.order-track-card,
.doc-upload-zone,
.upsell-toggle,
.card-glass {
  /* keep backdrop-filter only on these key ones — remove from generic cards */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Navbar gets it — always visible and important */
.navbar.scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
/* Modal gets it — top of stack, only one open at a time */
.modal {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
/* Toast gets it — small, infrequent */
.toast {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
/* Mobile nav gets it */
.mobile-nav {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
/* Sticky bar gets it */
.sticky-bar {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Prevent layout shift on reveal animations */
.reveal {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Cursor glow — mark as non-interactive layer */
#cursor-glow {
  will-change: left, top;
  contain: strict;
  pointer-events: none;
}

/* Remove all animation on reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #chakra-canvas { display: none; }
  .hero-glow-1, .hero-glow-2 { animation: none; }
}

/* ── Font rendering ── */
body {
  text-rendering: optimizeSpeed; /* faster than optimizeLegibility on body text */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Only headings need legibility */
.display-xl, .display-lg, .display-md,
.hero-title, .section-header h2 {
  text-rendering: optimizeLegibility;
}

/* ── Touch targets on mobile ── */
@media (max-width: 600px) {
  .btn { min-height: 44px; }
  .nav-link { min-height: 44px; display: inline-flex; align-items: center; }
}

/* ── Pointer events: none on purely decorative elements ── */
.hero-bg, .hero-glow-1, .hero-glow-2, .hero-grid,
.divider-gradient, body::after {
  pointer-events: none;
}

/* ============================================================
   THEME TRANSITION SYSTEM — smooth mode switching
   ============================================================ */
html {
  /* Applies to every property change during theme switch */
  transition: color-scheme 0.4s ease;
}
body,
.navbar, .navbar.scrolled,
.mobile-nav,
.service-card, .testimonial-card, .card, .card-glass,
.pricing-card, .pricing-card-basic, .pricing-card-enterprise,
.faq-item, .faq-question,
.growth-card, .order-track-card,
.toast, .toast-success, .toast-error, .toast-info,
.modal, .modal-overlay,
.hc-main, .hc-back1, .hc-back2,
.step-circle, .hiw-num,
.sticky-bar, .footer,
.input-field, .service-select-item,
.doc-upload-zone, .doc-item,
.order-summary-box, .upsell-toggle,
.trust-strip {
  transition-property: background, background-color, border-color, color, box-shadow, backdrop-filter;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-base);
  flex-shrink: 0;
  overflow: hidden;
}
.theme-toggle:hover {
  background: var(--saffron-glow);
  border-color: rgba(255,153,51,0.4);
  transform: rotate(15deg);
  box-shadow: 0 0 16px rgba(255,153,51,0.2);
}
.theme-toggle:active { transform: rotate(15deg) scale(0.93); }
.theme-icon {
  width: 18px; height: 18px;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.icon-sun {
  color: var(--saffron);
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}
.icon-moon {
  color: var(--text-secondary);
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
[data-theme="light"] .icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
[data-theme="light"] .icon-moon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}
[data-theme="light"] .theme-toggle {
  background: rgba(37,48,72,0.06);
  border-color: rgba(37,48,72,0.12);
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(255,153,51,0.10);
  border-color: rgba(255,153,51,0.35);
}

/* ============================================================
   LIGHT MODE — COMPLETE DESIGN TOKEN OVERRIDE
   ============================================================ */
[data-theme="light"] {
  /* Semantic surfaces */
  --bg-primary:    #F7F8FC;
  --bg-card:       #FFFFFF;
  --bg-surface:    #EDF1F8;
  
  /* Borders */
  --border:        rgba(37,48,72,0.09);
  --border-bright: rgba(255,153,51,0.38);
  
  /* Typography */
  --text-primary:  #0D1526;
  --text-secondary:#2B3A57;
  --text-muted:    #697FA5;

  /* Shadows — lighter, more delicate in light mode */
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.10), 0 6px 16px rgba(0,0,0,0.06);
  --shadow-xl:     0 32px 80px rgba(0,0,0,0.13);
  --shadow-saffron: 0 8px 32px rgba(255,153,51,0.22);
  --shadow-green:   0 8px 32px rgba(19,136,8,0.18);
  --shadow-card-xl: 0 20px 60px rgba(0,0,0,0.10), 0 0 0 1px rgba(37,48,72,0.06);

  /* Glow — softer in light mode */
  --glow-saffron: 0 0 60px rgba(255,153,51,0.14), 0 0 120px rgba(255,153,51,0.07);
  --glow-green:   0 0 60px rgba(19,136,8,0.12);

  /* Color scheme */
  color-scheme: light;
}

/* ---- Body & global ---- */
[data-theme="light"] body {
  background: var(--bg-primary);
  color: var(--text-primary);
}

[data-theme="light"] body::after {
  opacity: 0.022;
}

[data-theme="light"] ::selection {
  background: rgba(255,153,51,0.22);
  color: #0D1526;
}

/* ---- Scrollbar ---- */
[data-theme="light"] ::-webkit-scrollbar-track { background: #EDF1F8; }

/* ---- Navbar ---- */
[data-theme="light"] .navbar.scrolled {
  background: rgba(247,248,252,0.94);
  border-bottom: 1px solid rgba(37,48,72,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

[data-theme="light"] .hamburger span { background: var(--text-primary); }

/* ---- Mobile nav ---- */
[data-theme="light"] .mobile-nav {
  background: #FFFFFF;
}

/* ---- Nav links ---- */
[data-theme="light"] .nav-link { color: #4A5E7A; }
[data-theme="light"] .nav-link:hover { color: var(--text-primary); }

/* ---- Buttons ---- */
[data-theme="light"] .btn-secondary {
  background: rgba(37,48,72,0.06);
  border: 1px solid rgba(37,48,72,0.12);
  color: var(--text-primary);
}
[data-theme="light"] .btn-secondary:hover {
  background: rgba(37,48,72,0.10);
  border-color: rgba(37,48,72,0.18);
}

/* ---- Hero ---- */
[data-theme="light"] .hero::before {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,153,51,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(19,136,8,0.04) 0%, transparent 60%);
}
[data-theme="light"] .hero-grid {
  background-image:
    linear-gradient(rgba(37,48,72,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,48,72,0.05) 1px, transparent 1px);
}
[data-theme="light"] .hero-glow-1 {
  background: radial-gradient(circle, rgba(255,153,51,0.11) 0%, rgba(255,153,51,0.03) 40%, transparent 70%);
}
[data-theme="light"] .hero-glow-2 {
  background: radial-gradient(circle, rgba(19,136,8,0.08) 0%, transparent 70%);
}
[data-theme="light"] .hero-stats {
  border-top-color: rgba(37,48,72,0.08);
}
[data-theme="light"] .hero-title .outline-text {
  -webkit-text-stroke: 1.5px rgba(13,21,38,0.18);
}

/* ---- Hero card stack ---- */
[data-theme="light"] .hc-main {
  background: linear-gradient(145deg, #FFFFFF, #F5F8FD);
  border: 1px solid rgba(255,153,51,0.28);
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 0 30px rgba(255,153,51,0.05);
}
[data-theme="light"] .hc-back1 {
  background: rgba(240,244,252,0.92);
  border: 1px solid rgba(37,48,72,0.08);
}
[data-theme="light"] .hc-back2 {
  background: rgba(228,235,248,0.70);
  border: 1px solid rgba(37,48,72,0.06);
}
[data-theme="light"] .hc-title { color: var(--text-primary); }
[data-theme="light"] .hc-icon {
  box-shadow: 0 4px 16px rgba(255,153,51,0.25);
}

/* ---- Trust strip ---- */
[data-theme="light"] .trust-strip {
  background: rgba(247,248,252,0.94);
  border-top-color:    rgba(255,153,51,0.10);
  border-bottom-color: rgba(255,153,51,0.10);
}
[data-theme="light"] .trust-item-text { color: #5A6E8E; }
[data-theme="light"] .trust-item-text strong { color: #2B3A57; }

/* ---- Service cards ---- */
[data-theme="light"] .service-card {
  background: #FFFFFF;
  border: 1px solid rgba(37,48,72,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.9);
}
[data-theme="light"] .service-card:hover {
  background: #FEFEFE;
  border-color: rgba(255,153,51,0.28);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09), 0 0 20px rgba(255,153,51,0.06);
  transform: translateY(-8px) scale(1.01);
}
[data-theme="light"] .service-card::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(255,153,51,0.04) 0%, transparent 60%);
}
[data-theme="light"] .service-desc { color: #697FA5; }
[data-theme="light"] .service-time {
  background: rgba(37,48,72,0.05);
  color: #697FA5;
}
[data-theme="light"] .service-cta {
  background: rgba(255,153,51,0.07);
  border-color: rgba(255,153,51,0.18);
}
[data-theme="light"] .service-cta:hover {
  background: var(--saffron);
  color: #fff;
  border-color: transparent;
}

/* ---- How it works ---- */
[data-theme="light"] .hiw-num {
  background: linear-gradient(145deg, #FFFFFF, #EFF4FC);
  border: 1px solid rgba(255,153,51,0.22);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 0 20px rgba(255,153,51,0.05);
}
[data-theme="light"] .hiw-desc { color: #697FA5; }
[data-theme="light"] .hiw-connector {
  background: linear-gradient(90deg, rgba(255,153,51,0.4), rgba(19,136,8,0.4));
}

/* ---- Pricing ---- */
[data-theme="light"] .pricing-card-basic {
  background: #FFFFFF;
  border: 1px solid rgba(37,48,72,0.10);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
[data-theme="light"] .pricing-card-pro {
  background: linear-gradient(135deg, rgba(255,153,51,0.07), rgba(255,153,51,0.02));
  box-shadow: 0 0 50px rgba(255,153,51,0.10);
}
[data-theme="light"] .pricing-card-enterprise {
  background: linear-gradient(135deg, rgba(19,136,8,0.05), rgba(19,136,8,0.02));
}
[data-theme="light"] .pricing-tier { color: #697FA5; }
[data-theme="light"] .pricing-price-note { color: #697FA5; }
[data-theme="light"] .pricing-feature { color: #3A4F72; }
[data-theme="light"] .pricing-feature-x { color: #B0BED4; }

/* ---- Testimonials ---- */
[data-theme="light"] .testimonial-card {
  background: #FFFFFF;
  border: 1px solid rgba(37,48,72,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
[data-theme="light"] .testimonial-card:hover {
  border-color: rgba(255,153,51,0.22);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
[data-theme="light"] .testimonial-text { color: #3A4F72; }
[data-theme="light"] .testimonial-role { color: #697FA5; }

/* ---- FAQ ---- */
[data-theme="light"] .faq-item {
  background: #FFFFFF;
  border-color: rgba(37,48,72,0.09);
}
[data-theme="light"] .faq-item.open { border-color: rgba(255,153,51,0.30); }
[data-theme="light"] .faq-question { color: var(--text-primary); }
[data-theme="light"] .faq-question:hover { background: rgba(37,48,72,0.025); }
[data-theme="light"] .faq-answer-inner { color: #697FA5; }

/* ---- Generic cards ---- */
[data-theme="light"] .card {
  background: #FFFFFF;
  border: 1px solid rgba(37,48,72,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
[data-theme="light"] .card:hover {
  border-color: rgba(255,153,51,0.22);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09), 0 0 20px rgba(255,153,51,0.04);
}
[data-theme="light"] .card-glass {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(37,48,72,0.09);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

/* ---- Growth cards ---- */
[data-theme="light"] .growth-card {
  background: #FFFFFF;
  border: 1px solid rgba(37,48,72,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

/* ---- Order tracking ---- */
[data-theme="light"] .order-track-card {
  background: #FFFFFF;
  border: 1px solid rgba(37,48,72,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
[data-theme="light"] .order-track-card:hover { border-color: rgba(255,153,51,0.22); }
[data-theme="light"] .ot-dot { background: #FFFFFF; border-color: rgba(37,48,72,0.15); }
[data-theme="light"] .ot-line { background: rgba(37,48,72,0.10); }
[data-theme="light"] .ot-label { color: #697FA5; }

/* ---- Dashboard section ---- */
[data-theme="light"] .dashboard-section { border-top-color: rgba(37,48,72,0.08); }

/* ---- Inputs ---- */
[data-theme="light"] .input-field {
  background: rgba(37,48,72,0.04);
  border: 1px solid rgba(37,48,72,0.13);
  color: var(--text-primary);
}
[data-theme="light"] .input-field::placeholder { color: rgba(37,48,72,0.32); }
[data-theme="light"] .input-field:focus {
  background: rgba(255,153,51,0.04);
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,153,51,0.10);
}
[data-theme="light"] .input-label { color: #3A4F72; }

/* ---- Service select ---- */
[data-theme="light"] .service-select-item {
  background: #FFFFFF;
  border-color: rgba(37,48,72,0.11);
}
[data-theme="light"] .service-select-item:hover {
  border-color: rgba(255,153,51,0.35);
  background: rgba(255,153,51,0.04);
}
[data-theme="light"] .service-select-item.selected {
  background: rgba(255,153,51,0.07);
  border-color: var(--saffron);
}

/* ---- Doc upload ---- */
[data-theme="light"] .doc-upload-zone {
  background: rgba(255,153,51,0.02);
  border-color: rgba(255,153,51,0.22);
}
[data-theme="light"] .doc-upload-zone:hover {
  background: rgba(255,153,51,0.05);
  border-color: rgba(255,153,51,0.45);
  box-shadow: 0 0 20px rgba(255,153,51,0.06);
}
[data-theme="light"] .doc-upload-subtitle { color: #697FA5; }
[data-theme="light"] .doc-item {
  background: rgba(37,48,72,0.03);
  border-color: rgba(37,48,72,0.08);
}
[data-theme="light"] .doc-item-icon { color: #697FA5; }

/* ---- Order summary ---- */
[data-theme="light"] .order-summary-box {
  background: #EDF1F8;
  border: 1px solid rgba(37,48,72,0.09);
}
[data-theme="light"] .order-summary-val { color: #3A4F72; }

/* ---- Upsell toggle ---- */
[data-theme="light"] .upsell-toggle {
  background: rgba(255,153,51,0.04);
  border-color: rgba(255,153,51,0.20);
}
[data-theme="light"] .upsell-toggle:hover { background: rgba(255,153,51,0.08); }
[data-theme="light"] .upsell-desc { color: #697FA5; }

/* ---- Stepper ---- */
[data-theme="light"] .step-circle {
  background: #FFFFFF;
  border-color: rgba(37,48,72,0.13);
  color: #697FA5;
}
[data-theme="light"] .step-connector { background: rgba(37,48,72,0.10); }
[data-theme="light"] .step-label { color: #697FA5; }
[data-theme="light"] .step-subtitle { color: #697FA5; }

/* ---- Modal ---- */
[data-theme="light"] .modal-overlay { background: rgba(13,21,38,0.55); }
[data-theme="light"] .modal {
  background: #FFFFFF;
  border: 1px solid rgba(37,48,72,0.10);
  box-shadow: 0 40px 120px rgba(0,0,0,0.18);
}
[data-theme="light"] .modal-header {
  border-bottom-color: rgba(37,48,72,0.08);
}
[data-theme="light"] .modal-footer {
  border-top-color: rgba(37,48,72,0.08);
}

/* ---- Toast ---- */
[data-theme="light"] .toast {
  background: rgba(255,255,255,0.97) !important;
  border-color: rgba(37,48,72,0.10) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  color: var(--text-primary);
}
[data-theme="light"] .toast-msg { color: var(--text-primary); }

/* ---- Skeleton ---- */
[data-theme="light"] .skeleton {
  background: linear-gradient(90deg, #E4EAF5 25%, #D0DAF0 50%, #E4EAF5 75%);
}

/* ---- Badge ---- */
[data-theme="light"] .badge-blue { background: rgba(59,130,246,0.08); color: #2563EB; }
[data-theme="light"] .badge-green { background: rgba(19,136,8,0.08); color: #15803D; }

/* ---- Sticky bar ---- */
[data-theme="light"] .sticky-bar {
  background: rgba(247,248,252,0.97);
  border-top: 1px solid rgba(37,48,72,0.09);
  box-shadow: 0 -6px 24px rgba(0,0,0,0.06);
}

/* ---- Footer ---- */
[data-theme="light"] .footer { border-top-color: rgba(37,48,72,0.08); }
[data-theme="light"] .footer-col-title { color: #3A4F72; }
[data-theme="light"] .footer-link { color: #697FA5; }
[data-theme="light"] .footer-link:hover { color: var(--text-primary); }
[data-theme="light"] .footer-brand-desc { color: #697FA5; }
[data-theme="light"] .footer-bottom {
  border-top-color: rgba(37,48,72,0.08);
  color: #697FA5;
}

/* ---- Divider ---- */
[data-theme="light"] .divider-gradient::after { background: var(--bg-primary); }

/* ---- Section eyebrow ---- */
[data-theme="light"] .section-eyebrow {
  background: rgba(255,153,51,0.07);
  border-color: rgba(255,153,51,0.18);
}

/* ---- HIW inline quote card ---- */
[data-theme="light"] div[style*="background:var(--bg-card)"][style*="align-items:center"] {
  background: #FFFFFF !important;
  border: 1px solid rgba(37,48,72,0.09) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08), 0 0 20px rgba(255,153,51,0.03);
}

/* ---- Progress bar ---- */
[data-theme="light"] .progress-bar {
  background: rgba(37,48,72,0.08);
}

/* ---- Toggle switch ---- */
[data-theme="light"] .toggle-switch {
  background: rgba(37,48,72,0.10);
  border-color: rgba(37,48,72,0.15);
}

/* ---- Urgency strip (always brand-colored) ---- */
/* no override needed — saffron bg looks great in both modes */

/* ---- Instant close bar ---- */
[data-theme="light"] .instant-close {
  background: linear-gradient(135deg, #FF9933, #E6851A);
  color: white;
  border-bottom: 1px solid rgba(255,153,51,0.15);
}

/* ============================================================
   QUINTESSENTIAL ENHANCEMENT LAYER — PRODUCTION REFINEMENTS
   ============================================================ */

/* --- Focus-visible: accessible but beautiful --- */
:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
  border-radius: var(--r1);
}
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
  border-radius: var(--r2);
}

/* --- Font feature settings for numbers --- */
.stat-num, .pricing-price, .service-price, .growth-num {
  font-feature-settings: "tnum" 1, "ss01" 1;
}

/* --- Improved text-balance for headings --- */
.display-xl, .display-lg, .display-md, .hero-title,
.hiw-title, .service-name, .step-title, .pricing-tier {
  text-wrap: balance;
}

/* --- Better badge colors in light mode --- */
[data-theme="light"] .badge-saffron {
  background: rgba(255,153,51,0.10);
  color: #C45E00;
  border-color: rgba(255,153,51,0.25);
}

/* --- Nav actions gap fix for toggle --- */
.nav-actions { gap: var(--s2); }

/* --- Urgency counter pulse enhancement --- */
.urgency-counter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.urgency-counter::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  animation: blink 1.5s ease-in-out infinite;
}

/* --- Skeleton animation respect light mode --- */
[data-theme="light"] @keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Hamburger lines in light mode --- */
[data-theme="light"] .hamburger span { background: var(--text-primary); }

/* --- High contrast mode support --- */
@media (prefers-contrast: high) {
  :root {
    --border: rgba(255,255,255,0.25);
    --text-muted: var(--text-secondary);
  }
  [data-theme="light"] {
    --border: rgba(0,0,0,0.25);
  }
}

/* --- Print styles --- */
@media print {
  .navbar, .sticky-bar, .wa-float, #chakra-canvas,
  .hero-bg, .trust-strip, .modal-overlay { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .card, .service-card, .testimonial-card {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    break-inside: avoid;
  }
}

/* --- Enhanced section-header spacing --- */
.section-header { margin-bottom: clamp(var(--s12), 5vw, var(--s16)); }

/* --- Smoother card lift on focus (keyboard nav) --- */
.service-card:focus-within,
.testimonial-card:focus-within,
.pricing-card:focus-within {
  border-color: rgba(255,153,51,0.35);
  transform: translateY(-4px);
}

/* --- Light mode canvas particle color CSS variable (read by JS) --- */
:root { --canvas-opacity-scale: 1; }
[data-theme="light"] { --canvas-opacity-scale: 0.55; }

@media (max-width: 768px) {
  .hero-glow-1,
  .hero-glow-2,
  .hero-grid,
  body::after {
    display: none !important;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  .card,
  .btn {
    box-shadow: none !important;
  }

  .navbar {
    backdrop-filter: none !important;
  }
}