*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* هوية تطبيق التجار — أزرق #204BB1 */
  --brand: #204BB1;
  --brand-dark: #163A8C;
  --brand-deep: #0B2C5E;
  --sky: #5BA3D9;
  --sky-deep: #204BB1;
  --sky-dark: #0B2C5E;
  --sky-light: #E8F1FB;
  --pink: #5BA3D9;
  --pink-deep: #204BB1;
  --pink-light: #E8F1FB;
  --primary: #204BB1;
  --primary-light: #5BA3D9;
  --accent: #5BA3D9;
  --green: #059669;
  --red: #EF4444;
  --bg: #F5F8FD;
  --bg2: #E8F1FB;
  --card: #FFFFFF;
  --border: rgba(32, 75, 177, 0.22);
  --border-strong: rgba(32, 75, 177, 0.4);
  --text: #0B2C5E;
  --muted: #5B6B85;
  --grad: linear-gradient(135deg, #163A8C 0%, #204BB1 48%, #5BA3D9 100%);
  --grad-soft: linear-gradient(135deg, #E8F1FB 0%, #F5F8FD 100%);
  --shadow: 0 12px 32px rgba(11, 44, 94, 0.12);
  --shadow-pink: 0 10px 28px rgba(32, 75, 177, 0.16);
  --shadow-card: 0 8px 24px rgba(11, 44, 94, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

body {
  font-family: 'Tajawal', sans-serif;
  font-size: 17px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* خلفية دخول التطبيق — نصف الصورة أعلى الصفحة ونصفها أسفلها */
.site-bg-band {
  position: fixed;
  left: 0;
  right: 0;
  height: min(48vh, 480px);
  pointer-events: none;
  z-index: 0;
  background-image: url('assets/auth-ar-map.png');
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.38;
}

.site-bg-band--top {
  top: 0;
  background-position: center top;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 45%, transparent 100%);
}

.site-bg-band--bottom {
  bottom: 0;
  background-position: center bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 45%, transparent 100%);
}

body > .nav,
body > .hero,
body > .trust-strip,
body > .section,
body > .app-strip,
body > .footer,
body > .trial-modal-overlay {
  position: relative;
  z-index: 1;
}

img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-block;
  font-size: clamp(0.95rem, 2.4vw, 1.08rem);
  font-weight: 800;
  color: var(--sky-deep);
  background: var(--card);
  border: 2px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.tag-lg {
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  padding: 12px 24px;
  font-weight: 900;
}

.tag-join {
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  background: var(--grad-soft);
  border-width: 2px;
}

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--sky-deep);
  font-weight: 900;
  font-size: 1.15rem;
}

.logo-wordmark {
  height: 48px;
  width: auto;
  max-width: min(220px, 56vw);
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 4px 8px;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.logo small {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--sky-deep); }

.nav-cta {
  background: var(--sky-deep) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-glow {
  background: linear-gradient(135deg, var(--sky-deep), var(--sky));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(32, 75, 177, 0.32);
}

.btn-outline {
  background: var(--card);
  color: var(--sky-deep);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-card);
}

.btn-outline:hover { background: var(--sky-light); }

.btn-full { width: 100%; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 88px 0 48px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/auth-ar-map.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.hero-collage {
  display: none;
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c2 { margin-top: 60px; }
.c3 { margin-top: 120px; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to left, rgba(245,248,253,0.55) 0%, rgba(232,241,251,0.72) 50%, rgba(245,248,253,0.88) 100%),
    linear-gradient(to top, #F5F8FD 0%, transparent 42%);
}

.hero-collage { opacity: 0; }

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-trial-banner {
  position: relative;
  max-width: 680px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #ECFDF5 0%, #F0FDFA 45%, #FFFBEB 100%);
  border: 2px solid #34D399;
  box-shadow: 0 14px 36px rgba(4, 120, 87, 0.14);
}

.hero-trial-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-trial-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hero-trial-logo {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid #A7F3D0;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.18);
  object-fit: cover;
}

.hero-trial-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.hero-trial-ribbon {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-trial-launch {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.08rem, 2.4vw, 1.28rem);
  font-weight: 900;
  color: #065F46;
  background: #fff;
  border: 2px solid #6EE7B7;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
}

.hero-trial-seats {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  font-weight: 900;
  color: #92400E;
  background: #FEF3C7;
  border: 2px solid #FCD34D;
  padding: 7px 16px;
  border-radius: 999px;
}

.hero-trial-title {
  font-size: clamp(1.18rem, 2.7vw, 1.45rem);
  line-height: 1.4;
  font-weight: 900;
  color: #064E3B;
}

.hero-trial-title .grad {
  background: linear-gradient(90deg, #059669, #0D9488);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-trial-hook {
  font-size: 0.96rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.hero-trial-perks {
  list-style: none;
  margin: 0;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid #A7F3D0;
  border-radius: 14px;
}

.hero-trial-perks li {
  position: relative;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.55;
  color: #0F172A;
  padding-inline-start: 26px;
}

.hero-trial-perks li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: #16A34A;
  font-weight: 900;
  font-size: 1.05rem;
}

.hero-trial-perk-hot {
  color: #065F46 !important;
  font-weight: 900 !important;
}

.hero-trial-alert {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #FFFBEB;
  border: 2px solid #FCD34D;
  border-inline-start: 4px solid #D97706;
}

.hero-trial-alert-line {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.6;
  color: #78350F;
}

.hero-trial-alert-line strong {
  color: #92400E;
  font-weight: 900;
}

.hero-trial-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.hero-trial-cta {
  font-size: 0.98rem !important;
  padding: 11px 22px !important;
  white-space: nowrap;
  background: linear-gradient(135deg, #059669, #0D9488) !important;
  border: none !important;
  box-shadow: 0 10px 24px rgba(5, 150, 105, 0.28) !important;
}

.hero-trial-note {
  font-size: 0.82rem;
  font-weight: 700;
  color: #047857;
}

.hero-content { max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 2px solid var(--border);
  padding: 12px 20px 12px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  font-weight: 700;
  color: var(--sky-dark);
  line-height: 1.55;
  box-shadow: var(--shadow-card);
  max-width: 100%;
}

.hero-badge img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.35rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 22px;
  color: var(--sky-dark);
}

.hero-lead {
  font-size: clamp(1.15rem, 2.8vw, 1.4rem);
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 640px;
  line-height: 1.75;
  font-weight: 600;
}

.hero-lead strong { color: var(--text); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 20px 28px;
  width: fit-content;
  box-shadow: var(--shadow-card);
}

.metric-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.metric-num strong {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--sky-deep);
}

.metric-num span {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--sky);
}

.metric strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--sky-deep);
  line-height: 1;
}

.metric span {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--sky);
}

.metric {
  padding: 0 24px;
}

.metric:first-child { padding-right: 0; }

.metric p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
  white-space: nowrap;
  font-weight: 700;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Trust strip — marquee ── */
.trust-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0 32px;
  overflow: hidden;
}

.trust-header {
  text-align: center;
  margin-bottom: 22px;
}

.trust-label {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.01em;
}

.trust-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.trust-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: trustMarquee 38s linear infinite;
}

.trust-track:hover {
  animation-play-state: paused;
}

.trust-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  padding-inline-end: 20px;
}

@keyframes trustMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  background: var(--card);
  border: 2px solid var(--border);
  padding: 12px 28px 12px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  min-height: 72px;
}

.trust-item img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(14, 165, 233, 0.15);
}

.trust-item span:last-child {
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.trust-item-org {
  padding-inline-start: 18px;
}

.trust-logo-gea,
.trust-logo-rs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.trust-logo-gea {
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  color: #fff;
}

.trust-logo-rs {
  background: linear-gradient(135deg, #059669, #0D9488);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
}

/* ── Sections ── */
.section {
  padding: 72px 0;
}

.section-intro {
  margin-bottom: 40px;
}

.section-intro.center { text-align: center; }

.section-intro h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--sky-dark);
}

.section-intro p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 560px;
  line-height: 1.7;
}

.cac-intro {
  text-align: start;
}

.cac-intro p {
  max-width: none;
}

.cac-simple {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
}

.cac-simple h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--text);
}

.cac-simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cac-simple-list li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  padding-right: 22px;
  position: relative;
}

.cac-simple-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.section-intro.center p { margin: 0 auto; }

/* ── CAC ── */
.cac-section {
  background: var(--bg);
}

.cac-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: start;
}

.cac-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 88px;
  box-shadow: var(--shadow-card);
}

.cac-compare {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-card);
}

.cac-highlight {
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: var(--shadow-card);
  background: linear-gradient(145deg, #fff, var(--sky-light));
}

.cac-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.cac-card-head img {
  width: 56px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.cac-brand {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--sky-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cac-card-head h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-top: 2px;
}

.cac-price {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  direction: rtl;
  text-align: right;
}

.cac-price .amount {
  font-size: clamp(2.2rem, 6vw, 2.75rem);
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  display: block;
}

.cac-price .currency {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
  max-width: 18em;
}

.cac-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.cac-note strong { color: var(--text); }

.cac-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cac-list li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-right: 18px;
  position: relative;
}

.cac-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.cac-row {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  gap: 12px 16px;
  align-items: center;
  direction: rtl;
  text-align: right;
}

.cac-row-price {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--sky-deep);
  margin: 0;
  white-space: nowrap;
}

.cac-row-win .cac-row-price {
  color: var(--green);
  font-size: 1.15rem;
}

.cac-row-info {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cac-row-info img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.cac-row-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
}

.cac-row-info span {
  font-size: 0.75rem;
  color: var(--muted);
}

.cac-bar-wrap {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  height: 36px;
  overflow: hidden;
}

.cac-bar {
  height: 100%;
  width: var(--w);
  background: rgba(239,68,68,0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  transition: width 1.2s ease;
}

.cac-bar span {
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.cac-bar-warn { background: rgba(239,68,68,0.45); }

.cac-bar-win {
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.5), rgba(249, 168, 212, 0.55));
}

.cac-row-win {
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 14px;
  padding: 14px 12px;
  margin: 4px 0 0;
  overflow: visible;
}

.cac-footnote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--sky-light);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 14px;
}

.cac-footnote img {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cac-footnote p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

.cac-footnote strong { color: var(--text); }

/* ── Marketing hero block ── */
.marketing-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marketing-hero-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 0 8px;
}

.marketing-stop {
  display: inline-block;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  font-weight: 900;
  color: var(--pink-deep);
  background: var(--pink-light);
  border: 2px solid rgba(244, 114, 182, 0.4);
  padding: 12px 24px;
  border-radius: 999px;
  margin-bottom: 16px;
  animation: pulse-stop 2s ease-in-out infinite;
}

@keyframes pulse-stop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.marketing-mega {
  font-size: clamp(2rem, 6vw, 3.2rem) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  margin-bottom: 20px !important;
}

.marketing-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem) !important;
  color: var(--text) !important;
  line-height: 1.75 !important;
  font-weight: 600;
}

.marketing-lead strong {
  color: var(--sky-deep);
}

.marketing-text .timeline {
  margin-top: 8px;
}

.mv-card strong {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.mv-card span {
  font-size: 0.88rem;
}

.mv-badge {
  font-size: 0.95rem;
  padding: 10px 18px;
}

.mv-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.marketing-stats-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  direction: rtl;
  border-radius: 18px;
  padding: 4px;
}

.marketing-stats-panel .mv-card {
  position: static;
  width: 100%;
  box-sizing: border-box;
}

.marketing-stats-panel .mv-badge {
  position: static;
  align-self: flex-start;
}

.marketing-stats-panel .mv-compare {
  position: static;
}

.mv-compare div {
  text-align: center;
  padding: 8px 4px;
}

.mv-compare span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 4px;
}

.mv-compare strong {
  font-size: 1rem;
  font-weight: 900;
  color: #EF4444;
}

.mv-compare-win strong {
  color: var(--green);
}

.mv-compare-win {
  background: #ECFDF5;
  border-radius: 10px;
}

.marketing-visual {
  padding-bottom: 100px;
}

/* ── Quotes section ── */
.quotes-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.quotes-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.quotes-mega {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quotes-sub {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 14px;
}

.quotes-lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

.quotes-zigzag {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.quote-right {
  align-self: flex-start;
  max-width: 92%;
  width: min(520px, 92%);
  border-inline-start: 4px solid var(--sky-deep);
}

.quote-left {
  align-self: flex-end;
  max-width: 92%;
  width: min(520px, 92%);
  border-inline-end: 4px solid var(--pink-deep);
}

body.lang-en .quote-right {
  align-self: flex-end;
  border-inline-start: none;
  border-inline-end: 4px solid var(--sky-deep);
}

body.lang-en .quote-left {
  align-self: flex-start;
  border-inline-end: none;
  border-inline-start: 4px solid var(--pink-deep);
}

.quote-card-accent {
  background: linear-gradient(135deg, #fff 0%, var(--sky-light) 100%);
  border-color: rgba(14, 165, 233, 0.35);
}

.quotes-grid {
  display: none;
}

.quote-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin: 0;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(14, 165, 233, 0.14);
}

.quote-card-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff, var(--sky-light));
  border-color: rgba(14, 165, 233, 0.35);
}

.quote-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  direction: rtl;
}

.quote-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.quote-logo-mcd {
  width: 60px;
  height: auto;
}

.quote-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sky-light);
  border: 2px solid var(--border);
  font-weight: 900;
  color: var(--sky-deep);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.quote-brand-text {
  text-align: right;
}

.quote-brand-name {
  display: block;
  font-size: clamp(1.35rem, 4.5vw, 1.65rem);
  font-weight: 900;
  color: var(--sky-dark);
  line-height: 1.2;
}

.quote-brand-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
}

.quote-card p {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

.quotes-bridge {
  text-align: center;
  margin-top: 36px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

/* ── Marketing timeline ── */
.marketing-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.marketing-text {
  padding-inline-start: 8px;
}

.marketing-text h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 14px;
}

.marketing-text > p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.marketing-text > p strong { color: var(--text); }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 3px solid var(--border);
  padding-right: 32px;
}

.tl-item {
  position: relative;
  padding: 22px 0;
}

.tl-dot {
  position: absolute;
  right: -32px;
  top: 26px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--muted);
}

.tl-active .tl-dot {
  background: var(--sky-deep);
  border-color: var(--sky-deep);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.55);
}

.tl-active .tl-content strong { color: var(--sky-deep); }

.tl-content strong {
  display: block;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 8px;
}

.tl-content p {
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.75;
  color: var(--text);
  font-weight: 500;
}

.mv-stack {
  position: relative;
}

.mv-main {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.mv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
}

.mv-card img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.mv-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--green);
}

.mv-card span {
  font-size: 0.75rem;
  color: var(--muted);
}

.mv-badge {
  background: var(--grad);
  color: #fff;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
}

/* ── Segments (لمن يناسب) ── */
.segments-section {
  background: linear-gradient(180deg, #fff 0%, #f5f8fd 100%);
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.seg-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.seg-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.seg-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.seg-path {
  display: inline-flex;
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.seg-path--sub { background: #dbeafe; color: #1e40af; }
.seg-path--ad { background: #ffedd5; color: #c2410c; }
.seg-path--both { background: #dcfce7; color: #166534; }

.seg-body h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--brand-deep);
}

.seg-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .segments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .segments-grid { grid-template-columns: 1fr; }
}

.pricing-compare-note {
  max-width: 920px;
  margin: 0 auto 28px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #eef4ff;
  border: 1px solid rgba(32, 75, 177, 0.22);
  color: var(--brand-deep);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
}

.price-month {
  margin: 4px 0 0;
  font-size: 0.85rem;
  font-weight: 800;
  color: #204BB1;
}

.price-feature-extra {
  color: #204BB1 !important;
  font-weight: 800;
}

.opening-pack {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 22px;
  border: 2px solid rgba(32, 75, 177, 0.28);
  background: linear-gradient(120deg, #fff7ed 0%, #fff 40%, #eef4ff 100%);
}

.opening-pack-copy h3 {
  margin: 8px 0;
  font-size: 1.35rem;
  color: var(--brand-deep);
}

.opening-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
}

.opening-list li {
  position: relative;
  padding-right: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.opening-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: #204BB1;
}

.opening-pack-price {
  text-align: center;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(32, 75, 177, 0.18);
  padding: 18px 16px;
}

.opening-free {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #166534;
}

.campaigns-section {
  background: #f7f9fc;
}

.campaigns-audience {
  max-width: 900px;
  margin: 0 auto 22px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px dashed rgba(194, 65, 12, 0.35);
  text-align: center;
  font-size: 0.9rem;
  color: #9a3412;
}

@media (max-width: 800px) {
  .opening-pack { grid-template-columns: 1fr; }
  .opening-list { grid-template-columns: 1fr; }
}

/* ── Channels bento ── */
.channels-section { background: transparent; }

.channels-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 200px;
  border: 1px solid var(--border);
}

.bento-lg {
  grid-row: span 2;
  min-height: 420px;
}

.bento img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}

.bento:hover img { transform: scale(1.05); }

.bento-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.bento-num {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--pink-deep);
  margin-bottom: 4px;
}

.bento h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.bento p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

/* ── ROI ── */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.roi-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-card);
}

.roi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.45);
}

.roi-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.roi-body {
  padding: 20px;
}

.roi-body strong {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--sky-deep);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.roi-body h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.roi-body p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Join ── */
.join-section {
  background: transparent;
  border-top: 2px solid var(--border);
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.join-visual { position: relative; }

.join-img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 7/5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.join-float {
  position: absolute;
  bottom: -24px;
  left: -16px;
  right: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.join-float img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.join-float p {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.join-float span {
  font-size: 0.75rem;
  color: var(--muted);
}

.join-form-wrap h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
}

.join-form-wrap > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.join-form input,
.join-form textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.join-form input:focus,
.join-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.join-form textarea { resize: vertical; min-height: 80px; }

.join-alt {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

.join-alt a {
  color: var(--pink-deep);
  font-weight: 700;
  text-decoration: none;
}

.join-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--card);
  color: var(--text);
}

.join-form-status {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.join-form-status--ok {
  background: rgba(5, 150, 105, 0.12);
  color: #047857;
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.join-form-status--error {
  background: rgba(220, 38, 38, 0.1);
  color: #B91C1C;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.join-form-status--warning {
  background: rgba(245, 158, 11, 0.12);
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.35);
  font-weight: 600;
}

/* ── App strip ── */
.app-strip {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  background: #fff;
}

.app-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.app-strip-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}

.app-strip-card--merchant {
  background: linear-gradient(180deg, #f7f9ff 0%, #fff 100%);
  border-color: rgba(32, 75, 177, 0.22);
}

.app-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.app-strip-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-strip-logo {
  width: 82px;
  height: 82px;
  border-radius: 18px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  padding: 10px;
  border: 1px solid #eef2f7;
}

.app-strip strong {
  display: block;
  font-size: 0.95rem;
}

.app-strip p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 4px 0 0;
}

.app-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
}

.app-btn--primary {
  background: #204BB1;
  border-color: #204BB1;
  color: #fff;
}

@media (max-width: 900px) {
  .app-strip-grid { grid-template-columns: 1fr; }
}

.app-btn:hover { background: #f1f5f9; }
.app-btn--primary:hover { background: #183a8c; color: #fff; }

/* ── Pricing packages ── */
.pricing-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 40%, var(--bg) 100%);
}

.pricing-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.pricing-head h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 1.35;
}

.pricing-head p {
  color: var(--muted);
  font-size: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 18px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card--hot {
  border-color: rgba(32, 75, 177, 0.45);
  box-shadow: 0 14px 36px rgba(32, 75, 177, 0.16);
}

.price-card--elite {
  background: linear-gradient(165deg, #0B2C5E 0%, #163A8C 45%, #204BB1 100%);
  color: #fff;
  border-color: rgba(255, 215, 120, 0.45);
}

.price-card--elite .price-was,
.price-card--elite .price-note,
.price-card--elite .price-features li,
.price-card--elite .map-elite-preview p {
  color: rgba(255, 255, 255, 0.82);
}

.price-card--elite .price-tier,
.price-card--elite .price-now strong {
  color: #fff;
}

.price-card--elite .price-features li::before {
  color: #F6D86B;
}

.price-card--elite .btn-glow {
  background: linear-gradient(135deg, #F6D86B, #E8B84A);
  color: #0B2C5E;
  box-shadow: 0 8px 20px rgba(246, 216, 107, 0.35);
}

.price-badge {
  position: absolute;
  top: -11px;
  left: 16px;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
}

.price-badge--gold {
  background: linear-gradient(135deg, #F6D86B, #D4A017);
  color: #0B2C5E;
}

.price-tier {
  display: block;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--brand-deep);
  margin-bottom: 6px;
}

.price-was {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.price-now {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-now strong {
  font-size: 2.35rem;
  line-height: 1;
  color: var(--brand);
}

.price-now span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.price-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin: 0;
  padding: 0;
}

.price-features li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.45;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--brand);
  font-weight: 900;
}

.map-elite-preview {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(246, 216, 107, 0.35);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.map-elite-pin {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
}

.map-elite-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(246, 216, 107, 0.7);
  animation: elitePulse 2s ease-out infinite;
}

.map-elite-crown {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: #F6D86B;
  z-index: 2;
}

.map-elite-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #F6D86B, #D4A017);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%) rotate(-45deg);
  box-shadow: 0 0 0 4px rgba(246, 216, 107, 0.25);
}

.map-elite-preview p {
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

@keyframes elitePulse {
  0% { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.addons-block { margin-top: 8px; }

.campaigns-block {
  margin-top: 8px;
  padding: 28px 22px 8px;
  border-radius: 24px;
  background: linear-gradient(180deg, #eef4ff 0%, #f8fafc 35%, #fff 100%);
  border: 1px solid rgba(32, 75, 177, 0.18);
  box-shadow: 0 12px 36px rgba(32, 75, 177, 0.08);
}

.campaigns-cats-head {
  text-align: center;
  max-width: 720px;
  margin: 8px auto 18px;
}

.campaigns-cats-head h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  color: var(--brand-deep);
}

.campaigns-cats-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.campaigns-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.campaigns-cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.campaigns-cat-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.campaigns-cat-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.campaigns-cat-body h4 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--brand-deep);
}

.campaigns-cat-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
  flex: 1;
}

.campaigns-cat-how {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffedd5;
  color: #c2410c;
  font-size: 0.72rem;
  font-weight: 800;
}

.campaigns-block .campaigns-audience {
  margin-bottom: 18px;
}

.campaigns-block .campaigns-audience a {
  color: #204BB1;
  font-weight: 800;
}

@media (max-width: 960px) {
  .campaigns-cats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .campaigns-cats-grid { grid-template-columns: 1fr; }
  .campaigns-block { padding: 20px 14px 4px; }
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.addons-grid--campaigns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.campaigns-jump {
  text-align: center;
  margin: 28px 0 8px;
}

.campaigns-jump .btn {
  display: inline-flex;
  font-size: 1rem;
  padding: 14px 22px;
}

.campaigns-section {
  background: linear-gradient(180deg, #e8f1fb 0%, #f5f8fd 40%, #fff 100%);
  padding: 56px 0 64px;
  border-top: 3px solid rgba(32, 75, 177, 0.25);
}

.campaigns-block--standalone {
  margin-top: 0;
  padding: 32px 24px 20px;
}

body > .campaigns-section {
  position: relative;
  z-index: 2;
}

.addon-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--brand-deep);
}

.addon-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.addon-was {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.addon-note {
  margin: -4px 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
}

.addon-price strong {
  font-size: 1.8rem;
  color: var(--brand);
}

.addon-price span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
}

.addon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}

.addon-card--boost {
  background: linear-gradient(180deg, #fff 0%, #F5F8FD 100%);
}

.addon-card--bundle {
  border: 1.5px solid rgba(32, 75, 177, 0.35);
  background: linear-gradient(180deg, #EEF3FF 0%, #fff 70%);
  box-shadow: 0 10px 28px rgba(32, 75, 177, 0.12);
}

.addon-card--bundle-hero {
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  border: 2px solid rgba(32, 75, 177, 0.45);
  background: linear-gradient(120deg, #eef4ff 0%, #fff 45%, #f8fbff 100%);
  box-shadow: 0 16px 40px rgba(32, 75, 177, 0.16);
}

.bundle-hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  gap: 22px;
  align-items: center;
}

.bundle-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #204BB1;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.bundle-hero-copy h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.bundle-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.bundle-list li {
  position: relative;
  padding-right: 18px;
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.bundle-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: #204BB1;
  font-weight: 900;
}

.bundle-hero-price {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(32, 75, 177, 0.18);
  border-radius: 18px;
  padding: 18px 16px;
}

.bundle-hero-price .addon-price {
  justify-content: center;
  margin-bottom: 6px;
}

.bundle-hero-price .addon-price strong {
  font-size: 2.6rem;
}

.bundle-price-note {
  margin: 0 0 12px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 800px) {
  .bundle-hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .addons-grid,
  .addons-grid--campaigns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .addons-grid,
  .addons-grid--campaigns { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.footer {
  position: relative;
  padding: 40px 0 32px;
  border-top: 1px solid #e8eef7;
  overflow: hidden;
  background: #ffffff;
  color: #0f172a;
}

.footer::before {
  display: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img,
.footer-logo {
  width: auto;
  height: 52px;
  max-width: 220px;
  object-fit: contain;
  border-radius: 0;
  background: #fff;
}

.footer-brand strong {
  color: #0f172a;
}

.footer-brand p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 2px 0 0;
}

.footer-copy {
  font-size: 0.78rem;
  color: #64748b;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 12px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open a { font-size: 1rem; padding: 8px 0; }
  .nav-toggle { display: block; }

  .cac-quick-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cac-quick-vs { display: none; }

  .hero-collage { grid-template-columns: 1fr; }
  .c2, .c3 { display: none; }

  .cac-grid { grid-template-columns: 1fr; }
  .cac-card { position: static; }

  .cac-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 4px;
    border-bottom: 1px solid var(--border);
  }
  .cac-row:last-child { border-bottom: none; }
  .cac-row-info div { text-align: right; }
  .cac-row-price {
    font-size: 1.2rem;
    text-align: right;
  }
  .cac-bar-wrap {
    height: 10px;
    background: var(--sky-light);
  }
  .cac-bar { min-height: 10px; }

  .cac-quick-item {
    padding: 22px 16px;
  }
  .cac-quick-desc {
    font-size: 0.95rem;
    max-width: none;
  }

  .roadmap-step,
  .roadmap-step-body {
    text-align: right;
  }
  .roadmap-explain {
    text-align: right;
  }
  .customer-roadmap h3 {
    text-align: center;
  }
  .join-grid { grid-template-columns: 1fr; }

  .marketing-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .marketing-text { order: 1; }

  .marketing-visual {
    order: 2;
    padding-bottom: 0;
    margin-top: 4px;
  }

  .mv-main { display: none; }

  .mv-stack { position: static; }

  .marketing-stats-panel {
    position: static;
    bottom: auto;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
  }

  .marketing-stats-panel .mv-badge {
    align-self: stretch;
    text-align: center;
  }

  .quotes-zigzag { gap: 16px; }
  .quote-right,
  .quote-left {
    align-self: stretch;
    width: 100%;
    max-width: none;
  }

  .quotes-mega { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  .quotes-grid { grid-template-columns: 1fr; }
  .quote-card-featured { grid-column: span 1; }

  .channels-bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento-lg {
    grid-row: span 1;
    grid-column: span 2;
    min-height: 280px;
  }

  .roi-grid { grid-template-columns: 1fr; }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
    padding: 16px 18px;
  }
  .metric-divider { display: none; }
  .metric {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px 16px;
  }
  .metric:last-child { border-bottom: none; padding-bottom: 0; }
  .metric:first-child { padding-top: 0; }
  .metric-num { grid-column: 1; }
  .metric p {
    grid-column: 2;
    margin: 0;
    white-space: normal;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .cac-simple-list li { font-size: 1rem; }
  .model-col li { font-size: 0.95rem; }
  .cac-quick-item em { font-size: 0.92rem; line-height: 1.5; }
  .cac-quick-item { padding: 16px 12px; }
  .trust-item { min-height: 64px; padding: 10px 20px 10px 10px; }
  .trust-item span:last-child { font-size: 0.92rem; }

  .join-float {
    position: static;
    margin-top: 16px;
  }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  body { font-size: 18px; }
  .section-intro p { font-size: 1.05rem; line-height: 1.75; }
  .section-intro h2 { font-size: 1.65rem; }
  .hero {
    min-height: auto;
    padding: 72px 0 40px;
  }
  .hero-content { text-align: start; }
  .hero-trial-header { gap: 12px; }
  .hero-trial-logo { width: 44px; height: 44px; }
  .hero-trial-launch,
  .hero-trial-seats { font-size: 0.95rem; padding: 5px 12px; }
  .hero-trial-foot { flex-direction: column; align-items: stretch; }
  .hero-trial-cta { width: 100%; text-align: center; }
  .hero-badge {
    font-size: 0.98rem;
    padding: 12px 16px 12px 10px;
    margin-bottom: 18px;
    line-height: 1.6;
  }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.35rem); line-height: 1.28; }
  .hero-lead { font-size: 1.12rem; line-height: 1.8; max-width: none; }
  .metric-num strong { font-size: 1.9rem; }
  .metric p { font-size: 1rem; }
  .cac-simple { padding: 18px 16px; }
  .cac-simple h3 { font-size: 1.1rem; }
  .cac-confidence p { font-size: 1rem; line-height: 1.7; }
  .cac-row-info strong { font-size: 0.92rem; }
  .cac-row-info span { font-size: 0.88rem; }
  .marketing-mega { font-size: 1.95rem !important; }
  .marketing-lead { font-size: 1.08rem !important; }
  .engagement-stats { grid-template-columns: 1fr; }
  .eng-stat strong { font-size: 2rem; }
  .eng-stat span { font-size: 0.95rem; line-height: 1.6; }
  .eng-theme-block { padding: 24px 16px 20px; }
  .roadmap-step-body strong { font-size: 1.05rem; }
  .roadmap-step-body p { font-size: 0.98rem; }
  .roadmap-explain { font-size: 1rem; }
  .customer-roadmap h3 { font-size: 1.2rem; }
  .vs-table { font-size: 0.95rem; }
  .cac-bar span { font-size: 0.82rem; }
  .tag, .tag-lg { font-size: 1.05rem; padding: 12px 20px; }
  .channels-bento { grid-template-columns: 1fr; }
  .bento-lg { grid-column: span 1; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; font-size: 1rem; }
  .nav-links a { font-size: 1rem; }
}

/* ── Language toggle & mixed AR/EN typography ── */
.lang-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--sky-light);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 999px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.active {
  background: var(--sky-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.en-term {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

body.lang-en {
  font-family: 'Tajawal', system-ui, sans-serif;
}

body.lang-en .timeline {
  border-right: none;
  border-left: 2px solid var(--border);
  padding-right: 0;
  padding-left: 24px;
}

body.lang-en .tl-dot {
  right: auto;
  left: -31px;
}

body.lang-en .tour-points li {
  text-align: left;
}

/* ── CAC icons (SVG — no broken external images) ── */
.cac-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.cac-icon-ig {
  background-color: #E1306C;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

.cac-icon-google {
  background-color: #fff;
  border: 1px solid var(--border);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/%3E%3Cpath fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23FBBC05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E");
}

.cac-icon-influencer {
  background: linear-gradient(135deg, #F472B6, #A78BFA);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.cac-icon-wayno {
  background: linear-gradient(135deg, var(--sky-deep), var(--pink-deep));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L4 7v10l8 5 8-5V7l-8-5zm0 2.18l6 3.75v7.14l-6 3.75-6-3.75V7.93l6-3.75zM11 8v8l5.5-3.5L11 8z'/%3E%3C/svg%3E");
}

.cac-card-thumb {
  width: 72px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top center;
}

.cac-disclaimer {
  display: none;
}

.cac-confidence {
  margin-top: 28px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #ECFDF5, #E0F2FE);
  border: 2px solid rgba(16, 185, 129, 0.35);
  border-radius: 16px;
  text-align: center;
}

.cac-confidence p {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

.cac-confidence strong {
  color: var(--green);
}

.cac-quick-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 36px;
  padding: 24px 20px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.cac-intro h2 {
  font-size: clamp(1.75rem, 5vw, 2.4rem);
}

.cac-quick-item {
  text-align: center;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  direction: rtl;
  min-height: 148px;
  justify-content: flex-start;
}

.cac-quick-price {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px 8px;
  line-height: 1.2;
  margin: 4px 0 2px;
}

.cac-quick-price strong {
  font-size: clamp(1.55rem, 4.5vw, 1.95rem);
  font-weight: 900;
  color: var(--sky-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cac-quick-currency {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pink-deep);
  line-height: 1.2;
}

.cac-quick-price-dash {
  min-height: 2.2rem;
  align-items: center;
}

.cac-quick-desc {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
  margin: 0;
  max-width: 15em;
  padding-top: 2px;
}

.cac-quick-item strong {
  display: block;
}

.cac-quick-item em {
  display: none;
}

.cac-quick-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--sky-deep);
  margin-bottom: 0;
}

.cac-quick-win .cac-quick-price strong {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cac-quick-win {
  background: var(--grad-soft);
  border-radius: 18px;
  border: 2px solid rgba(16, 185, 129, 0.4);
  padding: 26px 18px;
  transform: scale(1.02);
  z-index: 1;
}

/* Green glow — subtle rectangular pulse (no circular spin) */
.cac-glow-box {
  position: relative;
  border-radius: inherit;
}

.cac-glow-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(16, 185, 129, 0.35);
  pointer-events: none;
  animation: waynoBorderPulse 3.5s ease-in-out infinite;
  box-sizing: border-box;
}

.cac-glow-box::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.2);
  animation: waynoGlowPulse 3.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes waynoBorderPulse {
  0%, 100% {
    border-color: rgba(16, 185, 129, 0.2);
    opacity: 0.85;
  }
  50% {
    border-color: rgba(16, 185, 129, 0.55);
    opacity: 1;
  }
}

@keyframes waynoGlowPulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.12);
    opacity: 0.7;
  }
  50% {
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.32);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cac-glow-box::before,
  .cac-glow-box::after { animation: none; }
}

.cac-quick-vs {
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.6;
}

.cac-note-positive {
  color: #059669 !important;
  font-weight: 700;
}

.cac-footnote {
  margin-top: 14px;
  padding: 14px 18px;
}

.cac-sources {
  font-size: 0.88rem !important;
  line-height: 1.65;
}

.cac-row-info strong {
  font-size: 0.95rem;
}

.cac-row-info span {
  font-size: 0.82rem;
  line-height: 1.45;
}

.cac-bar-wrap {
  height: 40px;
}

.cac-bar span {
  font-size: 0.88rem;
}

.cac-note,
.cac-list li {
  font-size: 0.92rem;
  line-height: 1.65;
}

.cac-price .currency {
  font-size: 0.95rem;
}

/* ── CAC global framework (GCC) ── */
.cac-framework {
  margin-bottom: 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--sky-light) 0%, #fff 50%, var(--pink-light, #FDF2F8) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 20px;
}

.framework-head h3 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.framework-head p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 820px;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.framework-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.06);
}

.fw-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--sky-deep);
  background: var(--sky-light);
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.framework-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.framework-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.model-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.model-col {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.model-col h4 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.model-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.model-col li {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  padding-right: 14px;
  position: relative;
}

.model-col li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: var(--sky-deep);
  font-weight: 900;
}

.model-paid {
  background: #FEF2F2;
  border-color: rgba(239, 68, 68, 0.2);
}

.model-wayno {
  background: linear-gradient(135deg, var(--sky-light), var(--pink-light));
  border-color: var(--border);
}

.cac-icon-snap {
  background-color: #FFFC00;
  border: 1px solid #E6E200;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23000' stroke-width='0.5' d='M12 2C6.48 2 2 6.15 2 11.5c0 2.5 1.2 4.74 3.08 6.3L4 22l4.55-1.42C9.58 21.18 10.76 21.5 12 21.5c5.52 0 10-4.15 10-9.5S17.52 2 12 2z'/%3E%3C/svg%3E");
  background-size: 22px 22px;
}

/* ── Engagement ── */
.engagement-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eng-theme-block {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 18px 24px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-card);
  max-width: 520px;
  margin-inline: auto;
}

.engagement-intro {
  max-width: none;
  margin-inline: auto;
}

.eng-lead-block {
  text-align: right;
  max-width: 540px;
  margin: 0 auto;
  direction: rtl;
}

.eng-lead-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sky-dark);
  margin-bottom: 12px;
}

.eng-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eng-features-list li {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  padding-right: 20px;
  position: relative;
}

.eng-features-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--sky-deep);
  font-weight: 900;
}

.eng-vs {
  background: var(--sky-light);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text);
  text-align: right;
}

.eng-vs strong {
  color: var(--sky-dark);
}

.engagement-intro h2 {
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  line-height: 1.35;
  margin-bottom: 14px;
}

.engagement-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 0;
}

.eng-stat {
  text-align: center;
  padding: 20px 14px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.eng-stat strong {
  display: block;
  font-size: clamp(1.75rem, 6vw, 2.1rem);
  font-weight: 900;
  color: var(--sky-deep);
  margin-bottom: 8px;
  background: none;
  -webkit-text-fill-color: var(--sky-deep);
}

.eng-stat-win strong {
  color: var(--sky);
  -webkit-text-fill-color: var(--sky);
}

.eng-stat span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  display: block;
  min-height: 2.6em;
}

@media (min-width: 768px) {
  .eng-theme-block {
    max-width: 100%;
    padding: 36px 28px 32px;
  }

  .engagement-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .customer-roadmap,
  .engagement-section .vs-apps {
    max-width: 100%;
  }
}

.sales-funnel {
  background: var(--sky-light);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 20px;
  padding: 32px 28px;
  margin-bottom: 40px;
}

.customer-roadmap {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 18px 24px;
  margin-bottom: 32px;
  max-width: 520px;
  margin-inline: auto;
  box-shadow: var(--shadow-card);
  text-align: right;
}

.customer-roadmap h3 {
  text-align: center;
  font-size: clamp(1.15rem, 4vw, 1.35rem);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--sky-dark);
}

.roadmap-explain {
  text-align: right;
  background: var(--sky-light);
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 24px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  border: 1px solid var(--border);
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.roadmap-step {
  position: relative;
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 22px 18px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.08);
}

.roadmap-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 3px;
  height: 20px;
  background: var(--grad);
  border-radius: 2px;
}

.roadmap-step-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.roadmap-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
  flex-shrink: 0;
}

.roadmap-step-win {
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(180deg, #fff 0%, rgba(209, 250, 229, 0.5) 100%);
}

.roadmap-step-win .roadmap-circle {
  background: linear-gradient(135deg, var(--green), #55efc4);
  box-shadow: 0 4px 14px rgba(0, 184, 148, 0.4);
}

.roadmap-step-win .roadmap-label {
  color: var(--green);
}

.roadmap-step-body {
  text-align: right;
  direction: rtl;
}

.roadmap-step-body strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--sky-dark);
}

.roadmap-step-body p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
  text-align: right;
}

.roadmap-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--sky-deep);
  letter-spacing: 0.02em;
}

.roadmap-note {
  margin-top: 8px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.roadmap-note strong {
  color: var(--sky-deep);
}

.engagement-section .vs-apps {
  max-width: 520px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .customer-roadmap {
    max-width: 100%;
    padding: 32px 28px;
  }

  .roadmap-timeline {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
  }

  .roadmap-step {
    flex: 1 1 200px;
    max-width: 220px;
    margin-bottom: 0;
  }

  .roadmap-step:not(:last-child)::after {
    display: none;
  }

  .engagement-section .vs-apps {
    max-width: 100%;
  }
}

@media (min-width: 960px) {
  .roadmap-timeline {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .roadmap-step {
    flex: 1;
    max-width: none;
  }
}

.text-key {
  font-weight: 900;
  color: var(--text);
}

.model-col li .text-key {
  font-size: 1.05rem;
}

.nav-themes {
  color: var(--pink-deep) !important;
  font-weight: 800;
}

.sales-funnel h3 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 28px;
}

.funnel-track {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.funnel-step {
  flex: 1;
  min-width: 120px;
  max-width: 160px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.funnel-step-win {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border-color: rgba(16, 185, 129, 0.35);
}

.funnel-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 8px;
}

.funnel-step strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.funnel-step p {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.funnel-arrow {
  align-self: center;
  color: var(--sky-deep);
  font-weight: 900;
  font-size: 1.2rem;
  opacity: 0.5;
}

body.lang-en .funnel-arrow {
  transform: scaleX(-1);
}

.funnel-note {
  margin-top: 24px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  padding: 14px 18px;
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
}

.vs-apps h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-align: center;
}

.vs-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.vs-table th,
.vs-table td {
  padding: 14px 18px;
  text-align: right;
  border-bottom: 1px solid var(--border);
}

body.lang-en .vs-table th,
body.lang-en .vs-table td {
  text-align: left;
}

.vs-table thead th {
  background: #F8FAFC;
  font-weight: 800;
  font-size: 0.82rem;
}

.vs-table tbody tr:last-child td {
  border-bottom: none;
}

.vs-table .vs-highlight {
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.08), rgba(249, 168, 212, 0.1));
  font-weight: 900;
  color: var(--text);
  font-size: 1.02rem;
}

@media (max-width: 960px) {
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .model-compare { grid-template-columns: 1fr; }
  .funnel-arrow { display: none; }
  .funnel-step { min-width: 140px; max-width: none; flex: 1 1 40%; }
}

@media (max-width: 560px) {
  .framework-grid { grid-template-columns: 1fr; }
  .funnel-step { flex: 1 1 100%; }
}

#campaigns, .section[id] {
  scroll-margin-top: 96px;
}
