.nav-bar-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 16px 24px 0;
  transition: padding 0.4s ease;
}
.nav-bar {
  width: 100%;
  max-width: 1050px;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 32px;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.nav-bar .logo {
  color: #fff;
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.5px;
  direction: ltr;
  text-decoration: none;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.nav-links-pill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: all 0.3s ease;
}
.nav-links-pill a {
  color: #475569;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-links-pill a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-actions .btn-outline {
  background: none; border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  padding: 8px 18px; font-size: 13px; font-weight: 500;
  border-radius: 999px;
  font-family: 'Cairo', sans-serif; cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.nav-actions .btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.nav-actions .btn-primary {
  background: rgba(255,255,255,0.12); color: #fff;
  padding: 8px 22px; font-size: 13px; font-weight: 600;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.2);
  font-family: 'Cairo', sans-serif; cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.nav-actions .btn-primary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }

/* Scrolled state — white pill */
.nav-bar-wrap.scrolled .nav-bar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
}
.nav-bar-wrap.scrolled .logo { color: #0f172a; }
.nav-bar-wrap.scrolled .nav-links-pill a { color: #475569; font-weight: 600; }
.nav-bar-wrap.scrolled .nav-links-pill a:hover { background: rgba(212, 252, 75, 0.08); color: #D4FC4B; }
.nav-bar-wrap.scrolled .nav-actions .btn-outline { color: #0f172a; border-color: rgba(15, 23, 42, 0.25); }
.nav-bar-wrap.scrolled .nav-actions .btn-outline:hover { background: #D4FC4B; color: #0f172a; border-color: #D4FC4B; }
.nav-bar-wrap.scrolled .nav-actions .btn-primary { background: #D4FC4B; color: #0f172a; border-color: #D4FC4B; }
.nav-bar-wrap.scrolled .nav-actions .btn-primary:hover { background: #c8f03e; }

/* Scrolled in hero — dark pill */
.nav-bar-wrap.scrolled-green .nav-bar {
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(212, 252, 75, 0.15);
}
.nav-bar-wrap.scrolled-green .logo { color: #fff; }
.nav-bar-wrap.scrolled-green .nav-links-pill a { color: rgba(255,255,255,0.7); }
.nav-bar-wrap.scrolled-green .nav-links-pill a:hover { background: rgba(212, 252, 75, 0.15); color: #D4FC4B; }
.nav-bar-wrap.scrolled-green .nav-actions .btn-outline { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.25); }
.nav-bar-wrap.scrolled-green .nav-actions .btn-outline:hover { background: #D4FC4B; color: #0f172a; border-color: #D4FC4B; }
.nav-bar-wrap.scrolled-green .nav-actions .btn-primary { background: #D4FC4B; color: #0f172a; border-color: #D4FC4B; }
.nav-bar-wrap.scrolled-green .nav-actions .btn-primary:hover { background: #c8f03e; }

.hero {
  position: relative; width: 100%; min-height: 100vh;
  background: #1a2a1f; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg-shape {
  position: absolute; border-radius: 50%;
  opacity: 0.06; background: #fff;
  will-change: transform;
}
.hero-bg-shape:nth-child(1) { width: 600px; height: 600px; top: -200px; left: -200px; animation: float1 6s ease-in-out infinite; }
.hero-bg-shape:nth-child(2) { width: 400px; height: 400px; bottom: -100px; right: -100px; animation: float2 8s ease-in-out infinite; }
.hero-bg-shape:nth-child(3) { width: 200px; height: 200px; top: 50%; right: 10%; animation: float3 5s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-20px) translateX(10px); } }
@keyframes float2 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(15px) translateX(-15px); } }
@keyframes float3 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-12px) translateX(8px); } }

.hero-icon {
  display: none;
}
.hero-icon svg { width: 100%; height: 100%; fill: none; stroke: #D4FC4B; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.hero-icon-cal {
  width: 70px; height: 70px;
  top: 18%; left: 8%;
  opacity: 0.15;
  animation: floatIcon1 6s ease-in-out infinite;
}
.hero-icon-clock {
  width: 55px; height: 55px;
  top: 25%; right: 10%;
  opacity: 0.12;
  animation: floatIcon2 7s ease-in-out infinite;
}
.hero-icon-check {
  width: 45px; height: 45px;
  bottom: 30%; left: 12%;
  opacity: 0.15;
  animation: floatIcon3 5s ease-in-out infinite;
}
.hero-icon-users {
  width: 60px; height: 60px;
  top: 55%; right: 6%;
  opacity: 0.12;
  animation: floatIcon4 8s ease-in-out infinite;
}
.hero-icon-star {
  width: 35px; height: 35px;
  top: 40%; left: 4%;
  opacity: 0.15;
  animation: floatIcon5 4.5s ease-in-out infinite;
}
.hero-icon-cal2 {
  width: 40px; height: 40px;
  bottom: 20%; right: 15%;
  opacity: 0.10;
  animation: floatIcon6 6.5s ease-in-out infinite;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px; max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: rgba(212, 252, 75, 0.15);
  color: #D4FC4B; padding: 6px 20px;
  border-radius: 999px; font-size: 13px; font-weight: 600;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(32px,6vw,64px); font-weight: 800;
  color: #fff; line-height: 1.2; margin-bottom: 20px;
}
.hero h1 span { color: #D4FC4B; }
.hero p {
  color: rgba(255,255,255,0.6);
  font-size: clamp(16px,2vw,20px); line-height: 1.8;
  margin-bottom: 36px; max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-buttons .btn-primary {
  background: #D4FC4B; color: #0f172a;
  padding: 14px 36px; font-size: 16px; font-weight: 700;
  border-radius: 999px; border: none;
  font-family: 'Cairo', sans-serif; cursor: pointer;
  position: relative; overflow: hidden;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(212, 252, 75, 0.25);
}

@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 125%; }
}
.hero-buttons .btn-primary:hover { background: #c8f03e; transform: translateY(-2px); }
.hero-buttons .btn-primary:hover::after { animation: none; }
.hero-buttons .btn-outline {
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 14px 36px; font-size: 16px; font-weight: 600;
  border-radius: 999px; font-family: 'Cairo', sans-serif; cursor: pointer; transition: all 0.2s;
}
.hero-buttons .btn-outline:hover { border-color: #D4FC4B; color: #D4FC4B; }
.hero-stats {
  display: flex; justify-content: center; gap: 48px; margin-top: 64px;
}
.hero-stats div { text-align: center; }
.hero-stats strong { display: block; font-size: 28px; color: #D4FC4B; font-weight: 800; }
.hero-stats span { font-size: 13px; color: rgba(255,255,255,0.5); }

section { padding: 96px 20px; background: #030712; color: #fff; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
  text-align: center; font-size: 32px; font-weight: 700; margin-bottom: 12px;
  color: #ffffff;
}
.section-sub {
  text-align: center; color: rgba(255,255,255,0.5); font-size: 17px;
  margin-bottom: 56px; max-width: 580px;
  margin-left: auto; margin-right: auto; line-height: 1.7;
}
:root {
  --bg: #030712;
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.5);
  --border: rgba(255,255,255,0.08);
  --accent: #D4FC4B;
  --accent-dim: rgba(212, 252, 75, 0.12);
}
.features-section {
  background: #030712;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.features-glow {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.features-glow-1 {
  display: none;
}
.features-glow-2 {
  height: 500px;
  bottom: 0;
  background: linear-gradient(to top, rgba(212, 252, 75, 0.03), transparent);
}
.features-glow-3 {
  display: none;
}
.features-container {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.features-header {
  text-align: center;
  margin-bottom: 80px;
}
.features-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 16px 0;
}
.features-subtitle {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.features-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.features-right {
  display: flex;
  flex-direction: column;
}
.features-left {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 16px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(212, 252, 75, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: #D4FC4B;
}
.feature-text {
  flex: 1;
}
.feature-card h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}
.feature-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: #2d5a3e;
}
.feature-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: right;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feature-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 12px;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 252, 75, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: #D4FC4B;
}
.feature-text {
  flex: 1;
}
.feature-card h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.feature-card p {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 252, 75, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: #D4FC4B;
}
.feature-text {
  flex: 1;
}
.feature-card-with-img {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.feature-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: #eff6ff;
  flex: 1;
}
.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card-content {
  padding: 24px 32px 32px;
  text-align: right;
}
.feature-card-content h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
}
.feature-card-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #6B7280;
}
@media (max-width: 768px) {
  .features-section { padding: 60px 16px; }
  .features-title { font-size: 32px; }
  .features-layout { grid-template-columns: 1fr; }
  .features-left { grid-template-rows: auto; }
  .feature-card { padding: 28px 24px; }
}

#how { background: #030712; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.step-card {
  text-align: center;
  padding: 32px 16px;
  position: relative;
}
.step-card:nth-child(2)::before,
.step-card:nth-child(3)::before {
  content: '←';
  position: absolute;
  top: 50%;
  right: -20px;
  font-size: 24px;
  color: #D4FC4B;
  opacity: 0.5;
  transform: translateY(-50%);
}
.step-watermark {
  font-size: 80px;
  font-weight: 900;
  color: #D4FC4B;
  opacity: 0.04;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  line-height: 1;
  pointer-events: none;
}
.step-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  font-weight: 900;
  color: #ffffff;
}
.step-card p {
  font-size: 15px;
  color: #6B7280;
  position: relative;
  z-index: 2;
  max-width: 250px;
  margin: 0 auto;
  line-height: 1.7;
}

#categories {
  background: #030712;
  overflow: hidden;
  padding: 96px 20px;
}
.categories-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.categories-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-height: 500px;
}
.categories-images-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.category-card-tall {
  aspect-ratio: 4/5;
  max-height: 280px;
}
.category-card-short {
  aspect-ratio: 4/3;
  max-height: 200px;
}
.category-card-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.category-card-tag {
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  font-size: 11px;
  color: #374151;
  border: 1px solid #e5e7eb;
  font-family: 'Tajawal', sans-serif;
}
.category-card h4 {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  font-family: 'Tajawal', sans-serif;
}
.categories-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding-top: 16px;
}
.categories-label {
  font-size: 14px;
  color: #D4FC4B;
  font-family: 'Tajawal', sans-serif;
}
.categories-text h2 {
  font-family: 'Tajawal', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-top: 8px;
  letter-spacing: -0.5px;
}
.categories-tags {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.categories-tag-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
}
.categories-tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.6);
}
.categories-bottom {
  margin-top: 40px;
}
.categories-bottom-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Tajawal', sans-serif;
}
.categories-bottom-desc {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-family: 'Tajawal', sans-serif;
}
.categories-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 9999px;
  background: #D4FC4B;
  color: #0f172a;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  font-family: 'Tajawal', sans-serif;
}
.categories-cta:hover {
  background: #c8f03e;
}
.categories-cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0f172a;
}
.category-card-tag {
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  font-size: 11px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.1);
  font-family: 'Tajawal', sans-serif;
}
@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .categories-text h2 {
    font-size: 28px;
  }
  #categories {
    padding: 60px 16px;
  }
  .categories-container {
    padding: 20px;
  }
}

.stats-section { background: #030712; color: #fff; }
.stats-section .section-sub { color: rgba(255,255,255,0.5); }
.stats-grid { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 40px; color: #D4FC4B; font-weight: 800; }
.stat-item span { font-size: 15px; color: rgba(255,255,255,0.5); }

.testimonials { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.testimonial-card { background: #f9f9f9; border-radius: 16px; padding: 32px 28px; }
.testimonial-card .stars { color: #D4FC4B; font-size: 16px; margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: 15px; line-height: 1.8; color: #374151; margin-bottom: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #D4FC4B; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #0f172a;
}
.testimonial-author strong { font-size: 14px; color: #0f172a; }
.testimonial-author span { font-size: 12px; color: #6B7280; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

#pricing { background: #030712; position: relative; z-index: 1; }

.pricing-card {
  background: #f9f9f9; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px;
  padding: 40px 30px; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.pricing-card h3 {
  font-size: 26px; font-weight: 800; margin-bottom: 8px; text-align: right;
  letter-spacing: -0.5px; color: #0f172a;
}

.pricing-card .price { font-size: 42px; font-weight: 800; margin: 16px 0 8px; color: #0f172a; }
.pricing-card .price span { font-size: 16px; font-weight: 400; color: #6B7280; }
.pricing-card .desc { color: #6B7280; font-size: 14px; margin-bottom: 24px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 32px; text-align: right; }
.pricing-card li {
  padding: 8px 0; font-size: 14px; color: #374151;
  display: flex; align-items: center; gap: 8px;
}
.pricing-card li::before { content: '✓'; color: #D4FC4B; font-weight: 700; }
.pricing-card .btn {
  display: inline-block; padding: 12px 36px; border-radius: 999px;
  font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s;
  width: 100%; text-align: center;
}
.pricing-card .btn-outline-pricing { background: none; border: 1px solid #d1d5db; color: #1a1a1a; }
.pricing-card .btn-outline-pricing:hover { border-color: #D4FC4B; }
.pricing-card.featured { border-color: #D4FC4B; position: relative; }
.pricing-card.featured .btn { background: #D4FC4B; color: #0f172a; }
.pricing-card.featured .btn:hover { background: #c8f03e; }

.pricing-glow {
  display: none;
}
.pricing-card .price { font-size: 42px; font-weight: 800; margin: 16px 0 8px; color: #0f172a; }
.pricing-card .price span { font-size: 16px; font-weight: 400; color: #6B7280; }
.pricing-card .desc { color: #6B7280; font-size: 14px; margin-bottom: 24px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 32px; text-align: right; }
.pricing-card li {
  padding: 8px 0; font-size: 14px; color: #374151;
  display: flex; align-items: center; gap: 8px;
}
.pricing-card li::before { content: '✓'; color: #D4FC4B; font-weight: 700; }
.pricing-card .btn {
  display: inline-block; padding: 12px 36px; border-radius: 999px;
  font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s;
}
.pricing-card .btn-outline-pricing { background: none; border: 1px solid #d1d5db; color: #1a1a1a; }
.pricing-card .btn-outline-pricing:hover { border-color: #D4FC4B; color: #D4FC4B; }
.pricing-card.featured .btn { background: #D4FC4B; color: #0f172a; }
.pricing-card.featured .btn:hover { background: #c8f03e; }

.cta { background: linear-gradient(180deg, #030712 0%, #0a0f1a 50%, #030712 100%); color: white; text-align: center; padding: 0 20px 80px; position: relative; overflow: hidden; }
.cta-container {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-beams-radial {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  mask-image: radial-gradient(65% 65% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(65% 65% at 50% 50%, black, transparent);
  background: radial-gradient(1200px 400px at 50% -10%, rgba(212, 252, 75, 0.25), transparent), radial-gradient(1200px 600px at 50% 120%, rgba(16, 185, 129, 0.2), transparent);
}
.cta-beams-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mask-image: radial-gradient(80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, black, transparent);
  background-image: linear-gradient(to right, rgba(255,255,255,0.7) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.7) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-beams-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent, rgba(0,0,0,0.8));
}
.cta-content {
  min-height: 450px;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #D4FC4B;
  background: rgba(212, 252, 75, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(212, 252, 75, 0.25);
  padding: 6px 14px;
  text-decoration: none;
  transition: background 0.3s;
  animation: fadeSlideIn 0.8s ease-out 0.3s both;
}
.cta-badge:hover { background: rgba(212, 252, 75, 0.15); }
.cta-badge-new {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: rgba(212, 252, 75, 0.9);
}
.cta-badge-arrow { width: 16px; height: 16px; }
.cta-title {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.03em;
  max-width: 600px;
  margin-top: 20px;
  line-height: 1.1;
  animation: fadeSlideIn 0.8s ease-out 0.4s both;
}
.cta-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin-top: 16px;
  line-height: 1.7;
  animation: fadeSlideIn 0.8s ease-out 0.5s both;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideIn 0.8s ease-out 0.6s both;
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  background: #D4FC4B;
  border: 1px solid #D4FC4B;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.cta-btn-primary:hover {
  background: #c8f03e;
  box-shadow: 0 0 5px #D4FC4B, 0 0 20px #D4FC4B, 0 0 50px rgba(212, 252, 75, 0.5);
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.cta-btn-secondary:hover {
  background: rgba(212, 252, 75, 0.1);
  border-color: #D4FC4B;
  color: #D4FC4B;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .cta-content { min-height: auto; max-height: none; padding: 50px 16px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; }
}

/* ── Scroll Animations ── */
.anim { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.anim.visible { opacity: 1; transform: translateY(0) !important; }
.anim-up { transform: translateY(40px); }
.anim-down { transform: translateY(-40px); }
.anim-left { transform: translateX(-40px); }
.anim-right { transform: translateX(40px); }
.anim-scale { transform: scale(0.9); }
.anim-fade { transform: none; }

.anim-d1 { transition-delay: 0.1s; }
.anim-d2 { transition-delay: 0.2s; }
.anim-d3 { transition-delay: 0.3s; }
.anim-d4 { transition-delay: 0.4s; }
.anim-d5 { transition-delay: 0.5s; }

.footer { background: #111; padding: 48px 20px 32px; border-radius: 40px 40px 0 0; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .logo {
  color: #fff; font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: 24px; font-weight: 700; direction: ltr; display: block; margin-bottom: 12px;
}
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 16px; }
.footer-col a {
  display: block; color: rgba(255,255,255,0.4);
  font-size: 13px; margin-bottom: 10px; text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: #D4FC4B; }
.footer-bottom {
  max-width: 1100px; margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center; color: rgba(255,255,255,0.3); font-size: 13px;
}

@media (max-width: 768px) {
  .nav-bar { padding: 0 16px; height: 56px; gap: 8px; }
  .nav-bar .logo { font-size: 22px; }
  .nav-links-pill { padding: 4px 12px; }
  .nav-links-pill a { padding: 4px 10px; font-size: 13px; }
  .nav-actions { gap: 12px; }
  .nav-actions .btn-primary { padding: 8px 18px; font-size: 13px; }
  .nav-actions .btn-primary { padding: 8px 16px; font-size: 13px; }
  .steps, .categories, .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 32px; }
  .stats-grid .stat-item strong { font-size: 32px; }
  section { padding: 56px 16px; }
  .section-title { font-size: 26px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.hero-new {
  height: 100vh;
  background: #030712;
  background-image:
    linear-gradient(rgba(212, 252, 75, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 252, 75, 0.15) 1px, transparent 1px);
  background-size: 33.33vw 33.33vh, 33.33vw 33.33vh;
  background-position: 0 0;
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
  font-family: 'Cairo', sans-serif;
}
.hero-new::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(90deg, transparent, rgba(212, 252, 75, 1), transparent),
    linear-gradient(90deg, transparent, rgba(200, 240, 62, 1), transparent),
    linear-gradient(180deg, transparent, rgba(212, 252, 75, 1), transparent),
    linear-gradient(180deg, transparent, rgba(200, 240, 62, 1), transparent);
  background-size: 120px 1px, 100px 1px, 1px 120px, 1px 100px;
  background-repeat: no-repeat;
  animation: slideBeams 5s linear infinite;
}
.hero-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  pointer-events: none;
  z-index: 0;
}
@keyframes slideBeams {
  0% {
    background-position:
      -120px 33.33vh,
      calc(100% + 100px) 66.66vh,
      33.33vw -120px,
      66.66vw calc(100% + 100px);
  }
  100% {
    background-position:
      calc(100% + 120px) 33.33vh,
      -100px 66.66vh,
      33.33vw calc(100% + 120px),
      66.66vw -100px;
  }
}

.hero-new-top {
  padding: 40px 24px 5px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-new-content {
  max-width: 700px;
  margin: 0 auto;
}
.hero-new-heading {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 4px;
}
.hero-new-heading span { color: #D4FC4B; }
.hero-new-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 10px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero-new-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-new-btns .h-btn-p {
  background: #D4FC4B;
  color: #0f172a;
  padding: 11px 30px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(212, 252, 75, 0.25);
}
.hero-new-btns .h-btn-p::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-25deg);
  animation: shimmer 1.2s infinite;
}
.hero-new-btns .h-btn-p:hover { background: #c8f03e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 252, 75, 0.45); }
.hero-new-btns .h-btn-p:hover::after { animation: none; }
.hero-new-btns .h-btn-o {
  background: none;
  border: 1px solid rgba(0,0,0,0.2);
  color: #475569;
  padding: 11px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.hero-new-btns .h-btn-o:hover { border-color: #94a3b8; color: #0f172a; background: rgba(15, 23, 42, 0.03); transform: translateY(-2px); }
.hero-new-btm {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  height: 68vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 65px 24px 20px;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  0% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
  100% { opacity: 0.5; transform: scale(0.98); }
}
.h-devices {
  position: relative;
  display: inline-block;
  direction: ltr;
}

/* LAPTOP */
.h-laptop {
  opacity: 0;
  animation: hSlideUp 0.7s ease-out 0.3s forwards;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}
.h-screen {
  width: 900px;
  height: 500px;
  background: #fff;
  display: flex;
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  font-size: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* PHONE */
.h-phone {
  position: absolute;
  left: -70px;
  top: 100px;
  width: 215px;
  height: 440px;
  z-index: 2;
  flex-shrink: 0;
  opacity: 0;
  animation: hSlideUp 0.7s ease-out 0.45s forwards;
  border: 6px solid rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}

.hd-sidebar { width: 160px; background: #f5f6fa; padding: 14px 10px; display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; border-left: 1px solid rgba(0,0,0,0.06); }
.hd-logo { font-family: 'Baloo Bhaijaan 2', cursive; color: #0f172a; font-size: 12px; font-weight: 700; direction: ltr; margin-bottom: 10px; padding: 0 5px; letter-spacing: 0.5px; }
.hd-nav { display: flex; align-items: center; gap: 6px; padding: 5px 8px; border-radius: 6px; color: #666; font-size: 9px; font-weight: 500; }
.hd-nav.active { background: rgba(212, 252, 75, 0.12); color: #D4FC4B; }
.hd-nav svg { width: 12px; height: 12px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.hd-body { flex: 1; display: flex; flex-direction: column; padding: 6px 8px; background: #fff; }
.hd-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; padding-bottom: 6px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.hd-biz { color: #1a1a1a; font-size: 10px; font-weight: 700; }
.hd-av { width: 20px; height: 20px; border-radius: 6px; background: linear-gradient(135deg, #D4FC4B, #D4FC4B); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 8px; font-weight: 800; }
.hd-stats { display: flex; gap: 5px; margin-bottom: 6px; }
.hd-stat { flex: 1; background: rgba(0,0,0,0.03); border-radius: 6px; padding: 6px 4px; text-align: center; }
.hd-stat strong { display: block; font-size: 11px; color: #D4FC4B; font-weight: 800; }
.hd-stat span { font-size: 6px; color: rgba(0,0,0,0.4); }
.hd-tbl { width: 100%; border-collapse: collapse; }
.hd-tbl th { color: rgba(0,0,0,0.3); font-size: 6px; font-weight: 500; padding: 3px 3px; text-align: right; border-bottom: 1px solid rgba(0,0,0,0.06); }
.hd-tbl td { color: rgba(0,0,0,0.7); font-size: 6px; padding: 3px 3px; border-bottom: 1px solid rgba(0,0,0,0.03); white-space: nowrap; }
.hd-tbl .hd-s { font-size: 5px; padding: 1px 5px; border-radius: 100px; display: inline-block; }
.hd-tbl .hd-s.ok { background: rgba(212, 252, 75, 0.15); color: #D4FC4B; }
.hd-tbl .hd-s.w8 { background: rgba(251, 191, 36, 0.15); color: #d97706; }
.hb-c { padding: 16px 14px; flex: 1; display: flex; flex-direction: column; font-family: 'Cairo', sans-serif; direction: rtl; font-size: 11px; background: #f5f5f5; overflow: hidden; }
.hb-hdr { text-align: center; margin-bottom: 12px; }
.hb-logo { font-family: 'Baloo Bhaijaan 2', cursive; font-size: 16px; font-weight: 700; color: #0f172a; direction: ltr; }
.hb-name { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-top: 4px; }
.hb-hr { height: 1px; background: rgba(0,0,0,0.06); margin: 0 -14px 10px; }
.hb-lbl { font-size: 9px; font-weight: 700; color: #999; margin-bottom: 7px; }
.hb-svcs { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; overflow-y: auto; flex-shrink: 1; }
.hb-svc { display: flex; align-items: center; gap: 7px; padding: 6px 8px; border-radius: 7px; border: 1px solid rgba(0,0,0,0.06); }
.hb-svc.on { border-color: #D4FC4B; background: rgba(212, 252, 75, 0.06); }
.hb-ico { width: 22px; height: 22px; border-radius: 6px; background: #f0f7f2; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.hb-inf strong { display: block; font-size: 10px; color: #1a1a1a; }
.hb-inf span { font-size: 8px; color: #999; }
.hb-prc { margin-right: auto; font-size: 9px; font-weight: 700; color: #D4FC4B; }
.hb-dt { margin-bottom: 14px; }
.hb-drow { display: flex; gap: 4px; margin-bottom: 6px; }
.hb-ditem { flex: 1; text-align: center; padding: 4px 3px; border-radius: 6px; background: rgba(0,0,0,0.03); }
.hb-ditem.on { background: #D4FC4B; color: #fff; }
.hb-ditem .hdn { font-size: 7px; color: inherit; opacity: 0.7; display: block; }
.hb-ditem .hdd { font-size: 9px; font-weight: 700; color: inherit; }
.hb-tgrid { display: flex; gap: 4px; flex-wrap: wrap; }
.hb-tslot { padding: 3px 8px; border-radius: 5px; font-size: 8px; background: rgba(0,0,0,0.03); }
.hb-tslot.on { background: #D4FC4B; color: #fff; padding: 3px 8px; border-radius: 5px; font-size: 8px; border: none; }
.hb-go { margin-top: auto; background: #D4FC4B; color: #fff; text-align: center; padding: 9px; border-radius: 8px; font-size: 11px; font-weight: 700; border: none; font-family: 'Cairo', sans-serif; }

@keyframes hFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes hSlideUp { from { opacity: 0; transform: translateY(80px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatIcon1 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-18px) translateX(8px); } }
@keyframes floatIcon2 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(12px) translateX(-10px); } }
@keyframes floatIcon3 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-10px) translateX(6px); } }
@keyframes floatIcon4 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(14px) translateX(-8px); } }
@keyframes floatIcon5 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-8px) translateX(4px); } }
@keyframes floatIcon6 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(12px) translateX(6px); } }

@media (max-width: 1200px) {
  .h-screen { width: 700px; height: 400px; }
  .h-phone { left: -70px; top: 60px; width: 200px; height: 380px; }
}
@media (max-width: 1068px) {
  .h-screen { width: 580px; height: 330px; }
  .h-phone { left: -45px; top: 40px; width: 180px; height: 340px; }
  .hd-sidebar { width: 130px; padding: 12px 8px; }
  .hd-logo { font-size: 12px; }
  .hd-nav { font-size: 9px; padding: 6px 8px; }
  .hd-nav svg { width: 11px; height: 11px; }
  .hd-stat strong { font-size: 11px; }
}
@media (max-width: 768px) {
  .hero-new-top { padding: 40px 16px 5px; }
  .hero-new-btm { padding: 0 16px 20px; }
  .h-devices { display: flex; flex-direction: column; align-items: center; gap: 16px; }
  .h-phone { position: static; transform: none; width: 215px; height: 420px; }
  .h-screen { width: 100%; max-width: 500px; height: 300px; }
  .hero-new-heading { font-size: 18px; }
}
@media (max-width: 480px) {
  .hero-new-top { padding: 35px 12px 5px; }
  .h-screen { height: 300px; }
  .h-phone { width: 200px; height: 370px; }
  .hd-sidebar { width: 90px; padding: 8px 5px; }
  .hd-nav { font-size: 7px; padding: 4px 5px; gap: 3px; }
  .hd-nav svg { width: 9px; height: 9px; }
  .hd-body { padding: 5px; }
  .hd-stat strong { font-size: 9px; }
}
