/* ============================
   ROOT & RESET
   ============================ */
:root {
  --green: #1a7d3c;
  --green-light: #27ae60;
  --green-dark: #145c2c;
  --gold: #f0c040;
  --gold-dark: #d4a017;
  --dark: #0d0d0d;
  --dark2: #1a1a2e;
  --dark3: #16213e;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-light: #f8f9fa;
  --border: rgba(255,255,255,0.1);
  --shadow: 0 8px 32px rgba(0,0,0,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --font: 'Cairo', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   SECTION LABELS / TITLES
   ============================ */
.section-label {
  display: inline-block;
  background: rgba(26,125,60,0.2);
  border: 1px solid var(--green-light);
  color: var(--green-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 600px;
}

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(39,174,96,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(39,174,96,0.5); }
.btn-primary.large { font-size: 1.15rem; padding: 18px 40px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
  font-family: var(--font);
  font-size: 1rem;
}
.btn-ghost:hover { border-color: var(--white); }

.btn-buy {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(39,174,96,0.4); }

.btn-buy-main {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  color: var(--white);
  padding: 18px 32px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.15rem;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(39,174,96,0.4);
  margin-top: 24px;
}
.btn-buy-main:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(39,174,96,0.55); }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all 0.3s;
}
.navbar.scrolled { background: rgba(13,13,13,0.97); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-light);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-light); }

.nav-cta {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-light); transform: translateY(-1px); }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=1600&q=80') center/cover no-repeat;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,10,0.92) 0%, rgba(22,33,62,0.85) 60%, rgba(13,13,13,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px 100px;
  max-width: 750px;
}

.hero-badge {
  display: inline-block;
  background: rgba(26,125,60,0.3);
  border: 1px solid var(--green-light);
  color: var(--green-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--green-light);
  position: relative;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num { display: block; font-size: 1.6rem; font-weight: 900; color: var(--gold); }
.stat-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   TRUST BAR
   ============================ */
.trust-bar {
  background: linear-gradient(135deg, var(--green-dark), #0e4a22);
  padding: 18px 0;
  border-bottom: 1px solid rgba(39,174,96,0.2);
}

.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.trust-item i { color: var(--gold); font-size: 1rem; }

/* ============================
   BUNDLE SECTION
   ============================ */
.bundle-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--dark) 0%, #0a1f0e 50%, var(--dark) 100%);
  text-align: center;
}

.bundle-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, rgba(26,125,60,0.12), rgba(22,33,62,0.3));
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: 24px;
  padding: 48px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  text-align: right;
}

.bundle-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(39,174,96,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bundle-badge-discount {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(231,76,60,0.4);
}

.bundle-left img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.bundle-right h3 {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.bundle-tagline {
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 24px;
}

.bundle-includes {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bundle-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.bundle-includes li i.fa-check-circle { color: var(--green-light); }
.bundle-includes li i.fa-gift { color: var(--gold); }

.free-item { font-weight: 700; }
.free-tag {
  background: var(--gold);
  color: var(--dark);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 900;
}

.bundle-pricing { margin-bottom: 8px; }

.price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.old-price {
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.new-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.currency-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.secure-note {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-top: 10px;
}
.secure-note i { margin-left: 4px; }

/* ============================
   PRODUCTS
   ============================ */
.products-section {
  padding: 80px 0;
  background: var(--dark);
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
  text-align: right;
}

.product-card {
  background: linear-gradient(160deg, #161616, #1a1a2e);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(39,174,96,0.3);
}

.product-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }

.quick-buy {
  background: var(--white);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.quick-buy:hover { background: var(--green-light); color: var(--white); }

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

.product-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  flex: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
}
.stars { font-size: 0.9rem; }
.rating-count { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
  margin-top: 4px;
}

.price-info { display: flex; flex-direction: column; gap: 2px; }
.product-price { font-size: 1.1rem; font-weight: 900; color: var(--gold); }
.product-usd { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ============================
   HOW IT WORKS
   ============================ */
.how-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a1a0e, var(--dark));
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: rgba(39,174,96,0.35);
  background: rgba(26,125,60,0.07);
}

.step-num {
  position: absolute;
  top: -18px;
  right: 28px;
  background: var(--green);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}

.step-icon {
  font-size: 2.2rem;
  color: var(--green-light);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ============================
   REVIEWS
   ============================ */
.reviews-section {
  padding: 80px 0;
  background: var(--dark);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: right;
}

.review-card {
  background: linear-gradient(160deg, #161616, #1a1a2e);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(39,174,96,0.25);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.reviewer-info strong { font-size: 0.95rem; font-weight: 700; }
.reviewer-info span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.review-stars { font-size: 0.9rem; margin-right: auto; }

.review-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  flex: 1;
}

.review-product {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-light);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 10px;
}

/* ============================
   FAQ
   ============================ */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--dark), #0a1f0e);
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item[open] {
  border-color: rgba(39,174,96,0.4);
  background: rgba(26,125,60,0.07);
}

.faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '＋';
  font-size: 1.2rem;
  color: var(--green-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '－';
}
.faq-item summary:hover { color: var(--green-light); }

.faq-answer {
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* ============================
   FINAL CTA
   ============================ */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f3d1e, #1a7d3c, #0f3d1e);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.cta-inner { position: relative; z-index: 1; }

.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 0;
}

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

.footer-brand .logo {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--green-light);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .nav-links { display: none; }

  .bundle-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }
  .bundle-card::before { display: none; }
  .price-block { justify-content: center; }
  .bundle-includes li { justify-content: center; }

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

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

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }

  .trust-inner { gap: 16px; }
  .trust-item { font-size: 0.8rem; }

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

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

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
}
