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

:root {
  --bg: #f6f7f9;
  --card: #ffffff;
  --charcoal: #111318;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --coral: #e5484d;
  --coral-hover: #c93a3f;
  --coral-soft: #fff0f0;
  --border: #e8eaed;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.09), 0 4px 12px rgba(0, 0, 0, 0.05);
  --radius: 14px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  font-family: "Tajawal", "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Tajawal", "Sora", sans-serif;
  line-height: 1.3;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(246, 247, 249, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: "Tajawal", "Sora", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--charcoal);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-cta {
  background: var(--charcoal);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Tajawal", "DM Sans", sans-serif;
  transition:
    background 0.2s,
    transform 0.15s;
}

.nav-cta:hover {
  background: #2a2d35;
  transform: translateY(-1px);
}

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

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(229, 72, 77, 0.09) 0%,
    rgba(229, 72, 77, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--coral-soft);
  color: var(--coral);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
  border: 1px solid rgba(229, 72, 77, 0.15);
  animation: fadeUp 0.5s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--charcoal);
  max-width: 820px;
  margin-bottom: 24px;
  animation: fadeUp 0.5s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--coral);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 70px;
  animation: fadeUp 0.5s 0.3s ease both;
}

.btn-primary {
  background: var(--coral);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: "Tajawal", "DM Sans", sans-serif;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(229, 72, 77, 0.3);
}

.btn-primary:hover {
  background: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(229, 72, 77, 0.35);
}

.btn-secondary {
  background: white;
  color: var(--charcoal);
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: "Tajawal", "DM Sans", sans-serif;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.btn-secondary:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-video {
  position: relative;
  width: 100%;
  max-width: 820px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px var(--border);
  animation: fadeUp 0.6s 0.4s ease both;
  background: #0f1015;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.hero-video-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    transform 0.2s,
    background 0.2s;
}

.play-btn:hover {
  transform: scale(1.08);
  background: rgba(229, 72, 77, 0.8);
}

.play-btn svg {
  margin-right: 4px;
}

.video-caption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Tajawal", "DM Sans", sans-serif;
  letter-spacing: 0.3px;
}

.video-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--coral);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* STATS BAR */
.stats-bar {
  padding: 40px 60px;
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: "Tajawal", "Sora", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -1.5px;
  line-height: 1;
}

.stat-num span {
  color: var(--coral);
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
}

/* SECTION BASE */
section {
  padding: 100px 60px;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--coral-soft);
  color: var(--coral);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 60px;
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--coral-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.benefit-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* CURRICULUM */
.curriculum-bg {
  background: white;
}

.curriculum-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.cur-stat {
  font-size: 14px;
  color: var(--muted);
}

.cur-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--charcoal);
  margin-left: 4px;
}

.cur-stat-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}

.curriculum-timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cur-module {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.cur-module:hover {
  border-color: var(--coral);
}

.cur-module.open {
  border-color: var(--coral);
  box-shadow: 0 4px 20px rgba(255, 87, 87, 0.08);
}

.cur-module-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: inherit;
}

.cur-module-num {
  font-family: "Tajawal", "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  background: var(--coral-soft);
  border-radius: 8px;
  padding: 6px 11px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cur-module-info {
  flex: 1;
  min-width: 0;
}

.cur-module-info h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 4px;
  letter-spacing: -0.2px;
}

.cur-module-meta {
  font-size: 12.5px;
  color: var(--muted-light);
}

.cur-module-arrow {
  font-size: 18px;
  color: var(--muted-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.cur-module.open .cur-module-arrow {
  transform: rotate(180deg);
  color: var(--coral);
}

.cur-module-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 24px;
}

.cur-module.open .cur-module-body {
  max-height: 500px;
  padding: 0 24px 20px;
}

.cur-lessons {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.cur-lessons li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  padding: 7px 0;
  padding-right: 22px;
  position: relative;
}

.cur-lessons li::before {
  content: "▸";
  position: absolute;
  right: 0;
  top: 7px;
  color: var(--coral);
  font-size: 12px;
}

@media (max-width: 600px) {
  .cur-module-header {
    padding: 16px 18px;
    gap: 12px;
  }

  .cur-module-info h3 {
    font-size: 14px;
  }

  .curriculum-stats {
    gap: 14px;
  }

  .cur-stat strong {
    font-size: 18px;
  }

  .cur-stat {
    font-size: 12px;
  }
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-screenshot {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted-light);
  font-size: 13px;
}

.screenshot-placeholder svg {
  opacity: 0.4;
}

.stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Tajawal", "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
}

.author-role {
  font-size: 12px;
  color: var(--muted-light);
}

.result-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ecfdf5;
  color: #10b981;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* INSTRUCTOR */
.instructor-bg {
  background: white;
}

.instructor-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.instructor-photo-wrap {
  position: relative;
}

.instructor-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1d25 0%, #2d3142 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.instructor-photo-placeholder {
  font-size: 80px;
  opacity: 0.4;
}

.instructor-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}

.instructor-badge-num {
  font-family: "Tajawal", "Sora", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -1px;
}

.instructor-badge-num span {
  color: var(--coral);
}

.instructor-badge-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.instructor-content h2 {
  margin-bottom: 10px;
}

.instructor-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 20px;
}

.instructor-bio {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.instructor-creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.instructor-creds li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
}

.cred-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 750px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  background: var(--charcoal);
  color: white;
  border-color: var(--charcoal);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(229, 72, 77, 0.3);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: white;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 10px;
}

.plan-price {
  font-family: "Tajawal", "Sora", sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.plan-price sup {
  font-size: 22px;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
  letter-spacing: 0;
}

.plan-period {
  font-size: 13px;
  opacity: 0.55;
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.plan-features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li .check {
  color: var(--coral);
  font-size: 16px;
  flex-shrink: 0;
}

.pricing-card.featured .plan-features li .check {
  color: #ff8f92;
}

.pricing-card.featured .plan-features li {
  opacity: 0.85;
}

.btn-plan {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: "Tajawal", "DM Sans", sans-serif;
  transition: all 0.2s;
}

.btn-plan-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 4px 16px rgba(229, 72, 77, 0.4);
}

.btn-plan-primary:hover {
  background: var(--coral-hover);
  transform: translateY(-1px);
}

.btn-plan-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}

.btn-plan-outline:hover {
  background: var(--bg);
}

/* FAQ */
.faq-bg {
  background: white;
}

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

.faq-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--coral);
}

.faq-q {
  width: 100%;
  text-align: right;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Tajawal", "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.25s;
  font-size: 14px;
  color: var(--charcoal);
}

.faq-item.open .faq-icon {
  background: var(--coral);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  padding: 0 24px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  padding-bottom: 20px;
}

/* FINAL CTA */
.final-cta {
  padding: 120px 60px;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(229, 72, 77, 0.2) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: white;
  letter-spacing: -2px;
  max-width: 700px;
  margin: 0 auto 20px;
  position: relative;
}

.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 440px;
  margin: 0 auto 48px;
  line-height: 1.7;
  position: relative;
}

.final-cta .btn-primary {
  font-size: 17px;
  padding: 18px 40px;
  position: relative;
}

.final-cta-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
}

/* FOOTER */
footer {
  padding: 36px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: "Tajawal", "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
}

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

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted-light);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--charcoal);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 70px 24px;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .benefits-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .instructor-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-bar {
    padding: 30px 24px;
  }

  .final-cta {
    padding: 80px 24px;
  }

  footer {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .instructor-badge {
    right: auto;
    left: -16px;
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* BACKGROUND ANIMATION */
.bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.04;
}

.bg-glow-orb:nth-child(1) {
  width: 600px;
  height: 600px;
  background: var(--coral);
  top: -10%;
  right: -5%;
  animation: floatOrb1 20s ease-in-out infinite;
}

.bg-glow-orb:nth-child(2) {
  width: 500px;
  height: 500px;
  background: #667eea;
  bottom: 10%;
  left: -8%;
  animation: floatOrb2 25s ease-in-out infinite;
}

.bg-glow-orb:nth-child(3) {
  width: 400px;
  height: 400px;
  background: #f093fb;
  top: 40%;
  right: 20%;
  animation: floatOrb3 22s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(-40px, 60px);
  }

  66% {
    transform: translate(30px, -40px);
  }
}

@keyframes floatOrb2 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(50px, -30px);
  }

  66% {
    transform: translate(-30px, 50px);
  }
}

@keyframes floatOrb3 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(-35px, -45px);
  }

  66% {
    transform: translate(45px, 35px);
  }
}

/* GUARANTEE SECTION */
.guarantee-section {
  padding: 80px 60px;
  background: var(--bg);
}

.guarantee-headline {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.guarantee-headline-text {
  font-family: "Tajawal", "Sora", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.8px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.guarantee-headline-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.guarantee-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--charcoal) 0%,
    #1e2028 60%,
    #252830 100%
  );
  border-radius: 24px;
  padding: 60px 52px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(229, 72, 77, 0.25);
  box-shadow:
    0 0 60px rgba(229, 72, 77, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.guarantee-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 350px;
  background: radial-gradient(
    ellipse,
    rgba(229, 72, 77, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.guarantee-shield {
  font-size: 52px;
  margin-bottom: 20px;
  position: relative;
  animation: shieldPulse 3s ease-in-out infinite;
  opacity: 0;
  transform: scale(0.5);
}

.guarantee-inner.visible .guarantee-shield {
  animation:
    shieldEntrance 0.6s 0.2s ease forwards,
    shieldPulse 3s 0.8s ease-in-out infinite;
}

@keyframes shieldEntrance {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shieldPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

.guarantee-content {
  position: relative;
}

.guarantee-badge {
  display: inline-block;
  background: rgba(229, 72, 77, 0.15);
  color: var(--coral);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  border: 1px solid rgba(229, 72, 77, 0.25);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s 0.3s ease,
    transform 0.5s 0.3s ease;
}

.guarantee-inner.visible .guarantee-badge {
  opacity: 1;
  transform: translateY(0);
}

.guarantee-title {
  font-family: "Tajawal", "Sora", sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  line-height: 1.25;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s 0.45s ease,
    transform 0.5s 0.45s ease;
}

.guarantee-inner.visible .guarantee-title {
  opacity: 1;
  transform: translateY(0);
}

.guarantee-title em {
  font-style: normal;
  color: var(--coral);
}

.guarantee-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 30px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s 0.6s ease,
    transform 0.5s 0.6s ease;
}

.guarantee-inner.visible .guarantee-text {
  opacity: 1;
  transform: translateY(0);
}

.guarantee-text strong {
  color: white;
  font-weight: 700;
}

.guarantee-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 36px;
}

.guarantee-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.guarantee-detail:nth-child(1) {
  transition-delay: 0.7s;
}

.guarantee-detail:nth-child(2) {
  transition-delay: 0.85s;
}

.guarantee-detail:nth-child(3) {
  transition-delay: 1s;
}

.guarantee-inner.visible .guarantee-detail {
  opacity: 1;
  transform: translateX(0);
}

.guarantee-check {
  color: #34d399;
  font-size: 16px;
  font-weight: 700;
}

.guarantee-cta {
  font-size: 17px;
  padding: 18px 40px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s 1.1s ease,
    transform 0.5s 1.1s ease,
    background 0.2s,
    box-shadow 0.2s;
}

.guarantee-inner.visible .guarantee-cta {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .guarantee-section {
    padding: 60px 24px;
  }

  .guarantee-inner {
    padding: 40px 24px;
  }
}

/* ── Lightbox Overlay ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 24px;
  animation: lightboxFadeIn 0.25s ease;
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  animation: lightboxZoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10000;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lightboxZoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ── Screenshot Zoom Hint ── */
.testimonial-screenshot {
  position: relative;
  cursor: zoom-in;
}

.screenshot-zoom-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.55);
  color: white;
  line-height: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity 0.25s,
    transform 0.25s;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.testimonial-screenshot:hover .screenshot-zoom-hint {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
/* PAYMENT MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 19, 24, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--card);
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}

.modal-close:hover {
  background: rgba(229, 72, 77, 0.1);
  color: var(--coral);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 14.5px;
  color: var(--muted);
}

.form-group {
  margin-bottom: 20px;
  text-align: right;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--bg);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.1);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  text-decoration: none;
  color: #fff;
  font-size: 30px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
@media (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}
