/* ── Reset & Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --primary:        #2E3192;  /* CTA buttons */
  --primary-hover:  #23256F;
  --primary-light:  #4548B5;  /* accents, icons, backgrounds */
  --primary-dim:    rgba(46,49,146,.12);
  --primary-border: rgba(46,49,146,.25);

  /* Slate scale */
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  /* Semantic */
  --text-body:    var(--slate-700);
  --text-muted:   var(--slate-500);
  --text-heading: var(--slate-900);
  --border:       var(--slate-200);
  --bg-card:      #fff;
  --bg-muted:     var(--slate-50);

  /* Hero */
  --hero-bg: linear-gradient(150deg, hsl(0,0%,17%) 0%, hsl(238,52%,20%) 55%, hsl(238,52%,30%) 100%);

  /* Focus */
  --focus-ring: 0 0 0 3px rgba(46,49,146,.45);

  /* Nav height — used for scroll-margin */
  --nav-h: 4rem;
}

/* ── Accessibility: reduced motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto !important; }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rubik', system-ui, -apple-system, sans-serif;
  background: var(--bg-muted);
  color: var(--text-body);
  direction: rtl;
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
img  { display: block; max-width: 100%; height: auto; }

/* ── Skip link ───────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  inset-inline-start: 1rem;
  background: var(--primary);
  color: #fff;
  padding: .6rem 1.25rem;
  border-radius: .5rem;
  font-weight: 700;
  z-index: 9999;
  transition: top .15s;
}
.skip-link:focus { top: 1rem; }

/* ── Focus visible ───────────────────────────────────────────────── */
:focus { outline: none; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 4px; }

/* ── Layout ──────────────────────────────────────────────────────── */
.container    { max-width: 1152px; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width:  896px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width:  672px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Scroll margin for anchors ───────────────────────────────────── */
[id] { scroll-margin-top: calc(var(--nav-h) + 1.5rem); }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: .875rem;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .12s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:active { transform: scale(.98); }

.btn-lg { padding: .9rem 2rem;   font-size: 1.0625rem; min-height: 52px; }
.btn-md { padding: .7rem 1.5rem; font-size: 1rem;      min-height: 46px; }
.btn-sm { padding: .45rem 1rem;  font-size: .875rem;   min-height: 38px; }

/* Primary CTA */
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(46,49,146,.3);
}
.btn-primary:hover  { background: var(--primary-hover); border-color: var(--primary-hover); box-shadow: 0 6px 20px rgba(46,49,146,.38); }
.btn-primary:focus-visible { box-shadow: var(--focus-ring); }

/* Ghost on dark */
.btn-ghost-white {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }
.btn-ghost-white:focus-visible { box-shadow: var(--focus-ring); }

/* Outline on light */
.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline:focus-visible { box-shadow: var(--focus-ring); }

/* Pill shape */
.btn-pill { border-radius: 9999px; }

/* Full width */
.btn-block { width: 100%; }

/* ── Badges ──────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: .3rem 1rem;
  border-radius: 9999px;
  font-size: .8125rem;
  font-weight: 600;
  border: 1px solid;
  line-height: 1.4;
}
.badge-primary  { background: var(--primary-dim);           color: var(--primary-light);     border-color: var(--primary-border); }
.badge-white    { background: rgba(255,255,255,.12);        color: rgba(255,255,255,.9);     border-color: rgba(255,255,255,.22); }
.badge-neutral  { background: var(--slate-100);             color: var(--slate-600);         border-color: var(--slate-200); }
.badge-amber    { background: #fef3c7; color: #92400e; border-color: #fcd34d; font-weight: 700; }

/* ── SVG icon helpers ────────────────────────────────────────────── */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ── Section shared ──────────────────────────────────────────────── */
.section        { padding: 5.5rem 1.5rem; }
.section-white  { background: #fff; }
.section-muted  { background: var(--slate-50); }
.section-dark   { background: var(--slate-900); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .badge { margin-bottom: .875rem; }
.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--text-heading);
  margin-top: .75rem;
}
.section-dark .section-header h2 { color: #fff; }
.section-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 40rem;
  margin: 1rem auto 0;
  line-height: 1.7;
}
.section-dark .section-header p { color: rgba(255,255,255,.55); }

/* card icon */
.card-icon {
  width: 3rem; height: 3rem;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card-icon svg { width: 1.375rem; height: 1.375rem; }
.card-icon-green  { background: var(--primary-dim); color: var(--primary-light); }
.card-icon-slate  { background: var(--slate-100);   color: var(--slate-600); }
.card-icon-amber  { background: #fef3c7;             color: #d97706; }
.card-icon-blue   { background: #eff6ff;             color: #3b82f6; }

/* ════════════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 2rem; height: 2rem;
  border-radius: .5rem;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-text {
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -.03em;
  color: #fff;
  transition: color .25s;
}
#navbar.scrolled .nav-logo-text { color: var(--slate-900); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: .4rem .75rem;
  border-radius: .5rem;
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }
#navbar.scrolled .nav-link { color: var(--slate-600); }
#navbar.scrolled .nav-link:hover { color: var(--slate-900); background: var(--slate-100); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

/* Hamburger — mobile only */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: .5rem;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
#navbar.scrolled .nav-hamburger { color: var(--slate-700); }
.nav-hamburger:focus-visible { box-shadow: var(--focus-ring); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  background: #fff;
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 199;
  flex-direction: column;
  gap: .25rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-link {
  display: block;
  color: var(--slate-700);
  font-size: 1rem;
  padding: .65rem .75rem;
}
.nav-drawer .nav-link:hover { color: var(--slate-900); background: var(--slate-100); }
.nav-drawer-divider { height: 1px; background: var(--slate-100); margin: .5rem 0; }
.nav-drawer .btn { width: 100%; margin-top: .25rem; }

/* ════════════════════════════════════════════════════════════════════
   HERO — two-column desktop
════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
}

/* Subtle blob — single, lower opacity */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .55;
}
.hero-blob-1 { top: 10%; inset-inline-end: 5%;  width: 28rem; height: 28rem; background: rgba(46,49,146,.18); }
.hero-blob-2 { bottom: 5%; inset-inline-start: 0%; width: 20rem; height: 20rem; background: rgba(99,102,241,.12); }

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1152px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Text side (right in RTL) */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.625rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.72);
  line-height: 1.72;
  max-width: 34rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
}

.hero-note {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  padding-top: .25rem;
}
.hero-trust li { display: flex; align-items: center; gap: .4rem; }
.hero-trust .check { color: var(--primary-light); font-weight: 700; }

/* Screenshot side */
.hero-visual { position: relative; }

.browser-frame {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
  background: var(--slate-800);
}
.browser-bar {
  background: var(--slate-900);
  padding: .6rem .875rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.browser-dots { display: flex; gap: .375rem; }
.browser-dot  { width: .625rem; height: .625rem; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,.07);
  border-radius: .375rem;
  height: 1.5rem;
  margin: 0 .5rem;
}

/* Screenshot placeholder inside browser */
.screenshot-placeholder {
  aspect-ratio: 16 / 10;
  background: var(--slate-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 2rem;
}
.screenshot-placeholder .ph-icon {
  width: 3rem; height: 3rem;
  border-radius: .875rem;
  background: var(--primary-dim);
  display: flex; align-items: center; justify-content: center;
}
.screenshot-placeholder .ph-label { color: var(--slate-400); font-size: .875rem; font-weight: 500; }
.screenshot-placeholder .ph-note  { color: var(--slate-600); font-size: .75rem; }

/* Standalone screenshot frame (reused in features) */
.ss-frame {
  border-radius: .875rem;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  background: var(--slate-50);
}
.ss-frame .screenshot-placeholder {
  background: var(--slate-100);
  aspect-ratio: 4 / 3;
}
.ss-frame .ph-icon { background: var(--primary-dim); }
.ss-frame .ph-label { color: var(--slate-500); }
.ss-frame .ph-note  { color: var(--slate-400); }

/* ════════════════════════════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════════════════════════ */
.stats-bar {
  background: #fff;
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  divide-x: 1px solid var(--border);
}
.stat-item { padding: 0 1rem; }
.stat-item + .stat-item { border-inline-start: 1px solid var(--border); }
.stat-num   { font-size: 1.625rem; font-weight: 900; color: var(--primary); line-height: 1.2; }
.stat-label { font-size: .9375rem; color: var(--text-muted); margin-top: .3rem; line-height: 1.4; }

/* ════════════════════════════════════════════════════════════════════
   PROBLEMS
════════════════════════════════════════════════════════════════════ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.problem-card {
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.problem-card .card-icon { background: #fee2e2; color: #dc2626; }
.problem-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-heading); line-height: 1.3; }
.problem-card p  { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════════════════ */
.steps-row {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
}
/* Horizontal connector line */
.steps-row::before {
  content: '';
  position: absolute;
  top: 1.5rem;               /* center of step number */
  inset-inline-start: 2.5rem;
  inset-inline-end: 2.5rem;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.step-num {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--primary-border);
}
.step-title { font-size: 1.0625rem; font-weight: 700; color: var(--text-heading); }
.step-desc  { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }

.how-visual-placeholder {
  margin-top: 3.5rem;
  aspect-ratio: 16 / 6;
  background: var(--slate-100);
  border-radius: 1rem;
  border: 2px dashed var(--slate-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--slate-400);
  font-size: .9375rem;
}

/* ════════════════════════════════════════════════════════════════════
   FEATURES — alternating layout
════════════════════════════════════════════════════════════════════ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-block:first-child { padding-top: 0; }
.feature-block:last-child  { border-bottom: none; padding-bottom: 0; }

/* Alternate: image left, text right */
.feature-block.reverse .feature-text  { order: 2; }
.feature-block.reverse .feature-image { order: 1; }

.feature-tag   { font-size: .8125rem; font-weight: 700; color: var(--primary-light); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .625rem; }
.feature-block h3 {
  font-size: clamp(1.3125rem, 2.5vw, 1.625rem);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.22;
  margin-bottom: 1rem;
}
.feature-block > .feature-text > p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.55;
}
.feature-list .fi { color: var(--primary-light); flex-shrink: 0; margin-top: .15rem; }

/* Supplementary features compact grid */
.sup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}
.sup-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: .875rem;
  padding: 1.25rem 1.375rem;
  display: flex;
  gap: .875rem;
  align-items: flex-start;
}
.sup-card .card-icon { width: 2.25rem; height: 2.25rem; flex-shrink: 0; }
.sup-card .card-icon svg { width: 1.125rem; height: 1.125rem; }
.sup-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: .2rem; }
.sup-card p  { font-size: .9375rem; color: var(--text-muted); line-height: 1.55; }

/* ════════════════════════════════════════════════════════════════════
   SCREENSHOTS GALLERY
════════════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-item figure { display: flex; flex-direction: column; gap: .75rem; }
.gallery-frame {
  aspect-ratio: 4 / 3;
  border-radius: .875rem;
  overflow: hidden;
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .625rem;
}
.gallery-frame img { width: 100%; height: 100%; object-fit: cover; }
.gallery-frame .ph-icon { background: rgba(46,49,146,.18); }
.gallery-frame .ph-label { color: var(--slate-400); font-size: .875rem; font-weight: 500; }
.gallery-item figcaption {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-align: center;
}

/* ════════════════════════════════════════════════════════════════════
   ONBOARDING
════════════════════════════════════════════════════════════════════ */
.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: ob-step;
}
.ob-step {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  position: relative;
}
.ob-num {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--primary-dim);
  color: var(--primary-light);
  font-size: 1.125rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ob-step h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-heading); line-height: 1.3; }
.ob-step p  { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════════════════════ */
.pricing-single {
  max-width: 28rem;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.pricing-header h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-muted); margin-bottom: .375rem; }
.pricing-price-row { display: flex; align-items: flex-end; gap: .25rem; }
.pricing-amount { font-size: 3.25rem; font-weight: 900; color: var(--text-heading); line-height: 1; }
.pricing-per { font-size: .9375rem; color: var(--text-muted); padding-bottom: .3rem; }
.pricing-agents { font-size: 1rem; color: var(--text-muted); margin-top: .625rem; line-height: 1.55; }

.pricing-features { display: flex; flex-direction: column; gap: .75rem; }
.pricing-feature  { display: flex; align-items: flex-start; gap: .625rem; font-size: 1rem; color: var(--slate-700); line-height: 1.55; }
.pricing-check    { color: var(--primary-light); flex-shrink: 0; margin-top: .1rem; font-weight: 900; }
.pricing-note     { text-align: center; color: var(--text-muted); font-size: .9375rem; margin-top: 1.5rem; }

/* ════════════════════════════════════════════════════════════════════
   TRUST
════════════════════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.trust-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--text-heading); }
.trust-card p  { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }

/* Testimonial slot (hidden until real content) */
.testimonial-placeholder {
  margin-top: 2.5rem;
  background: var(--slate-50);
  border: 2px dashed var(--slate-200);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--slate-400);
  font-size: .9375rem;
}

/* ════════════════════════════════════════════════════════════════════
   FAQ ACCORDION
════════════════════════════════════════════════════════════════════ */
.faq-list { max-width: 48rem; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-heading);
  text-align: start;
  gap: 1rem;
  line-height: 1.4;
}
.faq-trigger:focus-visible { box-shadow: var(--focus-ring); border-radius: 4px; }
.faq-trigger:hover { color: var(--primary); }

.faq-chevron {
  flex-shrink: 0;
  width: 1.25rem; height: 1.25rem;
  transition: transform .25s;
  color: var(--text-muted);
}
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-trigger[aria-expanded="true"] { color: var(--primary); }

.faq-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.faq-panel-inner {
  padding: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════════
   CONTACT / CTA
════════════════════════════════════════════════════════════════════ */
.contact-section {
  padding: 5.5rem 1.5rem;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}
.contact-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .4;
}
.contact-blob-1 { top: -10%; inset-inline-end: 10%; width: 24rem; height: 24rem; background: rgba(46,49,146,.2); }
.contact-blob-2 { bottom: -10%; inset-inline-start: 5%; width: 18rem; height: 18rem; background: rgba(99,102,241,.15); }

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-intro h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.contact-intro > p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-channels { display: flex; flex-direction: column; gap: .875rem; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1.125rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .875rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  transition: background .2s;
  text-decoration: none;
}
.contact-channel:hover { background: rgba(255,255,255,.14); }
.contact-channel:focus-visible { box-shadow: var(--focus-ring); }
.contact-channel svg { flex-shrink: 0; }

/* Form card */
.contact-form-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
}

/* Form fields */
.form-field { margin-bottom: 1.125rem; }
.form-field label {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: .375rem;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: .625rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-heading);
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  direction: rtl;
  min-height: 46px;
}
.form-field input::placeholder { color: var(--slate-400); }
.form-field input:focus,
.form-field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(46,49,146,.18); }
.form-field .field-error {
  display: none;
  font-size: .875rem;
  color: #dc2626;
  margin-top: .3rem;
}
.form-field.invalid input  { border-color: #dc2626; }
.form-field.invalid select { border-color: #dc2626; }
.form-field.invalid .field-error { display: block; }

.form-submit { margin-top: .5rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: .875rem;
  color: #166534;
  font-weight: 600;
  font-size: 1rem;
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--slate-950);
  color: var(--slate-500);
  padding: 2rem 1.5rem;
  font-size: .9375rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.footer-logo { display: flex; align-items: center; gap: .5rem; }
.footer-logo-icon {
  width: 1.5rem; height: 1.5rem;
  background: var(--primary);
  border-radius: .375rem;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-text { font-weight: 700; color: #cbd5e1; }
.footer-sep { color: #1e293b; }
footer a { color: var(--slate-400); transition: color .18s; }
footer a:hover { color: var(--slate-300); }
footer a:focus-visible { box-shadow: var(--focus-ring); border-radius: 2px; }

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — tablet (768–1023)
════════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .nav-links  { display: none; }
  .nav-actions .btn-primary { display: none; } /* show only in drawer on tablet */
  .nav-hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-text { align-items: center; text-align: center; }
  .hero h1   { font-size: clamp(2rem, 5vw, 2.75rem); }
  .hero-sub  { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  /* Visual comes after text on tablet too */
  .hero-visual { order: 2; }

  .feature-block         { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .feature-block.reverse .feature-text  { order: unset; }
  .feature-block.reverse .feature-image { order: unset; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:last-child { grid-column: 1 / -1; max-width: 28rem; margin: 0 auto; width: 100%; }

  .onboarding-steps { grid-template-columns: repeat(2, 1fr); }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-card:last-child { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-intro { text-align: center; }
  .contact-channels { max-width: 28rem; margin: 0 auto; }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — mobile (< 640px)
════════════════════════════════════════════════════════════════════ */
@media (max-width: 639px) {
  .section { padding: 3.5rem 1.25rem; }
  .hero { padding: calc(var(--nav-h) + 2rem) 1.25rem 3rem; min-height: auto; }
  .hero h1 { font-size: clamp(1.875rem, 8vw, 2.25rem); }
  .hero-btns  { flex-direction: column; }
  .hero-btns .btn { width: 100%; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item { border-inline-start: none; }
  .stat-item:nth-child(odd)  { border-inline-end: 1px solid var(--border); }
  .stat-item:nth-child(n+3)  { border-top: 1px solid var(--border); }

  .steps-row        { flex-direction: column; gap: 1.5rem; }
  .steps-row::before { display: none; }
  .step             { align-items: flex-start; text-align: start; flex-direction: row; }
  .step-body        { display: flex; flex-direction: column; gap: .375rem; }

  .gallery-grid     { grid-template-columns: 1fr; }
  .gallery-item:last-child { grid-column: auto; max-width: 100%; }

  .onboarding-steps { grid-template-columns: 1fr; }
  .trust-grid       { grid-template-columns: 1fr; }
  .trust-card:last-child { grid-column: auto; }

  .sup-grid         { grid-template-columns: 1fr; }

  .contact-form-card { padding: 1.5rem; }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — small mobile (< 390px)
════════════════════════════════════════════════════════════════════ */
@media (max-width: 389px) {
  .hero h1 { font-size: 1.75rem; }
  .btn-lg  { font-size: .9375rem; padding: .8rem 1.5rem; }
}
