@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+Arabic:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #00875A;
  --primary-hover: #006D48;
  --primary-light: #E6F4F0;
  --accent: #C6A052;
  --accent-light: #FDF6E3;
  --dark: #0F172A;
  --dark-secondary: #1E293B;
  --light: #F8FAFC;
  --lighter: #F1F5F9;
  --white: #FFFFFF;
  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5C;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -2px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar: 'Noto Sans Arabic', 'Inter', sans-serif;
  --max-w: 1200px;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-en);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="rtl"] body { font-family: var(--font-ar); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,135,90,0.3);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,135,90,0.35);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(0,135,90,0.15);
  letter-spacing: 0.3px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--dark);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--dark);
  flex-shrink: 0;
}

.logo-accent { color: var(--accent); }
.logo-svg { width: 36px; height: 36px; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover, .nav-link.active { color: var(--primary); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

[dir="rtl"] .nav-link::after { left: auto; right: 0; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.lang-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 8px;
}

.lang-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s;
  cursor: pointer;
  user-select: none;
}
.lang-label.active { color: var(--primary); }

.lang-toggle {
  position: relative;
  width: 46px;
  height: 24px;
  background: var(--lighter);
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 2px;
  transition: var(--transition);
}
.lang-toggle:hover { border-color: var(--primary); }

.lang-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0,135,90,0.3);
}

[dir="rtl"] .lang-toggle-thumb { left: auto; right: 2px; }
.lang-toggle.active .lang-toggle-thumb { transform: translateX(22px); }
[dir="rtl"] .lang-toggle.active .lang-toggle-thumb { transform: translateX(-22px); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta { padding: 10px 22px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 100;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
  display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 40%, #fffbeb 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,135,90,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(198,160,82,0.06) 0%, transparent 50%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.15;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  animation: slide-up 0.8s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.hero-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
  animation: slide-up 0.8s ease-out 0.1s both;
}

.hero-sub-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 17px;
  color: var(--text-secondary);
  min-height: 32px;
  animation: slide-up 0.8s ease-out 0.2s both;
}

.hero-ticker-icon { font-size: 20px; }
.hero-ticker-text { color: var(--text-secondary); }
.typing-cursor {
  animation: blink 1s step-end infinite;
  color: var(--accent);
  font-weight: 300;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  align-items: center;
  animation: slide-up 0.8s ease-out 0.3s both;
}

.stat-item { display: flex; flex-direction: column; }
.stat-val { display: flex; align-items: baseline; gap: 3px; }
.stat-num { font-size: 32px; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-plus { font-size: 16px; font-weight: 600; color: var(--primary); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 44px; background: var(--border); }

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: slide-up 0.8s ease-out 0.4s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: slide-up 0.8s ease-out 0.5s both;
}

.trust-avatars { display: flex; }
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-left: -10px;
  border: 2.5px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.avatar:first-child { margin-left: 0; }
[dir="rtl"] .avatar { margin-left: 0; margin-right: -10px; }
[dir="rtl"] .avatar:first-child { margin-right: 0; }

.hero-trust p { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* Phone Frame */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slide-up 1s ease-out 0.3s both;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: #1C1C1E;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.15),
    0 0 0 1px rgba(0,0,0,0.05),
    inset 0 0 0 2px rgba(255,255,255,0.08);
  position: relative;
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #1C1C1E;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 20;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--light);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* App UI */
.app-header {
  background: var(--white);
  padding: 36px 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}
.app-logo-mini { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 12px; color: var(--primary); }

.app-banner {
  background: linear-gradient(135deg, var(--primary), #00A86B);
  padding: 8px 16px;
}
.app-banner-text { color: var(--white); font-size: 11px; font-weight: 600; text-align: center; }

.app-cats {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  overflow-x: auto;
  background: var(--white);
}
.app-cats .cat {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--light);
  white-space: nowrap;
  font-weight: 500;
}
.app-cats .cat.active { background: var(--primary); color: var(--white); }

.app-products {
  flex: 1;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.app-products::-webkit-scrollbar { display: none; }

.app-product {
  display: flex;
  gap: 10px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.2s;
  border: 1px solid var(--border-light);
}
.app-product:hover { transform: scale(1.02); }
.prod-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.prod-info { flex: 1; min-width: 0; }
.prod-name { font-size: 12px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.prod-price { font-size: 13px; font-weight: 700; color: var(--primary); }
.prod-badge { font-size: 10px; color: var(--primary); margin-top: 2px; font-weight: 500; }

.app-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 10px;
  margin: 8px 12px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  border: none;
  animation: pulse-glow 2s infinite;
}

/* Float Cards */
.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 15;
  white-space: nowrap;
  opacity: 0;
  animation: float-card-in 0.6s ease-out forwards;
}

.float-order { top: 12%; right: -20px; animation-delay: 1s; }
.float-whatsapp { bottom: 22%; left: -20px; animation-delay: 2.5s; }
.float-sales { top: 50%; right: -30px; animation-delay: 4s; }

@keyframes float-card-in {
  0% { opacity: 0; transform: translateY(20px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.float-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.float-icon.green { background: rgba(37,211,102,0.1); }
.float-icon.wa-float-icon { background: var(--whatsapp); border-radius: 10px; }
.float-icon.blue-float { background: rgba(59,130,246,0.1); }

.float-title { font-size: 13px; font-weight: 700; color: var(--dark); }
.float-sub { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.float-sub .up { color: var(--whatsapp); font-weight: 700; }

/* ===== TRUSTED ===== */
.trusted-section { padding: 50px 0; border-bottom: 1px solid var(--border-light); background: var(--white); }
.trusted-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.trusted-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.trusted-track {
  display: flex;
  gap: 40px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.trust-brand {
  padding: 8px 24px;
  border-radius: 30px;
  background: var(--light);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* ===== FEATURES ===== */
.features-section { background: var(--light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--white); }
.how-it-works .section-tag { background: var(--accent-light); color: var(--accent); border-color: rgba(198,160,82,0.2); }

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), #00A86B);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(0,135,90,0.25);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0.2;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.3); opacity: 0; }
}

.step-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.step-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: var(--accent);
}

[dir="rtl"] .step-arrow svg { transform: scaleX(-1); }

/* ===== PRICING ===== */
.pricing-section { background: var(--light); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
}
.price-card.popular {
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(198,160,82,0.12);
  z-index: 2;
}
.price-card.popular:hover { transform: scale(1.05); }

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #D4AF37);
  color: var(--white);
  padding: 6px 18px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(198,160,82,0.3);
}

.price-tag {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-currency { font-size: 18px; color: var(--text-muted); font-weight: 600; }
.price-value { font-size: 52px; font-weight: 800; color: var(--dark); line-height: 1; }
.price-period { font-size: 16px; color: var(--text-muted); font-weight: 500; }
.price-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; font-weight: 500; }

.price-features { margin-bottom: 32px; }
.price-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.price-features li.disabled {
  color: var(--text-muted);
  opacity: 0.6;
}
.price-features li.disabled::before {
  content: '—';
  background: var(--lighter);
  color: var(--text-muted);
}

.price-btn {
  display: block;
  text-align: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  background: var(--light);
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.price-btn:hover {
  background: var(--lighter);
  transform: translateY(-2px);
  border-color: var(--border);
}
.price-btn.primary {
  background: linear-gradient(135deg, var(--primary), #00A86B);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,135,90,0.25);
}
.price-btn.primary:hover {
  box-shadow: 0 8px 24px rgba(0,135,90,0.35);
  transform: translateY(-2px);
}

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  border: none;
  color: var(--dark);
  text-align: left;
  transition: var(--transition);
  gap: 16px;
}
[dir="rtl"] .faq-question { text-align: right; flex-direction: row-reverse; }

.faq-question:hover { color: var(--primary); }

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
  font-size: 18px;
}

.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--primary); color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #0f2e24 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,135,90,0.15), transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(198,160,82,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}
.cta-content > p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { margin-bottom: 20px; }
.cta-note { font-size: 14px; color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 80px 0 32px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 300px;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}
.footer-col ul a:hover { color: var(--white); transform: translateX(4px); }
[dir="rtl"] .footer-col ul a:hover { transform: translateX(-4px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { color: var(--text-muted); font-size: 13px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary);
}

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-glow 2s infinite;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.floating-whatsapp.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}
[dir="rtl"] .floating-whatsapp { right: auto; left: 28px; }

/* ===== Policy Pages ===== */
.policy-page { padding-top: calc(var(--nav-h) + 40px); background: var(--white); min-height: 100vh; }
.policy-container { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.policy-header { text-align: center; margin-bottom: 48px; }
.policy-header h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.policy-header p { color: var(--text-muted); font-size: 15px; }

.policy-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}
.policy-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 10px;
}
.policy-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-content ul {
  margin: 12px 0 12px 20px;
  list-style: disc;
}
[dir="rtl"] .policy-content ul { margin-left: 0; margin-right: 20px; }
.policy-content ul li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.policy-content a { color: var(--primary); font-weight: 600; }
.policy-content a:hover { text-decoration: underline; }

.policy-box {
  background: var(--light);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
}
[dir="rtl"] .policy-box {
  border-left: none;
  border-right: 4px solid var(--primary);
  border-radius: var(--radius) 0 0 var(--radius);
}
.policy-box p { margin: 0; font-weight: 500; }

.policy-footer-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== Scroll Animations ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ===== Animations ===== */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes slide-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== Scroll Indicator ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 40px;
  border: 2px solid var(--border);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  animation: bounce-gentle 2s infinite;
}
@keyframes bounce-gentle {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

/* ===== RTL Overrides ===== */
[dir="rtl"] .hero-container { direction: rtl; }
[dir="rtl"] .nav-pill { direction: rtl; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-buttons { justify-content: flex-start; }
[dir="rtl"] .hero-stats { direction: rtl; }
[dir="rtl"] .step-arrow svg { transform: scaleX(-1); }
[dir="rtl"] .price-features li { flex-direction: row-reverse; }
[dir="rtl"] .faq-question { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-bottom { direction: rtl; }
[dir="rtl"] .policy-content ul { direction: rtl; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content { margin: 0 auto; text-align: center; max-width: 600px; }
  [dir="rtl"] .hero-content { text-align: center; }
  .hero-buttons, .hero-stats { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .float-order, .float-whatsapp, .float-sales { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.popular { transform: none; }
  .steps-container { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; margin: 8px 0; }
  [dir="rtl"] .step-arrow { transform: rotate(90deg) scaleX(-1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    animation: slide-down 0.3s ease;
  }
  @keyframes slide-down { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
  .nav-links.active .nav-link { padding: 12px 16px; border-radius: var(--radius); }
  .nav-links.active .nav-link:hover { background: var(--light); }
  .nav-links.active .nav-link::after { display: none; }
  .hamburger { display: flex; }
  .hero-heading { font-size: clamp(30px, 8vw, 42px); }
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { max-width: 100%; transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .phone-frame { width: 260px; height: 530px; }
  .section { padding: 70px 0; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .policy-container { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary, .btn-whatsapp { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .stat-divider { display: none; }
  .phone-frame { width: 240px; height: 490px; }
  .cta-content h2 { font-size: 26px; }
  .section-header h2 { font-size: 26px; }
  .price-value { font-size: 42px; }
}
