/* ══════════════════════════════════════════════════
   SPHINX AI GROUP — Premium CSS v2
   Techniques: glassmorphism, aurora, bento grid,
   spotlight tracking, grain texture, floating nav
   ══════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────────── */
:root {
  --dark:       #07091C;
  --dark-2:     #0C1130;
  --dark-3:     #111840;
  --surface:    rgba(11, 18, 42, 0.6);
  --surface-hi: rgba(15, 24, 55, 0.75);
  --gold:       #C9A84C;
  --gold-lt:    #F0D080;
  --gold-dim:   rgba(201, 168, 76, 0.1);
  --gold-glow:  rgba(201, 168, 76, 0.22);
  --blue:       #00B4FF;
  --blue-dim:   rgba(0, 180, 255, 0.1);
  --white:      #EDF2FF;
  --muted:      #6B7A9E;
  --light:      #A8B4D0;
  --border:     rgba(255, 255, 255, 0.07);
  --bdr-gold:   rgba(201, 168, 76, 0.28);
  --bdr-blue:   rgba(0, 180, 255, 0.2);
  --r:          20px;
  --r-sm:       12px;
  --r-pill:     50px;
  --font-h:     'Space Grotesk', sans-serif;
  --font-b:     'Cairo', sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --t:          0.35s var(--ease);
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-b);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--white);
}
h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; }
p  { color: var(--muted); line-height: 1.8; }
strong { color: var(--white); font-weight: 600; }

.shine-text {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 45%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  animation: textShine 4s linear infinite;
}
@keyframes textShine {
  to { background-position: 200% center; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── LAYOUT ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  position: relative;
}
.center { text-align: center; }
.section-head { margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.section-head h2 { margin-bottom: 1rem; }
.sec-sub { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── GRAIN OVERLAY ──────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── WHATSAPP BUTTON ────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #22C55E;
  color: #fff;
  padding: 0.75rem 1.2rem 0.75rem 1rem;
  border-radius: var(--r-pill);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
  transition: var(--t);
  animation: waPop 3.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 12px 40px rgba(34,197,94,0.55); }
@keyframes waPop {
  0%,100% { box-shadow: 0 8px 30px rgba(34,197,94,0.4); }
  50%      { box-shadow: 0 8px 50px rgba(34,197,94,0.65); }
}

/* ── NAVBAR (floating pill) ─────────────────────── */
.navbar {
  position: fixed;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 3rem);
  max-width: 1020px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(7, 9, 28, 0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.55rem 0.55rem 0.55rem 1.5rem;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.navbar.scrolled {
  background: rgba(7, 9, 28, 0.9);
  border-color: rgba(201,168,76,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.nav-eye { width: 38px; height: 38px; flex-shrink: 0; }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--white);
}
.brand-sub {
  font-family: var(--font-h);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-h);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--light);
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-pill);
  transition: color var(--t), background var(--t);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: #07091C;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--r-pill);
  transition: var(--t);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 20px rgba(201,168,76,0.3);
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 4px 28px rgba(201,168,76,0.45); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: calc(1.1rem + 60px);
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: calc(100% - 3rem);
  max-width: 600px;
  z-index: 999;
  background: rgba(7,9,28,0.96);
  backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: var(--t);
}
.mobile-drawer.open {
  display: flex;
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.mobile-drawer a {
  font-family: var(--font-h);
  font-size: 1rem;
  color: var(--light);
  padding: 0.6rem 0.75rem;
  border-radius: var(--r-sm);
  transition: var(--t);
}
.mobile-drawer a:hover { color: var(--gold); background: var(--gold-dim); }
.mobile-cta {
  margin-top: 0.5rem;
  text-align: center;
  justify-content: center;
  font-weight: 700 !important;
  color: #07091C !important;
  background: var(--gold) !important;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: 6rem;
}

#canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

/* Aurora gradient blobs */
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: auroraShift 14s ease-in-out infinite alternate;
}
.a1 {
  width: 800px; height: 600px;
  top: -20%; left: -15%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.18) 0%, transparent 70%);
  animation-delay: 0s;
}
.a2 {
  width: 650px; height: 550px;
  top: 5%; right: -20%;
  background: radial-gradient(ellipse, rgba(0,180,255,0.13) 0%, transparent 70%);
  animation-delay: -5s;
}
.a3 {
  width: 500px; height: 450px;
  bottom: -10%; left: 25%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.09) 0%, transparent 70%);
  animation-delay: -9s;
}
@keyframes auroraShift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(35px, 25px) scale(1.1); }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* Hero copy */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.09);
  border: 1px solid rgba(201,168,76,0.28);
  color: #E8C97A;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  width: fit-content;
  letter-spacing: 0.04em;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.8);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; box-shadow: 0 0 8px rgba(201,168,76,0.8); }
  50% { opacity: 0.6; box-shadow: 0 0 16px rgba(201,168,76,1); }
}

.hero-heading { line-height: 1.05; }
.hero-sub {
  font-size: 1.1rem;
  max-width: 480px;
  color: var(--light);
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #07091C;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 30px rgba(201,168,76,0.38);
  transition: var(--t);
}
.btn-hero-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 45px rgba(201,168,76,0.55);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1rem;
  color: var(--light);
  padding: 0.95rem 2rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  transition: var(--t);
}
.btn-hero-ghost:hover { border-color: var(--bdr-gold); color: var(--gold); background: var(--gold-dim); }

/* Trust pills */
.trust-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.65rem 1.1rem;
}
.trust-val {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-key { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

/* ── EYE PORTAL ─────────────────────────────────── */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}
.eye-portal {
  position: relative;
  width: clamp(300px, 38vw, 460px);
  height: clamp(360px, 45vw, 540px);
  animation: eyeFloat 8s ease-in-out infinite;
}
@keyframes eyeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-22px); }
}
.portal-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.25) 0%, rgba(201,168,76,0.08) 40%, transparent 70%);
  filter: blur(45px);
  animation: portalPulse 5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes portalPulse {
  0%   { opacity: 0.7; transform: translate(-50%,-50%) scale(0.9); }
  100% { opacity: 1;   transform: translate(-50%,-50%) scale(1.2); }
}

.eye-svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.25));
}

/* Eye SVG animations */
.orbit-1 { animation: spinCW 50s linear infinite; transform-origin: 220px 220px; }
.orbit-2 { animation: spinCCW 70s linear infinite; transform-origin: 220px 220px; }
.spin-orb { animation: spinCW 22s linear infinite; }
.iris-spin { animation: spinCCW 35s linear infinite; transform-origin: 220px 220px; }
.pupil-beat { animation: pupilBeat 4s ease-in-out infinite; transform-origin: 220px 220px; }
.scan-beam { animation: beamSpin 5s linear infinite; }
@keyframes spinCW  { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }
@keyframes pupilBeat {
  0%,100% { opacity: 0.95; transform: scale(1); }
  50%      { opacity: 0.75; transform: scale(0.94); }
}
@keyframes beamSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.nb1 { animation: nodeFlicker 3s ease-in-out infinite; }
.nb2 { animation: nodeFlicker 4s ease-in-out infinite 1s; }
.nb3 { animation: nodeFlicker 3.5s ease-in-out infinite 0.5s; }
@keyframes nodeFlicker {
  0%,100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

/* Floating data cards */
.data-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.05rem;
  background: rgba(9, 14, 35, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 14px;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.dc-icon { font-size: 1.3rem; flex-shrink: 0; }
.dc-val {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.dc-key { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }
.dc-1 { top: 8%; left: -12%; animation: dcFloat1 7s ease-in-out infinite; }
.dc-2 { bottom: 28%; right: -10%; animation: dcFloat2 8s ease-in-out infinite 1.5s; }
.dc-3 { bottom: 6%; left: 8%; animation: dcFloat1 6.5s ease-in-out infinite 3s; }
@keyframes dcFloat1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes dcFloat2 { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(1deg); } }

.arabic-mark {
  font-family: var(--font-b);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.55;
  direction: rtl;
  letter-spacing: 0.04em;
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-h);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fadeUp 1s ease 1.8s both;
}
.scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes fadeUp { from { opacity: 0; transform: translateX(-50%) translateY(10px); } to { opacity: 1; } }
@keyframes scrollAnim { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── STATS BAND ─────────────────────────────────── */
.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark-2);
  padding: 3rem 0;
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.sstat { text-align: center; padding: 0 2rem; }
.sstat-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.35rem;
}
.sstat-num {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.sstat-unit {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  opacity: 0.8;
}
.sstat-desc { font-size: 0.82rem; color: var(--muted); }
.sstat-sep { width: 1px; height: 60px; background: var(--border); }

/* ── GLASS CARD (shared) ────────────────────────── */
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.glass-card:hover {
  border-color: var(--bdr-gold);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.1), 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.06);
  transform: translateY(-3px);
}

/* Spotlight effect (JS sets --mx --my) */
.glass-card[data-spotlight] {
  background:
    radial-gradient(circle 220px at var(--mx, -200px) var(--my, -200px), rgba(201,168,76,0.09), transparent 65%),
    var(--surface);
}

/* ── PROBLEM SECTION ────────────────────────────── */
.problem-sec { background: var(--dark); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.pain-card {
  padding: 1.75rem;
  cursor: default;
}
.pain-emoji { font-size: 2rem; display: block; margin-bottom: 0.85rem; }
.pain-card p { font-size: 0.92rem; color: var(--light); }

.bridge {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.bridge-rule { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); }
.bridge p { text-align: center; color: var(--light); font-size: 1rem; white-space: nowrap; }

/* ── SERVICES BENTO ─────────────────────────────── */
.services-sec { background: var(--dark-2); }
.services-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(0,180,255,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 75%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}
.bento-7  { grid-column: span 7; }
.bento-5  { grid-column: span 5; }
.bento-4  { grid-column: span 4; }
.bento-12 { grid-column: span 12; }

.bento-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

/* Wide featured card — gradient border via ::after */
.bento-featured {
  border-color: transparent !important;
  background: linear-gradient(145deg, rgba(15, 24, 52, 0.8), rgba(11,18,42,0.5)) !important;
  position: relative;
}
.bento-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,168,76,0.65), rgba(201,168,76,0.15) 45%, rgba(0,180,255,0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.bento-featured:hover {
  box-shadow: 0 0 60px rgba(201,168,76,0.14), 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}

/* Wide card internal layout */
.bc-wide {
  display: flex;
  gap: 2.5rem;
  align-items: flex-end;
  height: 100%;
  position: relative;
  z-index: 1;
}
.bc-left { flex: 1; display: flex; flex-direction: column; gap: 0.9rem; }
.bc-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}
.bc-deploy {
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  background: var(--blue-dim);
  border: 1px solid var(--bdr-blue);
  padding: 0.22rem 0.7rem;
  border-radius: 20px;
  width: fit-content;
}
.bc-icon { font-size: 2.2rem; }
.bc-title { color: var(--white); font-size: 1.35rem; font-weight: 700; font-family: var(--font-h); margin: 0; }
.bc-desc { font-size: 0.9rem; color: var(--light); line-height: 1.75; }
.bc-win { font-family: var(--font-h); font-size: 0.8rem; color: #4ADE80; font-weight: 500; }
.bc-price-block { text-align: right; }
.bc-from { font-family: var(--font-h); font-size: 0.75rem; color: var(--muted); display: block; }
.bc-price {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.bc-price span { font-size: 1rem; color: var(--muted); }

/* Standard bento card content */
.bento-card:not(.bc-wide *):not(.bento-empire) > .bc-deploy { margin-bottom: 0.6rem; }
.bento-card:not(.bento-featured):not(.bento-empire) .bc-title { font-size: 1.1rem; margin: 0.6rem 0 0.5rem; }
.bento-card:not(.bento-featured):not(.bento-empire) .bc-desc { font-size: 0.88rem; flex: 1; margin-bottom: 1rem; }
.bento-card:not(.bento-featured):not(.bento-empire) .bc-win { margin-bottom: 0.85rem; }

.bc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.bc-price-sm { font-family: var(--font-h); font-size: 0.88rem; color: var(--muted); }
.bc-price-sm strong { font-size: 1.15rem; color: var(--white); }

/* Card buttons */
.btn-card {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--bdr-gold);
  padding: 0.7rem 1.3rem;
  border-radius: var(--r-sm);
  transition: var(--t);
  white-space: nowrap;
}
.btn-card:hover { background: rgba(201,168,76,0.18); box-shadow: 0 0 20px rgba(201,168,76,0.2); }
.btn-card-sm {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: var(--t);
}
.btn-card-sm:hover { color: var(--gold); border-color: var(--bdr-gold); }

/* Empire Builder (full-width horizontal card) */
.bento-empire {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(11,18,42,0.5) 60%) !important;
  border-color: var(--bdr-gold) !important;
  box-shadow: 0 0 60px rgba(201,168,76,0.08) !important;
}
.empire-inner {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.empire-left { display: flex; flex-direction: column; gap: 0.75rem; }
.empire-icon { font-size: 2.5rem; }
.empire-badge {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--bdr-gold);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  width: fit-content;
}
.empire-title { color: var(--white); font-size: 1.5rem; font-family: var(--font-h); margin: 0; }
.empire-desc { font-size: 0.9rem; color: var(--light); }
.empire-features { display: flex; flex-direction: column; gap: 0.6rem; }
.ef-item {
  font-family: var(--font-h);
  font-size: 0.85rem;
  color: var(--light);
  padding-left: 0.2rem;
}
.empire-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.empire-price { text-align: right; }
.ep-from { display: block; font-family: var(--font-h); font-size: 0.75rem; color: var(--muted); }
.ep-num {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ep-mo { font-family: var(--font-h); font-size: 1rem; color: var(--muted); }
.btn-empire {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  background: var(--gold);
  color: #07091C;
  padding: 0.9rem 1.75rem;
  border-radius: var(--r-pill);
  transition: var(--t);
  box-shadow: 0 4px 25px rgba(201,168,76,0.35);
}
.btn-empire:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(201,168,76,0.5); }
.ep-egp { font-family: var(--font-h); font-size: 0.78rem; color: var(--muted); }

/* ── PROCESS ─────────────────────────────────────── */
.process-sec { background: var(--dark); }
.process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-line {
  position: absolute;
  top: 2.5rem;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bdr-gold) 20%, var(--bdr-gold) 80%, transparent);
  z-index: 0;
}
.process-card {
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.pc-num {
  font-family: var(--font-h);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pc-icon { font-size: 2rem; margin-bottom: 0.9rem; }
.process-card h3 { color: var(--white); margin-bottom: 0.7rem; }
.process-card p { font-size: 0.9rem; }
.pc-tag {
  display: inline-block;
  margin-top: 1.4rem;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--bdr-gold);
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
}

/* ── PRIMARY BUTTON ─────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  background: var(--gold);
  color: #07091C;
  padding: 1rem 2.2rem;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 30px rgba(201,168,76,0.38);
  transition: var(--t);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 45px rgba(201,168,76,0.55); }

/* ── TESTIMONIALS ───────────────────────────────── */
.results-sec { background: var(--dark-2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testi-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.testi-grid .testi-card:nth-child(4),
.testi-grid .testi-card:nth-child(5) {
  grid-column: span 1;
}
.testi-grid .testi-card:last-child:nth-child(5) { grid-column: 2 / 3; }
.tq {
  font-size: 4rem;
  line-height: 0.7;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: 0.3;
}
.tt { font-size: 0.9rem; flex: 1; color: var(--light); line-height: 1.8; }
.ts { color: var(--gold); font-size: 0.88rem; letter-spacing: 3px; }
.ta { display: flex; align-items: center; gap: 0.75rem; }
.av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c, var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  color: #07091C;
  flex-shrink: 0;
  opacity: 0.88;
}
.ta div:last-child { display: flex; flex-direction: column; }
.ta strong { font-size: 0.88rem; color: var(--white); font-family: var(--font-h); }
.ta span { font-size: 0.76rem; color: var(--muted); }

/* ── PRICING ─────────────────────────────────────── */
.pricing-sec { background: var(--dark); }
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.price-card {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.price-featured {
  border-color: transparent !important;
  background: linear-gradient(155deg, rgba(20,30,65,0.85), rgba(11,18,42,0.6)) !important;
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(201,168,76,0.1) !important;
  position: relative;
}
.price-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  padding: 1px;
  background: linear-gradient(145deg, rgba(201,168,76,0.7), rgba(201,168,76,0.2) 50%, rgba(0,180,255,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-featured:hover { transform: translateY(-9px); }
.featured-pip {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #07091C;
  font-family: var(--font-h);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.25rem 1rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.pc-tier { font-family: var(--font-h); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.pc-name { font-family: var(--font-h); font-size: 1.75rem; font-weight: 700; color: var(--white); }
.pc-cost { display: flex; align-items: baseline; gap: 4px; }
.pc-num { font-family: var(--font-h); font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; }
.pc-mo { color: var(--muted); font-size: 0.9rem; font-family: var(--font-h); }
.pc-egp {
  font-family: var(--font-h);
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  width: fit-content;
}
.pc-blurb { font-size: 0.88rem; color: var(--muted); }
.pc-list { display: flex; flex-direction: column; gap: 0.55rem; }
.pc-list li {
  font-family: var(--font-h);
  font-size: 0.85rem;
  color: var(--light);
  padding-left: 1.4rem;
  position: relative;
}
.pc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.btn-plan {
  display: block;
  text-align: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  color: var(--white);
  transition: var(--t);
  margin-top: 0.5rem;
}
.btn-plan:hover { border-color: var(--bdr-gold); color: var(--gold); background: var(--gold-dim); }
.btn-plan-gold { background: var(--gold) !important; color: #07091C !important; border-color: var(--gold) !important; }
.btn-plan-gold:hover { background: var(--gold-lt) !important; }
.pricing-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 2rem; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-sec { background: var(--dark-2); }
.faq-wrap { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  background: rgba(11,18,42,0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item[open] { border-color: var(--bdr-gold); }
.fq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  transition: color var(--t);
}
.fq::-webkit-details-marker { display: none; }
.fq::after { content: '+'; font-size: 1.4rem; color: var(--gold); flex-shrink: 0; transition: transform var(--t); }
.faq-item[open] .fq::after { transform: rotate(45deg); }
.faq-item[open] .fq { color: var(--gold); }
.fa {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.3rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── FINAL CTA ───────────────────────────────────── */
.cta-sec {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--dark);
}
.cta-box {
  position: relative;
  background: var(--dark-2);
  border: 1px solid var(--bdr-gold);
  border-radius: 28px;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(2rem, 6vw, 6rem);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(201,168,76,0.06);
}
.cta-aura {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.09) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-box .eyebrow { margin-bottom: 1.25rem; }
.cta-box h2 { margin-bottom: 1.25rem; }
.cta-body { font-size: 1.1rem; max-width: 560px; margin: 0 auto 1rem; color: var(--light); }
.cta-offer { font-size: 0.95rem; max-width: 540px; margin: 0 auto 2.5rem; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #07091C;
  padding: 1.1rem 2.5rem;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 40px rgba(201,168,76,0.45);
  transition: var(--t);
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 55px rgba(201,168,76,0.6); }
.cta-urgency { margin-top: 1.75rem; font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.cta-urgency strong { color: var(--gold); }

/* ── FOOTER ─────────────────────────────────────── */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1.1rem; }
.footer-logo { margin-bottom: 0.25rem; }
.footer-tag { font-size: 0.88rem; color: var(--muted); line-height: 1.85; }
.footer-arabic { font-family: var(--font-b); font-size: 1rem; color: var(--gold); opacity: 0.55; direction: rtl; }
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col h4 {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.footer-col a, .footer-col span {
  font-size: 0.87rem;
  color: var(--muted);
  transition: color var(--t);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.25rem 0; }
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom-row p { font-size: 0.78rem; color: var(--muted); }
.fb-right { color: var(--gold) !important; opacity: 0.55; }

/* ── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  transform: translateX(28px);
}
.reveal-right.visible { transform: translateX(0); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-copy { align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .trust-row { justify-content: center; }
  .hero-visual { order: -1; }
  .reveal-right { transform: translateY(28px); }

  .bento-7, .bento-5 { grid-column: span 6; }
  .bc-wide { flex-direction: column; gap: 1.5rem; }
  .bc-right { align-items: flex-start; }

  .empire-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .empire-cta { grid-column: 1 / -1; align-items: flex-start; }

  .stats-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sstat-sep { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .navbar { padding: 0.7rem 0.8rem 0.7rem 1.2rem; }

  h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  h2 { font-size: clamp(1.9rem, 7vw, 2.5rem); }

  .eye-portal { width: 280px; height: 340px; }
  .dc-1, .dc-2, .dc-3 { display: none; }

  .bento-7, .bento-5, .bento-4 { grid-column: span 12; }
  .bento-featured { grid-column: span 12; }

  .process-track { grid-template-columns: 1fr; }
  .process-line { display: none; }

  .testi-grid { grid-template-columns: 1fr; }
  .testi-grid .testi-card:last-child:nth-child(5) { grid-column: span 1; }

  .pricing-row { grid-template-columns: 1fr; }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-3px); }

  .pain-grid { grid-template-columns: 1fr 1fr; }
  .bridge { flex-direction: column; gap: 1rem; }
  .bridge p { white-space: normal; }
  .bridge-rule { width: 60px; height: 1px; }

  .empire-inner { grid-template-columns: 1fr; }
  .empire-cta { align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-row { flex-direction: column; text-align: center; }

  .wa-float span { display: none; }
  .wa-float { padding: 0.9rem; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}

@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-hero-primary, .btn-hero-ghost { justify-content: center; width: 100%; }
  .trust-row { gap: 0.5rem; }
  .trust-pill { padding: 0.5rem 0.8rem; }
}
