:root {
  --bg: #f0f4ff;
  --bg2: #e8eeff;
  --bg3: #ffffff;
  --card: #ffffff;
  --card2: #f8f9ff;
  --border: rgba(99,102,241,0.12);
  --border2: rgba(99,102,241,0.22);
  --text: #1e1b4b;
  --text2: #4338ca;
  --text3: #6366f1;
  --primary: #3b82f6;
  --primary2: #6366f1;
  --purple: #8b5cf6;
  --purple2: #a855f7;
  --cyan: #06b6d4;
  --gradient: linear-gradient(135deg, #3b82f6, #8b5cf6);
  --gradient2: linear-gradient(135deg, #6366f1, #a855f7);
  --glow: 0 0 30px rgba(99,102,241,0.2);
  --glow2: 0 0 60px rgba(139,92,246,0.15);
  --shadow: 0 20px 60px rgba(99,102,241,0.1);
  --radius: 16px;
  --radius2: 24px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 92px;
}
[data-theme="dark"] {
  --bg: #0a0a0f;
  --bg2: #0f0f1a;
  --bg3: #13131f;
  --card: #16162a;
  --card2: #1a1a2e;
  --border: rgba(99,102,241,0.15);
  --border2: rgba(99,102,241,0.28);
  --text: #e2e8f0;
  --text2: #94a3b8;
  --text3: #64748b;
  --glow: 0 0 30px rgba(99,102,241,0.3);
  --glow2: 0 0 60px rgba(139,92,246,0.2);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: 'Cairo', sans-serif; border: none; background: none; }
input, textarea, select { font-family: 'Cairo', sans-serif; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; margin: 12px 0; }
.section-header p { color: var(--text2); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--gradient);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  background: var(--gradient); color: #fff;
  font-weight: 700; font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(99,102,241,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(99,102,241,0.5); }
.btn-primary.full-width { width: 100%; justify-content: center; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  border: 2px solid var(--border2); color: var(--text);
  font-weight: 700; font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes floatR { 0%,100%{transform:translateY(0) rotate(3deg)} 50%{transform:translateY(-12px) rotate(-3deg)} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.05)} }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes spinR { from{transform:rotate(360deg)} to{transform:rotate(0deg)} }
@keyframes scrollDot { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(8px);opacity:0.3} }
@keyframes orbFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(30px,-20px) scale(1.05)} 66%{transform:translate(-20px,15px) scale(0.95)} }
@keyframes glow-pulse { 0%,100%{box-shadow:0 0 20px rgba(99,102,241,0.3)} 50%{box-shadow:0 0 40px rgba(139,92,246,0.6)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes phone-float { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(-14px) rotate(-4deg)} }
@keyframes dash-bar { from{height:0%} }
@keyframes shimmer { 0%{background-position:200% center} 100%{background-position:-200% center} }
@keyframes slideUp { from{opacity:0;transform:translateY(50px)} to{opacity:1;transform:translateY(0)} }
[data-aos] { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos].aos-animate { opacity: 1 !important; transform: none !important; }
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  height: var(--nav-h);
  backdrop-filter: blur(20px);
  background: rgba(240,244,255,0.85);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
[data-theme="dark"] .navbar { background: rgba(10,10,15,0.8); }
.navbar.scrolled { background: rgba(240,244,255,0.98); box-shadow: var(--glow); }
[data-theme="dark"] .navbar.scrolled { background: rgba(10,10,15,0.97); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 84px; height: 84px; object-fit: contain; }
.logo-text {
  font-size: 1.3rem; font-weight: 900; letter-spacing: 3px;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; gap: 2px; margin: 0 auto; }
.nav-links a {
  padding: 8px 12px; border-radius: 8px; font-size: 0.88rem; font-weight: 600;
  color: var(--text2); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(99,102,241,0.1); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center;
  transition: var(--transition); background: var(--card); flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--primary); transform: rotate(25deg); box-shadow: 0 0 12px rgba(99,102,241,0.2); }
.theme-toggle svg { stroke: var(--text2); transition: var(--transition); }
[data-theme="light"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }
.nav-cta {
  padding: 9px 22px; border-radius: 100px;
  background: var(--gradient); color: #fff; font-weight: 700; font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,0.45); }
.hamburger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border2); background: var(--card);
  transition: var(--transition); flex-shrink: 0;
}
.hamburger:hover { border-color: var(--primary); background: rgba(99,102,241,0.08); }
.hamburger svg { stroke: var(--text); transition: var(--transition); }
.hamburger .ham-icon { display: block; }
.hamburger .close-icon { display: none; }
.hamburger.open .ham-icon { display: none; }
.hamburger.open .close-icon { display: block; }
.hamburger.open { border-color: var(--primary); background: rgba(99,102,241,0.1); }
.hamburger.open svg { stroke: var(--primary); }
.mobile-menu {
  display: none; flex-direction: column; padding: 0 0 16px;
  background: var(--bg2); border-top: 1px solid var(--border);
  animation: fadeUp 0.25s ease;
}
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px 12px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-title { font-size: 0.85rem; font-weight: 700; color: var(--text3); }
.theme-toggle-mobile {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center;
  background: var(--card); transition: var(--transition); margin-right: auto;
}
.theme-toggle-mobile:hover { border-color: var(--primary); transform: rotate(25deg); }
.theme-toggle-mobile svg { stroke: var(--text2); }
.mobile-menu a { padding: 13px 20px; font-weight: 600; color: var(--text2); border-bottom: 1px solid var(--border); font-size: 1rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--primary); background: rgba(99,102,241,0.05); padding-right: 28px; }
.mobile-menu.open { display: flex; }
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: var(--nav-h);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: rgba(99,102,241,0.1); top: -10%; right: -10%; animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; background: rgba(139,92,246,0.08); bottom: 10%; left: -5%; animation-delay: 3s; }
.orb3 { width: 300px; height: 300px; background: rgba(6,182,212,0.07); top: 40%; right: 40%; animation-delay: 6s; }
[data-theme="dark"] .orb1 { background: rgba(99,102,241,0.14); }
[data-theme="dark"] .orb2 { background: rgba(139,92,246,0.11); }
[data-theme="dark"] .orb3 { background: rgba(6,182,212,0.09); }
#particleCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px,transparent 1px), linear-gradient(90deg,var(--border) 1px,transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid var(--border2);
  background: rgba(99,102,241,0.08);
  color: var(--primary); font-size: 0.9rem; font-weight: 600;
  margin-bottom: 24px; animation: fadeUp 0.6s ease both;
}
.hero-badge svg { stroke: var(--primary); flex-shrink: 0; }
.hero-title {
  font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 900; line-height: 1.15;
  margin-bottom: 20px; animation: fadeUp 0.6s 0.1s ease both;
}
.hero-desc {
  color: var(--text2); font-size: 1.1rem; line-height: 1.8; max-width: 480px;
  margin-bottom: 36px; animation: fadeUp 0.6s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px; animation: fadeUp 0.6s 0.3s ease both;
}
.hero-trust {
  display: flex; align-items: center; gap: 24px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-size: 1.6rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.trust-item span:last-child { font-size: 0.8rem; color: var(--text3); }
.trust-divider { width: 1px; height: 40px; background: var(--border2); }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.device-mockup { position: relative; width: 100%; max-width: 520px; }
.laptop {
  background: var(--card2); border: 2px solid var(--border2);
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow), var(--glow);
  animation: float 4s ease-in-out infinite;
}
.laptop-screen { padding: 16px; background: var(--bg2); min-height: 280px; }
.dashboard-ui { height: 100%; }
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: var(--card); border-radius: 10px; margin-bottom: 14px;
}
.dash-logo-small {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--gradient); color: #fff; font-size: 0.7rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--border2); }
.dash-header span { font-size: 0.85rem; font-weight: 600; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.dash-stat {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 10px; display: flex; flex-direction: column; gap: 2px; text-align: center;
}
.ds-num { font-size: 1.2rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ds-label { font-size: 0.7rem; color: var(--text3); }
.dash-chart { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.bar {
  flex: 1; background: linear-gradient(to top, var(--primary), var(--purple));
  border-radius: 4px 4px 0 0; opacity: 0.45;
  animation: dash-bar 1.5s ease-out both;
  transition: var(--transition);
}
.bar.active { opacity: 1; box-shadow: 0 0 12px rgba(99,102,241,0.4); }
.phone-float {
  position: absolute; bottom: -20px; left: -30px;
  width: 110px;
  background: var(--card2); border: 2px solid var(--border2);
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow);
  animation: phone-float 3.5s ease-in-out infinite;
}
.phone-screen { padding: 12px; background: var(--bg2); min-height: 160px; }
.phone-logo {
  width: 36px; height: 36px; border-radius: 10px; background: var(--gradient);
  color: #fff; font-size: 0.75rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 8px;
}
.phone-screen p { font-size: 0.6rem; text-align: center; color: var(--text2); margin-bottom: 10px; }
.phone-card { height: 20px; border-radius: 6px; background: var(--gradient); margin-bottom: 6px; opacity: 0.7; }
.phone-card.sm { height: 14px; background: var(--border2); }
.floating-badge {
  position: absolute; padding: 8px 14px; border-radius: 100px;
  background: var(--card2); border: 1px solid var(--border2);
  font-size: 0.75rem; font-weight: 700; white-space: nowrap;
  box-shadow: var(--glow); backdrop-filter: blur(10px);
}
.badge1 { top: 10px; left: -20px; animation: float 4s 1s ease-in-out infinite; }
.badge2 { bottom: 30px; right: -20px; animation: float 4s 2s ease-in-out infinite; }
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--border2);
  border-radius: 13px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot { width: 4px; height: 8px; background: var(--gradient); border-radius: 2px; animation: scrollDot 1.5s ease-in-out infinite; }
.services { padding: 100px 0; background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient); opacity: 0;
  transition: var(--transition); z-index: 0;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: var(--glow), var(--shadow); }
.service-card:hover::before { opacity: 0.04; }
.service-card > * { position: relative; z-index: 1; }
.service-card.featured {
  background: linear-gradient(135deg, rgba(99,102,241,0.07), rgba(139,92,246,0.05));
  border-color: var(--primary2);
  box-shadow: var(--glow);
}
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(99,102,241,0.1); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
}
.service-icon svg { width: 32px; height: 32px; }
.service-card:hover .service-icon { background: rgba(99,102,241,0.18); transform: scale(1.1); }
.featured-tag {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  background: var(--gradient); color: #fff; font-size: 0.75rem; font-weight: 700;
  margin-bottom: 12px;
}
.service-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.service-card p { color: var(--text2); line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; }
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-features li { color: var(--text2); font-size: 0.9rem; }
.service-arrow { font-size: 1.2rem; color: var(--primary); transition: var(--transition); display: inline-block; }
.service-card:hover .service-arrow { transform: translateX(-6px); }
.features { padding: 100px 0; }
.features-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-text .section-badge { margin-bottom: 12px; }
.features-text h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; margin-bottom: 16px; }
.features-text > p { color: var(--text2); line-height: 1.8; margin-bottom: 36px; }
.features-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feat-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: rgba(99,102,241,0.1); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.feat-icon svg { width: 22px; height: 22px; stroke: var(--primary2); }
.feature-item:hover .feat-icon { background: rgba(99,102,241,0.2); transform: scale(1.05); }
.feature-item:hover .feat-icon svg { stroke: var(--purple); }
.feat-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.feat-text p { color: var(--text2); font-size: 0.9rem; line-height: 1.6; }
.features-visual { display: flex; justify-content: center; align-items: center; }
.tech-circle { position: relative; width: 320px; height: 320px; }
.circle-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(99,102,241,0.45);
  z-index: 2;
}
.center-logo { color: #fff; font-size: 1rem; font-weight: 900; letter-spacing: 1px; }
.tech-orbit {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed var(--border2);
}
.orbit1 { animation: spin 20s linear infinite; }
.orbit2 { inset: 30px; border-color: rgba(139,92,246,0.25); animation: spinR 15s linear infinite; }
.tech-node {
  position: absolute;
}
.tech-node span {
  display: inline-block; padding: 5px 12px; border-radius: 100px;
  background: var(--card2); border: 1px solid var(--border2);
  font-size: 0.75rem; font-weight: 700; white-space: nowrap;
  box-shadow: var(--glow);
}
.orbit1 .tech-node span { animation: spinR 20s linear infinite; }
.orbit2 .tech-node span { animation: spin 15s linear infinite; }
.stats { padding: 100px 0; background: var(--bg2); position: relative; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-stat1 { width: 400px; height: 400px; background: rgba(99,102,241,0.07); top: -20%; right: -10%; }
.orb-stat2 { width: 350px; height: 350px; background: rgba(139,92,246,0.06); bottom: -20%; left: -10%; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; z-index: 1; }
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 36px 24px; text-align: center;
  position: relative; overflow: hidden; transition: var(--transition);
}
.stat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); transform: scaleX(0); transition: var(--transition);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--glow), var(--shadow); border-color: var(--primary); }
.stat-card:hover::after { transform: scaleX(1); }
.stat-icon { width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 14px; background: rgba(99,102,241,0.1); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; }
.stat-icon svg { width: 24px; height: 24px; stroke: var(--primary2); }
.stat-number {
  font-size: 2.8rem; font-weight: 900; display: inline-block;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-plus { display: inline-block; font-size: 1.8rem; font-weight: 900; color: var(--primary); vertical-align: super; }
.stat-label { color: var(--text2); font-size: 0.95rem; margin: 8px 0 16px; font-weight: 600; }
.stat-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.stat-fill { height: 100%; background: var(--gradient); border-radius: 2px; transition: width 1.5s ease 0.3s; }
.app-section { padding: 100px 0; }
.app-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-content h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; margin: 12px 0 16px; }
.app-content > p { color: var(--text2); line-height: 1.8; margin-bottom: 28px; }
.app-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.af-item {
  display: flex; gap: 10px; align-items: center;
  color: var(--text2); font-size: 0.9rem; font-weight: 600;
  padding: 10px 14px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--border);
  transition: var(--transition);
}
.af-item svg { stroke: var(--primary2); flex-shrink: 0; }
.af-item:hover { border-color: var(--primary); color: var(--text); }
.af-item:hover svg { stroke: var(--primary); }
.download-btns { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: 14px;
  transition: var(--transition); min-width: 160px;
}
.store-btn.apple {
  background: var(--card2); border: 1px solid var(--border2); color: var(--text);
}
.store-btn.google {
  background: var(--gradient); color: #fff;
  box-shadow: 0 8px 24px rgba(99,102,241,0.3);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(99,102,241,0.4); }
.store-text { display: flex; flex-direction: column; }
.store-sub { font-size: 0.7rem; opacity: 0.8; }
.store-name { font-size: 1rem; font-weight: 800; }
.app-rating { display: flex; align-items: center; gap: 10px; }
.stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; }
.app-rating span { color: var(--text2); font-size: 0.9rem; }
.app-visual { display: flex; justify-content: center; }
.phones-showcase { position: relative; width: 280px; height: 480px; }
.phone-main { position: absolute; bottom: 0; right: 0; z-index: 2; }
.phone-back { position: absolute; bottom: 40px; left: 0; z-index: 1; opacity: 0.7; }
.phone-frame {
  width: 200px; border: 3px solid var(--border2); border-radius: 28px;
  overflow: hidden; background: var(--card2);
  box-shadow: var(--shadow), var(--glow2);
  animation: float 4s ease-in-out infinite;
}
.phone-frame.sm { width: 160px; animation-delay: -2s; animation-duration: 3.5s; }
.phone-notch { height: 20px; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.phone-notch::after { content: ''; width: 60px; height: 10px; background: var(--card); border-radius: 5px; }
.phone-notch.sm::after { width: 40px; height: 8px; }
.phone-content { padding: 14px; background: var(--bg2); min-height: 340px; }
.phone-frame.sm .phone-content { min-height: 260px; }
.app-screen { height: 100%; }
.app-screen.sm { display: flex; align-items: center; justify-content: center; }
.app-header-bar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.65rem; font-weight: 700; margin-bottom: 12px;
  padding: 6px 10px; background: var(--card); border-radius: 8px;
}
.app-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.app-mini-card {
  padding: 10px; border-radius: 10px; text-align: center;
  display: flex; flex-direction: column; gap: 2px;
}
.app-mini-card.blue { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); }
.app-mini-card.purple { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); }
.amc-num { font-size: 1.1rem; font-weight: 900; color: var(--primary); }
.amc-label { font-size: 0.6rem; color: var(--text3); }
.app-chart-mini { display: flex; align-items: flex-end; gap: 4px; height: 50px; margin-bottom: 12px; background: var(--card); border-radius: 8px; padding: 8px; }
.mini-bar { flex: 1; background: linear-gradient(to top, var(--primary), var(--purple)); border-radius: 2px 2px 0 0; opacity: 0.35; }
.mini-bar.active { opacity: 1; }
.app-list { display: flex; flex-direction: column; gap: 6px; }
.app-list-item { display: flex; align-items: center; gap: 8px; font-size: 0.65rem; padding: 5px 8px; background: var(--card); border-radius: 6px; }
.ali-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ali-dot.blue { background: var(--primary); }
.ali-dot.purple { background: var(--purple); }
.ali-dot.cyan { background: var(--cyan); }
.app-list-item span:nth-child(2) { flex: 1; color: var(--text2); }
.ali-status { color: #22c55e; font-weight: 700; }
.ali-status.pending { color: var(--primary); }
.app-welcome { text-align: center; }
.aw-logo {
  width: 50px; height: 50px; border-radius: 14px; background: var(--gradient);
  color: #fff; font-weight: 900; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px; font-size: 0.9rem;
}
.app-welcome p { font-size: 0.65rem; color: var(--text2); }
.app-glow {
  position: absolute; width: 150px; height: 150px; border-radius: 50%;
  background: rgba(99,102,241,0.12); filter: blur(40px);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: pulse 3s ease-in-out infinite;
}
.testimonials { padding: 100px 0; background: var(--bg2); overflow: hidden; }
.testimonials-track { overflow: hidden; }
.testimonials-inner { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card {
  min-width: calc(33.333% - 16px); background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 32px; flex-shrink: 0;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--primary); box-shadow: var(--glow); transform: translateY(-4px); }
.testi-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text2); line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; font-style: italic; }
.testi-author { display: flex; gap: 12px; align-items: center; }
.testi-avatar-img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border2); flex-shrink: 0;
}
.testi-author div { display: flex; flex-direction: column; gap: 2px; }
.testi-author strong { font-size: 0.9rem; }
.testi-author span { font-size: 0.8rem; color: var(--text3); }
.testi-nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 36px; }
.testi-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border2);
  color: var(--text); font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); background: var(--card);
}
.testi-btn:hover { background: var(--gradient); border-color: transparent; color: #fff; }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border2); transition: var(--transition); cursor: pointer; border: none; }
.testi-dot.active { background: var(--primary); transform: scale(1.4); width: 20px; border-radius: 4px; }
.contact { padding: 100px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; margin: 12px 0 16px; }
.contact-info > p { color: var(--text2); line-height: 1.8; margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-card {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 20px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--primary); transform: translateX(-4px); box-shadow: var(--glow); }
.cc-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(99,102,241,0.1); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-icon svg { stroke: var(--primary2); }
.contact-card div { display: flex; flex-direction: column; gap: 2px; }
.contact-card strong { font-size: 0.85rem; color: var(--text3); }
.contact-card a { color: var(--text); font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.contact-card a:hover { color: var(--primary); }
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; transition: var(--transition);
  background: var(--card);
}
.social-btn:hover { background: var(--gradient); border-color: transparent; color: #fff; transform: translateY(-3px); }
.contact-form-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text2); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--border2); background: var(--bg2); color: var(--text);
  font-size: 0.95rem; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.form-group textarea { resize: vertical; }
.form-group select option { background: var(--card2); color: var(--text); }
.footer { background: var(--bg2); border-top: 1px solid var(--border); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo-link { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-tagline {
  font-size: 0.85rem; font-weight: 600; color: var(--text3); letter-spacing: 2px;
  text-transform: uppercase; margin: 6px 0 10px;
}
.footer-desc { color: var(--text2); line-height: 1.7; font-size: 0.9rem; margin-bottom: 16px; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--border2); font-size: 0.8rem; font-weight: 600; color: var(--text2);
  width: fit-content;
}
.footer-col h4 { font-size: 1rem; font-weight: 800; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text2); font-size: 0.9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--text2); transition: var(--transition);
}
.footer-social a:hover { background: var(--gradient); border-color: transparent; color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; }
.footer-bottom .section-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--text3); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text3); font-size: 0.85rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }
.scroll-top {
  position: fixed; bottom: 32px; left: 32px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient); color: #fff; font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(99,102,241,0.4);
  opacity: 0; pointer-events: none; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(99,102,241,0.5); }
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-desc { text-align: center; }
  .features-inner { grid-template-columns: 1fr; gap: 48px; }
  .app-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .tech-circle { margin: 0 auto; }
  .app-visual { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .theme-toggle { display: none; }
  .logo-img { width: 60px; height: 60px; }
  .nav-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .nav-actions {
    order: -1;
    margin-right: 0;
  }
  .hero-container { padding: 60px 24px; }
  .hero-btns { justify-content: center; }
  .hero-trust { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .trust-num { font-size: 1.3rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-inner { gap: 16px; }
  .testimonial-card { min-width: calc(100%); }
  .form-row { grid-template-columns: 1fr; }
  .download-btns { flex-direction: column; }
  .store-btn { justify-content: center; }
  .scroll-top { bottom: 20px; left: 20px; }
  .section-header { margin-bottom: 40px; }
  .features-inner { gap: 36px; }
  .trust-divider { display: none; }
  .features-visual { display: none; }
  .device-mockup { max-width: 340px; margin: 0 auto; }
  .badge1 { left: -10px; font-size: 0.65rem; padding: 6px 10px; }
  .badge2 { right: -10px; font-size: 0.65rem; padding: 6px 10px; }
}
@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .logo-img { width: 52px; height: 52px; }
  .nav-container { flex-direction: row-reverse; justify-content: space-between; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 12px; }
  .stat-number { font-size: 2rem; }
  .hero-title { font-size: 1.9rem; }
  .contact-form-wrap { padding: 20px 16px; }
  .app-features { grid-template-columns: 1fr; }
  .badge1, .badge2 { display: none; }
  .hero-container { padding: 48px 16px; }
  .section-container { padding: 0 16px; }
  .services { padding: 70px 0; }
  .features { padding: 70px 0; }
  .stats { padding: 70px 0; }
  .app-section { padding: 70px 0; }
  .testimonials { padding: 70px 0; }
  .contact { padding: 70px 0; }
  .footer-top { padding: 56px 0 40px; }
  .contact-inner { gap: 36px; }
  .download-btns { gap: 12px; }
  .hero-btns { gap: 12px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { padding: 12px 22px; font-size: 0.9rem; }
}
[data-theme="dark"] .service-card.featured {
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.08));
}
[data-theme="dark"] .hero-title { color: #e2e8f0; }
[data-theme="dark"] .floating-badge { background: var(--card2); }
[data-theme="dark"] .grid-lines { opacity: 0.6; }
[data-theme="dark"] .contact-form-wrap { box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
[data-theme="dark"] .feat-icon svg { stroke: #a5b4fc; }
[data-theme="dark"] .stat-icon { background: rgba(99,102,241,0.15); }
[data-theme="dark"] .stat-icon svg { stroke: #a5b4fc; }
[data-theme="dark"] .cc-icon { background: rgba(99,102,241,0.15); }
[data-theme="dark"] .cc-icon svg { stroke: #a5b4fc; }
[data-theme="dark"] .af-item svg { stroke: #a5b4fc; }
[data-theme="dark"] .hero-badge svg { stroke: #93c5fd; }
[data-theme="light"] .service-card { box-shadow: 0 4px 20px rgba(99,102,241,0.06); }
[data-theme="light"] .laptop { border-color: rgba(99,102,241,0.2); }
[data-theme="light"] .phone-float { border-color: rgba(99,102,241,0.2); }
[data-theme="light"] .floating-badge { background: #fff; box-shadow: 0 4px 16px rgba(99,102,241,0.12); }
[data-theme="light"] .grid-lines { opacity: 0.5; }
[data-theme="light"] .tech-circle .circle-center { box-shadow: 0 0 40px rgba(99,102,241,0.35); }
[data-theme="light"] .stat-card { box-shadow: 0 4px 20px rgba(99,102,241,0.06); }
