/* =========================================================
   Niqati / نقاطي — Brand Stylesheet
   Palette: Orange #FF6B1A, White #FFFFFF, Ink #0B0B0B
   ========================================================= */

:root {
  --orange: #FF6B1A;
  --orange-600: #F25A07;
  --orange-300: #FFB07A;
  --orange-50: #FFF3EB;
  --ink: #0B0B0B;
  --ink-2: #2B2B2B;
  --muted: #6B6B6B;
  --line: #EFEAE6;
  --bg: #FFFFFF;
  --bg-soft: #FFF8F2;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(11,11,11,.04), 0 2px 8px rgba(11,11,11,.05);
  --shadow-md: 0 10px 30px rgba(255,107,26,.18), 0 4px 12px rgba(11,11,11,.06);
  --shadow-lg: 0 30px 80px rgba(255,107,26,.25);
  --container: 1180px;
  --font-en: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-ar: "Tajawal", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-en);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html[dir="rtl"] body { font-family: var(--font-ar); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }

/* Typography */
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 16px; font-weight: 800; }
h1 { font-size: clamp(36px, 6vw, 68px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
p  { margin: 0 0 14px; color: var(--ink-2); }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange-600);
  background: var(--orange-50);
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid #FFD9BF;
}
.gradient-text {
  background: linear-gradient(120deg, var(--orange) 0%, #FF9248 60%, var(--ink) 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Navbar */
.nav {
  position: sticky;
  top: 20px;
  z-index: 100;
  margin: 0 auto;
  max-width: var(--container);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  box-shadow: 
    0 1px 3px rgba(11, 11, 11, 0.04),
    0 8px 24px rgba(11, 11, 11, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.nav::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 26, 0.15) 0%,
    rgba(255, 176, 122, 0.08) 25%,
    rgba(255, 107, 26, 0.05) 50%,
    rgba(255, 176, 122, 0.12) 75%,
    rgba(255, 107, 26, 0.18) 100%
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.nav::after {
  content: "";
  position: absolute;
  inset: -60px;
  background: 
    radial-gradient(ellipse 400px 200px at 20% 50%, rgba(255, 107, 26, 0.08), transparent 70%),
    radial-gradient(ellipse 350px 180px at 80% 50%, rgba(255, 176, 122, 0.06), transparent 70%),
    radial-gradient(ellipse 300px 150px at 50% 100%, rgba(255, 107, 26, 0.05), transparent 60%);
  border-radius: 40px;
  filter: blur(40px);
  z-index: -1;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  pointer-events: none;
  clip-path: inset(60px);
}
.nav.scrolled {
  top: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 2px 8px rgba(11, 11, 11, 0.06),
    0 16px 40px rgba(11, 11, 11, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}
.nav.scrolled::before {
  opacity: 1;
}
.nav.scrolled::after {
  opacity: 0.8;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  transition: all 0.25s ease;
  position: relative;
}
.brand:hover { 
  color: var(--orange);
  transform: translateY(-1px);
}
.brand .logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(255, 107, 26, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.brand:hover .logo {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 107, 26, 0.25);
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover { 
  color: var(--orange);
}
.nav-links a:hover::after { 
  width: 100%;
}
.nav-cta { 
  display: flex; 
  gap: 12px; 
  align-items: center; 
}

/* Mobile menu button */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}
.nav-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.nav-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  box-shadow: 
    0 4px 24px rgba(11, 11, 11, 0.08),
    0 12px 48px rgba(11, 11, 11, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 18px 24px;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.nav-mobile-menu a {
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  color: var(--ink-2);
}
.nav-mobile-menu a:hover {
  background: var(--orange-50);
  color: var(--orange);
  transform: translateX(4px);
}
html[dir="rtl"] .nav-mobile-menu a:hover {
  transform: translateX(-4px);
}
.nav-mobile-menu .nav-mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

@media (max-width: 880px) { 
  .nav-links { display: none; } 
  .nav-menu-btn { display: flex; }
  .nav-cta { display: none; }
}
@media (max-width: 880px) {
  .nav {
    margin: 0 12px;
    max-width: calc(100% - 24px);
  }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: none; }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,107,26,.2);
}
.btn-primary:hover {
  background: var(--orange-600);
  box-shadow: 0 4px 12px rgba(255,107,26,.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(11,11,11,.1);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,26,.04);
}
.btn-white {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(11,11,11,.08);
}
.btn-white:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* Lang toggle */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 11px;
  border: 1px solid rgba(11,11,11,.08);
  font-weight: 600; font-size: 13px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .25s ease;
  box-shadow: 0 1px 3px rgba(11, 11, 11, 0.04);
}
.lang-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,26,.06);
  box-shadow: 0 2px 8px rgba(255, 107, 26, 0.12);
  transform: translateY(-1px);
}
.lang-toggle-mobile {
  display: none;
}
@media (max-width: 880px) {
  .lang-toggle-mobile {
    display: inline-flex;
  }
  .nav-cta .lang-toggle {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 80px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero h1 .accent { color: var(--orange); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-size: 28px; color: var(--ink); font-weight: 800; }
.hero-stats .stat span { color: var(--muted); font-size: 14px; }

/* Hero download badges */
.hero-dl { margin-top: 22px; }
.hero-dl-label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.hero-dl-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.dl-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 12px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid rgba(255,255,255,.06);
}
.dl-pill:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(11,11,11,.22); background: #1a1a1a; }
.dl-pill-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.dl-pill-text small { font-size: 10px; opacity: .75; font-weight: 500; }
.dl-pill-text strong { font-size: 15px; font-weight: 700; letter-spacing: .01em; }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; position: relative; overflow: visible; }
.phone {
  width: 320px; height: 640px;
  background: #0B0B0B;
  border-radius: 48px;
  padding: 14px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px #1a1a1a;
  position: relative;
  transform: rotate(-4deg);
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.phone:hover { transform: rotate(0deg) translateY(-6px); }
.phone::before {
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #000; border-radius: 14px; z-index: 2;
}
.phone-screen {
  background: linear-gradient(180deg, #FFF8F2 0%, #fff 100%);
  width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  display: flex; flex-direction: column;
}
.wallet-card {
  margin: 56px 18px 18px;
  background: linear-gradient(135deg, var(--orange) 0%, #FF8A47 100%);
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(255,107,26,.35);
  position: relative;
  overflow: hidden;
}
.wallet-card::after {
  content: ""; position: absolute; inset: -40% -10% auto auto; width: 220px; height: 220px;
  background: radial-gradient(closest-side, rgba(255,255,255,.35), transparent);
}
.wallet-card .row { display: flex; justify-content: space-between; align-items: center; }
.wallet-card .biz { font-weight: 800; font-size: 14px; opacity: .95; letter-spacing: .04em; }
.wallet-card .pts { margin-top: 18px; font-size: 36px; font-weight: 800; }
.wallet-card .pts small { font-size: 12px; opacity: .9; font-weight: 600; }
.wallet-card .stamps { display: flex; gap: 6px; margin-top: 16px; }
.wallet-card .stamps i {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.25);
  display: inline-block; border: 1px solid rgba(255,255,255,.4);
}
.wallet-card .stamps i.on { background: #fff; }
.phone-list { padding: 6px 18px 18px; }
.phone-list .item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: #fff; border-radius: 14px; margin-top: 10px;
  border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2);
}
.phone-list .item .dot {
  width: 28px; height: 28px; border-radius: 8px; background: var(--orange-50);
  color: var(--orange-600); display: grid; place-items: center; font-weight: 800;
}

/* Floating badges */
.float-badge {
  position: absolute; background: #fff; border: 1px solid var(--line);
  padding: 10px 14px; border-radius: 14px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600;
  animation: float 5s ease-in-out infinite;
}
.float-badge .ic {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--orange); color: #fff; display: grid; place-items: center;
}
.float-badge.b1 { top: 60px; left: -10px; }
.float-badge.b2 { bottom: 70px; right: -20px; animation-delay: 1.2s; }
@media (max-width: 600px) {
  .float-badge { display: none; }
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Trust strip */
.trust {
  background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  color: var(--muted); font-size: 14px; font-weight: 600;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row .pill {
  padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
}

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #FFD9BF; }
.feature .icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, #FF9248 100%);
  color: #fff; display: grid; place-items: center; margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(255,107,26,.28);
}
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; margin: 0; color: var(--muted); }

/* Card Types grid */
.card-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 1100px) { .card-types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 780px) { .card-types-grid { grid-template-columns: 1fr; } }
.card-type {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.card-type::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,26,0.15) 0%, rgba(255,176,122,0.08) 100%);
  opacity: 0;
  transition: opacity .35s ease;
}
.card-type:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255,107,26,.3), 0 8px 20px rgba(0,0,0,.4);
  border-color: var(--orange);
  background: rgba(255,255,255,0.08);
}
.card-type:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(135deg, var(--orange) 0%, #FF9248 100%);
  font-size: 26px;
  display: grid; place-items: center; margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(255,107,26,.4);
  transition: transform .35s ease, box-shadow .35s ease;
}
.card-type:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(255,107,26,.6);
}
.card-type h3 { font-size: 20px; margin-bottom: 8px; color: #fff; transition: color .25s ease; }
.card-type:hover h3 { color: var(--orange); }
.card-subtitle {
  font-size: 13px; font-weight: 600; color: var(--orange-300);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.card-type p { font-size: 14px; margin-bottom: 14px; color: rgba(255,255,255,.78); line-height: 1.6; }
.card-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.card-features li {
  padding: 4px 0; display: flex; gap: 8px; align-items: flex-start;
  font-size: 13px; color: rgba(255,255,255,.6);
  transition: transform .25s ease, color .25s ease;
}
.card-type:hover .card-features li {
  color: rgba(255,255,255,.88);
  transform: translateX(4px);
}
html[dir="rtl"] .card-type:hover .card-features li {
  transform: translateX(-4px);
}
.card-features li::before {
  content: ""; flex-shrink: 0; width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,107,26,.2); position: relative; margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFB07A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 9px; background-repeat: no-repeat; background-position: center;
  transition: background .25s ease;
}
.card-type:hover .card-features li::before {
  background: var(--orange);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; position: relative;
}
.step .num {
  position: absolute; top: -18px;
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 18px;
  box-shadow: var(--shadow-md);
}
html[dir="ltr"] .step .num { left: 24px; }
html[dir="rtl"] .step .num { right: 24px; }
.step h3 { margin-top: 24px; font-size: 20px; }
.step p { color: var(--muted); }

/* Speed callout */
.speed {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8A47 100%);
  color: #fff;
  border-radius: 28px;
  padding: 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden; position: relative;
}
.speed::before {
  content:""; position:absolute; inset:auto -120px -120px auto;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.25), transparent);
}
@media (max-width: 800px) { .speed { grid-template-columns: 1fr; padding: 36px; } }
@media (max-width: 600px) { .speed { padding: 28px 20px; } .cta-band { padding: 40px 24px; } }
.speed h2 { color: #fff; }
.speed p { color: rgba(255,255,255,.92); margin: 0; }
.timer {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  padding: 22px 28px; border-radius: 20px;
  text-align: center; min-width: 220px;
  backdrop-filter: blur(8px);
}
.timer .num { font-size: 64px; font-weight: 900; line-height: 1; }
.timer .lbl { font-size: 13px; opacity: .9; margin-top: 6px; letter-spacing: .12em; text-transform: uppercase; }

/* For business / Audience cards */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
@media (max-width: 800px) { .audience { grid-template-columns: 1fr; } }
.aud-card {
  border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
}
.aud-card.dark { background: var(--ink); color: #fff; border-color: #1c1c1c; }
.aud-card.dark p { color: rgba(255,255,255,.78); }
.aud-card ul { list-style: none; padding: 0; margin: 18px 0 24px; }
.aud-card li { padding: 8px 0; display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.aud-card li::before {
  content: ""; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange-50); position: relative; margin-top: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B1A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.aud-card.dark li::before {
  background-color: rgba(255,107,26,.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFB07A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

/* FAQ */
.faq { margin-top: 36px; }
.faq details {
  border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px;
  background: #fff; margin-bottom: 12px; transition: border-color .2s;
}
.faq details[open] { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; font-weight: 700; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; color: var(--orange); transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 12px 0 0; color: var(--muted); }

/* CTA */
.cta-band {
  background: var(--ink); color: #fff;
  border-radius: 28px; padding: 56px;
  text-align: center;
  background-image:
    radial-gradient(500px 220px at 20% 0%, rgba(255,107,26,.45), transparent 60%),
    radial-gradient(500px 220px at 80% 100%, rgba(255,107,26,.35), transparent 60%);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 620px; margin: 0 auto 24px; }

/* Footer */
.footer { background: var(--ink); color: #cfcfcf; padding: 64px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .14em; }
.footer a { color: #cfcfcf; display: block; padding: 6px 0; font-size: 14.5px; transition: color .2s; }
.footer a:hover { color: var(--orange); }
.footer .brand { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1f1f1f; margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #888;
}

/* Page heading (inner pages) */
.page-hero {
  padding: 100px 0 60px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(32px, 4.5vw, 52px); }
.page-hero p { max-width: 720px; font-size: 17px; }

/* Prose (legal pages) */
.prose { max-width: 820px; }
.prose h2 { margin-top: 40px; font-size: 24px; }
.prose h3 { margin-top: 28px; font-size: 19px; }
.prose p, .prose li { color: var(--ink-2); font-size: 16px; }
.prose ul, .prose ol { padding-inline-start: 22px; }
.prose ul li { margin-bottom: 6px; }
.prose code {
  background: var(--orange-50); color: var(--orange-600);
  padding: 2px 8px; border-radius: 6px; font-size: 0.95em;
}
.prose .callout {
  background: var(--bg-soft); border: 1px solid #FFE0C8;
  border-inline-start: 4px solid var(--orange);
  padding: 18px 22px; border-radius: 14px; margin: 24px 0;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; margin-top: 32px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex; gap: 14px; align-items: flex-start; padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--orange-50); color: var(--orange-600);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-list strong { display: block; font-size: 15px; color: var(--ink); }
.contact-list span { font-size: 14px; color: var(--muted); }
form .field { margin-bottom: 16px; }
form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
form input, form textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
form input:focus, form textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,26,.12);
}
form textarea { min-height: 130px; resize: vertical; }

/* Steps with numbers (delete page) */
.steplist { counter-reset: step; padding: 0; list-style: none; margin: 24px 0; }
.steplist li {
  counter-increment: step;
  position: relative;
  padding-inline-start: 56px;
  padding-block: 14px;
  border-bottom: 1px dashed var(--line);
}
.steplist li:last-child { border-bottom: none; }
.steplist li::before {
  content: counter(step);
  position: absolute; inset-inline-start: 0; top: 12px;
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; font-weight: 800;
  box-shadow: var(--shadow-md);
}

/* Security solo (single-language) section */
.sec-solo {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.sec-solo-rtl { direction: rtl; }
@media (max-width: 860px) { .sec-solo { grid-template-columns: 1fr; } .sec-solo-right { display: none; } }
.sec-solo-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 36px 40px;
  text-align: center;
  min-width: 200px;
  backdrop-filter: blur(8px);
}

/* Security bilingual section */
.sec-bilingual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
@media (max-width: 860px) {
  .sec-bilingual { grid-template-columns: 1fr; }
  .sec-bl-divider { display: none; }
}
.sec-bl-text { padding: 8px 48px 8px 0; }
.sec-bl-text[dir="rtl"] { padding: 8px 0 8px 48px; }
@media (max-width: 860px) { .sec-bl-text, .sec-bl-text[dir="rtl"] { padding: 0 0 40px; } }
.sec-bl-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.1);
  margin: 0 8px;
}
.sec-bl-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 20px;
}
.sec-bl-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
  padding: 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: background .2s, border-color .2s;
}
.sec-bl-pill:hover { background: rgba(255,107,26,.2); border-color: rgba(255,107,26,.4); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Selection */
::selection { background: var(--orange); color: #fff; }
