/* ===========================================================
   نيوبوك | Newbook — Landing styles
   RTL • Mobile-first • premium tech aesthetic
   =========================================================== */

:root {
  /* Neutrals (cool, low-saturation) */
  --bg:            #ffffff;
  --bg-soft:       #f4f6fb;
  --bg-softer:     #fafbfe;
  --line:          #e6eaf3;
  --line-strong:   #d3d9e8;

  /* Ink / text */
  --ink:           oklch(0.28 0.035 264);
  --ink-2:         oklch(0.44 0.03 264);
  --muted:         oklch(0.58 0.025 264);

  /* Brand — deep navy */
  --navy:          oklch(0.27 0.09 278);
  --navy-deep:     oklch(0.185 0.07 278);
  --navy-line:     oklch(0.40 0.07 278);

  /* Accents — share L & C, vary hue */
  --sky:           oklch(0.58 0.17 262);
  --sky-soft:      oklch(0.94 0.035 262);
  --violet:        oklch(0.58 0.17 301);
  --violet-soft:   oklch(0.94 0.035 301);

  --grad: linear-gradient(120deg, var(--sky), var(--violet));

  /* Shape */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(20,30,60,.05), 0 2px 8px rgba(20,30,60,.04);
  --shadow:    0 8px 24px rgba(22,34,72,.07), 0 2px 6px rgba(22,34,72,.05);
  --shadow-lg: 0 24px 60px rgba(22,34,72,.13), 0 6px 18px rgba(22,34,72,.07);

  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-anchor: none; }

body {
  font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ---------- Section scaffolding ---------- */
section { position: relative; }
.section { padding: 76px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-deep); color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
  color: var(--sky);
  background: var(--sky-soft);
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
  border: 1px solid color-mix(in oklch, var(--sky) 22%, white);
}
.section--navy .eyebrow {
  color: #cfe0ff; background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

.s-head { max-width: 720px; margin-bottom: 44px; }
.s-head.center { margin-inline: auto; text-align: center; }
.s-title {
  font-size: clamp(26px, 4.4vw, 40px);
  font-weight: 700; line-height: 1.35; letter-spacing: -.01em;
  margin-top: 18px; color: var(--ink);
}
.section--navy .s-title { color: #fff; }
.s-sub {
  margin-top: 14px; font-size: 17.5px; color: var(--muted);
  line-height: 1.9; font-weight: 400;
}
.section--navy .s-sub { color: #b9c2dc; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-weight: 600; font-size: 16px;
  padding: 13px 24px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 8px 22px color-mix(in oklch, var(--navy) 35%, transparent);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px color-mix(in oklch, var(--navy) 40%, transparent); }
.btn--accent {
  background: var(--grad); color: #fff;
  box-shadow: 0 10px 26px color-mix(in oklch, var(--sky) 40%, transparent);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 16px 34px color-mix(in oklch, var(--sky) 46%, transparent); }
.btn--ghost {
  background: #fff; color: var(--ink); border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline-light {
  background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.28);
}
.btn--outline-light:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

/* ===========================================================
   Header
   =========================================================== */
.header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklch, white 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(22,34,72,.05);
  background: color-mix(in oklch, white 88%, transparent);
}
.nav { display: flex; align-items: center; gap: 18px; height: 72px; }

.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none; display: block;
  box-shadow: 0 6px 16px color-mix(in oklch, var(--sky) 38%, transparent);
}
.footer .brand .mark .bg { fill: rgba(255,255,255,.08); }
.brand .name { font-size: 19px; color: var(--ink); }
.brand .name span { color: var(--muted); font-weight: 500; font-size: 14px; }

.nav-links { display: none; align-items: center; gap: 6px; margin-inline-start: 18px; }
.nav-links a {
  font-size: 15.5px; font-weight: 500; color: var(--ink-2);
  padding: 9px 13px; border-radius: 10px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--navy); background: var(--bg-soft); }

.nav-cta { margin-inline-start: auto; display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 10px 18px; font-size: 15px; }
.menu-btn {
  display: inline-flex; margin-inline-start: auto;
  width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line-strong); cursor: pointer;
}
.menu-btn svg { width: 22px; height: 22px; stroke: var(--ink); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 80; display: none;
}
.drawer.open { display: block; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(15,22,45,.42); backdrop-filter: blur(2px); }
.drawer-panel {
  position: absolute; top: 0; bottom: 0; inset-inline-start: 0;
  width: min(82vw, 340px); background: #fff;
  padding: 22px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-lg);
  transform: translateX(-104%);
  transition: transform .34s var(--ease);
}
[dir="rtl"] .drawer-panel { inset-inline-start: auto; inset-inline-end: 0; transform: translateX(104%); }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer-panel a {
  font-size: 16.5px; font-weight: 500; color: var(--ink-2);
  padding: 13px 12px; border-radius: 12px; transition: background .2s, color .2s;
}
.drawer-panel a:hover { background: var(--bg-soft); color: var(--navy); }
.drawer-panel .btn { margin-top: 12px; }
.x-btn { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); background: var(--bg-soft); cursor: pointer; display: grid; place-items: center; }
.x-btn svg { width: 20px; height: 20px; stroke: var(--ink); }

/* ===========================================================
   Hero
   =========================================================== */
.hero { position: relative; padding: 54px 0 72px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 520px at 12% -8%, color-mix(in oklch, var(--sky) 16%, transparent), transparent 60%),
    radial-gradient(760px 480px at 96% 4%, color-mix(in oklch, var(--violet) 14%, transparent), transparent 62%),
    linear-gradient(180deg, var(--bg-softer), var(--bg));
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(720px 460px at 70% 20%, #000, transparent 78%);
          mask-image: radial-gradient(720px 460px at 70% 20%, #000, transparent 78%);
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 46px; align-items: center; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  padding: 7px 7px 7px 15px; border-radius: 999px; font-size: 13.5px; color: var(--ink-2);
  box-shadow: var(--shadow-sm); font-weight: 500;
}
.hero-pill b { color: var(--navy); font-weight: 600; }
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: oklch(0.68 0.17 150); box-shadow: 0 0 0 4px color-mix(in oklch, oklch(0.68 0.17 150) 22%, transparent); }

.hero h1 {
  font-size: clamp(30px, 6.2vw, 54px);
  font-weight: 700; line-height: 1.3; letter-spacing: -.015em;
  margin: 22px 0 0; color: var(--ink);
}
.hero h1 .grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  margin-top: 20px; font-size: clamp(16.5px, 2.4vw, 20px);
  color: var(--ink-2); max-width: 560px; line-height: 1.9;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 34px; }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-size: 24px; font-weight: 700; color: var(--navy); }
.hero-trust .t span { font-size: 13.5px; color: var(--muted); }
.hero-trust .sep { width: 1px; background: var(--line-strong); align-self: stretch; }

/* Hero visual — mock dashboard */
.hero-visual { position: relative; }
.dash {
  background: rgba(255,255,255,.72);
  border: 1px solid #fff;
  outline: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transform: perspective(1400px) rotateY(2.5deg) rotateX(1.5deg);
}
[dir="rtl"] .dash { transform: perspective(1400px) rotateY(-2.5deg) rotateX(1.5deg); }
.dash-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.6); }
.dash-bar .dots { display: flex; gap: 6px; }
.dash-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.dash-bar .dots i:nth-child(1){ background:#ff6b6b88;} .dash-bar .dots i:nth-child(2){ background:#ffc14d88;} .dash-bar .dots i:nth-child(3){ background:#3ec97a88;}
.dash-bar .url { margin-inline-start: auto; font-size: 12px; color: var(--muted); background: var(--bg-soft); padding: 5px 12px; border-radius: 8px; direction: ltr; font-family: ui-monospace, monospace; }
.dash-body { display: grid; grid-template-columns: 64px 1fr; min-height: 320px; }
.dash-side { background: var(--navy-deep); padding: 16px 12px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.dash-side .logo { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); }
.dash-side .ic { width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.08); }
.dash-side .ic.act { background: rgba(255,255,255,.2); box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.dash-main { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 12px; }
.kpi small { font-size: 11px; color: var(--muted); }
.kpi b { display: block; font-size: 20px; color: var(--ink); margin-top: 3px; }
.kpi .up { font-size: 11px; color: oklch(0.62 0.16 150); font-weight: 600; }
.dash-chart { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px; flex: 1; display: flex; flex-direction: column; }
.dash-chart .ttl { font-size: 12.5px; color: var(--ink-2); font-weight: 600; margin-bottom: 12px; }
.bars { display: flex; align-items: flex-end; gap: 9px; height: 110px; }
.bars i { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(var(--sky), color-mix(in oklch, var(--violet) 70%, var(--sky))); opacity: .85; }

.float {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 11px 14px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink);
}
.float .fic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.float .fic svg { width: 18px; height: 18px; }
.float small { display: block; font-size: 11.5px; color: var(--muted); font-weight: 500; }
.float.f1 { top: -18px; inset-inline-start: -16px; }
.float.f2 { bottom: 40px; inset-inline-end: -22px; }
.float.f3 { bottom: -16px; inset-inline-start: 26px; }

/* chips strip under hero visual */
.hero-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.chip {
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 7px;
}
.chip .cd { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }

/* ===========================================================
   Logos / marquee strip
   =========================================================== */
.strip { border-block: 1px solid var(--line); background: var(--bg-softer); padding: 22px 0; }
.strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 26px; }
.strip .lbl { font-size: 13.5px; color: var(--muted); font-weight: 500; }
.strip .tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.strip .tags span { font-size: 14px; font-weight: 600; color: var(--ink-2); display: inline-flex; align-items: center; gap: 7px; }
.strip .tags span::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--sky); transform: rotate(45deg); }

/* ===========================================================
   Cards / grids
   =========================================================== */
.grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: 1fr; }
.cols-3 { grid-template-columns: 1fr; }
.cols-4 { grid-template-columns: 1fr 1fr; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: color-mix(in oklch, var(--sky) 45%, var(--line)); }
.card .ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sky-soft); color: var(--sky); margin-bottom: 16px;
  transition: background .25s, color .25s;
}
.card:hover .ic { background: var(--grad); color: #fff; }
.card .ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 18.5px; font-weight: 700; color: var(--ink); line-height: 1.5; }
.card p { margin-top: 9px; font-size: 15px; color: var(--muted); line-height: 1.8; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.about-points { display: grid; gap: 14px; margin-top: 26px; }
.about-points .pt { display: flex; gap: 13px; align-items: flex-start; }
.about-points .pt .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--sky-soft); color: var(--sky); display: grid; place-items: center; flex: none; margin-top: 3px; }
.about-points .pt .ck svg { width: 15px; height: 15px; }
.about-points .pt b { font-weight: 600; color: var(--ink); }
.about-points .pt span { color: var(--muted); }

.about-visual {
  background: var(--navy-deep); border-radius: var(--r-lg); padding: 30px;
  color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-visual::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(420px 260px at 90% 0%, color-mix(in oklch, var(--sky) 40%, transparent), transparent 60%),
    radial-gradient(360px 240px at 0% 100%, color-mix(in oklch, var(--violet) 36%, transparent), transparent 60%);
}
.about-visual .av-row { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.av-stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 18px; }
.av-stat b { font-size: 30px; font-weight: 700; display: block; }
.av-stat span { font-size: 13.5px; color: #b9c2dc; }
.av-stack { position: relative; margin-top: 14px; display: grid; gap: 10px; }
.av-line { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 13px 15px; display: flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 500; }
.av-line .av-ic { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); display: grid; place-items: center; flex: none; }
.av-line .av-ic svg { width: 16px; height: 16px; color: #fff; }

/* Marketing metrics chips */
.metrics { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.metric {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  padding: 11px 18px; border-radius: 999px; font-weight: 600; font-size: 15px;
}
.metric .mic { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); display: grid; place-items: center; }
.metric .mic svg { width: 15px; height: 15px; color: #fff; }
.section--navy .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.section--navy .card:hover { border-color: rgba(255,255,255,.28); box-shadow: 0 18px 40px rgba(0,0,0,.3); }
.section--navy .card h3 { color: #fff; }
.section--navy .card p { color: #b3bdd8; }
.section--navy .card .ic { background: rgba(255,255,255,.1); color: #cfe0ff; }

/* Why us */
.why .card { padding: 26px; }
.why .num {
  position: absolute; top: 22px; inset-inline-end: 24px;
  font-size: 30px; font-weight: 800; color: var(--line-strong);
  font-family: ui-monospace, monospace;
}

/* Process steps */
.steps { display: grid; gap: 16px; counter-reset: step; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; display: flex; gap: 18px; align-items: flex-start;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in oklch, var(--sky) 40%, var(--line)); }
.step .sn {
  width: 48px; height: 48px; border-radius: 14px; flex: none;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 19px; box-shadow: 0 8px 18px color-mix(in oklch, var(--sky) 36%, transparent);
}
.step h3 { font-size: 18px; font-weight: 700; color: var(--ink); }
.step p { margin-top: 6px; font-size: 14.5px; color: var(--muted); line-height: 1.8; }

/* Audience pills */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.aud {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 16px; display: flex; align-items: center; gap: 12px; font-weight: 600;
  font-size: 15px; color: var(--ink); transition: border-color .2s, transform .2s, background .2s;
}
.aud:hover { transform: translateY(-3px); border-color: var(--sky); background: var(--sky-soft); }
.aud .ad { width: 38px; height: 38px; border-radius: 11px; background: var(--sky-soft); color: var(--sky); display: grid; place-items: center; flex: none; }
.aud:hover .ad { background: #fff; }
.aud .ad svg { width: 19px; height: 19px; }

/* Work / portfolio */
.work-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.work-thumb {
  height: 168px; position: relative; overflow: hidden;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg, color-mix(in oklch, var(--sky) 9%, white) 0 11px, color-mix(in oklch, var(--violet) 8%, white) 11px 22px);
  border-bottom: 1px solid var(--line);
}
.work-thumb .ph {
  font-family: ui-monospace, monospace; font-size: 12.5px; color: var(--ink-2);
  background: rgba(255,255,255,.78); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; backdrop-filter: blur(4px);
}
.work-thumb .badge {
  position: absolute; top: 14px; inset-inline-start: 14px;
  background: var(--navy-deep); color: #fff; font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
}
.work-body { padding: 20px 22px 22px; }
.work-body .kind { font-size: 12.5px; color: var(--sky); font-weight: 600; }
.work-body h3 { font-size: 18.5px; font-weight: 700; color: var(--ink); margin-top: 4px; }
.work-body p { margin-top: 8px; font-size: 14.5px; color: var(--muted); line-height: 1.8; }
.work-body .more {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 600; color: var(--navy);
}
.work-body .more svg { width: 16px; height: 16px; transition: transform .2s; }
[dir="rtl"] .work-card:hover .more svg { transform: translateX(-4px); }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--navy-deep); color: #fff;
  border-radius: var(--r-xl); padding: 56px 36px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .6;
  background:
    radial-gradient(600px 300px at 15% 0%, color-mix(in oklch, var(--sky) 42%, transparent), transparent 60%),
    radial-gradient(560px 320px at 90% 110%, color-mix(in oklch, var(--violet) 40%, transparent), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(26px, 4.6vw, 42px); font-weight: 700; line-height: 1.35; }
.cta-band p { margin-top: 14px; font-size: 18px; color: #c5cee6; max-width: 620px; margin-inline: auto; line-height: 1.9; }
.cta-band .hero-actions { justify-content: center; margin-top: 30px; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.qa { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.qa.open { border-color: color-mix(in oklch, var(--sky) 45%, var(--line)); box-shadow: var(--shadow); }
.qa-q {
  width: 100%; text-align: start; font: inherit; cursor: pointer;
  background: none; border: 0; padding: 20px 22px;
  display: flex; align-items: center; gap: 14px; color: var(--ink); font-weight: 600; font-size: 17px;
}
.qa-q .qi { width: 30px; height: 30px; border-radius: 9px; background: var(--sky-soft); color: var(--sky); display: grid; place-items: center; flex: none; transition: transform .3s var(--ease), background .2s, color .2s; }
.qa-q .qi svg { width: 17px; height: 17px; }
.qa.open .qi { background: var(--grad); color: #fff; transform: rotate(45deg); }
.qa-a { max-height: 0; overflow: hidden; transition: max-height .34s var(--ease); }
.qa-a div { padding: 0 22px 22px 66px; color: var(--muted); font-size: 15.5px; line-height: 1.9; }
[dir="rtl"] .qa-a div { padding: 0 66px 22px 22px; }

/* ===========================================================
   Footer
   =========================================================== */
.footer { background: var(--navy-deep); color: #c5cee6; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 38px; }
.footer .brand .name { color: #fff; }
.footer .brand .name span { color: #93a0c4; }
.footer .f-desc { margin-top: 16px; font-size: 15px; line-height: 1.9; max-width: 360px; color: #aab4d4; }
.footer h4 { color: #fff; font-size: 15.5px; font-weight: 700; margin-bottom: 16px; }
.footer .f-links { display: grid; gap: 11px; }
.footer .f-links a { font-size: 15px; color: #aab4d4; transition: color .2s, padding .2s; width: fit-content; }
.footer .f-links a:hover { color: #fff; padding-inline-start: 4px; }
.footer .f-contact { display: grid; gap: 13px; }
.footer .f-contact a { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: #aab4d4; transition: color .2s; }
.footer .f-contact a:hover { color: #fff; }
.footer .f-contact .ci { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; flex: none; }
.footer .f-contact .ci svg { width: 17px; height: 17px; color: #cfe0ff; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--grad); transform: translateY(-3px); border-color: transparent; }
.socials a svg { width: 19px; height: 19px; color: #fff; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: 13.5px; color: #8a96bb; }

/* ===========================================================
   Reveal animation
   =========================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal-on .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal-on .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .06s; } .reveal.d2 { transition-delay: .12s; }
  .reveal.d3 { transition-delay: .18s; } .reveal.d4 { transition-delay: .24s; }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (min-width: 600px) {
  .cols-2 { grid-template-columns: 1fr 1fr; }
  .cols-3 { grid-template-columns: 1fr 1fr; }
  .aud-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 54px; }
  .cols-3 { grid-template-columns: repeat(3,1fr); }
  .cols-4 { grid-template-columns: repeat(4,1fr); }
  .about-grid { grid-template-columns: 1.05fr .95fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .aud-grid { grid-template-columns: repeat(5,1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; }
  .section { padding: 92px 0; }
}
@media (min-width: 1100px) {
  .why .grid.cols-3 { grid-template-columns: repeat(3,1fr); }
}
