/* =========================================================
   SMARTBRIDGE — PREMIUM NAVY / CYAN SAAS
   ========================================================= */

:root {
  --navy: #06182f;
  --navy-2: #0a2548;
  --navy-3: #0e3260;
  --blue: #0b8fd8;
  --blue-2: #0678bb;
  --cyan: #1ad0f5;
  --cyan-soft: rgba(26, 208, 245, .14);
  --green: #19b879;

  --text: #0f243c;
  --text-soft: #5a6f88;
  --muted: #8492a6;

  --bg: #f5f8fc;
  --bg-soft: #eef3f9;
  --white: #ffffff;
  --border: #e2eaf3;
  --border-soft: rgba(226, 234, 243, .85);

  --shadow-sm: 0 6px 18px rgba(8, 32, 64, .06);
  --shadow: 0 18px 48px rgba(8, 32, 64, .10);
  --shadow-lg: 0 32px 80px rgba(8, 32, 64, .18);
  --shadow-glow: 0 24px 60px rgba(11, 143, 216, .28);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;

  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Plus Jakarta Sans", "Tajawal", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body[dir="rtl"] {
  font-family: "Tajawal", "Plus Jakarta Sans", sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; cursor: pointer; }
section { position: relative; }
.ltr-num { unicode-bidi: isolate; }

/* ---- Reveal (JS adds .is-in) ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---- Scroll progress ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 2000;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: inline-start;
  pointer-events: none;
}

/* ---- Layout shells ---- */
.topbar-inner,
.hero-inner,
.section-head,
.sol-grid,
.sol-priority,
.sol-more-head,
.split,
.ind-grid,
.price-grid,
.price-foot,
.steps-wrap .section-head,
.steps,
.faq-wrap .section-head,
.faq,
.cta-inner,
.footer-top,
.footer-grid,
.footer-bottom,
.proof-inner {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #0aa4e8);
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 143, 216, .35);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(11, 143, 216, .45); }
.btn-xl {
  min-height: 54px;
  padding: 0 28px;
  font-size: 16px;
}
.btn-ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .45);
}
.btn-ghost.dark,
.pricing .btn-ghost,
.split .btn-ghost,
.apps .btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.pricing .btn-ghost:hover,
.btn-ghost.dark:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-light {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-light:hover {
  background: rgba(255, 255, 255, .2);
}

/* ---- Topbar ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, background .25s, border-color .25s;
}
.topbar.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: var(--border-soft);
  box-shadow: 0 10px 40px rgba(8, 32, 64, .12);
}
.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Outfit", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.logo-mark { border-radius: 9px; }
.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.menu a {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: color .2s, background .2s;
}
.menu a:hover {
  color: var(--text);
  background: var(--bg-soft);
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-btn {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  transition: border-color .2s, box-shadow .2s;
}
.lang-btn:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.nav-cta {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

/* ---- Hero ---- */
.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 72px 0 120px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(26, 208, 245, .18), transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(11, 143, 216, .22), transparent 50%),
    linear-gradient(165deg, #041427 0%, var(--navy) 40%, var(--navy-2) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.orb-a {
  width: 320px; height: 320px;
  top: -80px; inset-inline-end: 8%;
  background: var(--cyan);
}
.orb-b {
  width: 260px; height: 260px;
  bottom: 10%; inset-inline-start: -40px;
  background: var(--blue);
  opacity: .4;
}
.orb-c {
  width: 180px; height: 180px;
  top: 40%; inset-inline-end: 35%;
  background: #3d7cff;
  opacity: .25;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-brand {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.6px;
  background: linear-gradient(135deg, #fff 30%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 {
  margin: 0 0 18px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 5.2vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.2px;
}
.hero h1 span { display: block; }
.hero-accent {
  background: linear-gradient(105deg, var(--cyan), #7ee8ff 60%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 0 0 20px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(226, 236, 250, .82);
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.hero-pills span {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px);
}
.hero-trial {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .02em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(220, 232, 248, .72);
}
.hero-trust em { font-style: normal; font-weight: 600; }

/* ---- Product mock ---- */
.hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}
.hero-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 208, 245, .35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.product-shot {
  position: relative;
  z-index: 2;
  width: min(480px, 100%);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: var(--shadow-glow), 0 0 0 1px rgba(255, 255, 255, .06) inset;
  backdrop-filter: blur(20px);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.product-shot:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-8px);
  box-shadow: 0 36px 80px rgba(11, 143, 216, .4), 0 0 0 1px rgba(255, 255, 255, .1) inset;
}
body[dir="rtl"] .product-shot {
  transform: perspective(1200px) rotateY(6deg) rotateX(4deg);
}
body[dir="rtl"] .product-shot:hover {
  transform: perspective(1200px) rotateY(2deg) rotateX(1deg) translateY(-8px);
}
.product-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(4, 20, 40, .55);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.chrome-dots {
  display: flex;
  gap: 6px;
}
.chrome-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
  display: block;
}
.chrome-dots i:nth-child(2) { background: #febc2e; }
.chrome-dots i:nth-child(3) { background: #28c840; }
.product-chrome strong {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .04em;
}
.app-shell {
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 340px;
  background: linear-gradient(180deg, #0a1f3c, #071628);
}
.app-side {
  padding: 14px 10px;
  border-inline-end: 1px solid rgba(255, 255, 255, .06);
  background: rgba(0, 0, 0, .22);
}
.app-side-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 0 4px;
}
.app-side-brand img { border-radius: 6px; }
.app-side-brand span {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, .7);
}
.app-nav-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px;
  border-radius: 8px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  font-weight: 600;
}
.app-nav-row i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  flex-shrink: 0;
}
.app-nav-row.on {
  background: rgba(26, 208, 245, .14);
  color: #fff;
}
.app-nav-row.on i { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.app-main {
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.app-main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.app-main-head h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.app-live,
.product-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(25, 184, 121, .14);
}
.app-live i,
.product-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(25, 184, 121, .25);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.kpi {
  padding: 10px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}
.kpi strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, .78);
}
.bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-height: 90px;
  padding: 8px 4px 0;
}
.bars span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  opacity: .85;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .8s var(--ease);
}
.reveal.is-in .bars span,
.hero-stage.is-in .bars span {
  transform: scaleY(1);
}
.bars span:nth-child(1) { transition-delay: .05s; }
.bars span:nth-child(2) { transition-delay: .12s; }
.bars span:nth-child(3) { transition-delay: .19s; }
.bars span:nth-child(4) { transition-delay: .26s; }
.bars span:nth-child(5) { transition-delay: .33s; }
.app-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.app-foot em {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
}
.float-chip {
  position: absolute;
  z-index: 3;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  animation: floatY 5s ease-in-out infinite;
}
.chip-a { top: 12%; inset-inline-start: 0; animation-delay: 0s; }
.chip-b { top: 48%; inset-inline-end: -8px; animation-delay: 1.2s; }
.chip-c { bottom: 14%; inset-inline-start: 6%; animation-delay: 2s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- Proof strip ---- */
.proof {
  margin-top: -56px;
  position: relative;
  z-index: 5;
  padding-bottom: 8px;
}
.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 8px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-lg);
}
.proof-inner > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 22px 12px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.proof-inner strong {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.5px;
  background: linear-gradient(135deg, var(--navy-2), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.proof-inner span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}

/* ---- Section heads ---- */
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head h2 {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.7px;
  line-height: 1.15;
  color: var(--text);
}
.section-head p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--text-soft);
  font-size: 16px;
}

/* ---- Solutions ---- */
.apps {
  padding: 72px 0 40px;
  background: #fff;
}
.sol-priority {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.sol-more-head {
  margin: 0 auto 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sol-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.sol-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  opacity: 0;
  transition: opacity .25s;
}
.sol-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
  background: #fff;
}
.sol-card:hover::before { opacity: 1; }
.sol-priority .sol-card {
  padding: 28px 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.sol-card.hot {
  background: linear-gradient(160deg, #fff, #f0f9ff);
  border-color: rgba(11, 143, 216, .25);
  box-shadow: var(--shadow);
}
.sol-card.hot::before { opacity: 1; }
.sol-card strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.sol-priority .sol-card strong { font-size: 18px; }
.sol-card small {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.sol-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  color: #fff;
}
.sol-ico.red { background: linear-gradient(135deg, #e85d5d, #c43a3a); }
.sol-ico.rose { background: linear-gradient(135deg, #f472b6, #db2777); }
.sol-ico.indigo { background: linear-gradient(135deg, #6366f1, #4338ca); }
.sol-ico.purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.sol-ico.teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.sol-ico.orange { background: linear-gradient(135deg, #fb923c, #ea580c); }
.sol-ico.green { background: linear-gradient(135deg, #34d399, #059669); }
.sol-ico.blue { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.sol-ico.cyan { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.sol-ico.amber { background: linear-gradient(135deg, #fbbf24, #d97706); }
.sol-ico.slate { background: linear-gradient(135deg, #64748b, #334155); }
.sol-ico.lime { background: linear-gradient(135deg, #a3e635, #65a30d); }

/* ---- Ticker ---- */
.ticker {
  overflow: hidden;
  padding: 28px 0;
  background: linear-gradient(90deg, var(--bg-soft), #fff 40%, var(--bg-soft));
  border-block: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: tickerMove 32s linear infinite;
}
.ticker-track span {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
  white-space: nowrap;
  position: relative;
}
.ticker-track span::after {
  content: "·";
  position: absolute;
  inset-inline-end: -28px;
  color: var(--cyan);
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
body[dir="rtl"] .ticker-track {
  animation-name: tickerMoveRtl;
}
@keyframes tickerMoveRtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ---- Why / Split ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 88px 0;
}
.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.split-copy h2 {
  margin: 0 0 22px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -.6px;
  line-height: 1.15;
}
.checks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.checks li {
  position: relative;
  padding-inline-start: 32px;
  font-weight: 600;
  color: var(--text-soft);
}
.checks li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan-soft);
  box-shadow: inset 0 0 0 5px var(--cyan);
}
.split-panel {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--navy-2), var(--navy));
  color: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .08);
}
.mini-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.mini {
  aspect-ratio: 1.15;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}
.mini.c1 { background: linear-gradient(135deg, #0b8fd8, #0678bb); }
.mini.c2 { background: linear-gradient(135deg, #6366f1, #4338ca); }
.mini.c3 { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.mini.c4 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.mini.c5 { background: linear-gradient(135deg, #ec4899, #be185d); }
.mini.c6 { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.split-panel p {
  margin: 0;
  font-size: 14px;
  color: rgba(226, 236, 250, .8);
  line-height: 1.6;
}

/* ---- Industries ---- */
.industries {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-soft), #fff);
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ind {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.ind:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.ind-hot {
  background: linear-gradient(165deg, #fff, #f0f9ff);
  border-color: rgba(11, 143, 216, .3);
  box-shadow: var(--shadow);
}
.badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.ind h3 {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.3px;
}
.ind > p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-soft);
}
.ind ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.ind li {
  padding-inline-start: 18px;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.ind li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ---- Pricing ---- */
.pricing {
  padding: 88px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(11, 143, 216, .08), transparent),
    #fff;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.price-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.price-grid article.featured {
  background: linear-gradient(165deg, var(--navy-2), var(--navy));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26, 208, 245, .25);
  transform: scale(1.04);
  z-index: 1;
}
.price-grid article.featured:hover {
  transform: scale(1.04) translateY(-4px);
}
.plan-badge {
  position: absolute;
  top: -12px;
  inset-inline-end: 20px;
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
}
.price-grid h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 800;
}
.price-from {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--blue);
}
.featured .price-from { color: var(--cyan); }
.price-grid article > p:not(.price-from):not(.plan-badge) {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
}
.featured > p:not(.price-from):not(.plan-badge) {
  color: rgba(226, 236, 250, .75);
}
.plan-points {
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.plan-points li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 14px;
  font-weight: 600;
}
.plan-points li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--green);
  font-weight: 800;
}
.featured .plan-points li::before { color: var(--cyan); }
.price-grid .btn { margin-top: auto; width: 100%; }
.price-foot {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 600;
}

/* ---- Steps ---- */
.steps-wrap {
  padding: 80px 0;
  background: var(--bg-soft);
}
.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  inset-inline: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--blue), transparent);
  opacity: .35;
}
.steps li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.steps li b {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 24px rgba(11, 143, 216, .3);
}
.steps li strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 800;
}
.steps li p {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ---- FAQ ---- */
.faq-wrap {
  padding: 80px 0;
  background: #fff;
}
.faq {
  max-width: 760px;
  display: grid;
  gap: 12px;
}
.faq details {
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq details[open] {
  border-color: rgba(11, 143, 216, .3);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  font-weight: 800;
  font-size: 15px;
  position: relative;
}
body[dir="rtl"] .faq summary {
  padding: 18px 20px 18px 52px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--cyan-soft);
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  transition: transform .2s, background .2s;
}
.faq details[open] summary::after {
  content: "−";
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
}
.faq details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

/* ---- CTA ---- */
.cta-band {
  padding: 88px 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(26, 208, 245, .18), transparent),
    linear-gradient(145deg, #041427, var(--navy-2) 55%, #0a3060);
  color: #fff;
  overflow: hidden;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: stretch;
}
.cta-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
}
.cta-copy h2 {
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.6px;
  line-height: 1.15;
}
.cta-copy > p {
  margin: 0 0 28px;
  max-width: 480px;
  color: rgba(226, 236, 250, .8);
  font-size: 16px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}
.cta-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.cta-card-top img {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}
.cta-card-top strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
}
.cta-card-top span {
  font-size: 13px;
  color: rgba(226, 236, 250, .7);
}
.cta-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.cta-links a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: background .2s, border-color .2s;
}
.cta-links a:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(26, 208, 245, .35);
}
.cta-links span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(226, 236, 250, .55);
}
.cta-links b {
  font-size: 14px;
  font-weight: 700;
}

/* ---- Footer ---- */
.footer {
  padding: 56px 0 28px;
  background: #03101f;
  color: rgba(226, 236, 250, .75);
}
.footer-top { margin-bottom: 36px; }
.footer-logo span { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.footer-col h4.spaced { margin-top: 28px; }
.footer-col a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(226, 236, 250, .65);
  transition: color .2s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
}
.footer-about {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}
.footer-lang {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.footer-about hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin: 16px 0;
}
.footer-about p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.65;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  transition: background .2s, border-color .2s, color .2s;
}
.footer-socials a:hover {
  background: rgba(26, 208, 245, .15);
  border-color: var(--cyan);
  color: var(--cyan);
}
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: rgba(226, 236, 250, .45);
}

/* ---- WhatsApp float ---- */
.wa-float {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 1100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 12px 32px rgba(18, 140, 126, .45);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 40px rgba(18, 140, 126, .55);
}

/* ---- Responsive ---- */
@media (max-width: 1050px) {
  .hero-inner { gap: 36px; }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .price-grid article.featured { transform: none; }
  .price-grid article.featured:hover { transform: translateY(-4px); }
  .steps::before { display: none; }
  .product-shot { width: min(420px, 100%); }
}

@media (max-width: 850px) {
  .menu-btn { display: inline-flex; }
  .menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 20px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .topbar.is-open .menu { display: flex; }
  .menu a {
    padding: 12px 14px;
    font-size: 15px;
  }
  .nav-cta { display: none; }
  .hero {
    min-height: auto;
    padding: 48px 0 100px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-stage { min-height: 400px; order: -1; }
  .product-shot {
    transform: none;
    width: min(440px, 100%);
  }
  .product-shot:hover { transform: translateY(-6px); }
  body[dir="rtl"] .product-shot,
  body[dir="rtl"] .product-shot:hover { transform: none; }
  body[dir="rtl"] .product-shot:hover { transform: translateY(-6px); }
  .proof-inner { grid-template-columns: repeat(2, 1fr); }
  .sol-priority { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; padding: 64px 0; }
  .ind-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .float-chip { display: none; }
}

@media (max-width: 600px) {
  .topbar-inner,
  .hero-inner,
  .section-head,
  .sol-grid,
  .sol-priority,
  .sol-more-head,
  .split,
  .ind-grid,
  .price-grid,
  .price-foot,
  .steps,
  .faq,
  .cta-inner,
  .footer-top,
  .footer-grid,
  .footer-bottom,
  .proof-inner {
    width: min(var(--container), calc(100% - 28px));
  }
  .hero-brand { font-size: 26px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .app-shell { grid-template-columns: 92px 1fr; }
  .kpi-row { grid-template-columns: 1fr; }
  .proof { margin-top: -40px; }
  .proof-inner { gap: 8px; padding: 6px; }
  .proof-inner strong { font-size: 26px; }
  .sol-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    inset-inline-end: 16px;
  }
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .bars span {
    transform: scaleY(1);
    transition: none;
  }
  .ticker-track,
  body[dir="rtl"] .ticker-track {
    animation: none;
  }
  .float-chip,
  .app-live i,
  .product-live i {
    animation: none;
  }
  .btn:hover,
  .sol-card:hover,
  .product-shot:hover,
  .wa-float:hover {
    transform: none;
  }
}

/* =========================================================
   MODULE DETAIL PAGES
   ========================================================= */

.module-page .mod-hero {
  padding: 72px 0 48px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(25, 197, 242, .22), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(8, 122, 197, .25), transparent 32%),
    linear-gradient(135deg, #061a34 0%, #08294d 55%, #063b62 100%);
  overflow: hidden;
}
.module-page .mod-hero.compact { padding-bottom: 36px; }
.mod-hero-inner,
.mod-section .section-head,
.feature-grid,
.who-box,
.related-grid,
.modules-catalog {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.mod-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
  transition: .2s ease;
}
.mod-back:hover { color: #7de5ff; }
.mod-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.mod-hero-copy h1 {
  margin: 0 0 16px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.6px;
}
.mod-lead {
  margin: 0 0 26px;
  max-width: 620px;
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.8;
}
.mod-hero.compact .mod-lead { margin-bottom: 0; }
.mod-hero-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.mod-hero-panel strong {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
}
.mod-hero-panel small {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 700;
}
.sol-ico.xl {
  width: 72px;
  height: 72px;
  border-radius: 20px;
}
.btn-ghost.dark {
  color: #10233d;
  background: #fff;
  border: 1px solid #fff;
}
.mod-hero .btn-ghost.dark {
  color: #071b35;
  background: rgba(255,255,255,.92);
}
.mod-section {
  padding: 88px 0;
  background: #fff;
}
.mod-section.soft {
  background: #f2f7fb;
  padding: 64px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: .3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-num {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
}
.feature-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}
.who-box {
  padding: 36px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.who-box h2 {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
}
.who-box p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
  max-width: 760px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: .25s ease;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #c9dceb;
}
.related-card strong {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
}
.apps-more {
  width: min(var(--container), calc(100% - 40px));
  margin: 28px auto 0;
  text-align: center;
}
.modules-catalog .sol-card small {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mod-cta .cta-inner {
  grid-template-columns: 1fr;
  text-align: center;
}
.mod-cta .cta-copy {
  margin-inline: auto;
}
.mod-cta .cta-actions {
  justify-content: center;
}
[dir="rtl"] .module-page .mod-hero-copy,
[dir="rtl"] .module-page .section-head,
[dir="rtl"] .who-box {
  text-align: right;
}
[dir="rtl"] .mod-cta .cta-copy { text-align: center; }

@media (max-width: 1050px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-catalog { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 850px) {
  .mod-hero-grid { grid-template-columns: 1fr; }
  .mod-hero-panel { max-width: 420px; }
}
@media (max-width: 600px) {
  .feature-grid,
  .related-grid,
  .modules-catalog { grid-template-columns: 1fr; }
  .mod-hero { padding-top: 56px; }
  .mod-section { padding: 64px 0; }
  .who-box { padding: 24px; }
}
