/* ====== إعدادات عامة ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  background: #0a0a0f;
  color: #e0e1e6;
  line-height: 1.8;
  direction: rtl;
  text-align: right;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.gold {
  color: #ffb320;
}

/* ====== زر الموسيقى ====== */
.music-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb320, #ff8c00);
  color: #131313;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 179, 32, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 179, 32, 0.5);
}

.music-toggle.muted {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.music-toggle.muted:hover {
  background: rgba(255, 255, 255, 0.15);
}

@keyframes musicPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 179, 32, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(255, 179, 32, 0.6); }
}

.music-toggle:not(.muted) {
  animation: musicPulse 2s ease-in-out infinite;
}

/* ====== أزرار ====== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, #ffb320, #ff8c00);
  color: #131313;
  box-shadow: 0 4px 20px rgba(255, 179, 32, 0.25);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 179, 32, 0.45);
}

.btn-outline {
  background: transparent;
  color: #ffb320;
  border: 2px solid rgba(255, 179, 32, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 179, 32, 0.1);
  border-color: #ffb320;
  transform: translateY(-3px);
}

/* ====== شريط التنقل ====== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 179, 32, 0.1);
  z-index: 1000;
  transition: background 0.3s;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-link:hover {
  color: #ffb320;
  background: rgba(255, 179, 32, 0.08);
}

.nav-help {
  background: linear-gradient(135deg, #ffb320, #ff8c00);
  color: #131313 !important;
  font-weight: 700;
}

.nav-help:hover {
  background: linear-gradient(135deg, #ffc44d, #ff9f20) !important;
  color: #131313 !important;
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffb320;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ====== جسيمات وفيجوالايزر ====== */
#particlesCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#visualizerCanvas {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

/* ====== القسم الرئيسي ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #07070d 0%, #0e0e18 50%, #07070d 100%);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 179, 32, 0.06) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 40px rgba(255, 179, 32, 0.25);
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255, 179, 32, 0.25); }
  50% { box-shadow: 0 0 70px rgba(255, 179, 32, 0.45); }
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.4;
}

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #ffb320;
  margin-bottom: 14px;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 650px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ====== عناوين الأقسام ====== */
.section {
  padding: 90px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 6px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #ffb320;
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1rem;
  margin-bottom: 50px;
}

/* ====== قسم عن الأداة ====== */
.about {
  background: #0a0a0f;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
}

.about-text strong {
  color: #ffb320;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 179, 32, 0.1);
  border-radius: 16px;
  padding: 22px 25px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffb320, #ff8c00);
}

.stat-card:hover {
  transform: translateX(-5px);
  border-color: rgba(255, 179, 32, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  font-size: 1.6rem;
  color: #ffb320;
  margin-bottom: 8px;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffb320;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* ====== قسم المميزات ====== */
.features {
  background: #0e0e18;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 179, 32, 0.08);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffb320, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 179, 32, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-size: 2rem;
  color: #ffb320;
  margin-bottom: 16px;
}

.feature-card h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ====== قسم كيفية الاستخدام ====== */
.guide {
  background: #0a0a0f;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.guide-step {
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 179, 32, 0.06);
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.3s;
}

.guide-step:hover {
  border-color: rgba(255, 179, 32, 0.2);
  transform: translateX(-6px);
  background: rgba(255, 179, 32, 0.03);
}

.step-number {
  min-width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ffb320, #ff8c00);
  color: #131313;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 179, 32, 0.25);
}

.step-content h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.step-content p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
}

/* ====== Accordion ====== */
.accordion-title {
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid rgba(255, 179, 32, 0.08);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.accordion-item:hover {
  border-color: rgba(255, 179, 32, 0.2);
}

.accordion-header {
  width: 100%;
  background: rgba(255, 179, 32, 0.02);
  color: #e0e1e6;
  padding: 18px 22px;
  text-align: right;
  border: none;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: rgba(255, 179, 32, 0.06);
}

.accordion-header i {
  transition: transform 0.3s;
  color: #ffb320;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.accordion-item.active .accordion-body {
  max-height: 220px;
  padding: 0 22px 18px;
}

.accordion-body p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ====== بطاقة الترخيص الدائمي ====== */
.pricing {
  background: #0e0e18;
}

.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(20, 20, 30, 0.9), rgba(10, 10, 18, 0.95));
  border: 1px solid rgba(255, 179, 32, 0.15);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ffb320, transparent, #ff8c00, transparent);
  border-radius: 29px;
  z-index: -1;
  opacity: 0.3;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255, 179, 32, 0.1);
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffb320, #ff8c00);
  color: #131313;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 22px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.pricing-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.pricing-sub {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
}

.pricing-price {
  margin: 28px 0;
}

.pricing-price .price {
  font-size: 4rem;
  font-weight: 900;
  color: #ffb320;
  line-height: 1;
}

.pricing-price .currency {
  font-size: 1.2rem;
  color: rgba(255, 179, 32, 0.6);
  margin-right: 6px;
}

.pricing-features {
  list-style: none;
  text-align: right;
  margin: 0 0 30px;
}

.pricing-features li {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(255, 179, 32, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #ffb320;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

/* ====== نافذة عرض ترويجي ====== */
.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.4s ease;
}

.promo-overlay.active {
  display: flex;
}

.promo-box {
  background: linear-gradient(160deg, rgba(40, 35, 25, 0.98), rgba(20, 18, 15, 0.98));
  border: 1px solid rgba(255, 230, 0, 0.25);
  border-radius: 28px;
  padding: 44px 38px;
  max-width: 480px;
  width: 92%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(255, 230, 0, 0.06);
  animation: modalIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.promo-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 230, 0, 0.04), transparent, rgba(255, 230, 0, 0.04), transparent);
  animation: promoSpin 6s linear infinite;
  z-index: 0;
}

@keyframes promoSpin {
  to { transform: rotate(360deg); }
}

.promo-close {
  position: absolute;
  top: 16px;
  left: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 2;
}

.promo-close:hover {
  color: #ffe600;
}

.promo-icon {
  font-size: 3.5rem;
  color: #ffe600;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  animation: promoFire 1s ease-in-out infinite alternate;
}

@keyframes promoFire {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.1) translateY(-4px); }
}

.promo-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffe600;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.promo-desc {
  font-size: 1rem;
  color: rgba(200, 200, 200, 0.75);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.promo-timer {
  font-size: 0.85rem;
  color: rgba(255, 230, 0, 0.5);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  direction: ltr;
  display: inline-block;
  background: rgba(255, 230, 0, 0.05);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 230, 0, 0.1);
}

.promo-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  animation: promoBtnPulse 2s ease-in-out infinite;
}

@keyframes promoBtnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 230, 0, 0.25); }
  50% { box-shadow: 0 4px 40px rgba(255, 230, 0, 0.5); }
}

/* ====== نافذة الدفع ====== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: linear-gradient(160deg, rgba(20, 20, 30, 0.98), rgba(10, 10, 18, 0.98));
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 179, 32, 0.15);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 440px;
  width: 92%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 179, 32, 0.04);
  position: relative;
  animation: modalIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-close {
  position: absolute;
  top: 14px;
  left: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #ffb320;
}

.modal-icon {
  font-size: 2.8rem;
  color: #ffb320;
  margin-bottom: 12px;
}

.modal-title {
  margin: 0 0 6px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.modal-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.channel-btn.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.channel-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

.channel-btn.facebook {
  background: rgba(24, 119, 242, 0.12);
  color: #1877f2;
  border: 1px solid rgba(24, 119, 242, 0.2);
}

.channel-btn.facebook:hover {
  background: rgba(24, 119, 242, 0.2);
  transform: translateY(-2px);
}

.channel-btn.telegram {
  background: rgba(0, 136, 204, 0.12);
  color: #0088cc;
  border: 1px solid rgba(0, 136, 204, 0.2);
}

.channel-btn.telegram:hover {
  background: rgba(0, 136, 204, 0.2);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.85) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ====== قسم الدعم والتواصل ====== */
.contact {
  background: #0a0a0f;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 179, 32, 0.12);
  border-radius: 14px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffb320;
  box-shadow: 0 0 20px rgba(255, 179, 32, 0.06);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.98rem;
}

.info-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 179, 32, 0.08);
  border-radius: 50%;
  color: #ffb320;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-link:hover {
  color: #ffb320;
}

.contact-note {
  margin-top: 12px;
  color: rgba(255, 179, 32, 0.4);
  font-size: 0.85rem;
  border-right: 2px solid rgba(255, 179, 32, 0.15);
  padding-right: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 179, 32, 0.06);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.social-link:hover {
  background: #ffb320;
  color: #131313;
  transform: translateY(-3px);
}

/* ====== التذييل ====== */
.footer {
  background: #07070d;
  border-top: 1px solid rgba(255, 179, 32, 0.06);
  padding: 32px 0;
}

.footer-content {
  text-align: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

/* ====== تصميم متجاوب ====== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(7, 7, 13, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    gap: 6px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255, 179, 32, 0.08);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-help {
    background: rgba(255, 179, 32, 0.15);
    color: #ffb320 !important;
  }

  .nav-help:hover {
    background: rgba(255, 179, 32, 0.25) !important;
    color: #ffb320 !important;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-logo-img {
    width: 80px;
    height: 80px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .guide-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .pricing-card {
    padding: 32px 22px;
  }

  .pricing-price .price {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-desc {
    font-size: 0.92rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 26px;
    font-size: 0.88rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
