*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand: #7C3AED; --brand-light: #8B5CF6; --brand-dark: #6D28D9;
  --blue: #2563EB; --dark: #09090b; --dark-2: #18181b; --dark-3: #27272a;
  --light: #fafafa; --white: #ffffff; --border: #e4e4e7;
  --text: #09090b; --muted: #71717a; --green: #16a34a; --green-bg: #dcfce7;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
[dir=rtl] body, [dir=rtl] { font-family: 'Tajawal', -apple-system, sans-serif; }

/* ─── NAVBAR ─── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(9,9,11,.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,.07); padding: 0 40px; height: 64px; display: flex; align-items: center; justify-content: space-between; transition: all .3s; }
nav.scrolled { background: rgba(9,9,11,.97); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--brand), var(--blue)); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.nav-logo-text { font-size: 17px; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-ctas { display: flex; align-items: center; gap: 10px; }
.btn-ghost { padding: 7px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); text-decoration: none; border: 1px solid rgba(255,255,255,.12); transition: all .2s; }
.btn-ghost:hover { background: rgba(255,255,255,.06); color: #fff; }
.btn-primary { padding: 8px 18px; border-radius: 8px; font-size: 14px; font-weight: 700; background: var(--brand); color: #fff; text-decoration: none; transition: all .2s; box-shadow: 0 0 20px rgba(124,58,237,.3); }
.btn-primary:hover { background: var(--brand-light); box-shadow: 0 0 30px rgba(124,58,237,.5); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: #fff; }

/* ─── LANG SWITCHER ─── */
.lang-sw { display: flex; align-items: center; gap: 2px; border-left: 1px solid rgba(255,255,255,.1); padding-left: 12px; margin-left: 6px; }
[dir=rtl] .lang-sw { border-left: none; border-right: 1px solid rgba(255,255,255,.1); padding-left: 0; padding-right: 12px; margin-left: 0; margin-right: 6px; }
.lang-sw a { font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 6px; color: rgba(255,255,255,.45); text-decoration: none; transition: all .15s; }
.lang-sw a:hover { color: #fff; background: rgba(255,255,255,.08); }
.lang-sw a.active { color: #fff; background: rgba(124,58,237,.25); border: 1px solid rgba(124,58,237,.4); }

/* ─── HERO ─── */
.hero { min-height: 100vh; background: var(--dark); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 120px 40px 80px; position: relative; overflow: hidden; }
.hero-bg-orb { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(124,58,237,.35), transparent); top: -100px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(37,99,235,.25), transparent); bottom: -50px; right: -100px; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(124,58,237,.15), transparent); top: 40%; left: 60%; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.3); border-radius: 100px; padding: 6px 14px; margin-bottom: 28px; animation: fadeUp .6s ease forwards; }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: pulse 2s infinite; }
.hero-badge-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); }
.hero-badge-chip { font-size: 10px; font-weight: 700; background: var(--brand); color: #fff; padding: 2px 8px; border-radius: 20px; }
.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  line-height: 1.22;
  letter-spacing: 0;
  max-width: 860px;
  animation: fadeUp .7s .1s ease both;
}
.hero h1 span {
  display: inline-block;
  padding: 0 4px 6px;
  background: linear-gradient(135deg, #A78BFA, #60A5FA);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.55); text-align: center; max-width: 600px; line-height: 1.65; margin: 20px 0 36px; font-weight: 400; animation: fadeUp .7s .2s ease both; }
.hero-ctas { display: flex; gap: 14px; margin-bottom: 60px; flex-wrap: wrap; justify-content: center; animation: fadeUp .7s .3s ease both; }
.hero-cta-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-size: 16px; font-weight: 700; background: var(--brand); color: #fff; text-decoration: none; transition: all .2s; box-shadow: 0 0 40px rgba(124,58,237,.4); }
.hero-cta-primary:hover { background: var(--brand-light); transform: translateY(-2px); box-shadow: 0 0 60px rgba(124,58,237,.6); }
.hero-cta-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-size: 16px; font-weight: 600; color: rgba(255,255,255,.8); text-decoration: none; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); transition: all .2s; }
.hero-cta-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }

/* ─── Dashboard Mockup ─── */
.hero-mockup { width: 100%; max-width: 900px; position: relative; animation: fadeUp .9s .4s ease both; }
.mockup-window { background: #111113; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; overflow: hidden; box-shadow: 0 40px 120px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05); }
.mockup-titlebar { background: #1a1a1d; padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.05); }
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-url { flex: 1; text-align: center; background: rgba(255,255,255,.05); border-radius: 5px; padding: 4px 12px; font-size: 11px; color: rgba(255,255,255,.3); margin: 0 20px; }
.mockup-body { display: flex; height: 380px; }
.mockup-sidebar { width: 52px; background: #0f0f11; border-right: 1px solid rgba(255,255,255,.05); padding: 12px 0; display: flex; flex-direction: column; align-items: center; gap: 6px; }
[dir=rtl] .mockup-sidebar { border-right: none; border-left: 1px solid rgba(255,255,255,.05); }
.msb-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.msb-icon.active { background: rgba(124,58,237,.25); }
.msb-icon svg { opacity: .4; }
.msb-icon.active svg { opacity: 1; }
.mockup-content { flex: 1; padding: 16px; overflow: hidden; }
.mc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mc-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); }
.mc-badge { font-size: 10px; font-weight: 700; background: rgba(124,58,237,.2); color: #A78BFA; padding: 3px 9px; border-radius: 20px; }
.mc-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 14px; }
.mc-stat { background: #1a1a1d; border: 1px solid rgba(255,255,255,.06); border-radius: 8px; padding: 10px 12px; }
.mc-stat-label { font-size: 9px; color: rgba(255,255,255,.4); margin-bottom: 4px; font-weight: 500; }
.mc-stat-val { font-size: 16px; font-weight: 800; color: #fff; }
.mc-stat-val.green { color: #4ade80; }
.mc-stat-val.purple { color: #A78BFA; }
.mc-stat-val.blue { color: #60A5FA; }
.mc-row { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; }
.mc-chart { background: #1a1a1d; border: 1px solid rgba(255,255,255,.06); border-radius: 8px; padding: 12px; }
.mc-chart-title { font-size: 9px; color: rgba(255,255,255,.4); margin-bottom: 8px; font-weight: 500; }
.mc-chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 50px; }
.mc-bar { flex: 1; background: rgba(124,58,237,.15); border-radius: 3px 3px 0 0; transition: height .3s; }
.mc-bar.active { background: linear-gradient(to top, #7C3AED, #A78BFA); }
.mc-list { background: #1a1a1d; border: 1px solid rgba(255,255,255,.06); border-radius: 8px; padding: 10px; }
.mc-list-item { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.mc-list-item:last-child { border-bottom: none; }
.mc-list-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.mc-list-name { font-size: 9px; color: rgba(255,255,255,.6); flex: 1; }
.mc-list-status { font-size: 8px; font-weight: 700; padding: 2px 6px; border-radius: 10px; }
.s-delivered { background: rgba(34,197,94,.15); color: #4ade80; }
.s-pending { background: rgba(251,191,36,.15); color: #fbbf24; }
.s-shipped { background: rgba(96,165,250,.15); color: #60A5FA; }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 40px; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
[dir=rtl] .stat-item { border-right: none; border-left: 1px solid var(--border); }
[dir=rtl] .stat-item:last-child { border-left: none; }
.stat-number { font-size: 36px; font-weight: 900; color: var(--text); letter-spacing: -.03em; }
.stat-number span { color: var(--brand); }
.stat-desc { font-size: 13px; color: var(--muted); margin-top: 3px; font-weight: 500; }

/* ─── SECTIONS COMMON ─── */
.section { padding: 96px 40px; }
.section-center { text-align: center; }
.section-label { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.section-label::before, .section-label::after { content: ''; flex: 1; display: inline-block; width: 20px; height: 1px; background: var(--brand); opacity: .4; }
h2.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -.03em; line-height: 1.1; color: var(--text); }
h2.section-title.white { color: var(--white); }
.section-sub { font-size: 18px; color: var(--muted); max-width: 580px; margin: 16px auto 0; line-height: 1.6; font-weight: 400; }
.section-sub.white { color: rgba(255,255,255,.55); }
.container { max-width: 1140px; margin: 0 auto; }

/* ─── FEATURES GRID ─── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: all .25s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,.03), transparent); opacity: 0; transition: opacity .25s; }
.feature-card:hover { border-color: rgba(124,58,237,.3); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(124,58,237,.1); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(37,99,235,.08)); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-icon svg { width: 22px; height: 22px; color: var(--brand); stroke: var(--brand); }
.feature-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -.01em; }
.feature-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.feature-tag { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 700; color: var(--brand); background: rgba(124,58,237,.08); padding: 3px 10px; border-radius: 20px; }

/* ─── HOW IT WORKS ─── */
.how-section { background: var(--dark); color: var(--white); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 60px; position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: calc(16.6% + 18px); right: calc(16.6% + 18px); height: 1px; background: linear-gradient(to right, transparent, var(--brand), transparent); opacity: .3; }
.step { text-align: center; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 22px; font-weight: 900; color: var(--brand-light); position: relative; }
.step-num::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(124,58,237,.15); }
.step-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ─── SHOWCASE ─── */
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--border); }
.showcase-row:last-child { border-bottom: none; }
.showcase-text .section-label { display: inline-flex; }
.showcase-text h3 { font-size: 32px; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; color: var(--text); margin-bottom: 16px; }
.showcase-text p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.showcase-features { display: flex; flex-direction: column; gap: 10px; }
.sf-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); }
.sf-check { width: 20px; height: 20px; border-radius: 50%; background: var(--green-bg); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.sf-check svg { width: 11px; height: 11px; }
.showcase-visual { position: relative; }
.sv-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 24px; box-shadow: 0 8px 40px rgba(0,0,0,.08); }
.sv-card-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; }
.sv-tag { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.sv-tag.green { background: var(--green-bg); color: var(--green); }
.sv-tag.purple { background: rgba(124,58,237,.1); color: var(--brand); }
.sv-stat-row { display: flex; gap: 10px; margin-bottom: 14px; }
.sv-stat { flex: 1; background: var(--light); border-radius: 10px; padding: 12px; text-align: center; }
.sv-stat-n { font-size: 22px; font-weight: 800; color: var(--text); }
.sv-stat-l { font-size: 10px; color: var(--muted); margin-top: 2px; }
.sv-order-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sv-order-row:last-child { border-bottom: none; }
.sv-order-id { font-size: 12px; font-weight: 700; color: var(--text); width: 70px; }
.sv-order-name { font-size: 12px; color: var(--muted); flex: 1; }
.sv-order-amt { font-size: 12px; font-weight: 700; color: var(--text); }
.sv-order-status { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 20px; }
.o-delivered { background: var(--green-bg); color: var(--green); }
.o-pending { background: #fef9c3; color: #92400e; }
.o-shipping { background: #dbeafe; color: #1e40af; }
.o-confirmed { background: #ede9fe; color: #5b21b6; }

/* ─── WHATSAPP ─── */
.wa-section { background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #130a27 100%); position: relative; overflow: hidden; }
.wa-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(124,58,237,.2), transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(37,211,102,.1), transparent 60%); }
.wa-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.wa-text h2 { font-size: 38px; font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px; }
.wa-text h2 span { color: #25D366; }
.wa-text p { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 28px; }
.wa-features { display: flex; flex-direction: column; gap: 12px; }
.wa-feat { display: flex; align-items: flex-start; gap: 12px; }
.wa-feat-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(37,211,102,.15); color: #25D366; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-feat-icon svg { width: 18px; height: 18px; }
.wa-feat-text strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.wa-feat-text span { font-size: 13px; color: rgba(255,255,255,.45); }
.wa-phone { position: relative; }
.wa-phone-frame { background: #1a1a2e; border: 1px solid rgba(37,211,102,.15); border-radius: 16px; padding: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.wa-phone-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.06); }
.wa-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; }
.wa-contact-name { font-size: 14px; font-weight: 700; color: #fff; }
.wa-contact-status { font-size: 11px; color: rgba(255,255,255,.4); }
.wa-messages { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.wa-msg { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: 12px; line-height: 1.5; }
.wa-msg.sent { background: #005c4b; color: rgba(255,255,255,.9); align-self: flex-end; border-radius: 12px 12px 2px 12px; }
.wa-msg.recv { background: #202c33; color: rgba(255,255,255,.85); align-self: flex-start; border-radius: 12px 12px 12px 2px; }
.wa-msg-time { font-size: 9px; color: rgba(255,255,255,.3); text-align: right; margin-top: 3px; }
.wa-input-bar { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.05); border-radius: 100px; padding: 8px 14px; }
.wa-input-placeholder { flex: 1; font-size: 12px; color: rgba(255,255,255,.25); }
.wa-send-btn { width: 30px; height: 30px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; }

/* ─── INTEGRATIONS ─── */
.integrations-section { background: var(--light); }
.integrations-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 48px; }
.integration-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 24px 16px; text-align: center; transition: all .2s; cursor: default; }
.integration-card:hover { border-color: rgba(124,58,237,.25); box-shadow: 0 8px 24px rgba(124,58,237,.08); transform: translateY(-2px); }
.integration-logo { width: 48px; height: 48px; border-radius: 12px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.integration-name { font-size: 13px; font-weight: 700; color: var(--text); }
.integration-type { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 32px; position: relative; transition: all .25s; }
.price-card.featured { background: linear-gradient(135deg, #4c1d95, #1e3a8a); border-color: transparent; box-shadow: 0 20px 60px rgba(124,58,237,.3); }
.price-card:hover:not(.featured) { border-color: rgba(124,58,237,.25); box-shadow: 0 8px 30px rgba(124,58,237,.08); }
.price-featured-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--brand), var(--blue)); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 16px; border-radius: 100px; white-space: nowrap; box-shadow: 0 4px 12px rgba(124,58,237,.4); }
.price-plan { font-size: 14px; font-weight: 700; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; }
.price-plan.white { color: rgba(255,255,255,.6); }
.price-amount { font-size: 44px; font-weight: 900; color: var(--text); letter-spacing: -.04em; line-height: 1; }
.price-amount.white { color: #fff; }
.price-period { font-size: 14px; color: var(--muted); font-weight: 400; }
.price-period.white { color: rgba(255,255,255,.5); }
.price-divider { height: 1px; background: var(--border); margin: 24px 0; }
.price-divider.white { background: rgba(255,255,255,.1); }
.price-features { display: flex; flex-direction: column; gap: 11px; }
.pf-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.pf-item.white { color: rgba(255,255,255,.75); }
.pf-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green-bg); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pf-check.white { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.pf-check svg { width: 10px; height: 10px; }
.price-cta { margin-top: 28px; display: block; text-align: center; padding: 13px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .2s; }
.price-cta.outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.price-cta.outline:hover { border-color: var(--brand); color: var(--brand); }
.price-cta.filled { background: var(--white); color: var(--brand); box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.price-cta.filled:hover { background: #f0f0f0; }
.price-currency { font-size: 20px; font-weight: 700; vertical-align: super; }

/* ─── FAQ ─── */
.faq-list { max-width: 680px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; user-select: none; gap: 16px; }
.faq-q:hover { color: var(--brand); }
.faq-arrow { width: 20px; height: 20px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: rgba(124,58,237,.1); }
.faq-item.open .faq-arrow svg { color: var(--brand); stroke: var(--brand); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--border); }
.faq-item.open .faq-a { display: block; }

/* ─── FINAL CTA ─── */
.cta-section { background: linear-gradient(135deg, var(--dark) 0%, #1e1035 50%, #0a1628 100%); position: relative; overflow: hidden; text-align: center; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(124,58,237,.25), transparent 70%); }
.cta-section .container { position: relative; }
.cta-title { font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: #fff; letter-spacing: -.04em; line-height: 1.05; margin-bottom: 20px; }
.cta-sub { font-size: 18px; color: rgba(255,255,255,.5); max-width: 500px; margin: 0 auto 40px; line-height: 1.6; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 12px; font-size: 16px; font-weight: 800; background: var(--brand); color: #fff; text-decoration: none; transition: all .2s; box-shadow: 0 0 40px rgba(124,58,237,.4); }
.cta-btn-primary:hover { background: var(--brand-light); box-shadow: 0 0 60px rgba(124,58,237,.6); transform: translateY(-2px); }
.cta-btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 12px; font-size: 16px; font-weight: 700; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.15); text-decoration: none; transition: all .2s; }
.cta-btn-secondary:hover { background: rgba(255,255,255,.07); }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.cta-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.4); }
.cta-trust-item svg { color: rgba(255,255,255,.3); stroke: rgba(255,255,255,.3); width: 15px; height: 15px; }

/* ─── FOOTER ─── */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.05); padding: 60px 40px 32px; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.35); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.05); flex-wrap: wrap; gap: 12px; }
.footer-copyright { font-size: 13px; color: rgba(255,255,255,.25); }
.footer-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; color: rgba(255,255,255,.2); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 8px #22c55e; } 50% { box-shadow: 0 0 16px #22c55e; } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ─── RTL OVERRIDES ─── */
[dir=rtl] .hero h1 span { background: none; -webkit-background-clip: unset; background-clip: unset; -webkit-text-fill-color: #A78BFA; color: #A78BFA; padding: 0; }
[dir=rtl] .hero h1 { overflow: visible; }
[dir=rtl] .lang-sw { border-left: none; border-right: 1px solid rgba(255,255,255,.1); padding-left: 0; padding-right: 12px; margin-left: 0; margin-right: 6px; }
[dir=rtl] .mockup-sidebar { border-right: none; border-left: 1px solid rgba(255,255,255,.05); }
[dir=rtl] .stat-item { border-right: none; border-left: 1px solid var(--border); }
[dir=rtl] .stat-item:last-child { border-left: none; }
[dir=rtl] h2.section-title { letter-spacing: 0; }
[dir=rtl] .showcase-text h3 { letter-spacing: 0; }
[dir=rtl] .wa-text h2 { letter-spacing: 0; }
[dir=rtl] .cta-title { letter-spacing: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .showcase-row { grid-template-columns: 1fr; gap: 32px; }
  .showcase-row.reverse-mobile .showcase-visual { order: -1; }
  .wa-inner { grid-template-columns: 1fr; }
  .wa-phone { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .integrations-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-ctas .btn-ghost { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 90px 20px 48px; }
  .section { padding: 56px 20px; }
  .stats-bar { padding: 0; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); padding: 18px 12px; }
  .stat-item:nth-child(1),.stat-item:nth-child(3) { border-right: 1px solid var(--border) !important; }
  .stat-item:nth-child(3),.stat-item:nth-child(4) { border-bottom: none; }
  .stat-number { font-size: 28px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .mockup-body { height: 220px; }
  .mc-stats { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(2,1fr); }
  .footer-col { display: none; }
  .footer-col:first-of-type { display: block; }
  .footer-brand { display: block !important; }
  .lang-sw { display: none; }
}
@media (max-width: 600px) {
  .hero-mockup { display: none; }
  .hero h1 { font-size: 34px; letter-spacing: -.03em; }
  [dir=rtl] .hero h1 { letter-spacing: 0; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px; gap: 10px; }
  .hero-cta-primary, .hero-cta-secondary { justify-content: center; padding: 13px 20px; font-size: 15px; }
  .hero-badge { font-size: 11px; padding: 5px 10px; flex-wrap: wrap; justify-content: center; gap: 5px; }
  .section-title, h2.section-title { font-size: 26px !important; }
  .section-sub { font-size: 15px; }
  .wa-text h2 { font-size: 26px; }
  .showcase-text h3 { font-size: 22px; }
  .cta-title { font-size: 28px; }
  .cta-sub { font-size: 15px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btn-primary,.cta-btn-secondary { width: 100%; max-width: 300px; justify-content: center; padding: 14px 20px; font-size: 15px; }
  .cta-trust { flex-direction: column; gap: 12px; align-items: flex-start; padding: 0 20px; }
  .pricing-grid { max-width: 100%; }
  .price-card { padding: 24px 20px; }
  .integrations-grid { grid-template-columns: repeat(2,1fr); }
  .feature-card { padding: 22px 18px; }
  .sv-card { padding: 18px; }
  .sv-stat-row { gap: 8px; }
  .sv-stat-n { font-size: 18px; }
  .mc-row { grid-template-columns: 1fr; }
  .mc-list { display: none; }
  .step-num { width: 56px; height: 56px; font-size: 18px; }
  footer { padding: 48px 20px 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-col { display: block !important; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: 28px; }
  nav { padding: 0 14px; }
  .nav-logo-text { font-size: 15px; }
  .btn-primary { padding: 7px 12px; font-size: 13px; }
}
