/* -------------------------------------------
   CSS VARIABLES
------------------------------------------- */
:root {
  --primary: #EC4899;
  --primary-light: #F472B6;
  --primary-dark: #DB2777;
  --accent: #7C3AED;
  --accent-light: #A78BFA;
  --cyan: #06B6D4;
  --green: #10B981;
  --orange: #F97316;
  --yellow: #FBBF24;
  --bg-dark: #0A0F1C;
  --bg-section: #0F172A;
  --bg-card: #1E293B;
  --bg-card-hover: #283548;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --border: #1E293B;
  --border-light: #334155;
  --gradient-1: linear-gradient(135deg, #EC4899, #7C3AED);
  --gradient-2: linear-gradient(135deg, #7C3AED, #06B6D4);
  --gradient-3: linear-gradient(135deg, #EC4899, #F97316);
  --gradient-4: linear-gradient(135deg, #10B981, #06B6D4);
  --shadow-glow-pink: 0 0 60px rgba(236,72,153,0.15);
  --shadow-glow-purple: 0 0 60px rgba(124,58,237,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon placeholder to prevent layout shift */
i[data-lucide],
svg.lucide {
  display: inline-block;
  min-width: 1em;
  min-height: 1em;
  vertical-align: middle;
}

/* Optimize for CLS */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Add aspect ratio for images without explicit dimensions */
.hero-mockup img {
  aspect-ratio: 1200 / 750;
  width: 100%;
  height: auto;
}

/* Reserve space for download cards */
.download-card {
  min-height: 280px;
}

/* Reduce animation movement */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* -------------------------------------------
   RESET & BASE
------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scroll offset for fixed headers */
section {
  scroll-margin-top: 140px;
}
html[dir="rtl"] body { font-family: 'Noto Sans Arabic', var(--font-body); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3,
html[dir="rtl"] h4, html[dir="rtl"] h5, html[dir="rtl"] h6,
html[dir="rtl"] .nav-brand, html[dir="rtl"] .btn {
  font-family: 'Noto Sans Arabic', var(--font-heading);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* -------------------------------------------
   ANIMATIONS
------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes count-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gradient-border {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll:not(.visible) {
  opacity: 0;
  transform: translateY(30px);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .animate-on-scroll { opacity: 1; transform: none; }
}

/* -------------------------------------------
   NAVIGATION
------------------------------------------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800;
  background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--text-secondary); font-weight: 500; font-size: 0.92rem;
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gradient-1); transition: width var(--transition); border-radius: 2px;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--text-primary); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; background: rgba(30,41,59,0.8); border-radius: 20px;
  padding: 3px; border: 1px solid var(--border-light);
}
.lang-btn {
  padding: 5px 12px; border-radius: 17px; font-size: 0.78rem; font-weight: 600;
  background: transparent; color: var(--text-muted); transition: all var(--transition);
}
.lang-btn.active { background: var(--gradient-1); color: white; }
.lang-btn:hover:not(.active) { color: var(--text-secondary); }
.nav-cta {
  background: var(--gradient-1); color: white; padding: 9px 22px;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.88rem;
  transition: all var(--transition); box-shadow: 0 4px 15px rgba(236,72,153,0.25);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(236,72,153,0.35); }

.mobile-menu-btn { display: none; background: transparent; color: var(--text-primary); padding: 8px; }

/* -------------------------------------------
   HERO SECTION
------------------------------------------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; padding: 180px 0 100px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-bg::before {
  content: ''; position: absolute; top: -20%; right: -15%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 65%);
}
.hero-bg::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(236,72,153,0.08) 0%, transparent 65%);
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25); border-radius: 24px;
  font-size: 0.82rem; color: var(--accent-light); margin-bottom: 28px;
  animation: fadeInUp 0.6s ease;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: pulse-dot 2s infinite;
}
.lang-availability {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.lang-label {
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-secondary); font-weight: 700;
}
.lang-pills { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.lang-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-primary); font-weight: 600; font-size: 0.84rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.lang-pill::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gradient-2);
}
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900; line-height: 1.05; margin-bottom: 24px; letter-spacing: -0.02em;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero h1 .gradient-text {
  background: var(--gradient-1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1.18rem; color: var(--text-secondary); line-height: 1.75;
  margin-bottom: 40px; max-width: 520px; animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }
.hero-trust {
  display: flex; align-items: center; gap: 12px; margin-top: 40px;
  animation: fadeInUp 0.6s ease 0.5s both;
}
.hero-trust-avatars { display: flex; }
.hero-trust-avatar {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg-dark);
  background: var(--gradient-1); display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: white; margin-left: -8px;
}
.hero-trust-avatar:first-child { margin-left: 0; }
html[dir="rtl"] .hero-trust-avatar { margin-left: 0; margin-right: -8px; }
html[dir="rtl"] .hero-trust-avatar:first-child { margin-right: 0; }
.hero-trust-text { font-size: 0.85rem; color: var(--text-muted); }
.hero-trust-text strong { color: var(--text-secondary); }

/* Hero Mockup */
.hero-visual { position: relative; animation: fadeIn 1s ease 0.5s both; }
.hero-mockup {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  background: var(--bg-card);
}
.hero-mockup img {
  width: 100%; height: auto; display: block;
}

/* -------------------------------------------
   SCREENSHOT GALLERY
------------------------------------------- */
.screenshots-section { background: var(--bg-section); overflow: hidden; }

/* Tab switcher */
.screenshot-tabs {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 48px;
}
.screenshot-tab {
  padding: 10px 28px; border-radius: 24px; font-weight: 600; font-size: 0.92rem;
  background: var(--bg-card); color: var(--text-secondary); border: 1px solid var(--border);
  transition: all var(--transition); cursor: pointer; display: flex; align-items: center; gap: 8px;
}
.screenshot-tab.active {
  background: var(--gradient-1); color: white; border-color: transparent;
  box-shadow: 0 4px 15px rgba(236,72,153,0.3);
}
.screenshot-tab svg { width: 18px; height: 18px; }

/* Carousel wrapper */
.screenshot-carousel {
  position: relative; width: 100%; overflow: hidden;
}
.screenshot-track {
  display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
}

/* Desktop screenshots */
.screenshot-item-desktop {
  flex: 0 0 calc(60% - 12px); max-width: 750px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.screenshot-item-desktop:hover {
  transform: scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.screenshot-item-desktop img { width: 100%; height: auto; display: block; }

/* Mobile screenshots in phone frame */
.screenshot-item-mobile {
  flex: 0 0 220px;
  background: #1a1a2e; border: 3px solid #2d2d44; border-radius: 28px;
  padding: 12px 6px; box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.screenshot-item-mobile:hover {
  transform: scale(1.04) translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.mobile-notch {
  width: 60px; height: 6px; background: #2d2d44; border-radius: 4px;
  margin: 0 auto 8px;
}
.screenshot-item-mobile img {
  width: 100%; height: auto; display: block; border-radius: 16px;
}
.mobile-home-bar {
  width: 48px; height: 4px; background: #3d3d55; border-radius: 3px;
  margin: 8px auto 0;
}

/* Carousel nav */
.carousel-nav {
  display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 32px;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%; background: var(--bg-card);
  border: 1px solid var(--border-light); color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); cursor: pointer;
}
.carousel-btn:hover {
  background: var(--gradient-1); border-color: transparent;
  box-shadow: 0 4px 15px rgba(236,72,153,0.3);
}
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--border-light);
  transition: all var(--transition); cursor: pointer; border: none;
}
.carousel-dot.active {
  background: var(--primary); width: 24px; border-radius: 4px;
}

@media (max-width: 768px) {
  .screenshot-item-desktop { flex: 0 0 85%; }
  .screenshot-item-mobile { flex: 0 0 180px; }
}

/* Float Cards */
.hero-float-card {
  position: absolute; background: rgba(30,41,59,0.95); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md);
  padding: 16px 20px; box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  animation: float 5s ease-in-out infinite;
  will-change: transform;
}
.hero-float-card.card-1 { top: -15px; right: -25px; animation-delay: 0s; }
.hero-float-card.card-2 { bottom: 30px; left: -30px; animation-delay: 2s; }
.hero-float-card.card-3 { bottom: -15px; right: 60px; animation-delay: 3.5s; }
.float-card-icon { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.float-card-icon svg { width: 14px; height: 14px; }
.float-card-icon i { width: 14px; height: 14px; min-width: 14px; min-height: 14px; }
.float-card-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.float-card-value { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; min-height: 32px; }
.float-card-value.green { color: var(--green); }
.float-card-value.pink { color: var(--primary); }
.float-card-value.cyan { color: var(--cyan); }
.float-card-trend { font-size: 0.7rem; color: var(--green); display: flex; align-items: center; gap: 3px; margin-top: 2px; min-height: 16px; }
.float-card-trend svg, .float-card-trend i { width: 12px; height: 12px; min-width: 12px; min-height: 12px; }

/* -------------------------------------------
   BUTTONS
------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem; transition: all var(--transition);
}
.btn-primary {
  background: var(--gradient-1); color: white;
  box-shadow: 0 4px 20px rgba(236,72,153,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236,72,153,0.45);
}
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover {
  background: rgba(30,41,59,0.6); border-color: var(--text-muted);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366; color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}
.btn-download {
  background: var(--gradient-1); color: white;
  box-shadow: 0 4px 20px rgba(236,72,153,0.3);
  font-size: 0.95rem; padding: 14px 28px;
  font-weight: 600;
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236,72,153,0.45);
}
.btn-download-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.15);
  padding: 14px 28px; font-weight: 600;
}
.btn-download-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.btn-icon { width: 20px; height: 20px; }

/* Download section */
.hero-downloads {
  margin-top: 48px;
}
.hero-downloads-label {
  font-size: 0.9rem; color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.hero-downloads-label::before {
  content: ''; width: 4px; height: 20px;
  background: var(--gradient-1); border-radius: 2px;
}
.hero-downloads-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.download-card {
  background: rgba(30,41,59,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 24px; text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.download-card:hover {
  background: rgba(30,41,59,0.8);
  border-color: rgba(236,72,153,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(236,72,153,0.15);
}
.download-card-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--gradient-1);
  border-radius: 12px; display: flex;
  align-items: center; justify-content: center;
}
.download-card-icon i {
  width: 28px; height: 28px; color: white;
}
.download-card-title {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 8px;
}
.download-card-desc {
  font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 20px; line-height: 1.5;
}
.download-card-btn {
  width: 100%; background: var(--gradient-1);
  color: white; padding: 12px; border-radius: 8px;
  font-weight: 600; display: flex; align-items: center;
  justify-content: center; gap: 8px; transition: all var(--transition);
}
.download-card-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(236,72,153,0.4);
}
.platform-downloads {
  display: flex; gap: 12px; margin-top: 20px;
  justify-content: center;
}
.platform-downloads .btn-download {
  flex: 1; justify-content: center;
}

/* -------------------------------------------
   SOCIAL PROOF BAR
------------------------------------------- */
.social-proof {
  padding: 60px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); background: var(--bg-section);
}
.social-proof-inner {
  display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-number {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
  background: var(--gradient-2); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.proof-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* -------------------------------------------
   SECTION BASE
------------------------------------------- */
.section { padding: 120px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; margin-bottom: 18px; letter-spacing: -0.01em;
}
.section-desc { font-size: 1.12rem; color: var(--text-secondary); max-width: 620px; margin: 0 auto; line-height: 1.7; }

/* -------------------------------------------
   PROBLEM SECTION
------------------------------------------- */
.problems-section { background: var(--bg-section); }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
  background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.12);
  border-radius: var(--radius-lg); padding: 32px; text-align: center;
  transition: all var(--transition);
}
.problem-card:hover { border-color: rgba(239,68,68,0.25); transform: translateY(-4px); }
.problem-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: rgba(239,68,68,0.1); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
}
.problem-icon svg { width: 28px; height: 28px; color: #EF4444; }
.problem-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.problem-desc { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }

/* Arrow transition */
.solution-arrow { text-align: center; padding: 48px 0; }
.solution-arrow svg { width: 48px; height: 48px; color: var(--green); animation: float 3s ease-in-out infinite; }

/* -------------------------------------------
   FEATURES SECTION
------------------------------------------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; position: relative;
  transition: all var(--transition); overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-1); opacity: 0; transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: rgba(236,72,153,0.3); transform: translateY(-6px);
  box-shadow: var(--shadow-glow-pink);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.feature-icon svg { width: 26px; height: 26px; color: white; }
.feature-icon.pink { background: var(--gradient-1); }
.feature-icon.purple { background: var(--gradient-2); }
.feature-icon.green { background: var(--gradient-4); }
.feature-icon.orange { background: var(--gradient-3); }
.feature-icon.cyan { background: linear-gradient(135deg, #06B6D4, #3B82F6); }
.feature-icon.blue { background: linear-gradient(135deg, #3B82F6, #7C3AED); }
.feature-icon.yellow { background: linear-gradient(135deg, #F59E0B, #F97316); }
.feature-icon.rose { background: linear-gradient(135deg, #F43F5E, #EC4899); }
.feature-icon.teal { background: linear-gradient(135deg, #14B8A6, #10B981); }
.feature-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.65; }

/* -------------------------------------------
   HOW IT WORKS
------------------------------------------- */
.steps-section { background: var(--bg-section); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 48px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--gradient-1); opacity: 0.3;
}
.step-card { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800;
  background: var(--gradient-1); color: white; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(236,72,153,0.3);
}
.step-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.step-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* -------------------------------------------
   PLATFORMS
------------------------------------------- */
.platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.platform-card {
  text-align: center; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px 28px; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.platform-card:hover {
  border-color: rgba(124,58,237,0.3); transform: translateY(-6px);
  box-shadow: var(--shadow-glow-purple);
}
.platform-icon-wrap {
  width: 68px; height: 68px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; background: var(--gradient-2);
}
.platform-icon-wrap svg { width: 34px; height: 34px; color: white; }
.platform-name { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }
.platform-desc { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }
.platform-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; padding: 6px 16px; border-radius: 14px;
  font-size: 0.78rem; font-weight: 700;
}
.platform-badge.available { background: rgba(16,185,129,0.12); color: var(--green); }

/* -------------------------------------------
   TESTIMONIALS
------------------------------------------- */
.testimonials-section { background: var(--bg-section); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--border-light); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--yellow); fill: var(--yellow); }
.testimonial-text { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: white;
}
.testimonial-name { font-weight: 600; font-size: 0.92rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* -------------------------------------------
   FAQ
------------------------------------------- */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(236,72,153,0.3); }
.faq-question {
  width: 100%; padding: 20px 24px; background: transparent; color: var(--text-primary);
  font-size: 1rem; font-weight: 600; text-align: left; display: flex;
  align-items: center; justify-content: space-between; gap: 16px;
}
html[dir="rtl"] .faq-question { text-align: right; }
.faq-question svg { width: 20px; height: 20px; color: var(--text-muted); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7;
}

/* -------------------------------------------
   CTA SECTION
------------------------------------------- */
.cta-section { text-align: center; padding: 120px 0; }
.cta-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-2xl); padding: 80px 64px;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-1);
}
.cta-box::after {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; margin-bottom: 18px; position: relative; z-index: 1;
}
.cta-desc {
  color: var(--text-secondary); font-size: 1.12rem; margin-bottom: 40px;
  max-width: 520px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1; line-height: 1.7;
}
.cta-actions {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* -------------------------------------------
   FOOTER
------------------------------------------- */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-brand {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800;
  background: var(--gradient-1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-text { color: var(--text-muted); font-size: 0.83rem; margin-top: 4px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: var(--text-secondary); font-size: 0.88rem; transition: color var(--transition);
  display: inline-flex; align-items: center; gap: 7px;
}
.footer-links a:hover { color: var(--primary); }
.footer-links a svg { width: 17px; height: 17px; }

/* -------------------------------------------
   BACK TO TOP
------------------------------------------- */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-1); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(236,72,153,0.3);
  opacity: 0; transform: translateY(20px);
  transition: all var(--transition); cursor: pointer; border: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(236,72,153,0.45); }
html[dir="rtl"] .back-to-top { right: auto; left: 32px; }

/* -------------------------------------------
   MOBILE MENU
------------------------------------------- */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px;
  height: 100vh; background: rgba(15,23,42,0.98); backdrop-filter: blur(20px);
  z-index: 1001; display: flex; flex-direction: column;
  padding: 80px 32px 32px; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border);
}
html[dir="rtl"] .mobile-nav { right: auto; left: -100%; border-left: none; border-right: 1px solid var(--border); }
.mobile-nav.open { right: 0; }
html[dir="rtl"] .mobile-nav.open { left: 0; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1000;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-size: 1.3rem; font-weight: 600; color: var(--text-primary);
  padding: 16px 0; border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  background: transparent; color: var(--text-primary); padding: 8px;
}
html[dir="rtl"] .mobile-close { right: auto; left: 20px; }

/* -------------------------------------------
   RESPONSIVE
------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { order: -1; max-width: 600px; margin: 0 auto; }
  .hero-content { text-align: center; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .whatsapp-float { bottom: 90px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-actions { gap: 8px; }
  .nav-cta { display: none; }
  .lang-toggle { padding: 2px; }
  .lang-btn { padding: 4px 8px; font-size: 0.7rem; }
  .features-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .problems-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-float-card { display: none; }
  .social-proof-inner { gap: 32px; }
  .section { padding: 80px 0; }
  .hero { padding: 220px 0 80px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; padding: 14px 24px; }
  .mockup-stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-links { flex-direction: column; gap: 12px; }
}
/* -------------------------------------------
   NEW PROMOTIONAL SECTIONS
------------------------------------------- */

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 8px 32px rgba(37, 211, 102, 0.2);
  z-index: 998;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 12px 48px rgba(37, 211, 102, 0.3);
}
html[dir="rtl"] .whatsapp-float { right: auto; left: 32px; }

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 8px 32px rgba(37, 211, 102, 0.2); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 8px 40px rgba(37, 211, 102, 0.4); }
}

/* Promo Banner */
.promo-banner {
  background: var(--gradient-1);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 999;
  margin-top: 62px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  animation: shine 3s infinite;
}
@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.promo-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding: 0 24px;
}
.promo-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  color: white;
  justify-content: center;
  max-width: 100%;
  min-height: 40px;
}
.promo-content i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-text {
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.promo-text strong {
  font-weight: 700;
}
.promo-btn {
  background: white;
  color: var(--primary);
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.promo-close {
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 6px;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.promo-close:hover {
  background: rgba(255,255,255,0.3);
}

/* --- CLS Fix: promo-closed state (applied via inline <head> script) --- */
html.promo-closed .promo-banner {
  display: none !important;
}
html.promo-closed .hero {
  padding-top: 140px;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236,72,153,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, rgba(30,41,59,0.9) 0%, rgba(30,41,59,0.6) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.stat-item:hover::before {
  transform: scaleX(1);
}
.stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(30,41,59,1) 0%, rgba(30,41,59,0.8) 100%);
  box-shadow: 0 20px 40px rgba(236,72,153,0.15), 0 10px 20px rgba(0,0,0,0.3);
}
.stat-item:nth-child(1) .stat-icon { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.stat-item:nth-child(2) .stat-icon { background: linear-gradient(135deg, #EC4899, #8B5CF6); }
.stat-item:nth-child(3) .stat-icon { background: linear-gradient(135deg, #06B6D4, #3B82F6); }
.stat-item:nth-child(4) .stat-icon { background: linear-gradient(135deg, #10B981, #059669); }
.stat-icon {
  background: var(--gradient-1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(236,72,153,0.3);
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ROI Section */
.roi-section {
  background: var(--bg-section);
}
.roi-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.roi-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}
.roi-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.roi-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.roi-item-icon {
  background: rgba(239, 68, 68, 0.15);
  color: var(--error);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.roi-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.roi-item-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--error);
  margin-bottom: 6px;
}
.roi-item-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.roi-total {
  background: var(--gradient-3);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 32px;
}
.roi-total-label {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.roi-total-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
}
.roi-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}
.roi-card-header {
  text-align: center;
  margin-bottom: 32px;
}
.roi-card-header i {
  margin-bottom: 16px;
}
.roi-card-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.roi-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.roi-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-primary);
}
.roi-benefit i {
  flex-shrink: 0;
}
.roi-card-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.roi-payback {
  font-size: 1rem;
  color: var(--success);
  font-weight: 700;
}

/* Comparison Table */
.comparison-section {
  background: var(--bg-dark);
}
.comparison-table {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border);
  overflow-x: auto;
}
.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.comparison-header {
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  border-bottom: none;
  margin-bottom: 8px;
}
.comparison-row:last-child {
  border-bottom: none;
}
.comparison-cell {
  text-align: center;
  font-size: 0.95rem;
}
.comparison-cell:first-child {
  text-align: left;
  font-weight: 600;
}
.comparison-highlight {
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent-light);
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-sm);
}

/* Trust Badges */
.trust-section {
  padding: 60px 0;
  background: var(--bg-section);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.trust-badge:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}
.trust-badge i {
  margin-bottom: 16px;
}
.trust-badge-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.trust-badge-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* CTA Guarantee */
.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-grid { grid-template-columns: 1fr; }
  .roi-card { position: relative; top: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; gap: 20px; }
  .stat-item { padding: 32px 20px; }
  .stat-icon { width: 64px; height: 64px; }
  .stat-number { font-size: 2.2rem; }
  .trust-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .promo-banner { padding: 12px 0; margin-top: 56px; }
  .promo-banner .container { padding: 0 16px; }
  .promo-content {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 6px 32px 0 0;
  }
  html[dir="rtl"] .promo-content { padding: 6px 0 0 32px; }
  .promo-close { position: absolute; right: 10px; top: 10px; }
  html[dir="rtl"] .promo-close { right: auto; left: 10px; }
  .promo-text { font-size: 0.85rem; justify-content: center; text-align: center; }
  .promo-text strong { display: block; width: 100%; margin-bottom: 4px; }
  .promo-btn { font-size: 0.85rem; padding: 8px 20px; width: 100%; max-width: 200px; }
  .comparison-table { padding: 20px; }
  .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1fr 1fr; gap: 12px; padding: 12px; font-size: 0.85rem; }
  .whatsapp-float { width: 56px; height: 56px; bottom: 80px; right: 20px; }
  html[dir="rtl"] .whatsapp-float { left: 20px; }
}

@media (max-width: 480px) {
  .comparison-table { padding: 12px; }
  .comparison-header, .comparison-row { grid-template-columns: 1fr; gap: 8px; padding: 8px; text-align: center; }
  .comparison-cell:first-child { text-align: center; }
  .stat-number { font-size: 2rem; }
  .roi-total-value { font-size: 2rem; }
}

/* ================================
   HERO BADGES
   ================================ */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
  justify-content: center;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.hero-badge-item i {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ================================
   OFFLINE SECTION
   ================================ */
.offline-section {
  padding: 80px 0;
  background: var(--bg-primary);
}
.offline-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  color: var(--accent);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.offline-label i { width: 16px; height: 16px; }
.offline-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.offline-section > .container > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.offline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.offline-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.offline-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.offline-bullet-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,107,53,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.offline-bullet-icon i {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.offline-bullet h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.offline-bullet p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}
.offline-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.offline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.offline-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offline-step-icon i { width: 28px; height: 28px; }
.offline-icon-red {
  background: rgba(239,68,68,0.15);
}
.offline-icon-red i { color: #ef4444; }
.offline-icon-green {
  background: rgba(34,197,94,0.15);
}
.offline-icon-green i { color: #22c55e; }
.offline-step span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}
.offline-step small {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.offline-arrow {
  color: var(--accent);
}
.offline-arrow i {
  width: 28px;
  height: 28px;
}

/* ================================
   CTA OFFLINE NOTE
   ================================ */
.cta-offline-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.cta-offline-note i {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* ================================
   MOBILE STICKY CTA
   ================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 10px 16px;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-sticky-btn:hover {
  background: #1fba59;
}
.mobile-sticky-btn svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  .whatsapp-float { bottom: 90px; }
  .offline-grid { grid-template-columns: 1fr; gap: 32px; }
  .offline-visual { margin-top: 16px; }
  .hero-badges { gap: 8px; }
  .hero-badge-item { font-size: 0.78rem; padding: 6px 12px; }
  /* Add padding at bottom so sticky CTA doesn't cover footer */
  body { padding-bottom: 70px; }
}
@media (max-width: 480px) {
  .offline-section { padding: 48px 0; }
  .offline-section h2 { font-size: 1.5rem; }
}

/* RTL adjustments for new sections */
html[dir="rtl"] .offline-arrow i { transform: scaleX(-1); }
html[dir="rtl"] .offline-bullet { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .hero-badge-item { flex-direction: row-reverse; }