* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Cairo", sans-serif;
  background: #0a0e1a;
  color: #e2e8f0;
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100; /* مهم: أعلى من الطبقة السوداء */
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s;
}

.header.scrolled {
  background: rgba(10, 14, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1, #a855f7);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  transition: 0.3s;
}

.logo-box:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.brand-name {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #0ea5e9, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ✅ هذا هو الكود السحري الذي يصلح شكل الكمبيوتر */
.nav-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  padding-right: 60px; /* مسافة بين اللوجو والروابط */
}

.nav-menu {
  display: flex;
  gap: 32px;
  margin: 0 auto; /* يجعل الروابط في المنتصف تماماً */
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #94a3b8;
  transition: 0.3s;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: #38bdf8;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  transition: 0.3s;
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.login-btn {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-btn:hover {
  color: white;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.register-btn {
  padding: 10px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(14,165,233,0.15), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(99,102,241,0.15), transparent 50%),
    #0a0e1a;
  padding-top: 80px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(56, 189, 248, 0.4);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 80%; top: 30%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; top: 70%; animation-delay: 2s; }
.particle:nth-child(4) { left: 60%; top: 80%; animation-delay: 3s; }
.particle:nth-child(5) { left: 90%; top: 60%; animation-delay: 1.5s; }
.particle:nth-child(6) { left: 50%; top: 10%; animation-delay: 2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-80px) scale(1.5); opacity: 1; }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #0ea5e9, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 18px;
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
  font-family: "Cairo", sans-serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.15);
  color: white;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}

.btn-outline:hover {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #0ea5e9, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: #64748b;
  font-size: 24px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* SECTIONS */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 16px;
}

.section-badge.purple {
  background: rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.2);
  color: #a78bfa;
}

.section-badge.green {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.2);
  color: #34d399;
}

.section-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 17px;
  color: #64748b;
}

/* FEATURES */
.features {
  background: radial-gradient(circle at top left, rgba(14,165,233,0.08), transparent 40%), #0a0e1a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}

.feature-card.featured {
  border-color: rgba(139,92,246,0.3);
  background: rgba(139,92,246,0.05);
}

.feature-popular {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  padding: 4px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  background: rgba(14,165,233,0.1);
  color: var(--clr);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-card p {
  color: #94a3b8;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.feature-link {
  color: #38bdf8;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.feature-link:hover { gap: 12px; }

/* SERVICES */
.services-section {
  background: radial-gradient(circle at bottom right, rgba(99,102,241,0.08), transparent 40%), #0d1117;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #94a3b8;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border-color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.12);
}

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.service-card:hover .service-img img { transform: scale(1.08); }

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(14,165,233,0.9);
  padding: 4px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.service-badge.dev { background: rgba(139,92,246,0.9); }
.service-badge.write { background: rgba(16,185,129,0.9); }
.service-badge.video { background: rgba(244,63,94,0.9); }
.service-badge.market { background: rgba(245,158,11,0.9); }

.service-fav {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.service-fav:hover { background: #ef4444; }

.service-body { padding: 20px; }

.service-seller {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.service-seller img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.service-seller span {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
}

.seller-rating {
  margin-right: auto;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 700;
}

.service-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.service-price {
  font-size: 20px;
  font-weight: 900;
  color: #38bdf8;
}

.service-delivery {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* SMM */
.smm-section {
  background: radial-gradient(circle at top, rgba(139,92,246,0.1), transparent 40%), #0a0e1a;
}

.smm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.smm-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  transition: 0.4s;
}

.smm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}

.smm-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.smm-icon.instagram { background: linear-gradient(135deg, #f09433, #dc2743); color: white; }
.smm-icon.youtube { background: #ff0000; color: white; }
.smm-icon.tiktok { background: #010101; color: white; border: 1px solid rgba(255,255,255,0.2); }
.smm-icon.twitter { background: #1da1f2; color: white; }

.smm-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.smm-list {
  text-align: right;
  margin-bottom: 20px;
}

.smm-list li {
  padding: 8px 0;
  font-size: 14px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 10px;
}

.smm-list li i {
  color: #10b981;
  font-size: 12px;
}

.smm-price {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 20px;
}

.smm-price strong {
  font-size: 28px;
  color: #38bdf8;
}

.smm-btn {
  display: block;
  padding: 12px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}

.smm-btn:hover { transform: translateY(-2px); }

/* TASKS */
.tasks-section {
  background: radial-gradient(circle at bottom left, rgba(16,185,129,0.08), transparent 40%), #0d1117;
}

.how-it-works {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  width: 200px;
  position: relative;
  transition: 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16,185,129,0.3);
}

.step-number {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}

.step-icon {
  font-size: 28px;
  color: #34d399;
  margin-bottom: 12px;
}

.step-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: #64748b;
}

.step-arrow {
  color: #334155;
  font-size: 20px;
}

/* PRICING */
.pricing-section {
  background: radial-gradient(circle at center, rgba(14,165,233,0.08), transparent 50%), #0a0e1a;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: 0.4s;
}

.pricing-card:hover { transform: translateY(-6px); }

.pricing-card.popular {
  border-color: rgba(14,165,233,0.4);
  background: rgba(14,165,233,0.05);
  transform: scale(1.05);
}

.pricing-card.popular:hover { transform: scale(1.05) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  padding: 6px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #94a3b8;
}

.pricing-amount { margin-bottom: 30px; }

.currency {
  font-size: 20px;
  color: #64748b;
  vertical-align: top;
}

.price {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, #0ea5e9, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.period {
  font-size: 14px;
  color: #64748b;
}

.pricing-features {
  text-align: right;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
}

.pricing-features li i {
  font-size: 12px;
  color: #10b981;
}

.pricing-btn {
  display: block;
  padding: 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.1);
  color: white;
  transition: 0.3s;
}

.pricing-btn:hover, .pricing-btn.active {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(99,102,241,0.3);
}

/* ABOUT */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0d1117, #0a0e1a);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.about-content {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  transition: 0.3s;
}

.about-content:hover {
  border-color: rgba(56,189,248,0.3);
  transform: translateY(-4px);
}

.about-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #38bdf8;
}

.about-content p {
  color: #94a3b8;
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 15px;
}

/* FAQ */
.faq-section {
  padding: 100px 0;
  background: #0a0e1a;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item:hover { border-color: rgba(56,189,248,0.3); }

.faq-item.active {
  border-color: rgba(56,189,248,0.4);
  background: rgba(56,189,248,0.05);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: white;
  transition: 0.3s;
}

.faq-question:hover { color: #38bdf8; }

.faq-question i {
  color: #38bdf8;
  transition: 0.3s;
  font-size: 14px;
}

.faq-item.active .faq-question i { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p {
  padding: 0 24px 20px;
  color: #94a3b8;
  line-height: 1.9;
  font-size: 15px;
}

/* CONTACT */
.contact-section {
  background: radial-gradient(circle at top right, rgba(14,165,233,0.08), transparent 40%), #0a0e1a;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(14,165,233,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 14px;
  color: #64748b;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.contact-socials a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: 0.3s;
  font-size: 18px;
}

.contact-socials a:hover {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border-color: transparent;
}

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  color: #cbd5e1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: white;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  transition: 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.05);
}

.full-width { width: 100%; }

/* FOOTER */
.footer {
  background: #060810;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand span {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #0ea5e9, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-col p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: #64748b;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #38bdf8;
  padding-right: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 14px;
  color: #475569;
}

/* MODALS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  animation: modalIn 0.4s;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
}

.modal-box::-webkit-scrollbar {
  width: 6px;
}

.modal-box::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.03);
  border-radius: 3px;
}

.modal-box::-webkit-scrollbar-thumb {
  background: rgba(56,189,248,0.3);
  border-radius: 3px;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: #94a3b8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  z-index: 5;
}

.modal-close:hover {
  background: rgba(239,68,68,0.2);
  color: #ef4444;
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-header .logo-box {
  margin: 0 auto 14px;
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 800;
}

.modal-header p {
  color: #64748b;
  font-size: 14px;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #475569;
}

.input-icon input {
  padding-right: 44px !important;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 13px;
  cursor: pointer;
}

.modal-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #64748b;
}

.modal-switch a {
  color: #38bdf8;
  font-weight: 700;
}

/* GOOGLE SIGN IN */
.google-divider {
  position: relative;
  text-align: center;
  margin: 24px 0 20px;
}

.google-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.google-divider span {
  position: relative;
  background: #111827;
  padding: 0 16px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.google-signin-container { display: none; }

.google-btn-custom {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #4285f4, #34a0f0);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
  position: relative;
  overflow: hidden;
}

.google-btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.google-btn-custom:active { transform: translateY(0); }

.google-btn-custom .google-icon {
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  flex-shrink: 0;
}

.google-btn-custom .google-icon svg {
  width: 100%;
  height: 100%;
}

.google-btn-custom:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(99,102,241,0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover { transform: translateY(-4px); }
/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .smm-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .menu-toggle { 
    display: flex; 
    z-index: 1002;
  }

  /* تحويل الهيدر إلى قائمة جانبية في الهاتف */
  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: #0a0e1a;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 20px 30px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255,255,255,0.06);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-wrapper.active { 
    right: 0; 
  }

  .nav-menu {
    flex-direction: column;
    margin: 0;
    width: 100%;
    gap: 0;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 15px 10px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .auth-buttons {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding-top: 20px;
    margin-top: 10px;
  }

  .login-btn, .register-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .features-grid, .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .hero-stats { gap: 30px; }
  .how-it-works { flex-direction: column; }
  .step-arrow { transform: rotate(-90deg); }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-6px); }
}

@media (max-width: 600px) {
  .hero-title { font-size: 28px; }
  .section-title { font-size: 26px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-number { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .smm-grid { grid-template-columns: 1fr; }
}
/* ==================== PRICING ENHANCED ==================== */
.pricing-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}

.pricing-tagline {
  color: #64748b;
  font-size: 13px;
  margin-bottom: 16px;
}

.pricing-savings {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  color: #34d399;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 8px;
}

.pricing-features li.disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

.pricing-features li.disabled i {
  color: #ef4444;
}

.pricing-features li strong {
  color: white;
}

.pricing-btn {
  cursor: pointer;
  border: none;
  font-family: "Cairo";
  padding: 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.pricing-btn:not(.active):not(.business-btn) {
  background: rgba(255,255,255,0.05);
  color: white;
  border: 2px solid rgba(255,255,255,0.1);
}

.pricing-btn:not(.active):not(.business-btn):hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.pricing-btn.active {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  box-shadow: 0 8px 30px rgba(99,102,241,0.4);
}

.pricing-btn.business-btn {
  background: linear-gradient(135deg, #f59e0b, #dc2626);
  color: white;
  box-shadow: 0 8px 30px rgba(220,38,38,0.4);
}

.pricing-btn:hover {
  transform: translateY(-3px);
}

.pricing-card.business {
  border: 2px solid rgba(245,158,11,0.3);
  background: linear-gradient(135deg, rgba(245,158,11,0.05), rgba(220,38,38,0.05));
}

.business-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #dc2626);
  padding: 6px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.popular-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  padding: 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.guarantee-item i {
  font-size: 32px;
  color: #34d399;
  flex-shrink: 0;
}

.guarantee-item strong {
  display: block;
  color: white;
  font-size: 14px;
  margin-bottom: 4px;
}

.guarantee-item span {
  color: #64748b;
  font-size: 12px;
}

@media (max-width: 768px) {
  .pricing-guarantees {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}