/* ═══════════════════════════════════════════════════════
   Rawj Pro — Landing page styles (scoped under .lp)
   Mobile-first, conversion-focused
   ═══════════════════════════════════════════════════════ */

/* Reduce CLS from font swap: align fallback metrics to web font */
@supports (font-size-adjust: 1) {
  .lp { font-size-adjust: 0.52; }
}

.lp {
  --lp-ink:        #0E1012;
  --lp-ink-2:      #1A1E22;
  --lp-ink-3:      #2A2F35;
  --lp-paper:      #FAF9F6;
  --lp-paper-2:    #F2F0EA;
  --lp-paper-3:    #E8E5DC;
  --lp-muted:      #565C6B;  /* darkened from #6B7280 for WCAG AA contrast */
  --lp-muted-2:    #70767D;  /* darkened from #9AA0A6 for WCAG AA contrast */
  --lp-line:       rgba(20,23,26,0.08);
  --lp-line-dark:  rgba(255,255,255,0.10);

  --lp-emerald:      oklch(0.50 0.10 165);
  --lp-emerald-2:    oklch(0.62 0.12 165);
  --lp-emerald-soft: oklch(0.95 0.025 165);
  --lp-emerald-glow: oklch(0.72 0.13 165);

  --lp-amber:        oklch(0.72 0.15 70);
  --lp-amber-soft:   oklch(0.96 0.04 75);
  --lp-danger:       oklch(0.58 0.20 27);
  --lp-danger-soft:  oklch(0.95 0.04 27);

  --lp-font-ar: "IBM Plex Sans Arabic", "Tajawal", system-ui, sans-serif;
  --lp-font-display: "Tajawal", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --lp-font-ltn: "IBM Plex Sans", system-ui, sans-serif;
  --lp-font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --lp-container: 1240px;

  font-family: var(--lp-font-ar);
  background: var(--lp-paper);
  color: var(--lp-ink);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
  overflow-x: hidden;
  min-height: 100vh;
  scroll-behavior: smooth;
}

.lp *,
.lp *::before,
.lp *::after { box-sizing: border-box; }

.lp a { color: inherit; text-decoration: none; }
.lp button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; padding: 0; }
.lp img, .lp svg { display: block; max-width: 100%; }
.lp ul { list-style: none; padding: 0; margin: 0; }
.lp h1, .lp h2, .lp h3, .lp h4 { margin: 0; }
.lp p { margin: 0; }

.lp .container { width: 100%; max-width: var(--lp-container); margin: 0 auto; padding: 0 24px; }
.lp .mono { font-family: var(--lp-font-mono); font-feature-settings: "tnum"; }
.lp .num  { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ─── NAV ────────────────────────────────────────────── */
.lp .lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,249,246,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--lp-line);
}
.lp .lp-nav-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 24px;
  max-width: var(--lp-container); margin: 0 auto;
}
.lp .lp-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -.01em;
}
.lp .lp-brand-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--lp-ink);
  display: grid; place-items: center;
  position: relative;
}
.lp .lp-brand-mark svg { width: 18px; height: 18px; }
.lp .lp-brand-text { display: flex; align-items: baseline; gap: 6px; line-height: 1; }
.lp .lp-brand-text b { font-size: 17px; font-weight: 700; }
.lp .lp-brand-text span { font-size: 13px; font-weight: 500; opacity: .55; }

.lp .lp-nav-links { display: none; gap: 28px; margin-inline-start: 32px; font-size: 14px; color: var(--lp-ink-3); }
.lp .lp-nav-links a { cursor: pointer; }
.lp .lp-nav-links a:hover { color: var(--lp-ink); }
.lp .lp-nav-cta { margin-inline-start: auto; display: flex; gap: 8px; align-items: center; }

.lp .lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 18px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  background: var(--lp-paper-2); color: var(--lp-ink);
  transition: transform .15s, background .15s;
  white-space: nowrap;
  font-family: inherit;
}
.lp .lp-btn:hover { transform: translateY(-1px); background: var(--lp-paper-3); }
.lp .lp-btn-primary { background: var(--lp-ink); color: var(--lp-paper); }
.lp .lp-btn-primary:hover { background: var(--lp-ink-2); }
.lp .lp-btn-emerald { background: var(--lp-emerald); color: white; }
.lp .lp-btn-emerald:hover { background: color-mix(in oklch, var(--lp-emerald) 88%, #000); }
.lp .lp-btn-ghost { background: transparent; }
.lp .lp-btn-ghost:hover { background: var(--lp-paper-2); }
.lp .lp-btn-lg { height: 52px; padding: 0 26px; font-size: 15.5px; border-radius: 12px; }
.lp .lp-btn-sm { height: 34px; padding: 0 14px; font-size: 13px; border-radius: 8px; }
.lp .lp-btn svg { width: 16px; height: 16px; }

.lp .lp-menu-toggle { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--lp-paper-2); }
.lp .lp-menu-toggle:hover { background: var(--lp-paper-3); }

@media (min-width: 880px) {
  .lp .lp-nav-links { display: flex; }
  .lp .lp-menu-toggle { display: none; }
}

/* ─── MOBILE MENU ──────────────────────────────────── */
.lp .lp-mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--lp-ink);
  color: var(--lp-paper);
  padding: 80px 28px 28px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.lp .lp-mobile-menu[data-open="true"] { transform: translateX(0); }
.lp .lp-mobile-menu a {
  display: block;
  font-size: 22px; font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--lp-line-dark);
  cursor: pointer;
}
.lp .lp-mobile-menu .close {
  position: absolute; top: 20px; left: 20px;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--lp-ink-3); color: var(--lp-paper);
  display: grid; place-items: center;
}
.lp .lp-mobile-menu .actions {
  margin-top: auto; display: flex; flex-direction: column; gap: 10px;
}

/* ─── HERO ─────────────────────────────────────────── */
.lp .lp-hero {
  position: relative;
  background: var(--lp-ink);
  color: var(--lp-paper);
  overflow: hidden;
  padding: 60px 0 80px;
}
.lp .lp-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, color-mix(in oklch, var(--lp-emerald) 35%, transparent), transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 80%, color-mix(in oklch, var(--lp-emerald-glow) 18%, transparent), transparent 60%);
  pointer-events: none;
}
.lp .lp-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.lp .lp-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 6px 14px 6px 6px; border-radius: 999px;
  font-size: 12.5px; color: rgba(250,249,246,0.85);
  margin-bottom: 28px;
}
.lp .lp-hero-pill .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--lp-emerald);
  display: grid; place-items: center;
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--lp-emerald) 22%, transparent);
}
.lp .lp-hero-pill .dot::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lp-paper); }

.lp h1.lp-hero-title {
  font-family: var(--lp-font-display);
  font-size: clamp(40px, 9.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -.025em;
  font-weight: 800;
  margin-bottom: 22px;
}
.lp .lp-hero-title .strike {
  position: relative;
  color: rgba(250,249,246,0.55);
  font-weight: 600;
}
.lp .lp-hero-title .strike::after {
  content: "";
  position: absolute;
  inset-block: 50% auto;
  inset-inline: -4px;
  height: 6px;
  background: var(--lp-danger);
  transform: rotate(-3deg);
  border-radius: 3px;
}
.lp .lp-hero-title .pop {
  background: linear-gradient(105deg, var(--lp-emerald-glow) 10%, var(--lp-paper) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp .lp-hero-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  line-height: 1.65;
  color: rgba(250,249,246,0.78);
  max-width: 560px;
  margin-bottom: 36px;
}
.lp .lp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.lp .lp-hero-trust {
  display: flex; flex-wrap: wrap; gap: 22px;
  color: rgba(250,249,246,0.7);
  font-size: 13px;
}
.lp .lp-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.lp .lp-hero-trust svg { width: 16px; height: 16px; color: var(--lp-emerald-glow); }

/* Hero visual stack */
.lp .lp-hero-visual { position: relative; height: 480px; }
.lp .lp-hero-card {
  position: absolute;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.lp .hc-1 {
  inset-inline-end: 0; top: 0;
  width: min(320px, 88%);
  transform: rotate(-2deg);
  background: rgba(255,255,255,0.06);
}
.lp .hc-2 {
  inset-inline-start: 0; top: 150px;
  width: min(300px, 82%);
  transform: rotate(2deg);
  background: var(--lp-paper);
  color: var(--lp-ink);
  border-color: var(--lp-line);
}
.lp .hc-3 {
  inset-inline-end: 30px; bottom: 0;
  width: min(260px, 72%);
  background: linear-gradient(135deg, color-mix(in oklch, var(--lp-emerald) 92%, #000), var(--lp-emerald));
  color: white;
  border-color: transparent;
}

@media (min-width: 900px) {
  .lp .lp-hero { padding: 96px 0 120px; }
  .lp .lp-hero-inner { grid-template-columns: 1.05fr 1fr; align-items: center; }
  .lp .lp-hero-visual { height: 560px; }
  .lp .hc-1 { width: 360px; }
  .lp .hc-2 { width: 300px; }
  .lp .hc-3 { width: 260px; }
}

/* ─── LOGO STRIP ───────────────────────────────────── */
.lp .lp-logo-strip {
  padding: 36px 0;
  border-bottom: 1px solid var(--lp-line);
  background: var(--lp-paper);
}
.lp .lp-logo-strip .container {
  display: flex; flex-direction: column; gap: 22px;
  align-items: center;
}
.lp .lp-logo-strip .label {
  font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--lp-muted); font-family: var(--lp-font-ltn);
}
.lp .lp-logo-strip .platforms {
  display: flex; flex-wrap: wrap; gap: 32px 48px; align-items: center;
  justify-content: center;
}
.lp .lp-logo-strip .platforms .item {
  display: flex; align-items: center; gap: 10px;
  color: var(--lp-ink-3); font-weight: 600; font-size: 16px;
  font-family: var(--lp-font-ltn);
}
.lp .plat-pill {
  width: 28px; height: 28px; border-radius: 7px;
  display: grid; place-items: center; color: #fff;
  font-weight: 700; font-size: 14px;
}
.lp .plat-meta   { background: linear-gradient(135deg, #0866FF, #7B2CBF); }
.lp .plat-google { background: #fff; color: #4285F4; border: 1px solid var(--lp-line); font-weight: 800; }
.lp .plat-tiktok { background: #000; }
.lp .plat-snap   { background: #FFFC00; color: #000; }

/* ─── SECTIONS ─────────────────────────────────────── */
.lp section.lp-block { padding: 80px 0; }
@media (min-width: 900px) { .lp section.lp-block { padding: 120px 0; } }

.lp .lp-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--lp-emerald);
  font-family: var(--lp-font-ltn);
  margin-bottom: 16px;
}
.lp h2.lp-section-title {
  font-family: var(--lp-font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.lp .lp-section-sub {
  font-size: 17px; color: var(--lp-muted);
  max-width: 600px;
  line-height: 1.65;
}
.lp .lp-section-head { margin-bottom: 56px; max-width: 800px; }

/* ─── PROBLEM SECTION ──────────────────────────────── */
.lp .lp-problem {
  background: var(--lp-paper-2);
}
.lp .lp-problem-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
}
.lp .lp-problem-card {
  background: var(--lp-paper);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--lp-line);
  position: relative; overflow: hidden;
}
.lp .lp-problem-card .icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--lp-danger-soft); color: var(--lp-danger);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.lp .lp-problem-card .icon-wrap svg { width: 22px; height: 22px; }
.lp .lp-problem-card h3 {
  font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em;
}
.lp .lp-problem-card p { color: var(--lp-muted); font-size: 14.5px; line-height: 1.6; }
.lp .lp-problem-card .corner-num {
  position: absolute; top: 18px; inset-inline-end: 20px;
  font-family: var(--lp-font-mono);
  font-size: 12px; color: var(--lp-muted-2);
}

@media (min-width: 700px) {
  .lp .lp-problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .lp .lp-problem-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

/* ─── HOW IT WORKS ─────────────────────────────────── */
.lp .lp-how {
  background: var(--lp-ink);
  color: var(--lp-paper);
}
.lp .lp-how .lp-eyebrow { color: var(--lp-emerald-glow); }
.lp .lp-how-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.lp .lp-how-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--lp-line-dark);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
}
.lp .lp-how-step .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--lp-emerald); color: white;
  font-size: 19px; font-weight: 700;
  font-family: var(--lp-font-mono);
}
.lp .lp-how-step h3 {
  font-size: 22px; font-weight: 700; letter-spacing: -.01em;
}
.lp .lp-how-step p { color: rgba(250,249,246,0.7); font-size: 15px; line-height: 1.6; }
.lp .lp-how-step .visual {
  margin-top: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 18px;
  font-family: var(--lp-font-mono);
  font-size: 12px;
  color: rgba(250,249,246,0.6);
  line-height: 1.9;
}

@media (min-width: 900px) {
  .lp .lp-how-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

/* ─── FEATURES SHOWCASE ───────────────────────────── */
.lp .lp-features-row {
  display: grid; grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.lp .lp-features-row + .lp-features-row { margin-top: 100px; }

.lp .lp-feat-text h3 {
  font-family: var(--lp-font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800; letter-spacing: -.02em;
  line-height: 1.15; margin-bottom: 16px;
}
.lp .lp-feat-text p {
  font-size: 16.5px; color: var(--lp-muted); line-height: 1.65;
  margin-bottom: 22px;
}
.lp .lp-feat-text ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lp .lp-feat-text li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
}
.lp .lp-feat-text li svg {
  flex: none; width: 22px; height: 22px; color: var(--lp-emerald);
  background: var(--lp-emerald-soft); border-radius: 50%; padding: 4px;
}

.lp .lp-feat-visual {
  background: var(--lp-paper-2);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.lp .lp-feat-visual.dark { background: var(--lp-ink); color: var(--lp-paper); }

@media (min-width: 900px) {
  .lp .lp-features-row { grid-template-columns: 1fr 1.1fr; gap: 80px; }
  .lp .lp-features-row.reverse { grid-template-columns: 1.1fr 1fr; }
  .lp .lp-features-row.reverse .lp-feat-text { order: 2; }
  .lp .lp-features-row.reverse .lp-feat-visual { order: 1; }
}

/* ─── METRICS / STATS BAND ─────────────────────────── */
.lp .lp-metrics {
  background: var(--lp-ink);
  color: var(--lp-paper);
  border-top: 1px solid var(--lp-line-dark);
  border-bottom: 1px solid var(--lp-line-dark);
  padding: 56px 0;
}
.lp .lp-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 24px;
}
.lp .lp-metric .num-big {
  font-family: var(--lp-font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1;
  background: linear-gradient(105deg, var(--lp-emerald-glow), var(--lp-paper));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.lp .lp-metric .lbl { font-size: 13.5px; color: rgba(250,249,246,0.65); }

@media (min-width: 700px) {
  .lp .lp-metrics-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* ─── PRICING ──────────────────────────────────────── */
.lp .lp-pricing-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
.lp .lp-price-card {
  background: var(--lp-paper);
  border: 1px solid var(--lp-line);
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column;
}
.lp .lp-price-card.featured {
  background: var(--lp-ink);
  color: var(--lp-paper);
  border-color: transparent;
  position: relative;
  transform: none;
}
.lp .lp-price-card.featured .ribbon {
  position: absolute; top: -10px; inset-inline-end: 24px;
  background: var(--lp-emerald);
  color: white;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px; border-radius: 6px;
  font-family: var(--lp-font-ltn);
}
.lp .lp-price-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.lp .lp-price-card .desc { font-size: 13.5px; color: var(--lp-muted); margin-bottom: 24px; min-height: 20px; }
.lp .lp-price-card.featured .desc { color: rgba(250,249,246,0.6); }
.lp .lp-price-card .price {
  font-family: var(--lp-font-display);
  font-size: 56px; font-weight: 800; letter-spacing: -.03em; line-height: 1;
  margin-bottom: 4px;
}
.lp .lp-price-card .price .per { font-size: 16px; font-weight: 500; color: var(--lp-muted); margin-inline-start: 6px; }
.lp .lp-price-card.featured .price .per { color: rgba(250,249,246,0.55); }
.lp .lp-price-card .cur { font-size: 13px; color: var(--lp-muted); margin-bottom: 26px; }
.lp .lp-price-card.featured .cur { color: rgba(250,249,246,0.55); }
.lp .lp-price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.lp .lp-price-card li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.lp .lp-price-card li svg { width: 18px; height: 18px; color: var(--lp-emerald); flex: none; margin-top: 2px; }
.lp .lp-price-card.featured li svg { color: var(--lp-emerald-glow); }

@media (min-width: 800px) {
  .lp .lp-pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .lp .lp-price-card.featured { transform: scale(1.04); z-index: 2; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4); }
}

/* ─── TESTIMONIAL ─────────────────────────────────── */
.lp .lp-testi-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}
.lp .lp-testi {
  background: var(--lp-paper);
  border: 1px solid var(--lp-line);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.lp .lp-testi blockquote {
  font-size: 16px; line-height: 1.6;
  color: var(--lp-ink-2);
  flex: 1;
  margin: 0;
}
.lp .lp-testi blockquote::before { content: "«"; color: var(--lp-emerald); font-size: 36px; line-height: 0; vertical-align: -16px; font-weight: 700; margin-inline-end: 4px; }
.lp .lp-testi blockquote::after  { content: "»"; color: var(--lp-emerald); font-size: 36px; line-height: 0; vertical-align: -16px; font-weight: 700; margin-inline-start: 4px; }
.lp .lp-testi .who {
  display: flex; gap: 12px; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--lp-line);
}
.lp .lp-testi .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-emerald), var(--lp-ink));
  color: white; display: grid; place-items: center;
  font-weight: 700; font-family: var(--lp-font-ltn);
}
.lp .lp-testi .name { font-weight: 600; font-size: 14.5px; }
.lp .lp-testi .role { font-size: 12.5px; color: var(--lp-muted); }

@media (min-width: 800px) {
  .lp .lp-testi-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── FAQ ─────────────────────────────────────────── */
.lp .lp-faq {
  background: var(--lp-paper-2);
}
.lp .lp-faq-list {
  max-width: 800px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 10px;
}
.lp .lp-faq-item {
  background: var(--lp-paper);
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  padding: 20px 22px;
  cursor: pointer;
  transition: border-color .15s;
}
.lp .lp-faq-item:hover { border-color: var(--lp-emerald); }
.lp .lp-faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  font-size: 16px; font-weight: 600;
  cursor: pointer;
}
.lp .lp-faq-item summary::-webkit-details-marker { display: none; }
.lp .lp-faq-item summary::after {
  content: "+";
  font-family: var(--lp-font-ltn); font-weight: 300; font-size: 26px; line-height: 1;
  color: var(--lp-emerald);
  transition: transform .15s;
}
.lp .lp-faq-item[open] summary::after { transform: rotate(45deg); }
.lp .lp-faq-item .answer {
  padding-top: 14px;
  color: var(--lp-muted); font-size: 14.5px; line-height: 1.7;
}

/* ─── CTA BAND ────────────────────────────────────── */
.lp .lp-cta-band {
  background: var(--lp-emerald);
  color: white;
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.lp .lp-cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(0,0,0,0.20), transparent 50%);
  pointer-events: none;
}
.lp .lp-cta-band .container { position: relative; }
.lp .lp-cta-band h2 {
  font-family: var(--lp-font-display);
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 800; letter-spacing: -.025em;
  line-height: 1.1; margin-bottom: 18px;
}
.lp .lp-cta-band p {
  font-size: 17px; opacity: .92; max-width: 540px;
  margin-bottom: 32px;
}
.lp .lp-cta-band .lp-btn { background: var(--lp-ink); color: var(--lp-paper); }
.lp .lp-cta-band .lp-btn:hover { background: var(--lp-ink-2); }
.lp .lp-cta-band .lp-btn.lp-btn-ghost { background: rgba(255,255,255,0.12); color: white; }
.lp .lp-cta-band .lp-btn.lp-btn-ghost:hover { background: rgba(255,255,255,0.20); }

/* ─── FOOTER ───────────────────────────────────────── */
.lp .lp-footer {
  background: var(--lp-ink); color: rgba(250,249,246,0.7);
  padding: 60px 0 28px;
}
.lp .lp-foot-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  margin-bottom: 36px;
}
.lp .lp-foot-brand p { font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 320px; }
.lp .lp-foot-col h4,
.lp .lp-foot-col .lp-foot-col-head {
  color: var(--lp-paper); font-size: 12.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px;
  font-family: var(--lp-font-ltn);
}
.lp .lp-foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lp .lp-foot-col a { cursor: pointer; }
.lp .lp-foot-col a:hover { color: var(--lp-emerald-glow); }
.lp .lp-foot-bottom {
  padding-top: 24px; border-top: 1px solid var(--lp-line-dark);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 12.5px;
}

@media (min-width: 800px) {
  .lp .lp-foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; }
}

/* ─── COMPARISON ROW ──────────────────────────────── */
.lp .lp-compare {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  margin-top: 40px;
}
.lp .lp-compare-side {
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--lp-line);
}
.lp .lp-compare-side.bad { background: var(--lp-paper); }
.lp .lp-compare-side.good { background: var(--lp-ink); color: var(--lp-paper); border-color: transparent; }
.lp .lp-compare-side h4,
.lp .lp-compare-side .lp-compare-head { font-size: 16px; margin-bottom: 14px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.lp .lp-compare-side .tag {
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 5px;
  font-family: var(--lp-font-ltn); letter-spacing: .06em; text-transform: uppercase;
}
.lp .lp-compare-side.bad .tag { background: var(--lp-danger-soft); color: var(--lp-danger); }
.lp .lp-compare-side.good .tag { background: var(--lp-emerald); color: white; }
.lp .lp-compare-side ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lp .lp-compare-side li { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; align-items: flex-start; }
.lp .lp-compare-side.bad li::before { content: "✕"; color: var(--lp-danger); font-weight: 700; flex: none; }
.lp .lp-compare-side.good li::before { content: "✓"; color: var(--lp-emerald-glow); font-weight: 700; flex: none; }
.lp .lp-compare-side.bad li { color: var(--lp-muted); }

@media (min-width: 720px) {
  .lp .lp-compare { grid-template-columns: 1fr 1fr; }
}

/* ─── MOCK CHAT BUBBLE ──────────────────────────── */
.lp .lp-chat-mock {
  background: linear-gradient(180deg, #00838F 0%, #006D75 100%);
  border-radius: 22px;
  padding: 18px;
  font-family: var(--lp-font-ar);
}
.lp .lp-chat-mock .head {
  display: flex; align-items: center; gap: 10px;
  color: white; font-size: 13px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 14px;
}
.lp .lp-chat-mock .head .av {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--lp-emerald);
  display: grid; place-items: center;
  color: white; font-weight: 700; font-size: 14px;
  font-family: var(--lp-font-ltn);
}
.lp .lp-chat-mock .head b { font-weight: 600; }
.lp .lp-chat-mock .head small { display: block; font-size: 10.5px; opacity: .8; }
.lp .lp-chat-bubble {
  background: white; border-radius: 14px 14px 14px 4px;
  padding: 14px 16px; font-size: 13.5px; line-height: 1.7;
  color: var(--lp-ink); margin-bottom: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.lp .lp-chat-bubble .time { display: block; font-size: 10px; color: var(--lp-muted); margin-top: 8px; text-align: end; font-family: var(--lp-font-mono); }
.lp .lp-chat-bubble b { font-weight: 700; }

/* helpers */
.lp .text-center { text-align: center; }
.lp .delta-up { color: var(--lp-emerald); font-weight: 600; }
.lp .delta-down { color: var(--lp-danger); font-weight: 600; }

/* scroll-reveal */
.lp [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.lp [data-reveal].in { opacity: 1; transform: translateY(0); }

/* Ensure dark-section subtitle contrast meets WCAG AA */
.lp .lp-how .lp-section-sub { color: rgba(250,249,246,0.80); }
