/* =====================================================================
   DirectWoo — marketing site
   Arabic-first (RTL) · Cairo · brand blue #2563eb · WhatsApp green #25d366
   Built with CSS logical properties so one sheet serves RTL + LTR.
   ===================================================================== */

:root {
  /* Brand palette (from the DirectWoo charte graphique) */
  --brand:      #2563eb;   /* bleu de marque  */
  --brand-2:    #2f6bff;   /* bleu du logo    */
  --brand-700:  #1d4fd0;
  --brand-50:   #eef3ff;
  --ink:        #18181b;   /* encre / texte   */
  --ink-2:      #3f3f46;
  --muted:      #71717a;
  --wa:         #25d366;   /* vert whatsapp   */
  --wa-700:     #18a849;
  --bg:         #ffffff;   /* fond            */
  --surface:    #f4f4f5;   /* surface         */
  --border:     #e4e4e7;   /* bordure         */
  --danger:     #ef4444;   /* erreur          */
  --navy:       #0a1124;   /* deep section bg */
  --navy-2:     #0f1a38;

  --radius:     0.75rem;
  --radius-lg:  1.25rem;
  --radius-sm:  0.5rem;

  --shadow-sm:  0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.10);
  --shadow-md:  0 8px 24px -6px rgba(16,24,40,.16), 0 2px 6px rgba(16,24,40,.08);
  --shadow-lg:  0 28px 60px -18px rgba(16,24,40,.30);
  --shadow-blue:0 24px 50px -16px rgba(37,99,235,.45);

  --container: 1200px;
  --header-h: 72px;

  --font: 'Cairo', system-ui, -apple-system, 'Segoe UI', Tahoma, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* numbers align in tables / stats */
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-50);
  border: 1px solid #dbe5ff;
  padding: 6px 14px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(37,99,235,.18); }

h1, h2, h3 { line-height: 1.18; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.h-display { font-size: clamp(34px, 5.4vw, 60px); font-weight: 800; line-height: 1.12; }
.h-section { font-size: clamp(28px, 4vw, 44px); }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); font-weight: 500; }
.muted { color: var(--muted); }
.grad-text { color: var(--brand); background: linear-gradient(100deg, var(--brand-2), #7aa2ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.section-head { max-width: 720px; margin-inline: auto; margin-bottom: 56px; }
.section-head .h-section { margin-block: 16px 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 16px;
  padding: 14px 26px; border-radius: var(--radius);
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { width: 20px; height: 20px; }
.btn--brand { background: var(--brand); color: #fff; box-shadow: var(--shadow-blue); }
.btn--brand:hover { background: var(--brand-700); transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #06321a; box-shadow: 0 18px 40px -14px rgba(37,211,102,.6); }
.btn--wa:hover { background: var(--wa-700); color:#fff; transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--light { background: rgba(255,255,255,.12); color:#fff; border:1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.2); }
.btn--lg { padding: 17px 34px; font-size: 17px; }
.btn--block { width: 100%; }

/* ===================================================================
   Announcement + Header
   =================================================================== */
.topbar {
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  color: #fff; font-size: 14px; font-weight: 700;
  text-align: center; padding: 9px 16px;
}
.topbar a { text-decoration: underline; text-underline-offset: 3px; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.is-stuck { border-color: var(--border); box-shadow: 0 6px 20px -12px rgba(16,24,40,.18); }
.nav { height: var(--header-h); display: flex; align-items: center; gap: 28px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.wordmark { font-family: 'Baloo 2', var(--font); font-weight: 800; font-size: 26px; line-height: 1; letter-spacing: -.01em; display: inline-flex; direction: ltr; }
.wordmark .w-d { color: var(--ink); }
.wordmark .w-w { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: 4px; margin-inline-start: 12px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-weight: 700; font-size: 15.5px; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--surface); color: var(--ink); }
.nav-right { margin-inline-start: auto; display: flex; align-items: center; gap: 12px; }

/* language toggle */
.lang {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); border-radius: 999px; padding: 5px;
  background: #fff;
}
.lang button {
  font-weight: 800; font-size: 13.5px; color: var(--muted);
  padding: 5px 13px; border-radius: 999px; transition: .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.lang button.active { background: var(--ink); color: #fff; }
.lang svg { width: 15px; height: 15px; }

.menu-btn { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--border); align-items: center; justify-content: center; }
.menu-btn svg { width: 22px; height: 22px; }

/* ===================================================================
   Hero
   =================================================================== */
.hero { position: relative; padding-block: clamp(48px, 7vw, 96px) clamp(56px, 8vw, 110px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset-block-start: -180px; inset-inline-end: -160px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(47,107,255,.20), rgba(47,107,255,0) 68%);
  filter: blur(6px); z-index: -1;
}
.hero::after {
  content: ""; position: absolute; inset-block-end: -200px; inset-inline-start: -160px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(37,211,102,.14), rgba(37,211,102,0) 70%);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-block: 20px 18px; }
.hero .lead { max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-block: 30px 22px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; color: var(--muted); font-size: 14.5px; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--wa-700); }

.hero-rating { display: flex; align-items: center; gap: 12px; margin-block-end: 22px; }
.stars { display: inline-flex; gap: 2px; color: #f5a623; }
.stars svg { width: 18px; height: 18px; }
.hero-rating b { font-weight: 800; }
.hero-rating small { color: var(--muted); font-weight: 700; }

/* ---- hero visual: stacked product mockups ---- */
.hero-visual { position: relative; }
.hero-photo {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); aspect-ratio: 16/10; object-fit: cover; background: var(--surface);
}

/* ===================================================================
   Device mockups (pure CSS) — used in hero + feature tabs
   =================================================================== */
.browser {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 7px; padding: 12px 16px;
  background: #f7f7f8; border-bottom: 1px solid var(--border);
}
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #dcdce0; }
.browser-bar i:nth-child(1){ background:#ff5f57; } .browser-bar i:nth-child(2){ background:#febc2e; } .browser-bar i:nth-child(3){ background:#28c840; }
.browser-url {
  margin-inline-start: 12px; flex: 1; background:#fff; border:1px solid var(--border);
  border-radius: 7px; padding: 5px 12px; font-size: 12.5px; color: var(--muted); font-weight:700;
  display:flex; align-items:center; gap:7px;
}
.browser-url svg { width: 13px; height: 13px; color: var(--wa-700); }
.browser-body { padding: 18px; }

/* phone */
.phone {
  width: 270px; background: #0b0b0f; border-radius: 34px; padding: 9px;
  box-shadow: var(--shadow-lg); border: 1px solid #26262c;
}
.phone-screen { background:#fff; border-radius: 26px; overflow: hidden; }
.phone-notch { height: 26px; display:flex; justify-content:center; }
.phone-notch::before { content:""; width: 110px; height: 18px; background:#0b0b0f; border-radius: 0 0 14px 14px; }

/* the COD order-form mock (the product itself) */
.codform { padding: 16px; }
.codform .pp { display:flex; gap:12px; align-items:center; margin-bottom: 14px; }
.codform .pp-img { width:58px; height:58px; border-radius:10px; background:linear-gradient(135deg,#dbe5ff,#c9d8ff); flex:none; display:grid; place-items:center; color:var(--brand); }
.codform .pp-img svg{ width:26px;height:26px;}
.codform .pp-t { font-weight:800; font-size:15px; }
.codform .pp-price { color:var(--brand); font-weight:900; }
.codform .pp-price del { color:var(--muted); font-weight:600; font-size:13px; margin-inline-start:6px;}

.offers { display:grid; gap:8px; margin-bottom:14px; }
.offer { border:1.5px solid var(--border); border-radius:10px; padding:10px 12px; display:flex; align-items:center; justify-content:space-between; font-weight:700; font-size:13.5px; transition:.15s; }
.offer .badge { background:var(--surface); color:var(--ink-2); font-size:11px; font-weight:800; padding:2px 8px; border-radius:999px; }
.offer.sel { border-color:var(--brand); background:var(--brand-50); }
.offer.sel .badge { background:var(--brand); color:#fff; }

.fld { margin-bottom:9px; }
.fld label { display:block; font-size:12px; font-weight:800; color:var(--ink-2); margin-bottom:4px; }
.fld .inp {
  height:38px; border:1.5px solid var(--border); border-radius:9px; background:#fff;
  display:flex; align-items:center; padding-inline:11px; font-size:13px; color:var(--ink); font-weight:600;
  position: relative; overflow:hidden;
}
.fld .inp.typing::after { content:""; width:2px; height:16px; background:var(--brand); animation: blink 1s step-end infinite; margin-inline-start:2px; }
.fld-row { display:flex; gap:8px; } .fld-row .fld { flex:1; }
@keyframes blink { 50% { opacity:0; } }

.cod-cta { height:46px; border-radius:11px; background:var(--brand); color:#fff; font-weight:900; font-size:15px; display:flex; align-items:center; justify-content:center; gap:8px; box-shadow:var(--shadow-blue); }
.cod-cta svg{ width:18px;height:18px;}
.cod-wa { height:42px; margin-top:8px; border-radius:11px; background:var(--wa); color:#06321a; font-weight:800; font-size:13.5px; display:flex; align-items:center; justify-content:center; gap:7px; }
.cod-wa svg{ width:17px; height:17px;}

/* success toast that animates over the form */
.cod-success {
  position:absolute; inset-inline:14px; inset-block-end:14px;
  background:#0f9d58; color:#fff; border-radius:12px; padding:12px 14px;
  display:flex; align-items:center; gap:10px; font-weight:800; font-size:13.5px;
  box-shadow:0 16px 30px -10px rgba(15,157,88,.6);
  transform: translateY(140%); opacity:0; transition: transform .5s cubic-bezier(.2,.9,.3,1), opacity .4s;
}
.cod-success.show { transform: translateY(0); opacity:1; }
.cod-success svg { width:22px; height:22px; }

/* floating mini stat cards near hero phone */
.float-card {
  position:absolute; background:#fff; border:1px solid var(--border); border-radius:14px;
  box-shadow: var(--shadow-md); padding:12px 14px; display:flex; align-items:center; gap:10px;
  font-weight:800; font-size:13px;
}
.float-card .ic { width:36px; height:36px; border-radius:10px; display:grid; place-items:center; flex:none; }
.float-card small { display:block; color:var(--muted); font-weight:700; font-size:11px; }
.float-card .big { font-size:18px; font-weight:900; }
.fc-1 { inset-block-start: 6%; inset-inline-start: -28px; animation: floaty 5s ease-in-out infinite; }
.fc-2 { inset-block-end: 8%; inset-inline-end: -24px; animation: floaty 6s ease-in-out infinite .6s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* ===================================================================
   Logos strip
   =================================================================== */
.logos { border-block: 1px solid var(--border); background: #fcfcfd; }
.logos .container { display:flex; flex-direction:column; gap:22px; align-items:center; }
.logos p { color: var(--muted); font-weight: 800; font-size: 13.5px; letter-spacing:.04em; text-transform: uppercase; }
.logo-row { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 18px 44px; }
.logo-row .lg { display:inline-flex; align-items:center; gap:9px; font-weight:800; color:#52525b; font-size:18px; opacity:.85; transition:.2s; }
.logo-row .lg:hover { opacity:1; color:var(--ink); }
.logo-row .lg svg { width:26px; height:26px; }

/* ===================================================================
   Feature tabs
   =================================================================== */
.tabs { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom: 40px; }
.tab {
  display:inline-flex; align-items:center; gap:9px; padding:11px 18px; border-radius:999px;
  border:1.5px solid var(--border); background:#fff; font-weight:800; font-size:14.5px; color:var(--ink-2);
  transition:.18s;
}
.tab svg { width:18px; height:18px; }
.tab:hover { border-color:#c9d8ff; color:var(--ink); }
.tab.active { background:var(--brand); border-color:var(--brand); color:#fff; box-shadow:var(--shadow-blue); }

.tab-panels { position:relative; }
.panel { display:none; }
.panel.active { display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:center; animation: fade .4s ease; }
@keyframes fade { from{ opacity:0; transform: translateY(10px);} to{ opacity:1; transform:none;} }
.panel h3 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom:14px; }
.panel .feat-list { display:grid; gap:14px; margin-block:22px; }
.panel .feat-list li { display:flex; gap:12px; align-items:flex-start; font-weight:600; color:var(--ink-2); }
.panel .feat-list .ck { width:26px; height:26px; border-radius:8px; background:var(--brand-50); color:var(--brand); display:grid; place-items:center; flex:none; }
.panel .feat-list .ck svg { width:15px; height:15px; }
.panel-visual { display:flex; justify-content:center; }

/* dashboard mock */
.dash { width:100%; }
.dash-kpis { display:grid; grid-template-columns: repeat(3,1fr); gap:12px; margin-bottom:14px; }
.kpi { background:#fff; border:1px solid var(--border); border-radius:12px; padding:13px; }
.kpi small { color:var(--muted); font-weight:800; font-size:11.5px; }
.kpi .v { font-size:22px; font-weight:900; letter-spacing:-.02em; }
.kpi .up { color:var(--wa-700); font-size:11.5px; font-weight:800; }
.chart { background:#fff; border:1px solid var(--border); border-radius:12px; padding:14px; }
.chart .bars { display:flex; align-items:flex-end; gap:9px; height:104px; margin-top:10px; }
.chart .bars i { flex:1; background:linear-gradient(180deg, var(--brand-2), var(--brand)); border-radius:6px 6px 0 0; transition: height .8s cubic-bezier(.2,.8,.2,1); }
.chart .ch-title { font-weight:800; font-size:13px; }

/* leads table mock */
.leads { width:100%; background:#fff; border:1px solid var(--border); border-radius:12px; overflow:hidden; }
.leads .lr { display:grid; grid-template-columns: 1.4fr 1fr auto; gap:10px; padding:12px 14px; border-bottom:1px solid var(--border); align-items:center; font-size:13px; }
.leads .lr:last-child{ border-bottom:none; }
.leads .lr.h { background:var(--surface); font-weight:800; color:var(--ink-2); font-size:11.5px; text-transform:uppercase; letter-spacing:.03em; }
.leads .nm { font-weight:800; } .leads .ph { color:var(--muted); font-weight:700; }
.tag { font-size:11px; font-weight:800; padding:3px 9px; border-radius:999px; }
.tag.new { background:#dbeafe; color:#1e40af; } .tag.ok { background:#dcfce7; color:#15803d; } .tag.ab { background:#fee2e2; color:#b91c1c; }

/* ===================================================================
   Tools / capability grid
   =================================================================== */
.grid-cards { display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; }
.fcard {
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color:#cdd9f7; }
.fcard .ic { width:52px; height:52px; border-radius:14px; display:grid; place-items:center; margin-bottom:18px; }
.fcard .ic svg { width:26px; height:26px; }
.fcard h3 { font-size: 20px; margin-bottom:9px; }
.fcard p { color: var(--ink-2); font-weight:500; font-size:15.5px; }
.ic-blue { background:var(--brand-50); color:var(--brand); }
.ic-green { background:#dcfce7; color:var(--wa-700); }
.ic-amber { background:#fef3c7; color:#b45309; }
.ic-violet{ background:#ede9fe; color:#6d28d9; }
.ic-rose  { background:#ffe4e6; color:#be123c; }
.ic-cyan  { background:#cffafe; color:#0e7490; }

/* ===================================================================
   Stats band
   =================================================================== */
.stats { background: linear-gradient(120deg, var(--brand), var(--brand-2)); color:#fff; }
.stats .grid { display:grid; grid-template-columns: repeat(4,1fr); gap:24px; text-align:center; }
.stat .n { font-size: clamp(34px, 4vw, 52px); font-weight:900; letter-spacing:-.02em; line-height:1; }
.stat p { font-weight:700; opacity:.9; margin-top:8px; font-size:15px; }

/* ===================================================================
   Security section (dark)
   =================================================================== */
.dark { background: radial-gradient(120% 120% at 80% 0%, var(--navy-2), var(--navy)); color:#e8ecf6; }
.dark .h-section, .dark h3 { color:#fff; }
.dark .lead { color:#aeb8d4; }
.dark .eyebrow { background: rgba(47,107,255,.16); border-color: rgba(47,107,255,.35); color:#9bb6ff; }
.sec-grid { display:grid; grid-template-columns: .95fr 1.05fr; gap:56px; align-items:center; }
.shield-list { display:grid; gap:16px; }
.shield {
  display:flex; gap:14px; align-items:flex-start; padding:16px 18px;
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09); border-radius:14px;
  transition:.2s;
}
.shield:hover { background: rgba(255,255,255,.07); border-color: rgba(47,107,255,.4); }
.shield .ic { width:42px; height:42px; border-radius:11px; background: rgba(47,107,255,.18); color:#9bb6ff; display:grid; place-items:center; flex:none; }
.shield .ic svg { width:21px; height:21px; }
.shield h4 { font-size:16.5px; color:#fff; font-weight:800; margin-bottom:3px; }
.shield p { color:#9aa6c4; font-size:14px; font-weight:500; }
.lock-visual {
  background: linear-gradient(160deg, rgba(47,107,255,.18), rgba(37,211,102,.10));
  border:1px solid rgba(255,255,255,.12); border-radius:var(--radius-lg); padding:34px;
  display:grid; place-items:center; min-height:340px;
}
.lock-ring { width:150px; height:150px; border-radius:50%; border:2px dashed rgba(155,182,255,.5); display:grid; place-items:center; position:relative; animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg);} }
.lock-core { width:96px; height:96px; border-radius:26px; background: linear-gradient(150deg, var(--brand-2), var(--brand-700)); display:grid; place-items:center; color:#fff; box-shadow: var(--shadow-blue); animation: spin 18s linear infinite reverse; }
.lock-core svg { width:44px; height:44px; }

/* ===================================================================
   Testimonials
   =================================================================== */
.tgrid { display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.tcard { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:26px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; gap:16px; }
.tcard .stars svg { width:16px; height:16px; }
.tcard p { color:var(--ink-2); font-weight:600; font-size:15.5px; flex:1; }
.tcard .who { display:flex; align-items:center; gap:12px; }
.tcard .av { width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,var(--brand-2),var(--brand-700)); color:#fff; display:grid; place-items:center; font-weight:900; }
.tcard .who b { font-weight:800; display:block; font-size:15px; }
.tcard .who small { color:var(--muted); font-weight:700; }

/* ===================================================================
   Comparison
   =================================================================== */
.cmp { overflow:hidden; border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-md); }
.cmp table { width:100%; border-collapse:collapse; }
.cmp th, .cmp td { padding:16px 20px; text-align:start; border-bottom:1px solid var(--border); font-size:15.5px; }
.cmp thead th { background:var(--surface); font-weight:800; font-size:14px; }
.cmp thead th.us { background:var(--brand); color:#fff; }
.cmp tbody td { font-weight:600; color:var(--ink-2); }
.cmp tbody td.feat { font-weight:800; color:var(--ink); }
.cmp td.us { background:var(--brand-50); }
.cmp tbody tr:last-child td { border-bottom:none; }
.yes { color:var(--wa-700); font-weight:900; display:inline-flex; align-items:center; gap:6px; }
.no  { color:#b6b6bd; font-weight:800; }
.cmp svg { width:18px; height:18px; }

/* ===================================================================
   Pricing
   =================================================================== */
.price-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:24px; align-items:stretch; }
.plan {
  background:#fff; border:1.5px solid var(--border); border-radius:var(--radius-lg); padding:30px;
  display:flex; flex-direction:column; gap:18px; position:relative; transition: transform .25s, box-shadow .25s;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan.feat { border-color: var(--brand); box-shadow: var(--shadow-blue); transform: scale(1.03); }
.plan.feat:hover { transform: scale(1.03) translateY(-6px); }
.plan .ribbon { position:absolute; inset-block-start:-13px; inset-inline-start:50%; transform:translateX(-50%); background:var(--brand); color:#fff; font-weight:800; font-size:12.5px; padding:5px 16px; border-radius:999px; box-shadow:var(--shadow-blue); white-space:nowrap; }
html[dir="rtl"] .plan .ribbon { transform: translateX(50%); }
.plan .pname { font-weight:800; font-size:18px; }
.plan .pdesc { color:var(--muted); font-size:14px; font-weight:600; margin-top:-10px; }
.plan .amt { display:flex; align-items:flex-end; gap:6px; }
.plan .amt .cur { font-size:22px; font-weight:800; color:var(--ink-2); }
.plan .amt .num { font-size:50px; font-weight:900; line-height:1; letter-spacing:-.03em; }
.plan .amt .per { color:var(--muted); font-weight:700; font-size:14px; margin-bottom:8px; }
.plan ul { display:grid; gap:11px; }
.plan ul li { display:flex; gap:10px; align-items:flex-start; font-weight:600; font-size:15px; color:var(--ink-2); }
.plan ul .ck { color:var(--wa-700); flex:none; } .plan ul .ck svg { width:19px; height:19px; }
.plan ul .x { color:#c4c4cc; }
.plan .btn { margin-top:auto; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { max-width:820px; margin-inline:auto; display:grid; gap:12px; }
.qa { border:1px solid var(--border); border-radius:var(--radius); background:#fff; overflow:hidden; }
.qa.open { border-color:var(--brand); box-shadow:var(--shadow-sm); }
.qa .q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 22px; font-weight:800; font-size:16.5px; text-align:start; }
.qa .q .ic { width:28px; height:28px; border-radius:8px; background:var(--surface); display:grid; place-items:center; flex:none; transition:.25s; }
.qa.open .q .ic { background:var(--brand); color:#fff; transform: rotate(45deg); }
.qa .q .ic svg { width:17px; height:17px; }
.qa .a { max-height:0; overflow:hidden; transition: max-height .3s ease; }
.qa .a p { padding: 0 22px 20px; color:var(--ink-2); font-weight:500; }

/* ===================================================================
   CTA band + Footer
   =================================================================== */
.cta-band { position:relative; overflow:hidden; }
.cta-box {
  background: radial-gradient(120% 140% at 0% 0%, var(--brand-2), var(--brand-700));
  color:#fff; border-radius: 28px; padding: clamp(40px,6vw,72px); text-align:center; position:relative; overflow:hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before { content:""; position:absolute; inset-block-start:-80px; inset-inline-end:-40px; width:300px; height:300px; border-radius:50%; background:rgba(255,255,255,.12); }
.cta-box::after  { content:""; position:absolute; inset-block-end:-100px; inset-inline-start:-40px; width:280px; height:280px; border-radius:50%; background:rgba(37,211,102,.18); }
.cta-box h2 { color:#fff; font-size: clamp(28px,4vw,44px); margin-bottom:14px; position:relative; }
.cta-box p { color:rgba(255,255,255,.9); font-size:18px; margin-bottom:28px; position:relative; }
.cta-box .hero-cta { justify-content:center; position:relative; }

.footer { background: var(--navy); color:#aeb8d4; padding-block: 64px 32px; }
.footer .top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer .wordmark .w-d { color:#fff; } .footer .wordmark .w-w { color:#5b8cff; }
.footer--slim { padding-block: 40px 30px; }
.footer .foot-row { display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; padding-bottom:22px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer .foot-row .socials { margin-top:0; }
.footer .foot-copy { padding-top:20px; font-size:13.5px; color:#8b97b8; }
.footer .blurb { margin-block:16px; max-width:300px; font-weight:500; font-size:14.5px; line-height:1.7; }
.footer h5 { color:#fff; font-weight:800; font-size:15px; margin-bottom:16px; }
.footer ul { display:grid; gap:10px; }
.footer ul a { font-weight:600; font-size:14.5px; transition:.15s; } .footer ul a:hover { color:#fff; }
.footer .socials { display:flex; gap:10px; margin-top:18px; }
.footer .socials a { width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.07); display:grid; place-items:center; transition:.2s; }
.footer .socials a:hover { background:var(--brand); color:#fff; }
.footer .socials svg { width:18px; height:18px; }
.footer .bottom { display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; padding-top:24px; font-size:13.5px; }

/* ===================================================================
   Floating WhatsApp
   =================================================================== */
.wa-fab {
  position:fixed; inset-block-end:24px; inset-inline-end:24px; z-index:90;
  width:58px; height:58px; border-radius:50%; background:var(--wa); color:#fff;
  display:grid; place-items:center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.7);
  animation: pulse 2.4s infinite;
}
.wa-fab svg { width:30px; height:30px; }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* ===================================================================
   Reveal on scroll
   =================================================================== */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity:1; transform:none; }

/* ===================================================================
   Mobile nav drawer
   =================================================================== */
.drawer { position:fixed; inset:0; z-index:200; display:none; }
.drawer.open { display:block; }
.drawer .scrim { position:absolute; inset:0; background:rgba(10,17,36,.5); backdrop-filter:blur(2px); }
.drawer .panel-m { position:absolute; inset-block:0; inset-inline-end:0; width:min(82vw,340px); background:#fff; padding:24px; display:flex; flex-direction:column; gap:6px; box-shadow:var(--shadow-lg); }
.drawer .panel-m a { padding:14px 12px; border-radius:10px; font-weight:800; font-size:17px; }
.drawer .panel-m a:hover { background:var(--surface); }
.drawer .close { align-self:flex-end; width:42px; height:42px; border-radius:10px; border:1.5px solid var(--border); display:grid; place-items:center; margin-bottom:8px; }
.drawer .close svg { width:22px; height:22px; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap:48px; }
  .hero-visual { max-width:520px; margin-inline:auto; }
  .sec-grid { grid-template-columns:1fr; gap:40px; }
  .panel.active { grid-template-columns:1fr; gap:32px; }
  .grid-cards { grid-template-columns: repeat(2,1fr); }
  .tgrid { grid-template-columns: 1fr; }
  .footer .top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display:none; }
  .nav-right .btn-nav-cta { display:none; }
  .menu-btn { display:inline-flex; }
  .price-grid { grid-template-columns:1fr; max-width:440px; margin-inline:auto; }
  .plan.feat { transform:none; } .plan.feat:hover{ transform:translateY(-6px);}
  .stats .grid { grid-template-columns: repeat(2,1fr); gap:32px 16px; }
  .float-card { display:none; }
}
@media (max-width: 560px) {
  body { font-size:16px; }
  .container { padding-inline:18px; }
  .grid-cards { grid-template-columns:1fr; }
  .footer .top { grid-template-columns:1fr; gap:28px; }
  .cmp { overflow-x:auto; } .cmp table{ min-width:520px; }
  .hero-cta .btn { flex:1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  .reveal { opacity:1; transform:none; }
}
