/* ===== Custom Properties ===== */
:root {
  --bg: #0B132B;
  --bg-alt: #0e1b38;
  --bg-card: rgba(255,255,255,0.05);
  --bg-card-hover: rgba(255,255,255,0.08);
  --bg-header: rgba(11,19,43,0.92);
  --text: #ffffff;
  --text-2: rgba(255,255,255,0.65);
  --text-3: rgba(255,255,255,0.38);
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(23,184,144,0.35);
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --blue: #1B4DFF;
  --blue-dim: rgba(27,77,255,0.14);
  --teal: #17B890;
  --teal-dim: rgba(23,184,144,0.14);
  --r: 10px;
  --r-lg: 18px;
  --ease: all 0.22s ease;
}

[data-theme="light"] {
  --bg: #F2F5FF;
  --bg-alt: #E8EEFF;
  --bg-card: #ffffff;
  --bg-card-hover: #f8f9ff;
  --bg-header: rgba(242,245,255,0.95);
  --text: #0B132B;
  --text-2: rgba(11,19,43,0.62);
  --text-3: rgba(11,19,43,0.38);
  --border: rgba(11,19,43,0.09);
  --border-accent: rgba(23,184,144,0.4);
  --shadow: 0 8px 32px rgba(11,19,43,0.1);
  --shadow-sm: 0 2px 8px rgba(11,19,43,0.07);
  --blue-dim: rgba(27,77,255,0.1);
  --teal-dim: rgba(23,184,144,0.1);
}

/* ===== Reset ===== */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased;
}
[lang="ar"] body { font-family: 'Cairo', sans-serif; }
a { color:inherit; text-decoration:none; }
img { display:block; max-width:100%; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
ul,ol { list-style:none; }

/* ===== Container ===== */
.container { max-width:1160px; margin:0 auto; padding:0 1.75rem; }

/* ===== Buttons ===== */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:.75rem 1.6rem; font-size:.93rem; font-weight:600; border-radius:var(--r);
  border:1.5px solid transparent; transition:var(--ease); cursor:pointer;
  font-family:inherit; white-space:nowrap;
}
.btn--primary {
  background:var(--teal); color:#fff; border-color:var(--teal);
}
.btn--primary:hover {
  background:#13a07d; border-color:#13a07d;
  box-shadow:0 6px 20px rgba(23,184,144,0.38); transform:translateY(-1px);
}
.btn--ghost {
  background:transparent; color:var(--text); border-color:var(--border);
}
.btn--ghost:hover {
  background:var(--bg-card); border-color:var(--border-accent);
}
.btn--small { padding:.45rem 1rem; font-size:.82rem; }

/* ===== Header ===== */
.site-header {
  position:sticky; top:0; z-index:200;
  background:var(--bg-header);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
  transition:background .3s, border-color .3s;
}
.site-header > .container {
  display:flex; align-items:center; justify-content:space-between;
  height:68px; gap:1.5rem; padding: 0 1.75rem;
}

/* Brand */
.brand {
  display:flex; align-items:center; flex-shrink:0;
}
.brand img { height:38px; width:auto; display:block; }

/* Header actions */
.header-actions {
  display:flex; align-items:center; gap:.5rem; margin-left:auto;
  order:3;
}
[dir="rtl"] .header-actions { margin-left:0; margin-right:auto; }

#lang-toggle, #theme-toggle {
  height:36px; min-width:36px; padding:0 .7rem;
  border:1px solid var(--border); border-radius:var(--r);
  background:var(--bg-card); color:var(--text-2);
  font-size:.78rem; font-weight:700; letter-spacing:.06em;
  display:flex; align-items:center; justify-content:center; gap:.35rem;
  transition:var(--ease); font-family:'Inter',sans-serif;
}
#lang-toggle:hover, #theme-toggle:hover {
  color:var(--text); background:var(--bg-card-hover);
  border-color:var(--border-accent);
}
#theme-toggle svg { width:16px; height:16px; flex-shrink:0; }

/* Mobile hamburger */
.nav-toggle {
  display:none; flex-direction:column; gap:5px;
  width:36px; height:36px; align-items:center; justify-content:center;
  border:1px solid var(--border); border-radius:var(--r);
  background:var(--bg-card);
}
.nav-toggle span {
  display:block; width:18px; height:2px;
  background:var(--text); border-radius:2px; transition:var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Site nav */
.site-nav {
  display:flex; align-items:center; gap:.2rem;
}
.site-nav a {
  font-size:.875rem; font-weight:500; color:var(--text-2);
  padding:.45rem .8rem; border-radius:var(--r);
  transition:var(--ease); position:relative;
}
.site-nav a:hover { color:var(--text); background:var(--bg-card); }
.site-nav a.active {
  color:var(--teal); background:var(--teal-dim); font-weight:600;
}
.site-nav a.active::after {
  content:''; position:absolute; bottom:-1px; left:.8rem; right:.8rem;
  height:2px; background:var(--teal); border-radius:1px;
}
.site-nav .btn { margin-left:.5rem; }
.site-nav .btn.active { background:var(--teal); color:#fff; }
[dir="rtl"] .site-nav .btn { margin-left:0; margin-right:.5rem; }

/* ===== Section shared ===== */
section { padding:6rem 0; }
section:first-child { padding-top:0; }

.section-head {
  text-align:center; margin-bottom:3.5rem; max-width:620px; margin-inline:auto;
}
.section-head h2 {
  font-size:clamp(1.75rem,3.5vw,2.5rem); font-weight:700;
  letter-spacing:-.025em; margin-bottom:.6rem; line-height:1.2;
}
.section-head p { font-size:1.05rem; color:var(--text-2); line-height:1.7; }

.eyebrow {
  font-size:.75rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--teal); margin-bottom:.75rem; display:block;
}

/* ===== Hero ===== */
.hero {
  min-height:calc(100vh - 68px); display:flex; align-items:center;
  position:relative; overflow:hidden; padding:5rem 0;
}
.hero__bg {
  position:absolute; inset:0; pointer-events:none; overflow:hidden;
}
.blob {
  position:absolute; border-radius:50%; filter:blur(72px); opacity:.55;
}
.blob--one {
  width:600px; height:600px;
  background:radial-gradient(circle, var(--blue-dim) 0%, transparent 70%);
  top:-100px; right:-80px;
}
.blob--two {
  width:500px; height:500px;
  background:radial-gradient(circle, var(--teal-dim) 0%, transparent 70%);
  bottom:-80px; left:-60px;
}
[data-theme="light"] .blob { opacity:.65; }

.hero__content {
  position:relative; z-index:1; width:100%;
  display:flex; align-items:center;
}

.hero__text { display:flex; flex-direction:column; gap:1.5rem; max-width:760px; }

.headline {
  font-size:clamp(2.2rem,4.5vw,3.8rem); font-weight:700;
  letter-spacing:-.035em; line-height:1.12;
}
.headline .accent { color:var(--teal); }
.headline .spark {
  background:linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}

.subhead {
  font-size:1.1rem; color:var(--text-2); line-height:1.75; max-width:480px;
}

.hero .cta { display:flex; gap:1rem; flex-wrap:wrap; }

.hero__bullets {
  display:flex; flex-direction:column; gap:.6rem;
}
.hero__bullets li {
  display:flex; align-items:flex-start; gap:.6rem;
  font-size:.875rem; color:var(--text-2);
}
.tick {
  color:var(--teal); font-weight:700; flex-shrink:0; font-size:.875rem;
}

/* Hero visual panel */
.hero__visual {
  display:flex; flex-direction:column; gap:1rem;
}
.dash-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:1.5rem;
  backdrop-filter:blur(8px);
  box-shadow:var(--shadow);
}
.dash-card__label { font-size:.75rem; font-weight:600; color:var(--text-3); text-transform:uppercase; letter-spacing:.08em; margin-bottom:.35rem; }
.dash-card__val { font-size:1.8rem; font-weight:700; color:var(--teal); letter-spacing:-.03em; line-height:1; }
.dash-card__sub { font-size:.78rem; color:var(--text-3); margin-top:.2rem; }
.dash-bars { display:flex; align-items:flex-end; gap:.35rem; height:72px; margin-top:1rem; }
.dash-bar {
  flex:1; border-radius:3px 3px 0 0;
  background:var(--teal); opacity:.25;
  transform-origin:bottom;
  animation: bar-rise .55s cubic-bezier(.4,0,.2,1) both;
  animation-play-state:paused;
}
.dash-bar.hi { opacity:.9; }
.dash-bar.md { opacity:.55; }
.bars-animate .dash-bar { animation-play-state:running; }
.dash-bar:nth-child(1) { animation-delay:.04s; }
.dash-bar:nth-child(2) { animation-delay:.1s;  }
.dash-bar:nth-child(3) { animation-delay:.16s; }
.dash-bar:nth-child(4) { animation-delay:.22s; }
.dash-bar:nth-child(5) { animation-delay:.28s; }
.dash-bar:nth-child(6) { animation-delay:.34s; }
.dash-bar:nth-child(7) { animation-delay:.4s;  }
@keyframes bar-rise {
  from { transform:scaleY(0); }
  to   { transform:scaleY(1); }
}
.dash-cards-row { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; }
.dash-mini {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r); padding:1rem;
  box-shadow:var(--shadow-sm);
}
.dash-mini .dash-card__val { font-size:1.3rem; color:var(--blue); }
.dash-mini.teal .dash-card__val { color:var(--teal); }

/* ===== Trust bar ===== */
.trust {
  background:var(--bg-alt); padding:2.5rem 0;
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.trust__wrap { text-align:center; }
.trust .eyebrow { margin-bottom:1.25rem; }

.logo-row {
  display:flex; flex-wrap:wrap; justify-content:center; gap:1rem 2rem; list-style:none;
}
.logo-row li {
  font-size:.82rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  color:var(--text-3); padding:.4rem .9rem;
  border:1px solid var(--border); border-radius:6px;
  background:var(--bg-card);
  transition:var(--ease);
}
.logo-row li:hover { color:var(--text-2); border-color:var(--border-accent); }

/* ===== Cards ===== */
.cards {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.5rem;
}

.card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:2rem;
  transition:var(--ease); position:relative; overflow:hidden;
}
.card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--teal), var(--blue));
  opacity:0; transition:var(--ease);
}
.card:hover {
  background:var(--bg-card-hover); border-color:var(--border-accent);
  transform:translateY(-3px); box-shadow:var(--shadow);
}
.card:hover::before { opacity:1; }

.card h3 { font-size:1.05rem; font-weight:700; margin-bottom:.6rem; }
.card > p { font-size:.9rem; color:var(--text-2); line-height:1.7; margin-bottom:1.25rem; }

.list { display:flex; flex-direction:column; gap:.5rem; }
.list li {
  font-size:.875rem; color:var(--text-2); display:flex;
  align-items:baseline; gap:.55rem;
}
.list li::before {
  content:''; display:inline-block; width:6px; height:6px;
  border-radius:50%; background:var(--teal); flex-shrink:0; margin-top:5px;
}
[dir="rtl"] .list li { flex-direction:row-reverse; }

/* ===== Pricing cards ===== */
.pricing-grid { grid-template-columns:repeat(3,1fr); align-items:start; }

.price__num {
  font-size:2.6rem; font-weight:700; letter-spacing:-.04em;
  color:var(--text); line-height:1; margin:.75rem 0 .25rem;
}
.price__num span {
  font-size:1.3rem; font-weight:600; color:var(--text-2);
  vertical-align:super; line-height:1;
}
.muted { font-size:.875rem; color:var(--text-3); }
.fineprint { text-align:center; margin-top:2rem; }

.price--popular {
  border-color:var(--teal);
  background:linear-gradient(160deg, rgba(23,184,144,.07) 0%, var(--bg-card) 60%);
  box-shadow:0 0 0 1px var(--teal), var(--shadow);
}
.price--popular::before { opacity:1; }

.badge {
  display:inline-block; background:var(--teal); color:#fff;
  font-size:.68rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:.22rem .65rem; border-radius:999px; margin-bottom:.75rem;
}

.price .btn { display:block; width:100%; text-align:center; margin-top:1.5rem; }

/* ===== Metrics ===== */
.metrics {
  display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; text-align:center;
}
.metric__num {
  font-size:2.6rem; font-weight:700; color:var(--teal);
  letter-spacing:-.04em; line-height:1;
}
.metric__label {
  font-size:.875rem; color:var(--text-2); margin-top:.4rem; font-weight:500;
}

/* ===== Steps ===== */
.steps {
  display:grid; grid-template-columns:repeat(4,1fr); gap:2rem;
  position:relative; list-style:none;
}
.steps::before {
  content:''; position:absolute; top:1.4rem; left:12%; right:12%; height:1px;
  background:linear-gradient(90deg, var(--teal), var(--blue));
  opacity:.3; z-index:0;
}
[dir="rtl"] .steps::before { left:12%; right:12%; }

.step { text-align:center; position:relative; z-index:1; }
.step__num {
  width:2.8rem; height:2.8rem; border-radius:50%;
  background:linear-gradient(135deg, var(--blue), var(--teal));
  color:#fff; font-size:.9rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1rem; box-shadow:0 0 0 5px var(--teal-dim);
}
.step h3 { font-size:.95rem; font-weight:700; margin-bottom:.4rem; }
.step p { font-size:.85rem; color:var(--text-2); line-height:1.6; }

/* ===== Cases ===== */
.case-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.case {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:1.75rem;
  transition:var(--ease);
}
.case:hover {
  border-color:var(--border-accent); transform:translateY(-2px); box-shadow:var(--shadow-sm);
}
.case h3 { font-size:.95rem; font-weight:700; margin-bottom:.5rem; color:var(--teal); }
.case p { font-size:.875rem; color:var(--text-2); line-height:1.7; }

/* ===== FAQ ===== */
.faq > .container > .section-head { margin-bottom:2.5rem; }
.faq-item {
  border-bottom:1px solid var(--border);
  padding:.1rem 0;
}
.faq-item:first-of-type { border-top:1px solid var(--border); }
.faq-item summary {
  padding:1.1rem 0; font-size:.95rem; font-weight:600; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:1rem;
  list-style:none; transition:var(--ease); color:var(--text);
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after {
  content:'+'; font-size:1.3rem; color:var(--teal); flex-shrink:0; line-height:1;
  transition:var(--ease);
}
.faq-item[open] summary::after { content:'−'; }
.faq-item summary:hover { color:var(--teal); }
.faq-item p {
  padding:0 0 1.1rem; font-size:.9rem; color:var(--text-2); line-height:1.75;
  max-width:640px;
}

/* ===== Contact ===== */
.contact { background:var(--bg-alt); }
.contact__wrap {
  display:grid; grid-template-columns:1fr 1.5fr; gap:4rem; align-items:start;
}
.contact__copy h2 {
  font-size:clamp(1.5rem,3vw,2.1rem); font-weight:700;
  letter-spacing:-.025em; margin-bottom:.75rem;
}
.contact__copy p {
  font-size:.95rem; color:var(--text-2); line-height:1.75; margin-bottom:1.75rem;
}

.contact__form {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:2.25rem;
  display:flex; flex-direction:column; gap:1.1rem;
}
.contact__form label {
  display:flex; flex-direction:column; gap:.35rem;
  font-size:.8rem; font-weight:600; color:var(--text-2);
  letter-spacing:.02em;
}
.contact__form input,
.contact__form textarea {
  padding:.7rem 1rem; background:var(--bg);
  border:1px solid var(--border); border-radius:var(--r);
  color:var(--text); font-size:.9rem; font-family:inherit;
  transition:var(--ease); outline:none;
}
.contact__form input:focus,
.contact__form textarea:focus {
  border-color:var(--teal); box-shadow:0 0 0 3px var(--teal-dim);
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color:var(--text-3); }
.contact__form textarea { resize:vertical; min-height:110px; }
.contact__form .btn { align-self:flex-start; }
.form-note { font-size:.82rem; color:var(--teal); min-height:1.2em; }

/* ===== Footer ===== */
.site-footer {
  background:#060d1f; color:rgba(255,255,255,.7);
  padding:3rem 0 2rem; border-top:1px solid rgba(255,255,255,.06);
}
[data-theme="light"] .site-footer {
  background:#0B132B;
}
.footer__grid {
  display:grid; grid-template-columns:1.5fr 1fr auto; gap:3rem;
  align-items:start;
}
.footer__brand { display:flex; flex-direction:column; gap:1rem; align-items:flex-start; }
.footer__logo { height:44px; width:auto; display:block; }
.footer__brand strong { font-size:1rem; font-weight:700; color:#fff; }
.footer__brand .muted { font-size:.82rem; color:rgba(255,255,255,.4); max-width:220px; line-height:1.6; }
[dir="rtl"] .footer__brand { align-items:flex-end; }
.site-footer nav { display:flex; flex-direction:column; gap:.6rem; }
.site-footer nav a {
  font-size:.875rem; color:rgba(255,255,255,.55);
  transition:var(--ease);
}
.site-footer nav a:hover { color:#fff; }
.footer__legal p { font-size:.8rem; color:rgba(255,255,255,.35); }

/* ===== Testimonials ===== */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.testimonial {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:2rem;
  display:flex; flex-direction:column; gap:1.5rem;
  transition:var(--ease);
}
.testimonial:hover {
  border-color:var(--border-accent); transform:translateY(-3px); box-shadow:var(--shadow);
}
.testimonial__quote {
  font-size:.93rem; color:var(--text-2); line-height:1.8;
  font-style:italic; flex:1; position:relative; padding-top:2.25rem;
}
.testimonial__quote::before {
  content:'\201C'; font-size:4.5rem; color:var(--teal); opacity:.28;
  position:absolute; top:-.5rem; left:-.2rem;
  font-family:Georgia,serif; line-height:1; font-style:normal;
}
[dir="rtl"] .testimonial__quote::before { left:auto; right:-.2rem; content:'\201D'; }
.testimonial__author {
  display:flex; align-items:center; gap:.85rem;
  padding-top:1.25rem; border-top:1px solid var(--border);
}
.testimonial__avatar {
  width:42px; height:42px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  display:flex; align-items:center; justify-content:center;
  font-size:.72rem; font-weight:700; color:#fff; letter-spacing:.04em;
}
.testimonial__name { font-size:.875rem; font-weight:700; margin-bottom:.15rem; }
.testimonial__role { font-size:.75rem; color:var(--text-3); }

/* ===== Cookie banner ===== */
#cookie-banner {
  position:fixed; bottom:1.5rem; left:50%; transform:translateX(-50%);
  width:min(620px, calc(100vw - 2rem));
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:1.1rem 1.5rem;
  display:flex; align-items:center; gap:1.25rem; flex-wrap:wrap;
  box-shadow:0 12px 40px rgba(0,0,0,.3);
  z-index:900; backdrop-filter:blur(16px);
  animation:cookie-rise .4s cubic-bezier(.4,0,.2,1);
}
@keyframes cookie-rise {
  from { opacity:0; transform:translateX(-50%) translateY(16px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}
.cookie-body { flex:1; min-width:200px; display:flex; flex-direction:column; gap:.5rem; }
#cookie-banner p { font-size:.82rem; color:var(--text-2); line-height:1.55; margin:0; }
#cookie-details { font-size:.78rem; color:var(--text-3); line-height:1.6; }
.cookie-actions { display:flex; align-items:center; gap:.75rem; flex-shrink:0; }
.cookie-link {
  font-size:.78rem; color:var(--teal); text-decoration:underline;
  text-underline-offset:2px; background:none; border:none;
  cursor:pointer; font-family:inherit; padding:0; font-weight:600;
}
.cookie-link:hover { opacity:.75; }

/* ===== Hero badge (pre-launch) ===== */
.hero__badge {
  display:inline-flex; align-items:center; gap:.6rem;
  padding:.38rem .95rem; border-radius:999px;
  background:var(--teal-dim); border:1px solid var(--border-accent);
  font-size:.78rem; font-weight:600; color:var(--teal);
  align-self:flex-start;
}
[dir="rtl"] .hero__badge { align-self:flex-end; }
.badge-dot {
  width:7px; height:7px; border-radius:50%;
  background:var(--teal); flex-shrink:0;
  animation:dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.45; transform:scale(1.3); }
}

/* ===== 3-column cards override ===== */
.cards--3col { grid-template-columns:repeat(3,1fr); }

/* ===== Problem section stat ===== */
.prob-stat {
  font-size:2.75rem; font-weight:800; color:var(--teal); line-height:1;
  letter-spacing:-.04em;
}
.prob-cite {
  font-size:.72rem; color:var(--text-3); font-style:italic;
  margin:.2rem 0 1.1rem; line-height:1.5;
}

/* ===== Scenario / Timeline ===== */
.scenario__intro {
  font-size:1.05rem; color:var(--text-2); line-height:1.75;
  max-width:680px; margin-inline:auto;
}
.timeline {
  list-style:none; padding:0; margin:3.5rem auto 0;
  position:relative; max-width:780px;
}
.timeline::before {
  content:''; position:absolute; left:27px; top:28px; bottom:0; width:2px;
  background:linear-gradient(to bottom, var(--teal) 0%, var(--blue) 75%, transparent 100%);
}
[dir="rtl"] .timeline::before { left:auto; right:27px; }
.timeline-step {
  display:grid; grid-template-columns:56px 1fr; gap:2rem;
  padding-bottom:2.75rem; position:relative;
}
.timeline-step:last-child { padding-bottom:0; }
.timeline-step__marker {
  width:56px; height:56px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg, var(--teal), var(--blue));
  display:flex; align-items:center; justify-content:center;
  font-size:1.05rem; font-weight:800; color:#fff;
  position:relative; z-index:1;
  box-shadow:0 0 0 4px var(--bg), 0 4px 18px rgba(23,184,144,.28);
}
.timeline-step__body { padding-top:.8rem; }
.timeline-step__body h3 { font-size:1.1rem; font-weight:700; margin-bottom:.65rem; }
.timeline-step__body p { font-size:.925rem; color:var(--text-2); line-height:1.8; }
[dir="rtl"] .timeline-step__body { text-align:right; }

/* ===== Solution card number ===== */
.card__num {
  font-size:.7rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase;
  color:var(--teal); opacity:.75; margin-bottom:.75rem;
}

/* ===== Approach card icon ===== */
.approach-icon {
  font-size:2.25rem; display:block; margin-bottom:1rem; line-height:1;
}

/* ===== Impact stat grid ===== */
.stat-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-bottom:2rem;
}
.stat-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:2rem;
  display:flex; flex-direction:column; transition:var(--ease);
}
.stat-card:hover { border-color:var(--border-accent); transform:translateY(-2px); box-shadow:var(--shadow); }
.stat-card__num {
  font-size:3.25rem; font-weight:800; line-height:1;
  background:linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; color:transparent; margin-bottom:.4rem;
}
.stat-card__num--sm { font-size:2.4rem; }
.stat-card__unit {
  font-size:.875rem; color:var(--text); line-height:1.55; flex:1;
  margin-bottom:.85rem;
}
.stat-card__source {
  font-size:.72rem; color:var(--text-3); font-style:italic;
  padding-top:.85rem; border-top:1px solid var(--border);
}
.impact__note { text-align:center; margin-top:1.5rem; }

/* ===== Who we serve ===== */
.who-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:4rem;
  margin-top:3rem; align-items:start;
}
.fit-check h3, .industries-col h3 {
  font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--text-3); margin-bottom:1.25rem;
}
.fit-list { display:flex; flex-direction:column; gap:1rem; }
.fit-list li {
  display:flex; gap:.85rem; font-size:.925rem; color:var(--text-2); line-height:1.6;
}
.fit-list li::before {
  content:'✓'; color:var(--teal); font-weight:800; flex-shrink:0;
  font-size:.82rem; padding-top:.1rem;
}
[dir="rtl"] .fit-list li { flex-direction:row-reverse; }
.industry-tags { display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom:2rem; }
.industry-tags span {
  padding:.45rem 1.1rem; border-radius:999px;
  border:1px solid var(--border-accent);
  color:var(--teal); font-size:.8rem; font-weight:600;
  background:var(--teal-dim);
}
.early-partner-box {
  background:var(--bg-card); border:1px solid var(--border-accent);
  border-radius:var(--r-lg); padding:1.75rem;
  margin-top:0;
}
.early-partner-box .eyebrow { margin-bottom:.5rem; }
.early-partner-box > p { font-size:.875rem; color:var(--text-2); line-height:1.7; margin-bottom:1.25rem; }

/* ===== Reveal animations ===== */
@media (prefers-reduced-motion: no-preference) {
  .js-ready [data-reveal] {
    opacity:0; transform:translateY(30px);
    transition:opacity .75s cubic-bezier(.16,1,.3,1),
               transform .75s cubic-bezier(.16,1,.3,1);
    will-change:opacity, transform;
  }
  .js-ready [data-reveal].revealed { opacity:1; transform:none; }
}

/* ===== RTL ===== */
[dir="rtl"] { font-family:'Cairo', sans-serif; }
[dir="rtl"] .hero__content { text-align:right; }
[dir="rtl"] .hero .cta,
[dir="rtl"] .hero__bullets li { justify-content:flex-end; }
[dir="rtl"] .site-nav .btn { margin-left:0; margin-right:.5rem; }
[dir="rtl"] .contact__form .btn { align-self:flex-end; }
[dir="rtl"] .list li { flex-direction:row-reverse; }
[dir="rtl"] .section-head { text-align:right; }
[dir="rtl"] .step { direction:rtl; }
[dir="rtl"] .steps::before { transform:scaleX(-1); }

/* ===== Responsive ===== */
@media(max-width:1024px) {
  /* Nav: hamburger replaces inline links */
  .nav-toggle { display:flex; }
  .site-nav {
    display:none; position:fixed; top:68px; left:0; right:0;
    height:calc(100vh - 68px); height:calc(100dvh - 68px);
    background:var(--bg); flex-direction:column;
    align-items:center; justify-content:center; gap:1.5rem; z-index:199;
  }
  .site-nav.open { display:flex; animation:nav-fade .18s ease; }
  @keyframes nav-fade { from { opacity:0; } to { opacity:1; } }
  .site-nav a:not(.btn) { font-size:1.2rem; padding:.6rem 1.4rem; }
  .site-nav a.active::after { display:none; }
  .site-nav .btn { margin-left:0; margin-top:.25rem; }

  /* Layout */
  .hero__content { grid-template-columns:1fr; }
  .hero__visual { display:none; }
  .pricing-grid { grid-template-columns:1fr; max-width:440px; margin:0 auto; }
  .contact__wrap { grid-template-columns:1fr; gap:2.5rem; }
  .metrics { grid-template-columns:repeat(2,1fr); }
  .steps { grid-template-columns:repeat(2,1fr); }
  .steps::before { display:none; }
  .footer__grid { grid-template-columns:1fr 1fr; }
  .footer__legal { grid-column:1/-1; }
  .testimonials-grid { grid-template-columns:1fr 1fr; }
  .stat-grid { grid-template-columns:repeat(2,1fr); }
  .who-grid { grid-template-columns:1fr; gap:2.5rem; }
  .cards--3col { grid-template-columns:repeat(2,1fr); }
}

@media(max-width:768px) {
  section { padding:4rem 0; }
  .site-header > .container { padding:0 1.25rem; }
  .hero { min-height:auto; padding:4rem 0 3rem; }
  .hero__content { grid-template-columns:1fr; }
  .headline { font-size:clamp(2rem,7vw,3rem); }
  .hero .cta { flex-direction:column; align-items:flex-start; }
  [dir="rtl"] .hero .cta { align-items:flex-end; }
  .cards { grid-template-columns:1fr; }
  .cards--3col { grid-template-columns:1fr; }
  .case-grid { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .metrics { grid-template-columns:1fr 1fr; gap:1.5rem; }
  .steps { grid-template-columns:1fr; }
  .stat-grid { grid-template-columns:1fr 1fr; }
  .timeline::before { left:20px; }
  [dir="rtl"] .timeline::before { left:auto; right:20px; }
  .timeline-step { grid-template-columns:42px 1fr; gap:1.25rem; }
  .timeline-step__marker { width:42px; height:42px; font-size:.85rem; }
  .who-grid { grid-template-columns:1fr; }
  .footer__grid { grid-template-columns:1fr; gap:2rem; }
  .contact__form { padding:1.5rem; }
  #cookie-banner { flex-direction:column; align-items:flex-start; bottom:0; border-radius:var(--r-lg) var(--r-lg) 0 0; }
}

@media(max-width:480px) {
  .stat-grid { grid-template-columns:1fr; }
  .prob-stat { font-size:2.25rem; }
  .brand img { height:30px; }
  .header-actions { gap:.35rem; }
}
