/* ==========================================================================
   LIRANGO LANDING PAGE — landing.css
   Self-contained design system. No Tailwind. No frameworks.
   RTL-first (Hebrew). Premium glassmorphism aesthetic.
   ========================================================================== */

/* ── Reset & Box Model ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Design Tokens — Obsidian Cosmos ───────────────────────────────────── */
:root {
  /* Typography scale (fluid clamp) */
  --step--1: clamp(0.78rem,  0.74rem + 0.18vw, 0.875rem);
  --step-0:  clamp(0.9rem,   0.85rem + 0.24vw, 1rem);
  --step-1:  clamp(1.05rem,  0.97rem + 0.38vw, 1.25rem);
  --step-2:  clamp(1.25rem,  1.12rem + 0.58vw, 1.563rem);
  --step-3:  clamp(1.5rem,   1.31rem + 0.88vw, 1.953rem);
  --step-4:  clamp(1.8rem,   1.55rem + 1.2vw,  2.441rem);
  --step-5:  clamp(2.2rem,   1.85rem + 1.7vw,  3.052rem);

  /* ── Obsidian Cosmos Palette ──────────────────────────────────────────── */
  /* Backgrounds */
  --cosmos-bg:      #07090F;   /* main page background            */
  --cosmos-deep:    #0D1117;   /* elevated surface, deep sections */
  --cosmos-card:    rgba(255, 255, 255, 0.04);   /* glass card surface */
  --cosmos-border:  rgba(255, 255, 255, 0.08);   /* glass card border  */

  /* Text */
  --cosmos-text:    #F1F5F9;   /* primary text    */
  --cosmos-sub:     #94A3B8;   /* secondary text  */
  --cosmos-muted:   #64748B;   /* muted / labels  */

  /* Gradient — primary brand */
  --grad-primary:   linear-gradient(135deg, #3B82F6 0%, #7C3AED 100%);
  --grad-primary-r: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);

  /* Accent colours */
  --blue-400:   #60A5FA;
  --blue-500:   #3B82F6;
  --blue-600:   #2563EB;
  --blue-700:   #1D4ED8;
  --blue-50:    rgba(59,130,246,0.08);
  --blue-100:   rgba(59,130,246,0.16);
  --purple-500: #8B5CF6;
  --purple-600: #7C3AED;
  --green-500:  #10B981;
  --green-600:  #059669;
  --orange-500: #F97316;
  --orange-600: #EA580C;
  --wa-green:   #25D366;

  /* Legacy neutral — used by non-hero sections that remain light */
  --slate-50:  #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.15);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg:    0 12px 32px rgba(0,0,0,0.45);
  --shadow-blue:  0 8px 32px rgba(59,130,246,0.35);
  --shadow-glow:  0 0 40px rgba(59,130,246,0.25), 0 8px 32px rgba(124,58,237,0.2);
  --shadow-cta:   0 8px 28px rgba(59,130,246,0.4);

  /* Spacing */
  --container:  72rem;
  --section-py: clamp(4rem, 8vw, 7rem);

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 999px;

  /* Transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-nav:     1000;
  --z-overlay: 900;
}

/* ── Base ───────────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--step-0);
  color: var(--cosmos-text);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  
  background-color: var(--cosmos-bg);
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
/* ── Section shared layout ──────────────────────────────────────────────── */
.section-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  padding-block: var(--section-py);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-eyebrow {
  font-size: var(--step--1);
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.section-title {
  font-size: var(--step-4);
  font-weight: 900;
  color: var(--cosmos-text);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: var(--step-1);
  color: var(--cosmos-sub);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   BUTTONS — Obsidian Cosmos
════════════════════════════════════════════════════ */

/* Primary gradient CTA — blue → purple with glow */
.btn-hero-primary,
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-full);
  font-size: var(--step-1);
  font-weight: 800;
  color: #fff;
  background: var(--grad-primary);
  box-shadow: var(--shadow-glow);
  border: none;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.truck-icon-flipped {
  transform: scaleX(-1);
}

/* Shimmer sweep */
.btn-hero-primary::after,
.btn-glow::after,
.btn-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(255,255,255,0)    30%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0)    70%);
  transform: translateX(-200%) skewX(-20deg);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-200%) skewX(-20deg); }
  20%       { transform: translateX(220%)  skewX(-20deg); }
}

.btn-hero-primary:hover,
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(59,130,246,0.4), 0 12px 36px rgba(124,58,237,0.35);
}

/* Shimmer variant — transparent bg with gradient border */
.btn-shimmer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-full);
  font-size: var(--step-0);
  font-weight: 700;
  color: var(--cosmos-text);
  background: transparent;
  border: 1px solid var(--cosmos-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.btn-shimmer:hover {
  border-color: rgba(59,130,246,0.45);
  background: rgba(59,130,246,0.08);
  transform: translateY(-2px);
}

/* WhatsApp secondary */
.btn-whatsapp,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-full);
  font-size: var(--step-0);
  font-weight: 700;
  color: var(--wa-green);
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.25);
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn-whatsapp:hover,
.btn-hero-secondary:hover {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.5);
  color: #fff;
  transform: translateY(-2px);
}

/* Navbar order button */
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--r-full);
  font-size: var(--step--1);
  font-weight: 700;
  color: #fff;
  background: var(--grad-primary);
  box-shadow: 0 4px 16px rgba(59,130,246,0.3);
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-order:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.45);
}
.btn-order-sm {
  padding: 0.4rem 0.875rem;
  font-size: 0.75rem;
}

/* ══════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  width: 100%;
  background: rgba(7, 9, 15, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 1px 0 rgba(0,0,0,0.4);
  transition: box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(7, 9, 15, 0.92);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 2rem;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.navbar-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: var(--blue-600);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
  flex-shrink: 0;
}

.navbar-brand-text {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.brand-accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 0.375rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--cosmos-sub);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--blue-400);
  background: var(--blue-50);
}

/* Desktop CTA group */
.navbar-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.navbar-phone {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--cosmos-muted);
  transition: color 0.2s;
}
.navbar-phone:hover { color: var(--wa-green); }

/* Mobile controls (hamburger + mini CTA) */
.navbar-mobile-controls {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-inline-end: auto;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  padding: 0.375rem;
  border-radius: var(--r-sm);
  color: var(--cosmos-sub);
  transition: color 0.2s;
}
.hamburger:hover { color: var(--blue-400); }

.ham-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}

.hamburger.active .ham-bar:nth-child(1) { transform: rotate(45deg) translate(0, 7px); }
.hamburger.active .ham-bar:nth-child(2) { opacity: 0; }
.hamburger.active .ham-bar:nth-child(3) { transform: rotate(-45deg) translate(0, -7px); }

/* Mobile drawer */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
  border-top: 1px solid transparent;
}

.mobile-menu.open {
  max-height: 26rem;
  border-top-color: rgba(255,255,255,0.07);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem 1.25rem;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: var(--step-0);
  font-weight: 600;
  color: var(--cosmos-sub);
  transition: background 0.2s, color 0.2s;
}

.mobile-link:hover { background: rgba(255,255,255,0.05); color: var(--blue-400); }

.mobile-link-wa { color: var(--wa-green); }
.mobile-link-wa:hover { background: rgba(37,211,102,0.08); color: var(--green-500); }

/* ── Show/hide responsive breakpoint ───────── */
@media (max-width: 767px) {
  .navbar-links,
  .navbar-cta-group { display: none; }

  .navbar-mobile-controls { display: flex; }

  /* In RTL on mobile the brand stays right, hamburger goes left */
  .navbar-nav { justify-content: space-between; gap: 0; }
  .navbar-brand { margin-inline-start: 0; }
}

/* ══════════════════════════════════════════════════
   HERO — Obsidian Cosmos
════════════════════════════════════════════════════ */

/* ── Dot-grid background pattern ──────────────────── */
.dot-grid {
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── Ambient orbs ─────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: clamp(280px, 40vw, 560px);
  height: clamp(280px, 40vw, 560px);
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  top: -10%;
  right: -8%;
  animation-delay: 0s;
}

.orb-2 {
  width: clamp(200px, 30vw, 440px);
  height: clamp(200px, 30vw, 440px);
  background: radial-gradient(circle, rgba(124,58,237,0.14) 0%, transparent 70%);
  bottom: -5%;
  left: -5%;
  animation-delay: -4s;
}

.orb-3 {
  width: clamp(160px, 22vw, 320px);
  height: clamp(160px, 22vw, 320px);
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: -2s;
  animation-duration: 10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33%       { transform: translateY(-18px) scale(1.03); }
  66%       { transform: translateY(10px) scale(0.98); }
}

/* ── Glass utilities ──────────────────────────────── */
.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.04) inset;
}

.glass-card:hover {
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.15) inset;
}

/* ── Hero section ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(600px, 95vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #07090F;
  background-image: url('../images/bg-texture.jpg');
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 15, 0.65); /* 65% opacity black overlay */
  z-index: 1;
}


/* keep old hero-bg/overlay selectors benign in case they're still in HTML */
.hero-bg    { display: none; }
.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  padding-block: clamp(5rem, 11vw, 8rem);
  width: 100%;
  text-align: center;
}

/* ── Eyebrow badge (pulsating) ────────────────────── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59,130,246,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--r-full);
  padding: 0.45rem 1.1rem;
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--blue-400);
  margin-bottom: 1.75rem;
  letter-spacing: 0.03em;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(59,130,246,0.15); }
  50%       { box-shadow: 0 0 0 8px rgba(59,130,246,0);    }
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.3);
  animation: pulseDot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(59,130,246,0.3); }
  50%       { box-shadow: 0 0 0 7px rgba(59,130,246,0.07); }
}

/* ── Hero heading ─────────────────────────────────── */
.hero-title {
  font-size: var(--step-5);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cosmos-text);
  margin-bottom: 1.5rem;
  max-width: 22ch;
  margin-inline: auto;
  letter-spacing: -0.02em;
}

/* Gradient text clip */
.hero-accent,
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.hero-sub {
  font-size: var(--step-1);
  color: var(--cosmos-sub);
  line-height: 1.8;
  max-width: 54ch;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

/* CTA row — centered */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}

/* ── Trust indicators row ─────────────────────────── */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin-top: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--cosmos-muted);
}

.trust-item-value {
  font-size: var(--step-0);
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-item-label {
  color: var(--cosmos-muted);
}

.trust-icon {
  width: 15px;
  height: 15px;
  color: var(--blue-400);
  flex-shrink: 0;
}

.trust-sep {
  color: rgba(255,255,255,0.12);
  font-size: 1.2rem;
}

/* ── Floating stats card ─────────────────────────── */
.hero-stats-card {
  position: absolute;
  left: clamp(1rem, 5vw, 3.5rem);
  bottom: clamp(2rem, 5vw, 3.5rem);
  z-index: 3;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.1);
  animation: float 5s ease-in-out infinite;
}

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

.stat-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.stat-icon {
  width: 22px;
  height: 22px;
  color: var(--blue-400);
  flex-shrink: 0;
}
.stat-icon-yellow { color: #FBBF24; }
.stat-icon-green  { color: var(--green-500); }

.stat-val {
  font-size: var(--step-1);
  font-weight: 900;
  color: var(--cosmos-text);
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--cosmos-muted);
  font-weight: 600;
  margin-top: 2px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
}

@media (max-width: 767px) {
  .hero-stats-card { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero-content { text-align: center; }
}

/* ══════════════════════════════════════════════════
   FEATURES SECTION (FeaturesSection.tsx)
════════════════════════════════════════════════════ */
.features {
  background-color: #07090F;
  position: relative;
  overflow: hidden;
}

/* Central ambient orb */
.features-orb {
  position: absolute;
  width: clamp(300px, 45vw, 500px);
  height: clamp(300px, 45vw, 500px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(60px);
  animation: orbFloat 10s ease-in-out infinite;
  animation-delay: -2s;
}

.features-inner {
  position: relative;
  z-index: 1;
}

/* Section eyebrow badge (blue tint) */
.features-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  color: var(--blue-500);
  border-radius: var(--r-full);
  padding: 0.375rem 1rem;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.features-title { letter-spacing: -0.03em; }

/* 3-column grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─ Feature card ──────────────────────────────────────── */
.feature-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.3s;
  /* Scroll-reveal start state */
  opacity: 0;
  transform: translateY(28px);
}

/* Revealed by IntersectionObserver script (reveal-card class) */
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--card-color, 59,130,246), 0.3);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.06);
}

/* ─ Card image area ────────────────────────────────────── */
.feature-card-img {
  position: relative;
  height: 11rem;
  overflow: hidden;
  flex-shrink: 0;
}

.feature-card-img-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.5s var(--ease-out);
  transform: scale(1.04);
}
.feature-card:hover .feature-card-img-inner { transform: scale(1.10); }

/* Accent gradient backgrounds (replaces the CDN images) */
.feature-img-blue {
  background: radial-gradient(ellipse at 70% 30%,
    rgba(59,130,246,0.35) 0%,
    rgba(37,99,235,0.12) 50%,
    rgba(7,9,15,0.95) 100%);
}
.feature-img-purple {
  background: radial-gradient(ellipse at 70% 30%,
    rgba(124,58,237,0.35) 0%,
    rgba(109,40,217,0.12) 50%,
    rgba(7,9,15,0.95) 100%);
}
.feature-img-teal {
  background: radial-gradient(ellipse at 70% 30%,
    rgba(6,182,212,0.35) 0%,
    rgba(8,145,178,0.12) 50%,
    rgba(7,9,15,0.95) 100%);
}

/* Gradient fade from image into card body */
.feature-card-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,9,15,0.92) 100%);
  pointer-events: none;
}

/* Icon badge overlaid on the image (bottom-right in RTL = bottom-start) */
.feature-icon-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: var(--r-md);
  background: rgba(7, 9, 15, 0.8);
  border: 1px solid rgba(var(--icon-color, 255,255,255), 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 16px var(--icon-glow, rgba(59,130,246,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s;
}
.feature-card:hover .feature-icon-badge {
  box-shadow: 0 0 28px var(--icon-glow, rgba(59,130,246,0.5));
}

/* ─ Card body ──────────────────────────────────────────── */
.feature-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  direction: rtl;
}

.feature-card-title {
  font-size: var(--step-1);
  font-weight: 800;
  color: var(--cosmos-text);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.feature-card-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.feature-card-desc {
  font-size: var(--step--1);
  color: var(--cosmos-sub);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* Tag pills */
.feature-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.feature-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--tag-color, var(--blue-400));
  background: color-mix(in srgb, var(--tag-color, #3B82F6) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--tag-color, #3B82F6) 28%, transparent);
  /* Fallback for browsers without color-mix */
  background: rgba(var(--tag-color, 59,130,246), 0.1);
}

/* ─ Scroll-reveal utility ───────────────────────────────── */
.reveal-block {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.23,1,0.32,1),
              transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.reveal-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s cubic-bezier(0.23,1,0.32,1),
              transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════
   PROCESS SECTION (ProcessSection.tsx)
════════════════════════════════════════════════════ */
.process {
  background-color: #07090F;
  position: relative;
  overflow: hidden;
}

.process-inner { position: relative; z-index: 1; }

/* Section eyebrow badge (teal tint) */
.process-eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
  color: #06B6D4;
  border-radius: var(--r-full);
  padding: 0.375rem 1rem;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.process-title { letter-spacing: -0.03em; }

/* Teal gradient text */
.text-gradient-teal {
  background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 4-column grid (1 col → 2 col md → 4 col lg) */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─ Process step ────────────────────────────────────── */
.process-step { position: relative; }

/* Connector line between steps (desktop only) */
.process-connector {
  display: none;
}
@media (min-width: 1024px) {
  .process-connector {
    display: block;
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      color-mix(in srgb, var(--connector-color, #3B82F6) 35%, transparent),
      transparent
    );
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--connector-color, #3B82F6) 50%,
      transparent 100%
    );
    opacity: 0.3;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
  }
}

/* Glass card inside step */
.process-step-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  height: 100%;
  direction: rtl;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.35s var(--ease-spring);
}
.process-step:hover .process-step-card {
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

/* Giant glow step number */
.process-step-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  text-align: center;
  user-select: none;
}

/* Icon box */
.process-step-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-inline: auto;
  flex-shrink: 0;
}

.process-step-title {
  font-size: var(--step-0);
  font-weight: 800;
  color: var(--cosmos-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.process-step-desc {
  font-size: var(--step--1);
  color: var(--cosmos-muted);
  line-height: 1.7;
}

/* Section dividers — subtle horizontal line */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.08) 30%,
    rgba(255,255,255,0.08) 70%,
    transparent
  );
  width: 100%;
}
.section-divider-top  { margin-bottom: 0; }
.section-divider-bottom { margin-top: 0; }

/* Process CTA row */
.process-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ══════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════ */
.about { background-color: #07090F; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-text {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.about-text.visible { opacity: 1; transform: translateX(0); }

.about-body {
  font-size: var(--step-0);
  color: var(--cosmos-sub);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--step-0);
  font-weight: 600;
  color: var(--cosmos-text);
}

.about-check {
  width: 18px;
  height: 18px;
  color: var(--green-500);
  flex-shrink: 0;
}

/* Visual / mockup cards */
.about-visual {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s var(--ease-out) 0.15s, transform 0.6s var(--ease-out) 0.15s;
}
.about-visual.visible { opacity: 1; transform: translateX(0); }

.about-card-stack {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  aspect-ratio: 1 / 0.85;
}

.mock-card {
  position: absolute;
  background: var(--cosmos-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
  border: 1px solid var(--cosmos-border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  padding: 1.25rem 1.5rem;
  transition: transform 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(16px);
}
.mock-card.visible { opacity: 1; transform: translateY(0); }

.mock-card-back {
  inset: 0;
  transform: rotate(-4deg) translateY(10px) scale(0.96);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--cosmos-border);
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.mock-card-back.visible { transform: rotate(-4deg) translateY(10px) scale(0.96); }

.mock-status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mock-dot-green { background: var(--green-500); box-shadow: 0 0 0 4px rgba(16,185,129,0.2); }

.mock-line {
  height: 10px;
  border-radius: 5px;
  background: rgba(37,99,235,0.12);
}
.mock-line-long { width: 75%; }
.mock-line-med  { width: 50%; }

.mock-card-front {
  inset: 6% 0 -6% 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.mock-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-full);
  background: rgba(249,115,22,0.1);
  color: var(--orange-500);
}

.mock-id {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate-400);
}

.mock-addr { display: flex; flex-direction: column; gap: 0.5rem; }

.mock-addr-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cosmos-text);
}

.mock-dot-blue  { color: var(--blue-600); line-height: 1; font-size: 1rem; }
.mock-dot-green2 { color: var(--green-500); line-height: 1; font-size: 1rem; }

.mock-connector-line {
  width: 2px;
  height: 14px;
  background: var(--slate-200);
  margin-inline-start: 0.45rem;
}

.mock-eta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.78rem;
  color: var(--slate-500);
  background: var(--slate-50);
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
}

@media (max-width: 767px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .about-text { transform: none; }
}

/* ══════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════════ */
.cta-banner {
  background-color: #07090F;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(99,102,241,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.cta-title {
  font-size: var(--step-5);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: var(--step-1);
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 44ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer {
  background: var(--slate-900);
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  padding-block: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand { text-align: right; }

.footer-logo {
  font-size: var(--step-2);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: var(--step--1);
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.45);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-links a {
  font-size: var(--step--1);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.72rem;
  text-align: left;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 767px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand, .footer-copy { text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ══════════════════════════════════════════════════
   GENERAL SCROLL-IN ANIMATION
════════════════════════════════════════════════════ */
/* Additional stagger for service cards */
.service-card:nth-child(1) { transition-delay: 0ms; }
.service-card:nth-child(2) { transition-delay: 80ms; }
.service-card:nth-child(3) { transition-delay: 160ms; }
.service-card:nth-child(4) { transition-delay: 240ms; }

.step-item:nth-child(1) { transition-delay: 0ms; }
.step-item:nth-child(3) { transition-delay: 100ms; }
.step-item:nth-child(5) { transition-delay: 200ms; }

/* ══════════════════════════════════════════════════
   ACCESSIBILITY & FOCUS
════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════
   PRINT
════════════════════════════════════════════════════ */
@media print {
  .navbar, .hero-stats-card, .cta-banner { display: none; }
  body { background: white; color: black; }
}

/* ══════════════════════════════════════════════════
   ACCESSIBILITY WIDGET — Glassmorphism floating panel
   z-index: 9999 — above everything including the navbar (1000)
════════════════════════════════════════════════════ */
#a11y-widget {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;         /* LTR corner (left on screen = visual left in RTL layout) */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  direction: rtl;
}

/* Trigger pill button */
.a11y-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #e2e8f0;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.06) inset;
  transition:
    background    0.25s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow    0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform     0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.01em;
}

.a11y-trigger:hover,
.a11y-trigger--active {
  background: rgba(37, 99, 235, 0.85);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.45), 0 0 0 1px rgba(96,165,250,0.2) inset;
  transform: translateY(-2px);
  color: #fff;
}

.a11y-trigger-label {
  font-size: 0.78rem;
  font-weight: 700;
}

/* Glassmorphic panel */
.a11y-panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 0;
  width: 260px;
  background: rgba(10, 18, 36, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 1.25rem 1rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  animation: a11yPanelIn 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.a11y-panel[hidden] {
  display: none;
}

@keyframes a11yPanelIn {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.a11y-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
}

.a11y-panel-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: 0.01em;
}

.a11y-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: #94a3b8;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.a11y-close-btn:hover { background: rgba(255,255,255,0.12); color: #f1f5f9; }

.a11y-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0.75rem 0;
}

/* Groups */
.a11y-group { display: flex; flex-direction: column; gap: 0.5rem; }

.a11y-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Font size row */
.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.a11y-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex: 1;
  justify-content: center;
}
.a11y-btn:hover { background: rgba(37,99,235,0.2); border-color: rgba(96,165,250,0.3); color: #e2e8f0; }

.a11y-font-indicator {
  font-size: 0.72rem;
  font-weight: 700;
  color: #60a5fa;
  min-width: 3.5rem;
  text-align: center;
  flex-shrink: 0;
}

/* Visual mode toggle buttons */
.a11y-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-align: right;
}

.a11y-toggle-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
  border-color: rgba(255,255,255,0.16);
}

.a11y-toggle-btn[aria-pressed="true"] {
  background: rgba(37,99,235,0.22);
  border-color: rgba(96,165,250,0.45);
  color: #93c5fd;
  box-shadow: 0 0 12px rgba(37,99,235,0.25) inset;
}

/* Reset button */
.a11y-reset-btn {
  display: block;
  width: 100%;
  padding: 0.45rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  background: transparent;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s, background 0.2s;
}
.a11y-reset-btn:hover { color: #e2e8f0; background: rgba(255,255,255,0.06); }

/* ══════════════════════════════════════════════════
   A11Y UTILITY CLASSES — applied to <body>
   These must live in landing.css so they have the
   highest cascade precedence over both CSS files.
════════════════════════════════════════════════════ */

/* ── Font scale ─────────────────────────────────── */
body.a11y-large-text  { font-size: 112% !important; }
body.a11y-xlarge-text { font-size: 128% !important; }

/* ── High Contrast (dark bg + yellow text) ──────── */
body.a11y-high-contrast,
body.a11y-high-contrast * {
  background-color: #000 !important;
  color: #ffff00 !important;
  border-color: #ffff00 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #ffff00 !important;
  background-image: none !important;
}
body.a11y-high-contrast a,
body.a11y-high-contrast button { color: #ffff00 !important; }
body.a11y-high-contrast :focus-visible {
  outline: 3px solid #ffff00 !important;
  outline-offset: 2px !important;
}
/* Keep the widget itself readable in high-contrast */
body.a11y-high-contrast #a11y-widget,
body.a11y-high-contrast #a11y-widget * {
  background-color: #111 !important;
  color: #ffff00 !important;
  border-color: #ffff00 !important;
  -webkit-text-fill-color: #ffff00 !important;
}

/* ── Grayscale ───────────────────────────────────── */
body.a11y-grayscale {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
/* Preserve widget colours so it remains usable */
body.a11y-grayscale #a11y-widget {
  filter: none;
  -webkit-filter: none;
}

/* ── Light Background ────────────────────────────── */
body.a11y-light-bg {
  background: #ffffff !important;
  color: #111827 !important;
}
body.a11y-light-bg .hero,
body.a11y-light-bg .cta-banner,
body.a11y-light-bg #order-section,
body.a11y-light-bg .footer {
  background: #f3f4f6 !important;
  color: #111827 !important;
}
body.a11y-light-bg .hero-title,
body.a11y-light-bg .hero-sub,
body.a11y-light-bg .hero-eyebrow,
body.a11y-light-bg .cta-title,
body.a11y-light-bg .cta-sub {
  color: #111827 !important;
  -webkit-text-fill-color: #111827 !important;
}
body.a11y-light-bg .hero-accent {
  -webkit-text-fill-color: var(--blue-600) !important;
  color: var(--blue-600) !important;
}
body.a11y-light-bg .navbar {
  background: rgba(255,255,255,0.98) !important;
}
/* Keep widget dark so it remains visible on light backgrounds */
body.a11y-light-bg #a11y-widget { filter: none; }


