/* ===== Design tokens ===== */
:root {
  --bg: #05080f;
  --bg-soft: #0a1220;
  --surface: rgba(15, 24, 41, 0.65);
  --surface-solid: #0d1626;
  --text: #f4f7ff;
  --muted: #9ab7d8;
  --accent: #1e8bf7;
  --accent-2: #0a2a6b;
  --success: #22c55e;
  --warning: #f59e0b;
  --border: rgba(30, 139, 247, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(14, 90, 220, 0.18);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --gold: #f0b429;
  --font: 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
  --font-display: 'Changa', 'IBM Plex Sans Arabic', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 760px; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

/* ===== Background glow ===== */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}
.bg-glow-1 { top: -200px; inset-inline-start: -160px; width: 560px; height: 560px; background: var(--accent-2); }
.bg-glow-2 { top: 40%; inset-inline-end: -220px; width: 620px; height: 620px; background: var(--accent); opacity: 0.18; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #176fd0, var(--accent-2));
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(30, 139, 247, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(30, 139, 247, 0.45); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(30, 139, 247, 0.08); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; margin-top: 8px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px) saturate(1.3);
  background: rgba(5, 8, 15, 0.72);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { object-fit: contain; }
.logo-text { font-size: 22px; font-weight: 800; letter-spacing: .5px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 15px; color: var(--muted); font-weight: 600; transition: color .2s ease; }
.main-nav a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  font-size: 13px;
}
.lang-switch:hover { border-color: var(--accent); color: var(--accent); }

.auth-links { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.auth-links .btn-sm { padding: 9px 22px; }
.signup-hint {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s ease;
}
.signup-hint:hover { color: var(--accent); }

/* ===== Icon chips (used in value strip, feature lists, standout cards) ===== */
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(30, 139, 247, 0.14), rgba(30, 139, 247, 0.1));
  border: 1px solid var(--border);
  color: var(--accent);
}
.icon-chip svg { width: 17px; height: 17px; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

/* ===== Hero ===== */
.hero { padding: 90px 0 70px; position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(30, 139, 247, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 { font-family: var(--font-display); font-size: 50px; line-height: 1.3; font-weight: 700; margin: 0 0 20px; }
.grad-text {
  background: linear-gradient(120deg, var(--accent), #6db6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-text { color: var(--gold); }
.hero-sub { color: var(--muted); font-size: 17px; margin: 0 0 30px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-actions .btn-primary::after { content: "→"; }
[dir="rtl"] .hero-actions .btn-primary::after { content: "←"; }

.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gold); line-height: 1.2; }
.trust-item span { font-size: 13px; color: var(--muted); }

/* ===== Hero mock dashboard ===== */
.hero-visual { position: relative; }
.mock-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(1.3);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease;
}
.hero-visual:hover .mock-window { transform: perspective(1400px) rotateY(0) rotateX(0); }

.float-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }
.float-chip-1 { top: -18px; inset-inline-start: -18px; animation-delay: 0s; }
.float-chip-2 { bottom: 30px; inset-inline-end: -20px; animation-delay: 1.4s; }
.float-chip-2 svg { color: var(--accent); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #22c55e; }
.mock-url {
  margin-inline-start: 12px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 10px;
  border-radius: 999px;
}
.mock-body { display: flex; min-height: 400px; }
.mock-sidebar {
  width: 62px;
  background: rgba(255, 255, 255, 0.02);
  border-inline-end: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}
.mock-side-dot { width: 18px; height: 18px; border-radius: 8px; background: rgba(255, 255, 255, 0.08); }
.mock-side-dot.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.mock-main { flex: 1; padding: 28px; display: flex; flex-direction: column; gap: 24px; }

.mock-stats { display: flex; gap: 14px; flex-wrap: wrap; }
.mock-stat {
  flex: 1;
  min-width: 120px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mock-stat-label { font-size: 12px; color: var(--muted); }
.mock-stat-value { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--gold); }
.mock-stat-up { font-size: 12px; color: var(--success); font-weight: 700; }

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 108px;
  padding: 0 4px;
}
.mock-chart span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0.85;
}
.mock-chart span:nth-child(1) { height: 38%; }
.mock-chart span:nth-child(2) { height: 55%; }
.mock-chart span:nth-child(3) { height: 44%; }
.mock-chart span:nth-child(4) { height: 70%; }
.mock-chart span:nth-child(5) { height: 62%; }
.mock-chart span:nth-child(6) { height: 85%; }
.mock-chart span:nth-child(7) { height: 66%; }
.mock-chart span:nth-child(8) { height: 92%; }
.mock-chart span:nth-child(9) { height: 78%; }

.mock-rows { display: flex; flex-direction: column; gap: 10px; }
.mock-row { display: flex; align-items: center; gap: 10px; }
.mock-pill { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.mock-pill-ok { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.mock-pill-pending { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.mock-row-line { flex: 1; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.06); }
.mock-row-line.short { max-width: 55%; }

/* ===== Trust Bar ===== */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.trust-bar-title {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 28px;
}
.trust-bar-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--surface-solid);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.trust-badge:hover {
  border-color: rgba(30, 139, 247, 0.45);
  box-shadow: 0 0 28px rgba(30, 139, 247, 0.12);
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.trust-icon svg { width: 14px; height: 14px; max-width: 14px; flex-shrink: 0; }

@media (max-width: 600px) {
  .trust-badge { font-size: 13px; padding: 10px 16px; }
}

/* ===== Value strip ===== */
.value-strip { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; z-index: 1; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-item { display: flex; align-items: center; gap: 12px; }
.value-item p { margin: 0; font-size: 14px; color: var(--muted); font-weight: 600; }

/* ===== Sections ===== */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-alt { background: var(--bg-soft); }
.section-cta { padding-bottom: 120px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-head h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; margin: 0 0 14px; line-height: 1.35; }
.section-head p { color: var(--muted); font-size: 16px; margin: 0; }

/* ===== Tabs ===== */
.tab-buttons { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.tab-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
}
.tab-btn.active, .tab-btn:hover { color: var(--text); border-color: var(--accent); background: rgba(30, 139, 247, 0.08); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 900px; margin: 0 auto; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  backdrop-filter: blur(16px);
  transition: transform .25s ease, border-color .25s ease;
}
.feature-list li:hover { transform: translateY(-3px); border-color: rgba(30, 139, 247, 0.45); }
.feature-list .icon-chip { margin-top: 2px; }
.feature-text { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.feature-text strong { font-size: 15.5px; }
.feature-text > span { color: var(--muted); font-size: 13.5px; }

/* ===== Cards grid ===== */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  backdrop-filter: blur(16px);
  transition: transform .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card-highlight { border-color: rgba(30, 139, 247, 0.4); background: linear-gradient(160deg, rgba(30, 139, 247, 0.08), var(--surface)); }
.card .icon-chip { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px; }
.card .icon-chip svg { width: 22px; height: 22px; }
.card h3 { font-size: 17px; margin: 0 0 10px; }
.card p { color: var(--muted); font-size: 13.5px; margin: 0; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; padding: 10px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 16px;
}
.step h3 { font-size: 16px; margin: 0 0 8px; }
.step p { color: var(--muted); font-size: 13.5px; margin: 0; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-align: start;
  cursor: pointer;
}
.faq-icon { font-size: 20px; color: var(--accent); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a p { margin: 0 22px 20px; color: var(--muted); font-size: 14px; }

/* ===== Contact / CTA ===== */
.cta-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.cta-copy h2 { font-size: 30px; margin: 10px 0 14px; }
.cta-copy p { color: var(--muted); margin: 0 0 26px; }
.cta-quick-links { display: flex; flex-direction: column; gap: 12px; }
.quick-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  font-weight: 700;
  transition: border-color .2s ease;
}
.quick-link:hover { border-color: var(--accent); color: var(--accent); }

.cta-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-form label { display: flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 700; color: var(--muted); }
.cta-form label.full { width: 100%; }
.cta-form input, .cta-form select, .cta-form textarea {
  font-family: var(--font);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease;
}
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { border-color: var(--accent); }
.cta-form select option { background: var(--surface-solid); color: var(--text); }
.cta-form textarea { resize: vertical; }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin: 0; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 0; position: relative; z-index: 1; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-brand { max-width: 280px; display: flex; flex-direction: column; gap: 14px; }
.footer-website { font-size: 13px; color: var(--muted); font-weight: 600; direction: ltr; width: fit-content; }
.footer-website:hover { color: var(--accent); }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-title { font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text); opacity: 0.7; }
.footer-brand p { color: var(--muted); font-size: 13.5px; margin: 0; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text) !important;
  letter-spacing: 0.3px;
  direction: ltr;
  width: fit-content;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  padding-bottom: 12px;
}
.footer-tagline::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 120px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold), transparent);
}
.ft-grow {
  background: linear-gradient(100deg, var(--accent), #5fb3ff 45%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  font-weight: 700;
}
.ft-arrow { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.footer-links { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-links a { color: var(--muted); font-size: 14px; font-weight: 600; }
.footer-links a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { color: var(--muted); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.footer-contact a:hover { color: var(--accent); }
.footer-contact a svg { width: 15px; height: 15px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-inline: 8px; }
  .float-chip { position: static; display: inline-flex; margin: 0 6px 12px; animation: none; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card-popular { transform: none; }
  .feature-list { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; padding: 32px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-actions { gap: 8px; }
  .auth-links .btn-sm { padding: 8px 14px; font-size: 12.5px; }
  .signup-hint { font-size: 10px; }
  .lang-switch { padding: 8px 12px; font-size: 12px; }
  .hero h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .value-grid { grid-template-columns: 1fr; }
  .grid-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { padding: 24px; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    background: rgba(5, 8, 15, 0.98);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
  }
  .site-header.nav-open .mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .mobile-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===== Features demo video ===== */
.demo-video { margin-top: 72px; }
.demo-video-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}
.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(30, 139, 247, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.demo-badge svg { width: 15px; height: 15px; }
.demo-video-head h3 { font-size: 28px; margin: 0 0 10px; }
.demo-video-head p { color: var(--muted); margin: 0; font-size: 15.5px; }

.demo-frame {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-solid);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.demo-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 139, 247, 0.55), transparent 40%, transparent 60%, rgba(30, 139, 247, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.demo-frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}
.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
.demo-dot:nth-child(1) { background: #f26d5f; }
.demo-dot:nth-child(2) { background: #f5bf4f; }
.demo-dot:nth-child(3) { background: #58c470; }
.demo-frame-title {
  margin-inline-start: 10px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}
.demo-player { position: relative; background: #000; }
.demo-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}
.demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  cursor: pointer;
  background: radial-gradient(ellipse at center, rgba(10, 42, 107, 0.45), rgba(5, 8, 15, 0.72));
  color: var(--text);
  font-family: var(--font);
  transition: opacity .35s ease, visibility .35s ease;
}
.demo-overlay.hidden { opacity: 0; visibility: hidden; }
.demo-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 44px rgba(30, 139, 247, 0.5);
  transition: transform .25s ease, box-shadow .25s ease;
}
.demo-play svg { width: 34px; height: 34px; color: #fff; margin-inline-start: 4px; }
[dir='rtl'] .demo-play svg { transform: scaleX(-1); margin-inline-start: 0; margin-inline-end: 4px; }
.demo-overlay:hover .demo-play {
  transform: scale(1.08);
  box-shadow: 0 20px 56px rgba(30, 139, 247, 0.65);
}
.demo-overlay-text { font-size: 15px; font-weight: 700; }

@media (max-width: 640px) {
  .demo-video { margin-top: 52px; }
  .demo-video-head h3 { font-size: 22px; }
  .demo-play { width: 64px; height: 64px; }
  .demo-play svg { width: 26px; height: 26px; }
}

.demo-overlay.coming-soon { cursor: default; }
.demo-overlay.coming-soon .demo-play {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  opacity: 0.55;
}
.demo-overlay.coming-soon:hover .demo-play { transform: none; box-shadow: none; }
.demo-overlay.coming-soon .demo-overlay-text { color: var(--muted); }

/* ===== Frontend-design pass: display type & scoreboard numbers ===== */
h3, .logo-text { font-family: var(--font-display); font-weight: 700; }
.demo-badge { color: var(--gold); border-color: rgba(240, 180, 41, 0.3); background: rgba(240, 180, 41, 0.08); }
.mock-stat-up { color: var(--gold); }

/* ===== UX review fixes: focus, motion, touch ===== */
.skip-link {
  position: absolute;
  top: -48px;
  inset-inline-start: 16px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .tab-btn:focus-visible, .lang-switch:focus-visible { outline-offset: 2px; border-radius: 999px; }

a, button, .btn, .tab-btn, .faq-q, .currency-option { touch-action: manipulation; }

.trust-item strong, .mock-stat-value, .price-tag .price-amount, .demo-badge {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip { animation: none; }
  .mock-window { transform: none; transition: none; }
  .btn, .demo-play, .demo-overlay { transition: none; }
  .btn-primary:hover, .btn-ghost:hover { transform: none; }
  .demo-overlay:hover .demo-play { transform: none; }
}

/* ===== Testimonials ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}
.testimonial-stars { display: flex; gap: 3px; color: var(--gold); }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-card blockquote { margin: 0; font-size: 15px; color: var(--text); line-height: 1.8; flex: 1; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(30, 139, 247, 0.25), rgba(10, 42, 107, 0.5));
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}
.testimonial-person strong { display: block; font-size: 14.5px; }
.testimonial-person span { display: block; font-size: 12.5px; color: var(--muted); }

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* =====================================================
   Galaxy-style premium pass (from user reference images)
   ===================================================== */

:root {
  --bg: #05060f;
  --bg-soft: #090a16;
  --surface: rgba(13, 15, 30, 0.72);
  --surface-solid: #0c0e1d;
  --border: rgba(148, 170, 255, 0.13);
  --glow: 0 0 50px rgba(30, 139, 247, 0.22);
}

/* Starfield + ambient beam */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 34% 62%, rgba(255,255,255,0.35) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 58% 8%, rgba(255,255,255,0.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 73% 41%, rgba(255,255,255,0.3) 50%, transparent 51%),
    radial-gradient(1px 1px at 88% 74%, rgba(255,255,255,0.35) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 21% 87%, rgba(255,255,255,0.25) 50%, transparent 51%),
    radial-gradient(1px 1px at 47% 33%, rgba(255,255,255,0.3) 50%, transparent 51%),
    radial-gradient(1px 1px at 91% 15%, rgba(255,255,255,0.45) 50%, transparent 51%);
  background-size: 900px 900px;
  opacity: 0.5;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(30, 139, 247, 0.14) 0%, transparent 32%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 100%, 56px 56px, 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
}
.hero-inner { position: relative; }

/* Section labels like "HOW IT WORKS" */
.eyebrow {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.eyebrow::before, .eyebrow::after {
  content: '—';
  color: rgba(148, 170, 255, 0.35);
  margin: 0 10px;
}

/* Silvery gradient headings */
.hero h1, .section-head h2 {
  background: linear-gradient(180deg, #ffffff 30%, #aab8d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .gold-text {
  background: linear-gradient(120deg, var(--gold), #ffd97a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Glowing framed surfaces */
.mock-window, .demo-frame {
  border-color: rgba(30, 139, 247, 0.3);
  box-shadow: var(--shadow), var(--glow);
}
.mock-window { position: relative; }
.mock-window::after, .demo-frame::after {
  content: '';
  position: absolute;
  inset-inline: 12%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(80, 190, 255, 0.85), transparent);
  filter: blur(0.5px);
  pointer-events: none;
}

/* Bento-style cards */
.card, .testimonial-card, .price-card, .faq-item {
  background: var(--surface-solid);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
}
.card:hover, .testimonial-card:hover {
  border-color: rgba(30, 139, 247, 0.45);
  box-shadow: var(--glow);
}
.price-card-popular {
  border-color: rgba(30, 139, 247, 0.55);
  box-shadow: var(--shadow), var(--glow);
}

/* Steps as glowing gradient cards */
.steps { gap: 20px; }
.step {
  position: relative;
  text-align: start;
  padding: 26px 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(30, 139, 247, 0.28), transparent 55%),
    var(--surface-solid);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.step:hover { border-color: rgba(30, 139, 247, 0.5); box-shadow: var(--glow); }
.step-num {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 10px;
}
.step h3 { font-size: 18px; }

/* Quieter chips on new dark surface */
.tab-btn { border-radius: 999px; }
.value-strip { background: rgba(255, 255, 255, 0.015); }

@media (prefers-reduced-motion: reduce) {
  .card:hover, .testimonial-card:hover, .step:hover { box-shadow: none; }
}

/* =====================================================
   Heroic hero: centered stage + mega display type
   ===================================================== */
.hero { padding: 100px 0 90px; }
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.hero-copy {
  text-align: center;
  max-width: 900px;
}
.hero h1 {
  margin-bottom: 24px;
  line-height: 1.15;
}
.h1-top {
  display: block;
  font-family: var(--font);
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 500;
  letter-spacing: 0.5px;
  background: none;
  -webkit-text-fill-color: var(--muted);
  color: var(--muted);
  margin-bottom: 10px;
}
.h1-mega {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.2;
}
.hero-sub {
  margin: 0 auto 34px;
  max-width: 620px;
  font-size: clamp(15px, 2vw, 17.5px);
}
.hero-actions { justify-content: center; }
.hero-actions .btn { padding: 16px 34px; font-size: 16px; }
.hero-trust { justify-content: center; gap: 0; }
.trust-item { padding: 0 32px; align-items: center; text-align: center; }
.trust-item + .trust-item { border-inline-start: 1px solid rgba(148, 170, 255, 0.15); }
.trust-item strong { font-size: 28px; }

.hero-visual {
  width: 100%;
  max-width: 1060px;
  perspective: 1600px;
}
.mock-window {
  transform: rotateX(4deg);
  transform-origin: center top;
}
.hero-visual:hover .mock-window { transform: rotateX(0deg); }

@media (max-width: 640px) {
  .hero { padding: 64px 0 60px; }
  .hero-inner { gap: 44px; }
  .trust-item { padding: 0 16px; }
  .trust-item strong { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .mock-window, .hero-visual:hover .mock-window { transform: none; }
}

html, body { overflow-x: clip; }

/* ===== Demo video contact line ===== */
.demo-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--muted);
}
.demo-contact a { display: flex; align-items: center; gap: 6px; color: var(--text); font-weight: 600; }
.demo-contact a:hover { color: var(--accent); }
.demo-contact a svg { width: 15px; height: 15px; flex-shrink: 0; }
/* ===== Pricing v4 — company-size annual plans (EGP) ===== */

/* Launch offer banner */
.pc-offer {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 44px;
  padding: 16px 22px;
  border-radius: 16px;
  border: 1px solid rgba(240, 180, 41, 0.35);
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.09), rgba(240, 180, 41, 0.02));
}
.pc-offer-badge {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #c8901a);
  color: #221703;
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
}
.pc-offer-body { display: flex; flex-direction: column; gap: 4px; }
.pc-offer-body strong { font-size: 14.5px; color: var(--text); }
.pc-offer-body span { font-size: 12.5px; color: var(--muted); line-height: 1.7; }

/* Grid */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* Base card */
.pc {
  border-radius: 24px;
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.pc:hover { transform: translateY(-5px); border-color: rgba(30, 139, 247, 0.35); }

/* Growth — dominant card */
.pc-growth {
  background: rgba(30, 139, 247, 0.07);
  border-color: rgba(30, 139, 247, 0.5);
  box-shadow: 0 24px 70px rgba(30, 139, 247, 0.2), 0 0 42px rgba(30, 139, 247, 0.12);
  transform: scale(1.04);
  z-index: 2;
}
.pc-growth:hover { transform: scale(1.04) translateY(-5px); border-color: rgba(30, 139, 247, 0.65); }
.pc-growth::before {
  content: '';
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  height: 170px;
  background: radial-gradient(circle, rgba(30, 139, 247, 0.28), transparent 70%);
  pointer-events: none;
}

/* Enterprise — restrained gold */
.pc-enterprise { border-color: rgba(240, 180, 41, 0.26); }
.pc-enterprise:hover { border-color: rgba(240, 180, 41, 0.5); box-shadow: 0 16px 44px rgba(240, 180, 41, 0.1); }

/* Popular badge */
.pc-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1e8bf7, #0a5bbf);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(30, 139, 247, 0.4);
}

/* Labels & headings */
.pc-plan-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 4px 0 8px;
}
.pc-label-growth { color: #6db6ff; }
.pc-label-scale { color: #38bdf8; }
.pc-label-enterprise { color: var(--gold); }

.pc-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.pc-desc { font-size: 12.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; min-height: 58px; }

.pc-team-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 20px;
}
.pc-team-badge svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.pc-enterprise .pc-team-badge svg { color: var(--gold); }
.pc-divider { height: 1px; background: rgba(255, 255, 255, 0.07); margin-bottom: 20px; }

/* Price block */
.pc-price-block { margin-bottom: 20px; }
.pc-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.pc-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 30%, #aab8d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.pc-cur-unit { font-size: 13px; color: var(--muted); font-weight: 700; }
.pc-billed { font-size: 12.5px; color: var(--text); font-weight: 700; opacity: 0.85; }
.pc-impl { font-size: 12px; color: var(--muted); margin-top: 3px; }
.pc-price-custom {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  background: linear-gradient(120deg, var(--gold), #ffd97a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}

/* CTA buttons */
.pc-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
  transition: box-shadow .25s ease, transform .2s ease, background .2s ease, border-color .2s ease;
}
.pc-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.pc-btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(30, 139, 247, 0.4); }
.pc-btn-primary {
  background: linear-gradient(135deg, #1e8bf7, #0a5bbf);
  color: #fff;
  box-shadow: 0 8px 28px rgba(30, 139, 247, 0.45);
}
.pc-btn-primary:hover { box-shadow: 0 12px 36px rgba(30, 139, 247, 0.6); transform: translateY(-1px); }
.pc-btn-gold {
  background: rgba(240, 180, 41, 0.08);
  border: 1px solid rgba(240, 180, 41, 0.4);
  color: var(--gold);
}
.pc-btn-gold:hover { background: rgba(240, 180, 41, 0.14); box-shadow: 0 8px 26px rgba(240, 180, 41, 0.15); }

/* Features */
.pc-feat-list { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pc-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text);
}
.pc-feat-list li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: #22c55e; }
.pc-feat-inherit span { color: var(--accent); font-weight: 700; }
.pc-enterprise .pc-feat-inherit span { color: var(--gold); }

/* Start add-on */
.pc-addon {
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px dashed rgba(240, 180, 41, 0.35);
  border-radius: 10px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* Notes under cards */
.pc-notes {
  max-width: 780px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.pc-notes p { margin: 0; font-size: 12.5px; color: var(--muted); }

/* Custom solution block */
.pc-custom {
  margin-top: 56px;
  text-align: center;
  padding: 44px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(120% 100% at 50% -20%, rgba(30, 139, 247, 0.14), transparent 60%),
    var(--surface-solid);
}
.pc-custom h3 { font-size: 24px; margin: 0 0 10px; }
.pc-custom p { color: var(--muted); font-size: 14px; max-width: 560px; margin: 0 auto 24px; }

/* Responsive */
@media (max-width: 1100px) {
  .pc-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pc-growth { transform: none; }
  .pc-growth:hover { transform: translateY(-5px); }
}
@media (max-width: 640px) {
  .pc-grid { grid-template-columns: 1fr; }
  .pc-offer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pc-desc { min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .pc, .pc-growth { transform: none !important; transition: none; }
  .pc:hover, .pc-growth:hover { transform: none !important; box-shadow: none; }
  .pc-btn { transition: none; }
  .pc-btn:hover { transform: none; }
}


/* ===== Pricing v4.1 — premium positioning additions ===== */

/* Target-audience line above plan name */
.pc-target {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent);
  margin: 4px 0 6px;
}
.pc-growth .pc-target { color: #6db6ff; }

/* Active-user tooltip */
.pc-team-badge { position: relative; }
.pc-tip {
  display: inline-flex;
  align-items: center;
  cursor: help;
  color: var(--muted);
  opacity: 0.75;
}
.pc-tip:hover, .pc-tip:focus { opacity: 1; color: var(--accent); }
.pc-tip > svg { width: 13px; height: 13px; }
.pc-tip-box {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  width: 200px;
  padding: 8px 11px;
  border-radius: 9px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease;
  pointer-events: none;
  z-index: 20;
}
.pc-tip:hover .pc-tip-box,
.pc-tip:focus .pc-tip-box { opacity: 1; visibility: visible; }

/* Professional implementation (expandable) */
details.pc-impl { margin-top: 6px; }
.pc-impl summary {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.pc-impl summary::-webkit-details-marker { display: none; }
.pc-impl summary > svg:first-child { width: 13px; height: 13px; flex-shrink: 0; }
.pc-impl-chev { width: 12px; height: 12px; flex-shrink: 0; transition: transform .25s ease; opacity: 0.8; }
details.pc-impl[open] .pc-impl-chev { transform: rotate(180deg); }
.pc-impl-list {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(30, 139, 247, 0.06);
  border: 1px solid rgba(30, 139, 247, 0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pc-impl-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.55;
}
.pc-impl-list li::before {
  content: '✔';
  color: var(--success);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* What every subscription includes (below cards) */
.pc-includes { text-align: center; margin-top: 48px; }
.pc-includes h3 { font-size: 20px; margin: 0 0 20px; }
.pc-includes-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.pc-include-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 16px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--surface-solid);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  transition: border-color .25s ease;
}
.pc-include-item:hover { border-color: rgba(30, 139, 247, 0.4); }
.pc-include-item .icon-chip { width: 36px; height: 36px; border-radius: 11px; }
.pc-include-item .icon-chip svg { width: 17px; height: 17px; }

/* Responsive */
@media (max-width: 1100px) {
  .pc-includes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .pc-includes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .pc-tip-box { transition: none; }
  .pc-impl-chev { transition: none; }
}

/* ===== Pricing v4.2 — Professional Onboarding section ===== */
.pc-onboarding {
  margin: 36px 0 0;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 40px;
}
.pc-onboard-header { margin-bottom: 28px; }
.pc-onboard-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pc-onboard-header h3 { font-size: 22px; font-weight: 800; margin: 0 0 8px; }
.pc-onboard-header p { font-size: 14px; color: var(--text-muted); max-width: 600px; margin: 0; }
.pc-onboard-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.pc-onboard-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.pc-onboard-tier {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  background: var(--surface-solid);
  transition: border-color .25s ease;
}
.pc-onboard-tier:hover { border-color: rgba(30,139,247,0.4); }
.pc-onboard-plan-name { font-size: 11px; font-weight: 700; color: var(--text-muted); margin-bottom: 10px; }
.pc-onboard-price { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.pc-onboard-once { font-size: 11px; color: var(--accent); font-weight: 600; }
.pc-onboard-tier-ent .pc-onboard-price { font-size: 16px; color: #f4c430; }
.pc-onboard-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}
.pc-onboard-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.pc-onboard-features li svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
@media (max-width: 1100px) {
  .pc-onboard-body { grid-template-columns: 1fr; }
  .pc-onboard-features { flex-direction: row; flex-wrap: wrap; column-gap: 20px; row-gap: 8px; }
}
@media (max-width: 640px) {
  .pc-onboarding { padding: 24px 18px; }
  .pc-onboard-plans { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CRO pass: primary CTA weight, sticky CTA, comparison, why-choose, footer ===== */

/* Give the hero's primary CTA slightly stronger visual weight than the ghost button */
.hero-actions .btn-primary {
  padding: 18px 40px;
  font-size: 17px;
  box-shadow: 0 16px 42px rgba(30, 139, 247, 0.5);
}
.hero-actions .btn-primary:hover { box-shadow: 0 20px 50px rgba(30, 139, 247, 0.6); }

/* ===== Comparison table (LEADORA vs Traditional CRM) ===== */
.compare-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(30, 139, 247, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(14, 90, 220, 0.15);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: var(--surface-solid);
}
.compare-table thead tr th {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
}
.compare-table thead tr th:first-child {
  text-align: start;
  width: 44%;
  color: var(--muted);
  font-size: 13px;
}
.compare-table .col-leadora {
  background: linear-gradient(180deg, rgba(30, 139, 247, 0.12), rgba(30, 139, 247, 0.06));
  color: var(--accent);
  position: relative;
}
.compare-table th.col-leadora::after {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0; inset-inline-end: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30, 139, 247, 0.85), transparent);
}
.compare-table .col-leadora .col-badge {
  display: inline-block;
  background: linear-gradient(135deg, #176fd0, var(--accent-2));
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 6px;
}
.compare-table .col-label { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.compare-table .col-other { color: var(--muted); font-size: 13px; }
.compare-table tbody tr { border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: background .15s ease; }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.compare-table tbody td { padding: 16px 24px; font-size: 14px; text-align: center; vertical-align: middle; }
.compare-table tbody td:first-child { text-align: start; color: var(--text); font-weight: 600; }
.compare-table tbody td.col-leadora { background: rgba(30, 139, 247, 0.05); }

.check-yes, .check-no, .check-partial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.check-yes { background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.3); color: #22c55e; }
.check-yes svg { width: 15px; height: 15px; }
.check-no { background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.2); color: rgba(239, 68, 68, 0.7); }
.check-no svg { width: 15px; height: 15px; }
.check-partial { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.3); color: var(--warning); font-size: 16px; font-weight: 700; line-height: 1; }

.compare-note { text-align: center; margin-top: 20px; font-size: 12.5px; color: var(--muted); }

@media (max-width: 640px) {
  .compare-table thead tr th, .compare-table tbody td { padding: 14px 16px; }
}

/* ===== Why Companies Choose LEADORA ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 30px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--surface-solid);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(30, 139, 247, 0.45); box-shadow: var(--glow); }
.why-card .icon-chip { width: 46px; height: 46px; border-radius: 13px; }
.why-card .icon-chip svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 16px; margin: 0; }
.why-card p { color: var(--muted); font-size: 13.5px; margin: 0; line-height: 1.7; }

@media (prefers-reduced-motion: reduce) {
  .why-card:hover { transform: none; box-shadow: none; }
}

/* ===== Sticky floating "Book Demo" CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, border-color .2s ease, box-shadow .2s ease;
}
.sticky-cta svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { border-color: rgba(30, 139, 247, 0.5); box-shadow: 0 16px 40px rgba(30, 139, 247, 0.28); }

@media (max-width: 640px) {
  .sticky-cta { bottom: 16px; inset-inline-end: 16px; padding: 12px 16px; font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: opacity .15s ease; transform: none; }
  .sticky-cta.visible { transform: none; }
}
