:root {
  --bg-deep: #0a1a14;
  --bg-card: #0f241b;
  --bg-card-hover: #142e23;
  --bg-accent: #1a3d2c;
  --green-primary: #2d8a5e;
  --green-light: #3aaf76;
  --green-glow: rgba(58, 175, 118, 0.15);
  --gold: #d4a853;
  --gold-soft: rgba(212, 168, 83, 0.12);
  --text-primary: #e8ede9;
  --text-secondary: #8fa89a;
  --text-dim: #5a7a6a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(45, 138, 94, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(212, 168, 83, 0.06) 0%, transparent 70%),
    repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg 88deg, rgba(58, 175, 118, 0.02) 88deg 92deg) 0 0 / 120px 120px;
  pointer-events: none;
}

.hero-content { position: relative; max-width: 800px; }

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(58, 175, 118, 0.25);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.hero h1 .accent {
  color: var(--gold);
}

.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.hero-verse {
  position: relative;
  margin-top: 64px;
  padding: 36px 40px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 16px;
  max-width: 500px;
}

.arabic-text {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.6;
  direction: rtl;
}

.verse-translation {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--text-secondary);
}

.verse-ref {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ============ PROBLEM ============ */
.problem {
  padding: 120px 24px;
  background: var(--bg-card);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 56px;
  color: var(--text-primary);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  padding: 36px 32px;
  background: var(--bg-deep);
  border: 1px solid rgba(58, 175, 118, 0.1);
  border-radius: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(58, 175, 118, 0.3);
  transform: translateY(-4px);
}

.problem-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.problem-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============ FEATURES ============ */
.features {
  padding: 120px 24px;
}

.features-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.features-inner > h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 72px;
  color: var(--text-primary);
}

.features-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.feature-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid rgba(58, 175, 118, 0.08);
  border-radius: 20px;
  transition: border-color 0.3s ease;
}

.feature-row:hover {
  border-color: rgba(58, 175, 118, 0.25);
}

.feature-icon-wrap {
  flex-shrink: 0;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: var(--green-glow);
  border-radius: 16px;
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============ JOURNEY ============ */
.journey {
  padding: 120px 24px;
  background: var(--bg-card);
}

.journey-inner {
  max-width: 700px;
  margin: 0 auto;
}

.journey h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 56px;
  text-align: center;
  color: var(--text-primary);
}

.journey-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
  padding: 8px 0;
}

.step-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bg-accent);
  border: 2px solid var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-marker span {
  font-weight: 700;
  font-size: 18px;
  color: var(--green-light);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-primary), transparent);
  margin-left: 23px;
}

/* ============ CLOSING ============ */
.closing {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.closing-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.arabic-accent {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 24px;
  direction: rtl;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.closing-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ============ FOOTER ============ */
.footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(58, 175, 118, 0.1);
  text-align: center;
}

.footer-inner { max-width: 600px; margin: 0 auto; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-row {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }

  .feature-row.reverse {
    flex-direction: column;
  }

  .hero {
    padding: 80px 20px 48px;
    min-height: auto;
  }

  .hero-verse {
    margin-top: 48px;
    padding: 28px 24px;
  }

  .arabic-text {
    font-size: 28px;
  }

  .problem,
  .features,
  .journey,
  .closing {
    padding: 80px 20px;
  }

  .step {
    gap: 20px;
  }
}