/* ═══════════════════════════════════════════════════════
   حلول وبدائل لتقنية المعلومات — Design System v3
   Brand: Royal Blue #1A3FCC  ·  RTL  ·  Cairo Font
   Default: Dark Mode  ·  WCAG 2.1 AA
   ═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Brand Blues (from logo) */
  --blue-900: #060D2B;
  --blue-800: #0A1545;
  --blue-700: #0F1E66;
  --blue-600: #1432A8;
  --blue-500: #1A3FCC;
  /* Primary Brand Blue */
  --blue-400: #2B5EF5;
  --blue-300: #4B7BFF;
  --blue-200: #7BA4FF;
  --blue-100: #C7D9FF;

  /* Accent Cyan */
  --cyan-600: #007A8A;
  --cyan-500: #00B8CC;
  --cyan-400: #00D4F0;
  /* Glow Accent */
  --cyan-300: #4DE8FF;
  --cyan-glow: rgba(0, 212, 240, 0.18);

  /* Dark Theme Surfaces */
  --dark-bg: #07091A;
  --dark-surface: #0C1030;
  --dark-surface-2: #111840;
  --dark-surface-3: #172054;
  --dark-border: rgba(42, 80, 200, 0.25);
  --dark-border-lt: rgba(75, 123, 255, 0.35);
  --dark-text: #E8EEFF;
  --dark-text-dim: #8A9DC8;
  --dark-text-faint: #3D4F7A;
  --dark-nav-bg: rgba(7, 9, 26, 0.75);
  --dark-drawer-bg: rgba(7, 9, 26, 0.97);

  /* Light Theme Surfaces */
  --light-bg: #F0F3FF;
  --light-surface: #FFFFFF;
  --light-surface-2: #E8EDFF;
  --light-border: rgba(26, 63, 204, 0.12);
  --light-border-lt: rgba(26, 63, 204, 0.25);
  --light-text: #060D2B;
  --light-text-dim: #3D5080;
  --light-text-faint: #7A8BB5;
  --light-nav-bg: rgba(240, 243, 255, 0.82);
  --light-drawer-bg: rgba(240, 243, 255, 0.97);

  /* Status */
  --ok: #22D3A0;
  --warn: #F5B942;
  --err: #FF5B6B;

  /* Fonts */
  --font-ar: 'Tajawal', system-ui, sans-serif;
  --font-mono: 'Readex Pro', sans-serif;

  /* Layout */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 7px;
  --nav-h: 72px;
  --maxw: 1240px;
  --ease: cubic-bezier(.16, .84, .44, 1);
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);
}

/* ─── DEFAULT: LIGHT THEME ─── */
body {
  --bg: var(--light-bg);
  --surface: var(--light-surface);
  --surface-2: var(--light-surface-2);
  --surface-3: #DCE4FF;
  --border: var(--light-border);
  --border-lt: var(--light-border-lt);
  --text: var(--light-text);
  --text-dim: var(--light-text-dim);
  --text-faint: var(--light-text-faint);
  --nav-bg: var(--light-nav-bg);
  --drawer-bg: var(--light-drawer-bg);
  --teal: var(--blue-500);
  --teal-lt: var(--blue-400);
  --teal-dk: var(--blue-600);
  --teal-glow: rgba(26, 63, 204, 0.1);
  --accent2: var(--cyan-500);
  --primary: var(--blue-500);
  --primary-lt: var(--blue-400);
}

/* ─── DARK THEME OVERRIDES ─── */
body.dark {
  --bg: var(--dark-bg);
  --surface: var(--dark-surface);
  --surface-2: var(--dark-surface-2);
  --surface-3: var(--dark-surface-3);
  --border: var(--dark-border);
  --border-lt: var(--dark-border-lt);
  --text: var(--dark-text);
  --text-dim: var(--dark-text-dim);
  --text-faint: var(--dark-text-faint);
  --nav-bg: var(--dark-nav-bg);
  --drawer-bg: var(--dark-drawer-bg);
  --teal: var(--cyan-400);
  --teal-lt: var(--cyan-300);
  --teal-dk: var(--cyan-500);
  --teal-glow: var(--cyan-glow);
  --accent2: var(--blue-300);
  --primary: var(--blue-500);
  --primary-lt: var(--blue-400);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ar);
  line-height: 1.75;
  overflow-x: hidden;
  font-size: 16px;
  transition: background 0.4s, color 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6,
.premium-title,
.h-sec {
  font-family: var(--font-mono);
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

/* ─── NOISE OVERLAY (subtle) ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: none;
}

/* ─── MESH BACKGROUND GLOW ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(26, 63, 204, .18), transparent 65%),
    radial-gradient(ellipse 55% 45% at 85% 80%, rgba(0, 212, 240, .12), transparent 60%),
    radial-gradient(ellipse 45% 35% at 50% 55%, rgba(26, 63, 204, .06), transparent 55%);
}

/* light is default, dark override */
body.dark::after {
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(26, 63, 204, .18), transparent 65%),
    radial-gradient(ellipse 55% 45% at 85% 80%, rgba(0, 212, 240, .12), transparent 60%),
    radial-gradient(ellipse 45% 35% at 50% 55%, rgba(26, 63, 204, .06), transparent 55%);
}

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.rel {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════
   FLOATING NAVBAR
══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 16px;
  inset-inline: 20px;
  height: 62px;
  z-index: 100;
  display: flex;
  align-items: center;
  max-width: 1260px;
  margin-inline: auto;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-lt);
  border-radius: 20px;
  box-shadow:
    0 4px 24px rgba(26, 63, 204, .12), 0 1px 0 rgba(26, 63, 204, .08);
  transition: background .3s, box-shadow .3s, border-color .3s;
}

body.dark nav {
  box-shadow: 0 4px 32px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .06);
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 12px rgba(26, 63, 204, .3);
}

.logo-txt {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.logo-txt span {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 400;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color .2s, background .2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: var(--surface-2);
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 11px !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
  box-shadow: 0 4px 18px rgba(26, 63, 204, .35) !important;
}

.nav-cta:hover {
  background: var(--primary-lt) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 28px rgba(26, 63, 204, .5) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

/* Theme Toggle */
.theme-toggle {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  cursor: pointer;
  padding: 7px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
  width: 36px;
  height: 36px;
  margin-inline: 4px;
}

.theme-toggle:hover {
  background: var(--surface-3);
  color: var(--text);
  border-color: var(--border-lt);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

/* Light mode (default): show moon icon to switch to dark */
.theme-toggle .sun-icon {
  display: none;
}

.theme-toggle .moon-icon {
  display: block;
}

/* Dark mode: show sun icon to switch back to light */
body.dark .theme-toggle .sun-icon {
  display: block;
}

body.dark .theme-toggle .moon-icon {
  display: none;
}

/* Mobile Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--drawer-bg);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer a {
  font-size: 1.25rem;
  color: var(--text);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 12px;
  transition: .2s;
}

.drawer a:hover {
  color: var(--teal);
  background: var(--surface-2);
}

.drawer-close {
  position: absolute;
  top: 24px;
  inset-inline-start: 24px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 28px;
  cursor: pointer;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-ar);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}

/* Shine effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-18deg);
  transition: none;
}

.btn:hover::before {
  inset-inline-start: 140%;
  transition: inset-inline-start .6s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(26, 63, 204, .4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(26, 63, 204, .55);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-lt);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--teal);
  background: var(--teal-glow);
  color: var(--teal);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   SECTION TYPOGRAPHY
══════════════════════════════════════════ */
section {
  padding: 36px 0;
  position: relative;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 212, 240, 0.25);
}

.tag::before {
  content: '';
  width: 16px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
}

.h-sec {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--blue-900) 40%, var(--blue-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.dark .h-sec {
  background: linear-gradient(135deg, var(--text) 40%, var(--text-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.sub-sec {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}

.center {
  text-align: center;
}

.center .tag {
  justify-content: center;
}

.center .sub-sec {
  margin-inline: auto;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-lt) 30%, var(--border-lt) 70%, transparent);
  margin: 0 2rem;
  display: none;
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 32px);
  overflow: hidden;
  position: relative;
}

/* Hero background grid */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(26, 63, 204, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 63, 204, .08) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 65% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 65% 40%, #000 30%, transparent 100%);
}

/* Hero orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 63, 204, .25) 0%, transparent 70%);
  top: -180px;
  inset-inline-end: -150px;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 240, .15) 0%, transparent 70%);
  bottom: -80px;
  inset-inline-start: 5%;
  animation-delay: -5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-30px)
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(26, 63, 204, .18);
  border: 1px solid rgba(75, 123, 255, .4);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--blue-200);
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(1.7)
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.hero h1 .g {
  background: linear-gradient(120deg, var(--cyan-300), var(--blue-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 .dim {
  color: var(--text-dim);
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 24px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat .n {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--teal), var(--blue-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .l {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 3px;
}

/* Hero Art - adaptive SVG */
.hero-art {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════
   CARDS & GRID SYSTEM
══════════════════════════════════════════ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card {
  background: var(--surface);
  padding: 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .25s, transform .3s var(--ease), box-shadow .3s;
}

.card:hover {
  background: var(--surface-2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 63, 204, .12);
  z-index: 2;
}

body.dark .card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--teal), transparent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}

.card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.card-ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(26, 63, 204, .2), rgba(0, 212, 240, .1));
  border: 1px solid rgba(75, 123, 255, .25);
  display: grid;
  place-items: center;
  transition: transform .35s var(--ease), box-shadow .3s;
}

.card:hover .card-ico {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 4px 20px rgba(26, 63, 204, .4);
}

.card-ico svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}

.card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
}

.card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
}

.card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
  flex: 1;
}

.card-link {
  font-size: 13px;
  color: var(--teal);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap .2s, color .2s;
}

.card-link:hover {
  gap: 12px;
}

.card .badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--teal);
  background: var(--teal-glow);
  border: 1px solid rgba(0, 212, 240, .25);
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}

/* Sub-list */
.subs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.subs li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-dim);
  padding: 8px 12px;
  background: rgba(26, 63, 204, .05);
  border: 1px solid var(--border);
  border-radius: 9px;
  transition: .2s;
}

.subs li:hover {
  border-color: rgba(75, 123, 255, .4);
  color: var(--text);
  background: rgba(26, 63, 204, .1);
}

.subs li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   STANDALONE CARDS (why, step, feat, value)
══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.why {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .28s var(--ease), border-color .25s, background .25s, box-shadow .3s;
}

.why:hover {
  transform: translateY(-5px);
  background: var(--surface-2);
  border-color: var(--border-lt);
  box-shadow: 0 8px 32px rgba(26, 63, 204, .12);
}

body.dark .why:hover {
  box-shadow: 0 12px 40px rgba(26, 63, 204, .2);
}

.why .wico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26, 63, 204, .2), rgba(0, 212, 240, .1));
  border: 1px solid rgba(75, 123, 255, .2);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  transition: transform .35s var(--ease);
}

.why:hover .wico {
  transform: rotate(8deg) scale(1.08);
}

.why .wico svg {
  width: 23px;
  height: 23px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.7;
}

.why h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.75;
}

/* Process steps */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease), border-color .25s, box-shadow .3s;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(26, 63, 204, .05), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(75, 123, 255, .4);
  box-shadow: 0 12px 40px rgba(26, 63, 204, .2);
}

.step:hover::before {
  opacity: 1;
}

.step .pn {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .25;
  line-height: 1;
  margin-bottom: 8px;
  transition: opacity .3s;
}

.step:hover .pn {
  opacity: .6;
}

.step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.75;
}

/* Feature cards */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feat {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  transition: .25s var(--ease);
}

.feat:hover {
  border-color: var(--border-lt);
  transform: translateX(-4px);
  background: var(--surface-2);
}

.feat .fi {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(26, 63, 204, .2), rgba(0, 212, 240, .1));
  border: 1px solid rgba(75, 123, 255, .2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feat .fi svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.7;
}

.feat h4 {
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.feat p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* Sectors */
.sectors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.sector {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 16px 12px;
  text-align: center;
  transition: transform .28s var(--ease), border-color .25s, background .25s, box-shadow .3s;
}

.sector:hover {
  border-color: var(--border-lt);
  transform: translateY(-5px) scale(1.02);
  background: var(--surface-2);
  box-shadow: 0 8px 32px rgba(26, 63, 204, .2);
}

.sector svg {
  width: 30px;
  height: 30px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.6;
  margin: 0 auto 10px;
  transition: .3s;
}

.sector:hover svg {
  stroke: var(--teal-lt);
  transform: scale(1.15);
}

.sector span {
  font-size: 13px;
  font-weight: 600;
}

/* Values */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.vmv {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vmv-item {
  padding: 16px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 13px;
  border-inline-start: 3px solid var(--primary);
  transition: .25s;
}

.vmv-item:hover {
  border-inline-start-color: var(--teal);
  background: var(--surface-3);
}

.vmv-item.alt {
  border-inline-start-color: var(--teal);
}

.vmv-item h4 {
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.vmv-item p {
  font-size: 13.5px;
  color: var(--text-dim);
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.value {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  transition: .25s var(--ease);
}

.value:hover {
  border-color: var(--border-lt);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 63, 204, .2);
}

.value .vi {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26, 63, 204, .2), rgba(0, 212, 240, .1));
  margin-bottom: 8px;
}

.value .vi svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.7;
}

.value h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.value p {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  border: 1px solid var(--border-lt);
  border-radius: 22px;
  padding: 30px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 63, 204, .2), transparent 70%);
  top: -100px;
  inset-inline-end: -80px;
  border-radius: 50%;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 240, .12), transparent 70%);
  bottom: -80px;
  inset-inline-start: -60px;
  border-radius: 50%;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-band p {
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.cta-band .btn {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════
   FORMS
══════════════════════════════════════════ */
.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.inp,
.sel,
textarea.inp {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-ar);
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.inp:focus,
.sel:focus,
textarea.inp:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 63, 204, .15);
}

.inp::placeholder,
textarea.inp::placeholder {
  color: var(--text-faint);
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sel option,
.sel optgroup {
  background: var(--surface);
}

/* Service Picker */
.picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 8px 0 6px;
}

.pick {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  cursor: pointer;
  font-size: 13px;
  transition: .2s;
  user-select: none;
}

.pick:hover {
  border-color: var(--border-lt);
  background: var(--surface-2);
}

.pick.sel {
  border-color: var(--primary);
  background: rgba(26, 63, 204, .12);
  color: var(--text);
}

.pick .chk {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-lt);
  border-radius: 5px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: .2s;
}

.pick.sel .chk {
  background: var(--primary);
  border-color: var(--primary);
}

.pick .chk svg {
  width: 11px;
  height: 11px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
  opacity: 0;
}

.pick.sel .chk svg {
  opacity: 1;
}

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 30px) 0 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(26, 63, 204, .06) 0%, transparent 100%);
}

.crumb {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.crumb a:hover {
  color: var(--teal);
}

.crumb span {
  color: var(--text-faint);
}

.page-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  max-width: 780px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.65;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(26, 63, 204, .15);
  border: 1px solid rgba(75, 123, 255, .35);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--blue-200);
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}

.prose {
  max-width: 760px;
}

.prose h2 {
  font-size: 1.5rem;
  margin: 38px 0 14px;
  font-weight: 700;
}

.prose h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--teal-lt);
  font-weight: 600;
}

.prose p {
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.95;
}

/* ══════════════════════════════════════════
   TABS / FILTER PILLS
══════════════════════════════════════════ */
.tabs {
  display: flex;
  gap: 6px;
  background: var(--surface);
  padding: 6px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: fit-content;
}

.tab {
  padding: 10px 24px;
  border-radius: 10px;
  font-family: var(--font-ar);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-dim);
  transition: .2s;
}

.tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 63, 204, .4);
}

.tab:hover:not(.active) {
  color: var(--text);
  background: var(--surface-2);
}

.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
}

.pill {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: .2s;
}

.pill.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(26, 63, 204, .1);
}

.pill:hover:not(.active) {
  border-color: var(--border-lt);
  color: var(--text);
}

.panel {
  display: none;
}

.panel.active {
  display: block;
}

/* ══════════════════════════════════════════
   TECH MARQUEE
══════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: scrollx 40s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollx {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  white-space: nowrap;
  transition: .25s var(--ease);
}

.tech-chip:hover {
  border-color: rgba(75, 123, 255, .5);
  background: var(--surface-2);
  transform: scale(1.05) translateY(-2px);
}

.tech-chip svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.tech-chip span {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-dim);
}

.tech-chip:hover span {
  color: var(--text);
}

/* ══════════════════════════════════════════
   CLIENTS & TESTIMONIALS
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   CLIENTS INFINITE MARQUEE CAROUSEL (3 ROWS)
   ══════════════════════════════════════════ */
.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  direction: ltr;
  /* Force LTR for simple translation coordinate math */
}

.marquee-row {
  display: flex;
  width: max-content;
  gap: 16px;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Row Animations */
.marquee-row-rtl {
  animation: scroll-rtl 40s linear infinite;
}

.marquee-row-ltr {
  animation: scroll-ltr 40s linear infinite;
}

.marquee-container:hover .marquee-row {
  animation-play-state: paused;
}

@keyframes scroll-rtl {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Partner Card Styling */
/* Row spacing */
.marquee-row {
  display: flex;
  width: max-content;
  gap: 36px;
  align-items: center;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
}

/* Partner Floating Logo (No border) */
.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .28s var(--ease);
  cursor: pointer;
}

.partner-logo-item:hover {
  transform: scale(1.08);
}

.partner-logo {
  max-height: 104px;
  /* Bigger logo height */
  width: auto;
  max-width: 300px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: all .28s var(--ease);
}

.partner-logo-item:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
}

/* Partner Text Card (For no-logo partners) */
.partner-text-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 40px;
  white-space: nowrap;
  transition: all .28s var(--ease);
  height: 96px;
  box-shadow: 0 4px 12px rgba(26, 63, 204, 0.02);
  cursor: pointer;
}

.partner-text-card:hover {
  border-color: var(--teal-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--teal-glow);
}

.partner-text-card .partner-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--ar);
}

.tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform .28s var(--ease), border-color .25s, box-shadow .3s;
}

.tcard:hover {
  transform: translateY(-5px);
  border-color: var(--border-lt);
  box-shadow: 0 16px 48px rgba(26, 63, 204, .2);
}

.tcard .quote {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 14px;
}

.tcard .who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 15px;
}

.tcard .who h5 {
  font-size: 13.5px;
  font-weight: 700;
}

.tcard .who p {
  font-size: 12px;
  color: var(--text-dim);
}

.tcard .stars {
  color: var(--teal);
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 2px;
}

/* ══════════════════════════════════════════
   SERVICES (basket add-to)
══════════════════════════════════════════ */
.svc-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .25s, background .25s;
}

.svc-row:hover {
  border-color: var(--border-lt);
  background: var(--surface-2);
}

.svc-row .si {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26, 63, 204, .2), rgba(0, 212, 240, .1));
  border: 1px solid rgba(75, 123, 255, .2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.svc-row .si svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.7;
}

.svc-row .sbody {
  flex: 1;
}

.svc-row h4 {
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.svc-row p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
}

.add-svc {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 9px;
  border: 1.5px solid var(--border-lt);
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font-ar);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
}

.add-svc:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(26, 63, 204, .1);
}

.add-svc svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.3;
  transition: transform .2s;
}

.add-svc.added {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.add-svc.added svg {
  transform: rotate(45deg);
}

/* ══════════════════════════════════════════
   CART FAB + PANEL
══════════════════════════════════════════ */
.cart-fab {
  position: fixed;
  bottom: 32px;
  inset-inline-end: 32px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px rgba(26, 63, 204, .5);
  z-index: 95;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
}

.cart-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 48px rgba(26, 63, 204, .65);
}

.cart-fab svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.9;
}

.cart-count {
  position: absolute;
  top: -7px;
  inset-inline-start: -7px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 12px;
  background: var(--err);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg);
  transform: scale(0);
  transition: transform .25s var(--ease-back);
}

.cart-count.show {
  transform: scale(1);
}

.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 96;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}

.cart-panel.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 18, .7);
  backdrop-filter: blur(4px);
}

.cart-sheet {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  height: 100%;
  width: min(430px, 90vw);
  background: var(--surface);
  border-inline-start: 1px solid var(--border);
  padding: 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .4);
}

[dir=rtl] .cart-sheet {
  transform: translateX(-100%);
}

.cart-panel.open .cart-sheet {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-head h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  border-radius: 7px;
  transition: .2s;
}

.cart-close:hover {
  color: var(--text);
  background: var(--surface-2);
}

.cart-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.cart-empty {
  color: var(--text-dim);
  font-size: 14px;
  text-align: center;
  padding: 48px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 11px;
}

.cart-item span {
  flex: 1;
  font-size: 13.5px;
}

.cart-item button {
  background: none;
  border: none;
  color: var(--err);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
  transition: opacity .2s;
}

.cart-item button:hover {
  opacity: .7;
}

.cart-foot {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.cart-foot .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

/* ══════════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .28s var(--ease), border-color .25s, box-shadow .3s;
}

.bcard:hover {
  transform: translateY(-5px);
  border-color: var(--border-lt);
  box-shadow: 0 16px 48px rgba(26, 63, 204, .2);
}

.bcard .cov {
  height: 6px;
}

.bcard .pad {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.bcard .cat {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.bcard h3 {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.bcard p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.75;
  flex: 1;
}

.bcard .meta {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.bcard a.more {
  font-size: 13px;
  color: var(--teal);
  font-weight: 700;
  transition: gap .2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bcard a.more:hover {
  gap: 10px;
}

/* Skeleton */
.skl {
  height: 260px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--surface), var(--surface-2), var(--surface));
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  to {
    background-position: -200% 0
  }
}

/* Post body */
.post-body {
  max-width: 760px;
}

.post-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 38px 0 14px;
}

.post-body h3 {
  font-size: 1.18rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--teal-lt);
}

.post-body p {
  color: var(--text-dim);
  line-height: 1.95;
  margin-bottom: 18px;
}

.post-body ul {
  margin: 0 0 20px;
  padding-inline-start: 4px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.post-body li {
  display: flex;
  gap: 10px;
  color: var(--text-dim);
  line-height: 1.75;
  font-size: 15px;
}

.post-body li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 11px;
}

.post-body strong {
  color: var(--text);
}

.post-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-top: 14px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 0 18px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--teal) 70%, transparent);
}

.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1.2fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.foot-brand p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-top: 10px;
  max-width: 290px;
}

.foot-col h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.foot-col a {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  padding: 5px 0;
  transition: .2s;
}

.foot-col a:hover {
  color: var(--teal);
  padding-inline-start: 4px;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-faint);
}

.foot-social {
  display: flex;
  gap: 10px;
}

.foot-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: .2s;
}

.foot-social a:hover {
  border-color: var(--primary);
  background: rgba(26, 63, 204, .15);
}

.foot-social svg {
  width: 17px;
  height: 17px;
  stroke: var(--text-dim);
  fill: none;
  stroke-width: 1.7;
}

.foot-social a:hover svg {
  stroke: var(--primary);
}

/* Footer logo */
.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: contain;
  background: #fff;
  padding: 3px;
}

.foot-logo-txt {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.foot-logo-txt span {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 400;
}

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.wa {
  position: fixed;
  bottom: 32px;
  inset-inline-start: 32px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, .45);
  z-index: 90;
  transition: transform .2s, box-shadow .2s;
}

.wa:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 46px rgba(37, 211, 102, .6);
}

.wa svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ══════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:1024px) {
  nav {
    top: 12px;
    inset-inline: 12px;
    border-radius: 16px;
  }

  .grid-3,
  .process,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sectors {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-art {
    max-width: 480px;
    margin-inline: auto;
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
  }

  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tcards {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:680px) {
  nav {
    top: 10px;
    inset-inline: 10px;
    height: 56px;
    border-radius: 14px;
  }

  .wrap {
    padding-inline: 1rem;
  }

  section {
    padding: 32px 0;
  }

  .page-hero {
    padding: calc(var(--nav-h) + 28px) 0 34px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .grid-3,
  .grid-2,
  .process,
  .why-grid,
  .feat-grid,
  .row2,
  .picker,
  .values {
    grid-template-columns: 1fr;
  }

  .sectors {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    padding: 44px 24px;
    border-radius: 20px;
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-stats {
    gap: 28px;
  }

  .cart-fab {
    bottom: 100px;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-row {
    flex-wrap: wrap;
  }

  .add-svc {
    margin-top: 6px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   SEARCH BOX
══════════════════════════════════════════ */
#searchInput {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 13px 16px 13px 44px;
  color: var(--text);
  font-family: var(--font-ar);
  font-size: 14px;
  transition: .2s;
  outline: none;
}

#searchInput:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 63, 204, .15);
}

#searchInput::placeholder {
  color: var(--text-faint);
}

/* ══════════════════════════════════════════
   SERVICES PAGE — NEXT-GEN LAYOUT
══════════════════════════════════════════ */

/* Hero stat pills */
.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 63, 204, .12);
  border: 1px solid rgba(75, 123, 255, .28);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  color: var(--blue-200);
  backdrop-filter: blur(6px);
}

.hero-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}

/* Services two-column layout */
.svc-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}

/* Sticky Sidebar */
.svc-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  overflow: hidden;
}

.svc-sidebar-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--font-mono);
  padding: 12px 16px 8px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: right;
  transition: all .2s;
  position: relative;
}

.sidebar-link .slink-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(26, 63, 204, .1);
  transition: all .2s;
}

.sidebar-link .slink-ico svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-faint);
  fill: none;
  stroke-width: 1.8;
  transition: .2s;
}

.sidebar-link:hover {
  color: var(--text);
  background: var(--surface-2);
}

.sidebar-link:hover .slink-ico {
  background: rgba(26, 63, 204, .2);
}

.sidebar-link:hover .slink-ico svg {
  stroke: var(--teal);
}

.sidebar-link.active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(26, 63, 204, .15), rgba(0, 212, 240, .08));
  border: 1px solid rgba(75, 123, 255, .25);
}

.sidebar-link.active .slink-ico {
  background: linear-gradient(135deg, rgba(26, 63, 204, .3), rgba(0, 212, 240, .15));
}

.sidebar-link.active .slink-ico svg {
  stroke: var(--teal);
}

.sidebar-link .slink-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin-inline-start: auto;
  opacity: 0;
  transition: opacity .2s;
  box-shadow: 0 0 6px var(--teal);
}

.sidebar-link.active .slink-dot {
  opacity: 1;
}

/* Services content area */
.svc-content {
  min-width: 0;
}

/* Category section header */
.svc-section {
  margin-bottom: 34px;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.svc-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.svc-section-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  inset-inline-start: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 2px;
}

.svc-section-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(26, 63, 204, .2), rgba(0, 212, 240, .12));
  border: 1px solid rgba(75, 123, 255, .25);
  display: grid;
  place-items: center;
}

.svc-section-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}

.svc-section-meta {
  flex: 1;
}

.svc-section-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
  margin-bottom: 3px;
}

.svc-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
}

.svc-section-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 12px;
  max-width: 640px;
}

/* New Service cards grid */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* Modern Service Card */
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .28s var(--ease), border-color .25s, background .25s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary) 40%, var(--teal) 70%, transparent);
  opacity: 0;
  transition: opacity .3s;
}

.svc-card:hover {
  border-color: var(--border-lt);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 63, 204, .1);
}

.svc-card:hover::before {
  opacity: 1;
}

body.dark .svc-card:hover {
  box-shadow: 0 12px 36px rgba(26, 63, 204, .2);
}

.svc-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.svc-card-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(26, 63, 204, .2), rgba(0, 212, 240, .1));
  border: 1px solid rgba(75, 123, 255, .2);
  display: grid;
  place-items: center;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.svc-card:hover .svc-card-ico {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 4px 16px rgba(26, 63, 204, .35);
}

.svc-card-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}

.svc-card h4 {
  font-size: .97rem;
  font-weight: 700;
  flex: 1;
  line-height: 1.4;
}

.svc-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
  flex: 1;
}

/* Add to cart button for new cards */
.svc-card-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-lt);
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font-ar);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  margin-top: 0;
}

.svc-card-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(26, 63, 204, .1);
}

.svc-card-btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform .2s;
}

.svc-card-btn.added {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.svc-card-btn.added svg {
  transform: rotate(45deg);
}

/* Panel tabs update */
.svc-panel {
  display: none;
}

.svc-panel.active {
  display: block;
}

/* Tabs bar */
.svc-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

/* Responsive: services layout */
@media(max-width:1024px) {
  .svc-layout {
    grid-template-columns: 200px 1fr;
    gap: 18px;
  }

  .svc-cards {
    grid-template-columns: 1fr;
  }
}

@media(max-width:680px) {
  .svc-layout {
    grid-template-columns: 1fr;
  }

  .svc-sidebar {
    display: none;
  }

  .svc-cards {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   PREMIUM 180 DEGREE UPGRADE - HERO & CARDS
══════════════════════════════════════════ */
.perspective-grid {
  position: absolute;
  width: 200%;
  height: 100%;
  top: -10%;
  left: -50%;
  background-image:
    linear-gradient(rgba(26, 63, 204, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 63, 204, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg) translateY(-15%) translateZ(0);
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000, transparent 80%);
  opacity: 0.85;
  z-index: 0;
  animation: gridScroll 35s linear infinite;
  pointer-events: none;
}

.perspective-grid {
  background-image:
    linear-gradient(rgba(26, 63, 204, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 63, 204, 0.04) 1px, transparent 1px);
}

body.dark .perspective-grid {
  background-image:
    linear-gradient(rgba(26, 63, 204, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 63, 204, 0.08) 1px, transparent 1px);
}

@keyframes gridScroll {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 1000px;
  }
}

/* light is default for premium cards */
.premium-glow-card {
  position: relative;
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(26, 63, 204, 0.12) !important;
  border-radius: 24px !important;
  padding: 32px !important;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
  z-index: 1;
}

body.dark .premium-glow-card {
  background: rgba(12, 16, 48, 0.45) !important;
  border-color: rgba(75, 123, 255, 0.16) !important;
}

/* Custom spotlight effect via JS or CSS default */
.premium-glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 220px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 212, 240, 0.09), transparent 85%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.premium-glow-card:hover::before {
  opacity: 1;
}

.premium-glow-card:hover {
  transform: translateY(-8px) scale(1.015) !important;
  border-color: rgba(0, 212, 240, 0.35) !important;
  box-shadow: 0 24px 48px rgba(0, 212, 240, 0.06), 0 0 25px rgba(26, 63, 204, 0.12) !important;
}

/* Neon Icon Box */
.neon-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(26, 63, 204, 0.15), rgba(0, 212, 240, 0.1));
  border: 1px solid rgba(75, 123, 255, 0.25);
  box-shadow: 0 0 15px rgba(26, 63, 204, 0.1);
  transition: all 0.4s ease;
}

.neon-icon-box::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--teal), var(--primary));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.premium-glow-card:hover .neon-icon-box {
  transform: scale(1.1) rotate(-3deg);
  border-color: var(--teal);
  box-shadow: 0 0 25px rgba(0, 212, 240, 0.35);
}

.neon-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  transition: all 0.3s ease;
}

.premium-glow-card:hover .neon-icon-box svg {
  stroke: #ffffff;
  filter: drop-shadow(0 0 5px var(--teal));
}

.premium-glow-card:hover .neon-icon-box svg {
  stroke: var(--primary);
  filter: none;
}

body.dark .premium-glow-card:hover .neon-icon-box svg {
  stroke: #ffffff;
  filter: drop-shadow(0 0 5px var(--teal));
}

/* Floating animation */
.float-element {
  animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Reveal classes */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom interactive steps */
.step-card {
  position: relative;
  background: rgba(12, 16, 48, 0.4);
  border: 1px solid rgba(75, 123, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.35s ease;
}

.step-card:hover {
  border-color: var(--teal);
  background: rgba(12, 16, 48, 0.65);
  transform: translateY(-5px);
}

.step-card .step-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.step-card:hover .step-num {
  opacity: 1;
  filter: drop-shadow(0 0 10px var(--teal));
}

/* Glowing tag */
.glow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 240, 0.08);
  border: 1px solid rgba(0, 212, 240, 0.25);
  color: var(--teal-lt);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 212, 240, 0.25);
}

/* Pulsing dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal);
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 16px var(--teal);
  }

  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

/* Sectors Grid Modern styles */
.sector-glass {
  background: rgba(12, 16, 48, 0.35);
  border: 1px solid rgba(75, 123, 255, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.sector-glass:hover {
  background: rgba(17, 24, 64, 0.6);
  border-color: var(--teal);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 212, 240, 0.05);
}

.sector-glass svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-dim);
  transition: all 0.3s ease;
}

.sector-glass:hover svg {
  stroke: var(--teal);
  transform: scale(1.1);
}

/* ─── PARTNERS PAGE & SECTION STYLES ─── */
.partners-section {
  padding: 80px 0;
  background: var(--bg);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  height: 100%;
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: 0 12px 30px rgba(0, 212, 240, 0.08);
}

.partner-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

/* default (light): keep color for partner logos */
.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7) contrast(1.1);
  transition: all 0.3s ease;
}

body.dark .partner-logo img {
  filter: grayscale(100%) opacity(0.85);
}

.partner-card:hover .partner-logo img {
  filter: none;
}

.partner-logo-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  border: 1px dashed var(--border);
  margin-bottom: 20px;
}

.partner-info {
  margin-top: 10px;
}

.partner-name {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 700;
}

.partner-description {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}