/* ============================================================
   BITPRO ERP — Professional Light Theme
   White content · Dark green hero/footer · Green accents
   ============================================================ */

:root {
  /* Brand greens */
  --green-dark:   #121E32;   /* hero / footer bg */
  --green-deep:   #0A1322;   /* footer deep bg */
  --green-mid:    #1E3354;   /* dark accent text */
  --green-vivid:  #2B5BA6;   /* primary CTA blue */
  --green-bright: #3B82F6;   /* hover / badge blue */
  --green-light:  #DBEAFE;   /* pill / tag bg */
  --green-xlight: #F0F5FF;   /* section tint bg */

  /* Light surface */
  --bg-body:    #FFFFFF;
  --bg-section: #F5F8FF;
  --bg-card:    #FFFFFF;

  /* Text */
  --text-h:     #0D1F13;     /* headings */
  --text-body:  #374151;     /* body copy */
  --text-muted: #9CA3AF;     /* captions / labels */

  /* Borders & shadows */
  --border:     #E5E7EB;
  --border-g:   rgba(43,91,166, 0.3);
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.05);
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.11);
  --shadow-g:   0 8px 32px rgba(43,91,166,0.18);

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --nav-height: 68px;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-arabic: 'Tajawal', 'IBM Plex Arabic', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2rem); }
.container-wide { width: 100%; max-width: 1380px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2rem); }
.section     { padding-block: clamp(72px, 9vw, 120px); }
.section-sm  { padding-block: clamp(44px, 5vw, 72px); }
.section-alt { background: var(--bg-section); }

/* ── Announcement bar ── */
.announcement-bar {
  background: linear-gradient(90deg, #14532D, #166534, #16A34A);
  padding: 9px 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  position: relative; z-index: 101;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap;
}
.zatca-bar-logo {
  height: 32px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  vertical-align: middle;
}
.announcement-bar a { text-decoration: underline; opacity: 0.9; margin-left: 4px; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex; align-items: center;
  transition: background 0.35s var(--transition), box-shadow 0.35s var(--transition);
}
.nav.scrolled {
  background: rgba(18,30,50,0.97);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 4px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex; align-items: center; gap: 2rem;
  width: 100%; max-width: 1380px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { height: 36px; width: auto; object-fit: contain; }
/* Two logos: white for dark hero, dark for white scrolled nav */
.nav-logo-dark  { display: none; }
.nav-logo-light { display: block; }
.nav.scrolled .nav-logo-light { display: block; }
.nav.scrolled .nav-logo-dark  { display: none; }
.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green-vivid), var(--green-dark));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.875rem; color: #fff;
}
.nav-logo-text { font-size: 1.175rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text-h); }
.nav:not(.scrolled) .nav-logo-text { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 0.125rem; margin-left: auto; }
.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav.scrolled .nav-link { color: rgba(255,255,255,0.85); }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav.scrolled .nav-link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: 1rem; }
.btn-nav-demo {
  padding: 0.5625rem 1.25rem;
  background: var(--green-vivid); color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: var(--shadow-g);
}
.btn-nav-demo:hover { background: var(--green-bright); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem; font-weight: 600; letter-spacing: -0.01em;
  transition: all 0.22s var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-vivid); color: #fff;
  box-shadow: var(--shadow-g);
}
.btn-primary:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(43,91,166,0.3); }
.btn-primary:active { transform: translateY(0); }
.btn-gold {
  background: var(--green-vivid); color: #fff;
  box-shadow: var(--shadow-g);
}
.btn-gold:hover { background: var(--green-bright); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-whatsapp-outline { border-color: #25D366; color: #25D366; background: rgba(37,211,102,0.08); }
.btn-whatsapp-outline:hover { border-color: #25D366; background: #25D366; color: #fff; transform: translateY(-2px); }
.btn-outline-dark {
  border: 1.5px solid var(--border);
  color: var(--text-body);
  background: #fff;
}
.btn-outline-dark:hover { border-color: var(--green-vivid); color: var(--green-vivid); transform: translateY(-2px); }
.btn-lg { padding: 1.0625rem 2.25rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-ghost { color: var(--text-muted); }
.btn-ghost:hover { color: var(--green-vivid); }

/* ── Hero (DARK GREEN) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 72px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(160deg, #1E3354 0%, #121E32 55%, #0A1322 100%);
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.hero-glow-1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%);
  top: -20%; left: 50%; transform: translateX(-50%);
  animation: pulseGlow 7s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,91,166,0.1) 0%, transparent 70%);
  bottom: -10%; right: -8%;
  animation: pulseGlow 9s ease-in-out infinite reverse;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
@keyframes pulseGlow {
  0%,100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.06); }
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 880px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  font-size: 0.8125rem; font-weight: 600; color: #fff;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
  letter-spacing: 0.02em;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 6px var(--green-bright);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-headline {
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.04em;
  color: #fff; margin-bottom: 1.5rem;
}
.hero-headline .accent { color: var(--green-bright); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 600px; margin-inline: auto;
  margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-cta-group {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  color: var(--green-bright); margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.hero-scroll-indicator {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.45; animation: fadeInUp 2s 1.5s both;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── Hero Dashboard Visual ── */
/* ── Hero Dashboard Wrap ── */
.hero-dashboard-wrap {
  position: relative; z-index: 2;
  width: 100%; max-width: 1100px;
  margin-inline: auto; margin-top: 3rem;
  padding-inline: 1.25rem;
}

/* ── Bitpro Dashboard Mockup ── */
.bp-dash {
  border-radius: var(--radius-xl); overflow: hidden;
  background: #0f1b30;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.07);
  font-family: var(--font-sans);
  user-select: none;
}
.bp-dash-chrome {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 16px;
  background: #0a1425;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.bp-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.bp-dash-url {
  flex: 1; text-align: center;
  font-size: 0.68rem; color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05); border-radius: 5px;
  padding: 3px 10px; margin-inline: 8px;
}
.bp-dash-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 420px;
}

/* Sidebar */
.bp-sidebar {
  background: #0c1626;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 14px 10px;
  display: flex; flex-direction: column;
}
.bp-sidebar-logo {
  padding: 0 4px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 10px;
}
.bp-sidebar-nav { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.bp-nav-item {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 8px; border-radius: 6px;
  font-size: 0.68rem; color: rgba(255,255,255,0.45);
  cursor: default; transition: all 0.15s;
}
.bp-nav-item svg { flex-shrink: 0; opacity: 0.7; }
.bp-nav-active {
  background: rgba(59,130,246,0.18);
  color: #60A5FA;
}
.bp-nav-active svg { opacity: 1; }
.bp-nav-bottom { margin-top: auto; }

/* Main area */
.bp-main {
  background: #111d2e;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 10px;
  overflow: hidden;
}

/* Filter bar */
.bp-filter-bar {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.bp-filter-pill {
  padding: 4px 9px; border-radius: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.6rem; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 4px;
}
.bp-filter-apply {
  padding: 4px 12px; border-radius: 5px;
  background: #3B82F6; color: #fff;
  font-size: 0.6rem; font-weight: 700;
  margin-left: auto;
}

/* KPI row */
.bp-kpi-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 8px;
}
.bp-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 10px 12px;
}
.bp-kpi-label { font-size: 0.58rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; line-height: 1.3; }
.bp-kpi-value { font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 3px; }
.bp-kpi-sub { font-size: 0.58rem; font-weight: 600; }
.bp-green { color: #34D399; }
.bp-muted { color: rgba(255,255,255,0.35); }

/* Charts row 1 */
.bp-charts-row {
  display: grid; grid-template-columns: 1fr 130px 130px; gap: 8px;
}
.bp-chart-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 10px 12px;
}
.bp-chart-title {
  font-size: 0.6rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.bp-line-chart-wrap { display: flex; flex-direction: column; }
.bp-line-x-labels {
  display: flex; justify-content: space-between;
  font-size: 0.55rem; color: rgba(255,255,255,0.25);
  margin-top: 4px; padding-inline: 2px;
}
.bp-donut-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.bp-donut-legend { width: 100%; }
.bp-legend-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.58rem; color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
}
.bp-legend-item span {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; display: block;
}

/* Charts row 2 */
.bp-charts-row2 {
  display: grid; grid-template-columns: 1fr 200px; gap: 8px;
}
.bp-bar-chart {
  display: flex; align-items: flex-end; gap: 14px;
  height: 70px; padding-top: 4px;
}
.bp-bar-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex: 1;
}
.bp-bar {
  width: 100%; border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #3B82F6, rgba(59,130,246,0.4));
}
.bp-bar-wrap span {
  font-size: 0.52rem; color: rgba(255,255,255,0.3);
  text-align: center; word-break: break-all; line-height: 1.2;
  max-width: 50px;
}
.bp-store-list { display: flex; flex-direction: column; gap: 6px; }
.bp-store-row {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bp-store-row:last-child { border-bottom: none; }
.bp-store-rank {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(59,130,246,0.2); color: #60A5FA;
  font-size: 0.58rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bp-store-name { font-size: 0.58rem; color: rgba(255,255,255,0.6); flex: 1; line-height: 1.3; }
.bp-store-val { font-size: 0.65rem; font-weight: 700; color: #34D399; flex-shrink: 0; }

/* ── Trust Strip ── */
.trust-strip {
  padding-block: 32px;
  border-block: 1px solid var(--border);
  background: #fff;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.25rem, 3vw, 3rem); flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: #6B7280; font-size: 0.875rem; font-weight: 600;
  transition: color 0.2s;
}
.trust-item:hover { color: var(--green-vivid); }
.trust-icon { font-size: 1.1rem; }
.trust-sep { width: 1px; height: 20px; background: var(--border); }
.zatca-logo-sm { height: 20px; width: auto; object-fit: contain; opacity: 0.75; }

/* ── Section Header ── */
.section-header {
  text-align: center; max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  background: var(--green-light);
  font-size: 0.72rem; font-weight: 700;
  color: var(--green-mid);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900; letter-spacing: -0.035em;
  line-height: 1.12; color: var(--text-h);
  margin-bottom: 0.875rem;
}
.section-desc { font-size: 1rem; color: var(--text-body); line-height: 1.75; }

/* ── Text gradients ── */
.gradient-text { color: var(--green-vivid); }
.gradient-text-gold { color: #60A5FA; }
.gradient-text-blue { color: #60A5FA; }
.text-accent { color: var(--green-vivid); }

/* ── Pain Points ── */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.125rem; }
.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-vivid), var(--green-bright));
  opacity: 0; transition: opacity 0.25s;
}
.pain-card:hover { border-color: var(--border-g); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-card:hover::before { opacity: 1; }
.pain-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1.125rem;
  transition: background 0.25s;
}
.pain-card:hover .pain-icon { background: var(--green-bright); }
.pain-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-h); }
.pain-desc { font-size: 0.875rem; color: var(--text-body); line-height: 1.65; }

/* ── Features ── */
.features-section { background: var(--bg-section); }
.features-tabs {
  display: flex; align-items: center; gap: 0.375rem;
  overflow-x: auto; padding-bottom: 0.25rem; margin-bottom: 2.75rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.features-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0; padding: 0.5625rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600;
  color: var(--text-muted); border: 1px solid transparent;
  transition: all 0.2s;
}
.tab-btn:hover { color: var(--text-body); background: #fff; border-color: var(--border); }
.tab-btn.active { background: #fff; border-color: var(--border-g); color: var(--green-vivid); box-shadow: var(--shadow-xs); }
.feature-panel { display: none; }
.feature-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-panel-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; color: var(--green-mid);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.875rem;
}
.feature-panel-title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 0.875rem; color: var(--text-h);
}
.feature-panel-desc { color: var(--text-body); font-size: 0.9375rem; line-height: 1.75; margin-bottom: 1.625rem; }
.feature-checklist { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.feature-check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-body); }
.check-icon {
  flex-shrink: 0; width: 19px; height: 19px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--green-vivid); margin-top: 1px;
  font-weight: 700;
}
.feature-panel-visual {}
.feature-ui-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.ui-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.125rem; padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.ui-card-title { font-size: 0.875rem; font-weight: 700; color: var(--text-h); }
.ui-card-badge { padding: 0.25rem 0.625rem; border-radius: 100px; font-size: 0.65rem; font-weight: 700; background: #DBEAFE; color: #1D4ED8; }
.ui-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.ui-stat { background: #F9FAFB; border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.ui-stat-label { font-size: 0.63rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.ui-stat-val { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text-h); }
.ui-stat-val.green { color: var(--green-vivid); }
.ui-list-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}
.ui-list-item:last-child { border-bottom: none; }
.ui-list-name { color: var(--text-body); }
.ui-list-val { font-weight: 700; color: var(--text-h); }

/* ── Industries ── */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 0.875rem; }
.industry-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem;
  text-align: center; transition: all 0.25s var(--transition); cursor: default;
}
.industry-card:hover { border-color: var(--border-g); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.industry-icon-wrap {
  width: 52px; height: 52px;
  margin: 0 auto 0.875rem;
  transition: transform 0.3s var(--transition);
}
.industry-icon-wrap svg { width: 100%; height: 100%; display: block; }
.industry-card:hover .industry-icon-wrap { transform: scale(1.12) rotate(-4deg); }
.industry-name { font-size: 0.875rem; font-weight: 600; color: var(--text-body); }

/* ── ZATCA Section ── */
.zatca-section { background: var(--bg-section); }
.zatca-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: start;
}
.zatca-features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}
.zatca-feat-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.zatca-feat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--green-light); color: var(--green-vivid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.zatca-feat-title { font-size: 0.875rem; font-weight: 700; color: var(--text-h); margin-bottom: 3px; }
.zatca-feat-desc  { font-size: 0.78rem; color: var(--text-body); line-height: 1.55; }

/* Certificate card */
.zatca-cert-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}
.zatca-cert-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.zatca-cert-badge {
  padding: 0.3rem 0.875rem; border-radius: 100px;
  background: var(--green-light); color: var(--green-mid);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
}
.zatca-cert-divider { height: 1px; background: var(--border); margin-bottom: 1.25rem; }

/* Invoice preview */
.zatca-invoice-preview {}
.zinv-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.875rem;
}
.zinv-title { font-size: 0.8125rem; font-weight: 700; color: var(--text-h); }
.zinv-num   { font-size: 0.72rem; color: var(--text-muted); }
.zinv-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.4rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-body);
}
.zinv-row span:last-child { font-weight: 600; color: var(--text-h); }
.zinv-vat span:first-child { color: var(--green-vivid); font-weight: 600; }
.zinv-total {
  border-bottom: none; padding-top: 0.625rem; margin-top: 0.25rem;
  border-top: 2px solid var(--text-h);
}
.zinv-total span { font-size: 0.9rem; font-weight: 800; color: var(--text-h); }
.zinv-footer {
  display: flex; align-items: center; gap: 1.25rem;
  margin-top: 1.125rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.zinv-qr { flex-shrink: 0; border: 1px solid var(--border); border-radius: 6px; padding: 4px; }
.zinv-stamp { flex: 1; }
.zinv-stamp-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-vivid); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; margin-bottom: 6px;
}
.zinv-stamp-text { font-size: 0.8125rem; font-weight: 700; color: var(--green-mid); }
.zinv-stamp-sub  { font-size: 0.68rem; color: var(--text-muted); }

/* Stats row below card */
.zatca-stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0.875rem; margin-top: 1.125rem;
}
.zatca-stat {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1rem;
  text-align: center; box-shadow: var(--shadow-xs);
}
.zatca-stat-num   { font-size: 1.5rem; font-weight: 900; color: var(--green-vivid); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.zatca-stat-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

/* ── Comparison Table ── */
.comparison-section { background: var(--bg-section); }
.comparison-table { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.comparison-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; background: #F9FAFB; border-bottom: 1px solid var(--border); }
.comp-col-header { padding: 1.125rem 1.375rem; font-size: 0.8125rem; font-weight: 700; color: var(--text-muted); border-right: 1px solid var(--border); }
.comp-col-header:last-child { border-right: none; }
.comp-col-header.featured { background: var(--green-xlight); color: var(--green-vivid); position: relative; }
.comp-col-header.featured::after { content: 'BEST'; position: absolute; top: 0.75rem; right: 1rem; font-size: 0.6rem; font-weight: 800; color: var(--green-vivid); letter-spacing: 0.1em; }
.comparison-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover { background: #FAFAFA; }
.comp-cell { padding: 0.9rem 1.375rem; font-size: 0.875rem; display: flex; align-items: center; border-right: 1px solid var(--border); color: var(--text-body); }
.comp-cell:last-child { border-right: none; }
.comp-cell.feature-name { color: var(--text-h); font-weight: 500; }
.comp-cell.featured { background: rgba(43,91,166,0.04); }
.check-yes { color: var(--green-vivid); font-weight: 700; font-size: 0.9rem; }
.check-no { color: #EF4444; font-size: 0.8rem; }
.check-partial { color: #F59E0B; font-size: 0.8rem; }

/* ── Testimonials ── */
.testimonials-section { background: var(--bg-section); }
.testimonials-track { overflow: hidden; position: relative; }
.testimonials-slider {
  display: flex; gap: 1.125rem;
  animation: autoScroll 40s linear infinite;
  width: max-content;
}
.testimonials-slider:hover { animation-play-state: paused; }
@keyframes autoScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.testimonials-fade-left,.testimonials-fade-right { position: absolute; top:0; bottom:0; width: 100px; z-index: 2; pointer-events: none; }
.testimonials-fade-left  { left: 0;  background: linear-gradient(to right, var(--bg-section), transparent); }
.testimonials-fade-right { right: 0; background: linear-gradient(to left, var(--bg-section), transparent); }
.testimonial-card {
  flex-shrink: 0; width: 360px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.625rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-g); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 0.875rem; }
.star { color: #F59E0B; font-size: 0.875rem; }
.testimonial-quote { font-size: 0.9375rem; line-height: 1.7; color: var(--text-body); margin-bottom: 1.125rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-vivid), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8125rem; color: #fff; flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--text-h); }
.author-title { font-size: 0.75rem; color: var(--text-muted); }

/* ── Stats ── */
.stats-section { background: var(--green-dark); color: #fff; position: relative; overflow: hidden; }
.stats-bg-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.stats-section .section-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border: none; }
.stats-section .section-title { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 2rem; text-align: center; }
.stat-card { padding: 1.75rem 0.75rem; }
.stat-number { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1; margin-bottom: 0.5rem; color: var(--green-bright); }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ── Demo Form ── */
.demo-section { background: var(--bg-section); position: relative; overflow: hidden; }
.demo-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(43,91,166,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,91,166,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.demo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; position: relative; z-index: 1; }
.demo-headline { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.12; margin-bottom: 1.125rem; color: var(--text-h); }
.demo-desc { color: var(--text-body); font-size: 0.9375rem; line-height: 1.75; margin-bottom: 1.75rem; }
.demo-benefit { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-body); margin-bottom: 0.625rem; }
.demo-benefit-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: var(--green-vivid); flex-shrink: 0; font-weight: 700;
}
.demo-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}
.demo-form-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.3rem; color: var(--text-h); }
.demo-form-sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.625rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 0.875rem; }
.form-label { font-size: 0.8125rem; font-weight: 600; color: var(--text-body); }
.form-input,.form-select,.form-textarea {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem; color: var(--text-h);
  font-family: var(--font-sans); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input::placeholder,.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,.form-select:focus,.form-textarea:focus {
  border-color: var(--green-vivid);
  box-shadow: 0 0 0 3px rgba(43,91,166,0.1);
}
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 2rem;
}
.form-textarea { resize: vertical; min-height: 85px; }
.form-submit {
  width: 100%; padding: 1rem;
  background: var(--green-vivid); color: #fff;
  border-radius: var(--radius-md);
  font-size: 1rem; font-weight: 700; letter-spacing: -0.01em;
  transition: all 0.22s var(--transition);
  box-shadow: var(--shadow-g);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(43,91,166,0.3); }
.form-privacy { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.875rem; }

/* ── WhatsApp button ── */
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.875rem 1.75rem;
  background: #25D366; color: #fff;
  border-radius: var(--radius-md);
  font-size: 0.9375rem; font-weight: 700;
  transition: all 0.22s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.4); }

/* ── Final CTA (DARK) ── */
.final-cta {
  background: var(--green-dark);
  color: #fff;
  position: relative; overflow: hidden;
  text-align: center;
  padding-block: clamp(80px, 10vw, 130px);
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(34,197,94,0.1), transparent);
  pointer-events: none;
}
.final-cta .section-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.final-cta-title { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 1.125rem; color: #fff; }
.final-cta .accent { color: var(--green-bright); }
.final-cta-desc { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 520px; margin-inline: auto; margin-bottom: 2.5rem; line-height: 1.75; }
.final-cta-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Footer (DARK) ── */
.footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 60px; padding-bottom: 28px;
  color: rgba(255,255,255,0.8);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1.125rem; }
.footer-logo-img { height: 34px; width: auto; object-fit: contain; filter: brightness(10); }
.footer-logo-mark { width: 34px; height: 34px; background: linear-gradient(135deg, var(--green-vivid), var(--green-dark)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.8125rem; color: #fff; }
.footer-logo-text { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.footer-brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 270px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.5rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--green-bright); color: var(--green-bright); }
.footer-col-title { font-size: 0.75rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.125rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-link:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 1rem;
}
.footer-copyright { font-size: 0.8125rem; color: rgba(255,255,255,0.65); }
.footer-copyright a { color: inherit; opacity: 1; margin-inline: 4px; text-decoration: underline; text-underline-offset: 2px; }
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-badge {
  padding: 0.25rem 0.625rem; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; font-size: 0.7rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
  display: inline-flex; align-items: center; gap: 5px;
}
.footer-badge.certified { border-color: rgba(34,197,94,0.3); color: var(--green-bright); }

/* ── ZATCA logos ── */
.zatca-logo-panel { height: 52px; width: auto; object-fit: contain; opacity: 0.95; }

/* ── Scroll to top ── */
.scroll-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-vivid); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-g);
  opacity: 0; transform: translateY(10px);
  transition: all 0.3s; z-index: 50; cursor: pointer;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--green-bright); transform: translateY(-2px); }

/* ── Mobile nav drawer ── */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.mobile-nav.open { pointer-events: all; }
.mobile-nav-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(4px); }
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }
.mobile-nav-drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: #fff; border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform 0.38s var(--transition);
  padding: 1.75rem 1.25rem;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-close {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-muted); cursor: pointer; transition: all 0.2s;
}
.mobile-nav-close:hover { border-color: var(--green-vivid); color: var(--green-vivid); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link {
  padding: 0.8125rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.9375rem; font-weight: 600;
  color: var(--text-body); transition: all 0.2s;
  border: 1px solid transparent;
}
.mobile-nav-link:hover { background: var(--green-xlight); color: var(--green-vivid); border-color: var(--border-g); }
.mobile-nav-cta { margin-top: auto; }

/* ── Scroll animations ── */
.fade-up  { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--transition), transform 0.65s var(--transition); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in  { opacity: 0; transition: opacity 0.65s var(--transition); }
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .feature-panel.active { grid-template-columns: 1fr; gap: 2.5rem; }
  .zatca-inner { grid-template-columns: 1fr; }
  .zatca-features-grid { grid-template-columns: 1fr; }
  .demo-inner { grid-template-columns: 1fr; gap: 3rem; }
  .bp-charts-row { display: none; }
  .bp-charts-row2 { display: none; }
  .bp-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .bp-filter-bar { display: none; }
  .bp-main { gap: 8px; }
  .bp-dash-body { min-height: unset; }
  .bp-sidebar { justify-content: flex-start; }
  .comparison-header, .comparison-row { grid-template-columns: 2fr 1fr 1fr; }
  .comp-col-header:nth-child(2), .comp-cell:nth-child(2) { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .nav-logo-img { height: 28px; }
  .hero { padding-top: calc(var(--nav-height) + 48px); padding-bottom: 56px; }
  .hero-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem 2rem; padding-top: 2rem; }
  .hero-dashboard-wrap { margin-top: 1.5rem; }
  .bp-dash-body { grid-template-columns: 100px 1fr; }
  .bp-sidebar { padding: 10px 6px; }
  .bp-nav-item { font-size: 0.59rem; padding: 4px 5px; gap: 4px; }
  .bp-nav-item svg { width: 11px; height: 11px; }
  .bp-kpi-row { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .bp-kpi-value { font-size: 0.85rem; }
  .bp-main { padding: 7px; gap: 6px; }
  .bp-filter-bar { display: none; }
  .bp-charts-row { grid-template-columns: 1fr; }
  .bp-chart-card:not(.bp-chart-wide) { display: none; }
  .bp-charts-row2 { display: none; }
  .bp-line-chart-wrap svg { height: 65px; }
  .bp-line-x-labels { font-size: 0.5rem; }
  .trust-sep { display: none; }
  .trust-strip-inner { gap: 0.875rem 1.5rem; }
  .features-tabs { gap: 0.25rem; }
  .tab-btn { font-size: 0.8125rem; padding: 0.5rem 0.8125rem; }
  .feature-panel.active { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .comparison-header, .comparison-row { grid-template-columns: 2fr 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding-block: clamp(52px, 8vw, 90px); }
}
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; width: 100%; gap: 0.75rem; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .hero-dashboard-wrap { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-badges { flex-wrap: wrap; justify-content: center; }
  .final-cta-btns { flex-direction: column; width: 100%; gap: 0.75rem; }
  .final-cta-btns > * { width: 100%; justify-content: center; }
  .whatsapp-btn { justify-content: center; }
  .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1fr; }
  .comp-col-header:nth-child(2), .comp-cell:nth-child(2) { display: none; }
  .comp-col-header:nth-child(4), .comp-cell:nth-child(4) { display: none; }
  .testimonial-card { width: 300px; }
  .scroll-top { bottom: 1rem; right: 1rem; width: 38px; height: 38px; }
  .announcement-bar { font-size: 0.73rem; }
  .announcement-bar a { display: block; margin-top: 2px; margin-left: 0; }
}
@media (hover: none) {
  .pain-card:hover,.industry-card:hover,.btn-primary:hover,.btn-gold:hover { transform: none; }
}

/* ── Arabic RTL ── */
[lang="ar"] { font-family: var(--font-arabic); direction: rtl; }
[lang="ar"] .nav-links { margin-left: 0; margin-right: auto; }
[lang="ar"] .mobile-nav-drawer { right: auto; left: 0; border-left: none; border-right: 1px solid var(--border); transform: translateX(-100%); }
[lang="ar"] .mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
