/* ════════════════════════════════════════════════════════════
   TABSEEM — LANDING PAGE STYLES
   Gradient-rich, bilingual, light/dark themes
════════════════════════════════════════════════════════════ */

/* ── Google Fonts ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Sora:wght@300;400;500;600;700;800&display=swap');

/* ── Theme Variables ────────────────────────────────────── */
:root {
  /* Brand */
  --pr:      #5b21b6;
  --pr2:     #7c3aed;
  --pr3:     #8b5cf6;
  --ac:      #06b6d4;
  --ac2:     #22d3ee;
  --gold:    #f59e0b;
  --rose:    #f43f5e;

  /* Gradients */
  --grad-pr:   linear-gradient(135deg, #5b21b6, #7c3aed, #06b6d4);
  --grad-hero: linear-gradient(160deg, #5b21b6 0%, #7c3aed 40%, #0891b2 100%);
  --grad-card: linear-gradient(135deg, rgba(124,58,237,.08), rgba(6,182,212,.04));

  /* Animations */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  /* Misc */
  --radius:   16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow:   0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:0 20px 60px rgba(0,0,0,.15);
}

/* ── LIGHT THEME ────────────────────────────────────────── */
[data-theme="light"] {
  --bg:        #fafafa;
  --bg2:       #f3f4f6;
  --bg3:       #e9eaf0;
  --card:      #ffffff;
  --card2:     #f8f8fc;
  --border:    rgba(0,0,0,.08);
  --border2:   rgba(0,0,0,.12);
  --tx:        #0f0f1a;
  --txs:       #4b4b6a;
  --txx:       #9090aa;
  --nav-bg:    rgba(250,250,250,.85);
  --glow:      rgba(91,33,182,.18);
  --hero-mesh: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,.12) 0%, transparent 70%),
               radial-gradient(ellipse 40% 40% at 90% 60%,  rgba(6,182,212,.08) 0%, transparent 60%);
}

/* ── DARK THEME ─────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:        #08080f;
  --bg2:       #0f0f1a;
  --bg3:       #16162a;
  --card:      #13131e;
  --card2:     #1a1a2e;
  --border:    rgba(255,255,255,.07);
  --border2:   rgba(255,255,255,.12);
  --tx:        #f0f0fc;
  --txs:       #9090b8;
  --txx:       #5a5a78;
  --nav-bg:    rgba(8,8,15,.85);
  --glow:      rgba(124,58,237,.3);
  --hero-mesh: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,.18) 0%, transparent 70%),
               radial-gradient(ellipse 40% 40% at 90% 60%,  rgba(6,182,212,.1) 0%, transparent 60%);
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--tx);
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden;
  transition: background .3s, color .3s;
  line-height: 1.6;
}
[dir="ltr"] body { font-family: 'Sora', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; background: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.display {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
.body-lg { font-size: 1.1rem; line-height: 1.8; color: var(--txs); }
.body-md { font-size: .95rem; line-height: 1.7; color: var(--txs); }
.label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--pr3);
}

.gradient-text {
  background: var(--grad-pr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media(max-width:900px) { .grid-3,.grid-4 { grid-template-columns:1fr 1fr; } .grid-2 { grid-template-columns:1fr; } }
@media(max-width:580px) { .grid-3,.grid-4,.grid-2 { grid-template-columns:1fr; } }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.text-center { text-align: center; }
.mt-8   { margin-top: 8px; }
.mt-12  { margin-top: 12px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mt-64  { margin-top: 64px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-48  { margin-bottom: 48px; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 12px;
  font-size: .95rem; font-weight: 700;
  transition: all .22s var(--ease-spring);
  white-space: nowrap;
}
.btn-sm { padding: 8px 18px; font-size: .85rem; border-radius: 9px; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 14px; }

.btn-primary {
  background: var(--grad-pr);
  color: #fff;
  box-shadow: 0 6px 24px var(--glow);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 36px var(--glow); }
.btn-primary:active { transform: translateY(0) scale(.98); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border2);
  color: var(--tx);
}
.btn-outline:hover { border-color: var(--pr3); background: rgba(124,58,237,.06); color: var(--pr3); }

.btn-ghost {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--tx);
  box-shadow: var(--shadow);
}
.btn-ghost:hover { border-color: var(--pr3); transform: translateY(-1px); }

.btn-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--txs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all .2s;
}
.btn-icon:hover { border-color: var(--pr3); color: var(--pr3); background: rgba(124,58,237,.06); }

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header .label { display: block; margin-bottom: 14px; }
.section-header .h2 { margin-bottom: 16px; }
.section-header .body-lg { max-width: 520px; margin: 0 auto; }

/* ── CARD BASE ──────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover {
  border-color: rgba(124,58,237,.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12), 0 0 0 1px rgba(124,58,237,.1);
}

/* ── BADGE ──────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  font-size: .78rem; font-weight: 700;
}
.badge-pr { background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.25); color: var(--pr3); }
.badge-ac { background: rgba(6,182,212,.12);  border: 1px solid rgba(6,182,212,.25);  color: var(--ac2); }
.badge-gold { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.25); color: #f59e0b; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 2s infinite; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes pulse       { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
@keyframes fadeUp      { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn      { from{opacity:0} to{opacity:1} }
@keyframes slideRight  { from{opacity:0;transform:translateX(-24px)} to{opacity:1;transform:translateX(0)} }
@keyframes slideLeft   { from{opacity:0;transform:translateX(24px)} to{opacity:1;transform:translateX(0)} }
@keyframes float       { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes shimmer     { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
@keyframes gradientShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes borderGlow  { 0%,100%{box-shadow:0 0 0 0 var(--glow)} 50%{box-shadow:0 0 30px 6px var(--glow)} }
@keyframes countUp     { from{opacity:0;transform:scale(.8)} to{opacity:1;transform:scale(1)} }
@keyframes spin        { to{transform:rotate(360deg)} }

.fade-up    { opacity:0; transform:translateY(28px); transition:opacity .65s var(--ease-out),transform .65s var(--ease-out); }
.fade-up.in { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:.1s; }
.delay-2 { transition-delay:.2s; }
.delay-3 { transition-delay:.3s; }
.delay-4 { transition-delay:.4s; }
.delay-5 { transition-delay:.5s; }

/* ════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0 24px;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
#navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 900;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-pr);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #fff;
  box-shadow: 0 4px 16px var(--glow);
}
.nav-links {
  display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center;
}
.nav-links a {
  font-size: .9rem; font-weight: 600; color: var(--txs);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px;
  left: 50%; right: 50%; height: 2px;
  background: var(--grad-pr); border-radius: 1px;
  transition: left .25s, right .25s;
}
.nav-links a:hover { color: var(--tx); }
.nav-links a:hover::after { left: 0; right: 0; }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-control {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--border); color: var(--txs);
  font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.nav-control:hover { border-color: var(--pr3); color: var(--pr3); background: rgba(124,58,237,.06); }
.nav-control svg { width: 16px; height: 16px; }

/* Mobile Nav */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--border);
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--tx); border-radius: 1px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 800;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
  border-left: 1px solid var(--border);
}
[dir="rtl"] .mobile-nav { transform: translateX(-100%); border-left: none; border-right: 1px solid var(--border); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-size: 1.3rem; font-weight: 700; color: var(--tx); padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-nav-actions { display: flex; gap: 12px; margin-top: 32px; }

@media(max-width:768px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
}

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--hero-mesh);
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute; inset: 0; opacity: .03;
  background-image:
    linear-gradient(var(--border2) 1px, transparent 1px),
    linear-gradient(90deg, var(--border2) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-orb-1 {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
  width: 600px; height: 600px; top: -200px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124,58,237,.2) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
  width: 300px; height: 300px; bottom: 10%; right: 5%;
  background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite reverse;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1180px; margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.22);
  border-radius: 100px; padding: 7px 18px;
  font-size: .8rem; font-weight: 700; color: var(--pr3);
  margin-bottom: 28px;
  animation: fadeUp .5s ease both;
}
.hero-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ac); animation: pulse 2s infinite; }
.hero-title {
  animation: fadeUp .6s .08s ease both;
  margin-bottom: 22px;
}
.hero-desc {
  animation: fadeUp .6s .16s ease both;
  max-width: 600px; margin: 0 auto 40px;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  animation: fadeUp .6s .24s ease both;
}

/* Hero Stats */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp .6s .4s ease both;
}
.hero-stat-num {
  font-size: 1.9rem; font-weight: 900;
  background: var(--grad-pr);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat-label { font-size: .78rem; color: var(--txx); margin-top: 1px; }
.hero-stat-divider { width: 1px; height: 44px; background: var(--border); }

/* App Preview */
.hero-preview {
  position: relative; max-width: 960px; margin: 56px auto 0;
  animation: fadeUp .8s .5s ease both;
}
.preview-glow {
  position: absolute; inset: -30px; border-radius: 32px;
  background: radial-gradient(ellipse at center, var(--glow) 0%, transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.preview-frame {
  position: relative; z-index: 1;
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
}
.preview-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.preview-dots { display: flex; gap: 7px; }
.preview-dot { width: 11px; height: 11px; border-radius: 50%; }
.preview-dot:nth-child(1) { background: #ff5f57; }
.preview-dot:nth-child(2) { background: #ffbd2e; }
.preview-dot:nth-child(3) { background: #28c941; }
.preview-url {
  background: var(--bg2); border-radius: 6px; padding: 5px 16px;
  font-size: .76rem; color: var(--txx); width: 220px; text-align: center;
}
.preview-body {
  display: grid; grid-template-columns: 220px 1fr;
  min-height: 280px;
}
.preview-sidebar {
  background: var(--card); border-left: 1px solid var(--border);
  padding: 20px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
[dir="ltr"] .preview-sidebar { border-left: none; border-right: 1px solid var(--border); }
.preview-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  font-size: .8rem; font-weight: 600; color: var(--txs);
}
.preview-nav-item.active {
  background: linear-gradient(135deg,rgba(124,58,237,.14),rgba(6,182,212,.06));
  color: var(--pr3);
  border: 1px solid rgba(124,58,237,.2);
}
.preview-content { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.preview-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.preview-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px;
}
.preview-card-num { font-size: 1.4rem; font-weight: 900; }
.preview-card-label { font-size: .72rem; color: var(--txx); margin-top: 2px; }
.preview-bar-chart {
  height: 4px; border-radius: 2px; margin-top: 10px;
  background: var(--bg3); overflow: hidden;
}
.preview-bar-fill { height: 100%; border-radius: 2px; }

@media(max-width:700px) {
  .preview-sidebar { display: none; }
  .preview-body { grid-template-columns: 1fr; }
  .preview-row { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════
   MARQUEE (Logo scroll)
════════════════════════════════════════════════════════ */
.marquee-section {
  padding: 48px 0; background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-label { text-align: center; margin-bottom: 24px; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 22s linear infinite; }
[dir="rtl"] .marquee-track { animation: marqueeRTL 22s linear infinite; }
@keyframes marquee     { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes marqueeRTL  { 0%{transform:translateX(0)} 100%{transform:translateX(50%)} }
.marquee-item {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; font-weight: 700; font-size: 1rem;
  color: var(--txx); padding: 8px 20px;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--card);
  transition: color .2s;
}
.marquee-item:hover { color: var(--pr3); border-color: rgba(124,58,237,.3); }

/* ════════════════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════════════ */
.stats-section {
  padding: 72px 0;
  background: var(--bg);
}
.stats-grid {
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: wrap; gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  flex: 1; min-width: 180px;
  padding: 36px 28px; text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: ''; position: absolute;
  top: 20%; bottom: 20%; right: 0;
  width: 1px; background: var(--border);
}
[dir="rtl"] .stat-item:not(:last-child)::after { right: auto; left: 0; }
.stat-number {
  font-size: 2.4rem; font-weight: 900;
  background: var(--grad-pr);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1;
}
.stat-label { font-size: .85rem; color: var(--txs); margin-top: 6px; }
.stat-icon { font-size: 1.6rem; margin-bottom: 10px; }

/* ════════════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════════════ */
#features { background: var(--bg2); }
.feature-card {
  padding: 30px; border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: all .3s var(--ease-out);
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-pr); opacity: 0; transition: opacity .3s;
}
.feature-card:hover { border-color: rgba(124,58,237,.3); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 54px; height: 54px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(6,182,212,.06));
  border: 1px solid rgba(124,58,237,.18);
  transition: transform .3s var(--ease-spring);
}
.feature-card:hover .feature-icon-wrap { transform: scale(1.1) rotate(-3deg); }
.feature-title { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.feature-desc  { font-size: .88rem; color: var(--txs); line-height: 1.7; }
.feature-tag {
  display: inline-block; margin-top: 16px;
  font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(6,182,212,.1); color: var(--ac2);
  border: 1px solid rgba(6,182,212,.2);
}

/* Features big card */
.feature-big {
  grid-column: span 2; padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
@media(max-width:700px) {
  .feature-big { grid-column: span 1; grid-template-columns: 1fr; }
}
.feature-big-visual {
  background: var(--bg3); border-radius: 14px; padding: 24px;
  border: 1px solid var(--border); height: 200px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}

/* ════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
#how { background: var(--bg); }
.steps-timeline {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  position: relative; margin-top: 60px;
}
.steps-timeline::before {
  content: ''; position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--pr), var(--ac));
  opacity: .25;
}
@media(max-width:700px) { .steps-timeline { grid-template-columns: 1fr 1fr; gap: 28px; } .steps-timeline::before { display:none; } }
@media(max-width:420px) { .steps-timeline { grid-template-columns: 1fr; } }

.step-item { padding: 0 16px; text-align: center; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900;
  background: var(--card); border: 2px solid var(--border);
  position: relative; z-index: 1;
  transition: all .3s;
}
.step-item:hover .step-num {
  background: var(--grad-pr); color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px var(--glow);
  transform: scale(1.1);
}
.step-title { font-size: .95rem; font-weight: 800; margin-bottom: 8px; }
.step-desc  { font-size: .82rem; color: var(--txs); line-height: 1.65; }

/* ════════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════════ */
#pricing { background: var(--bg2); }
.pricing-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
  align-items: start; margin-top: 20px;
}
@media(max-width:860px) { .pricing-cards { grid-template-columns: 1fr; max-width: 460px; margin: 20px auto 0; } }

.pricing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column;
  position: relative; transition: all .3s;
}
.pricing-card:hover { border-color: rgba(124,58,237,.3); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(91,33,182,.12) 0%, var(--card) 60%);
  border-color: rgba(124,58,237,.4);
  box-shadow: 0 0 0 1px rgba(124,58,237,.2), 0 20px 60px rgba(91,33,182,.18);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-pr); color: #fff;
  font-size: .72rem; font-weight: 800; padding: 4px 16px;
  border-radius: 100px; white-space: nowrap;
  box-shadow: 0 4px 16px var(--glow);
}
.pricing-tier { font-size: .78rem; font-weight: 700; color: var(--pr3); margin-bottom: 8px; }
.pricing-price { font-size: 3rem; font-weight: 900; line-height: 1; }
.pricing-price span { font-size: 1rem; font-weight: 600; }
.pricing-per  { font-size: .82rem; color: var(--txx); margin-top: 4px; }
.pricing-divider { height: 1px; background: var(--border); margin: 22px 0; }
.pricing-features { display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pricing-feat { display: flex; align-items: center; gap: 10px; font-size: .88rem; }
.pricing-feat .ok  { color: var(--ac2); flex-shrink: 0; }
.pricing-feat .no  { color: var(--txx); flex-shrink: 0; }
.pricing-feat .no ~ span { color: var(--txx); }
.pricing-cta { display: block; text-align: center; margin-top: 24px; padding: 13px; border-radius: 12px; font-weight: 700; font-size: .95rem; transition: all .25s; }
.pricing-cta-outline { border: 1.5px solid var(--border2); color: var(--tx); }
.pricing-cta-outline:hover { border-color: var(--pr3); background: rgba(124,58,237,.06); }
.pricing-cta-solid { background: var(--grad-pr); color: #fff; box-shadow: 0 4px 20px var(--glow); }
.pricing-cta-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow); }

/* Pricing toggle */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 40px;
}
.toggle-label { font-size: .9rem; font-weight: 600; color: var(--txs); }
.toggle-label.active { color: var(--tx); }
.toggle-switch {
  width: 52px; height: 28px; border-radius: 100px;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  position: relative; cursor: pointer; flex-shrink: 0;
}
.toggle-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  position: absolute; top: 4px; left: 4px;
  transition: transform .25s var(--ease-spring);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.toggle-switch.annual .toggle-thumb { transform: translateX(24px); }
[dir="rtl"] .toggle-switch.annual .toggle-thumb { transform: translateX(-24px); }
.pricing-save {
  background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.25);
  color: #f59e0b; font-size: .72rem; font-weight: 800;
  padding: 2px 10px; border-radius: 100px;
}

/* ════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
#testimonials { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
@media(max-width:860px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:580px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"'; position: absolute;
  top: 12px; right: 20px;
  font-size: 5rem; line-height: 1; color: var(--pr3); opacity: .1;
  font-family: Georgia, serif; font-style: italic;
}
[dir="ltr"] .testimonial-card::before { right: auto; left: 20px; }
.testimonial-card:hover { border-color: rgba(124,58,237,.25); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.testimonial-stars { display: flex; gap: 2px; color: #f59e0b; font-size: 1rem; }
.testimonial-quote { font-size: .92rem; line-height: 1.8; color: var(--txs); flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-pr);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #fff;
}
.testimonial-name { font-size: .92rem; font-weight: 800; }
.testimonial-role { font-size: .78rem; color: var(--txx); }

/* ════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════ */
#faq { background: var(--bg2); }
.faq-wrap { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; transition: border-color .25s;
}
.faq-item.open { border-color: rgba(124,58,237,.35); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; gap: 16px;
  font-size: .95rem; font-weight: 700; color: var(--tx);
  text-align: right; cursor: pointer;
  background: transparent;
}
[dir="ltr"] .faq-btn { text-align: left; }
.faq-chevron {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--pr3); font-size: .85rem; font-weight: 800;
  transition: transform .3s, background .25s;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); background: var(--pr); color: #fff; border-color: transparent; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease-out); }
.faq-body.open { max-height: 300px; }
.faq-body p { padding: 0 24px 20px; font-size: .9rem; color: var(--txs); line-height: 1.8; }

/* ════════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════ */
#cta { background: var(--bg); padding: 96px 0; }
.cta-wrap {
  background: linear-gradient(135deg, rgba(91,33,182,.12), rgba(6,182,212,.06));
  border: 1px solid rgba(124,58,237,.25);
  border-radius: 28px; padding: 72px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-wrap::before {
  content: ''; position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,33,182,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.cta-note { font-size: .82rem; color: var(--txx); margin-top: 20px; }
@media(max-width:600px) { .cta-wrap { padding: 48px 24px; } }

/* ════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════ */
#contact { background: var(--bg2); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
@media(max-width:768px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-items { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(6,182,212,.06));
  border: 1px solid rgba(124,58,237,.18);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-key   { font-size: .78rem; color: var(--txx); font-weight: 600; }
.contact-val   { font-size: .95rem; font-weight: 700; margin-top: 1px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .8rem; font-weight: 700; color: var(--txs); }
.form-field {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  color: var(--tx); font-family: inherit; font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  resize: none;
}
.form-field:focus { outline: none; border-color: var(--pr3); box-shadow: 0 0 0 3px rgba(124,58,237,.12); }
.form-field::placeholder { color: var(--txx); }
.form-textarea { height: 120px; }
.form-submit {
  padding: 14px; border-radius: 12px;
  background: var(--grad-pr); color: #fff;
  font-weight: 800; font-size: .95rem;
  box-shadow: 0 4px 20px var(--glow); transition: all .25s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow); }
.form-submit:disabled { opacity: .6; transform: none; }
.form-success {
  display: none; text-align: center; padding: 20px;
  background: rgba(6,182,212,.08); border: 1px solid rgba(6,182,212,.25);
  border-radius: 12px; color: var(--ac2); font-weight: 700; font-size: .95rem;
}
.form-success.show { display: block; }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer {
  background: var(--bg); padding: 56px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { font-size: .88rem; color: var(--txs); margin-top: 12px; line-height: 1.7; max-width: 260px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 900; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-col-title { font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--txs); margin-bottom: 16px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: .88rem; color: var(--txx); transition: color .2s; }
.footer-col-links a:hover { color: var(--pr3); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; padding-top: 28px;
}
.footer-copy { font-size: .82rem; color: var(--txx); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .82rem; color: var(--txx); transition: color .2s; }
.footer-legal a:hover { color: var(--pr3); }

/* ════════════════════════════════════════════════════════
   SCROLL TO TOP
════════════════════════════════════════════════════════ */
#scroll-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 500;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-pr); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 4px 20px var(--glow);
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
#scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scroll-top:hover { transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════
   LOADING SKELETON
════════════════════════════════════════════════════════ */
.skel {
  background: linear-gradient(90deg, var(--bg3) 25%, var(--bg2) 50%, var(--bg3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE UTILITIES
════════════════════════════════════════════════════════ */
@media(max-width:768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }
}
@media(max-width:480px) {
  .btn-lg { padding: 13px 24px; font-size: .95rem; }
  .hero-stats { gap: 24px; }
  .hero-stat-divider { display: none; }
}

/* ════════════════════════════════════════════════════════
   PRINT
════════════════════════════════════════════════════════ */
@media print {
  #navbar, #scroll-top, .hero-orb-1, .hero-orb-2 { display: none; }
  .section { padding: 32px 0; }
}
