/* ============================================
   MASTER STEP FORMATION — FACEBOOK & INSTAGRAM ADS
   Bright vibrant palette inspired by the reference:
     Blue    #2563EB / #1D4ED8 / #DBEAFE
     Yellow  #FBBF24 / #FACC15 / #FEF3C7
     Pink    #EC4899 / #DB2777 / #FCE7F3
     Green   #22C55E / #16A34A (WhatsApp)
     Navy    #0F172A (text)
   ============================================ */

:root {
  /* primary */
  --blue: #2563EB;
  --blue-deep: #1D4ED8;
  --blue-darker: #1E40AF;
  --blue-soft: #DBEAFE;
  --blue-softer: #EFF6FF;

  /* yellow */
  --yellow: #FBBF24;
  --yellow-bright: #FACC15;
  --yellow-deep: #F59E0B;
  --yellow-soft: #FEF3C7;

  /* pink */
  --pink: #EC4899;
  --pink-deep: #DB2777;
  --pink-soft: #FCE7F3;

  /* green (whatsapp) */
  --green: #25D366;
  --green-deep: #128C7E;
  --green-soft: #D1FAE5;

  /* neutrals */
  --navy: #0F172A;
  --navy-2: #1E293B;
  --slate: #475569;
  --gray: #64748B;
  --gray-light: #94A3B8;

  --bg: #ffffff;
  --bg-soft: #F8FAFC;
  --bg-cream: #FFFBEB;

  --border: #E2E8F0;
  --border-light: #F1F5F9;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 14px 36px rgba(37, 99, 235, 0.35);
  --shadow-yellow: 0 14px 36px rgba(251, 191, 36, 0.45);
  --shadow-pink: 0 14px 36px rgba(236, 72, 153, 0.35);
  --shadow-green: 0 14px 36px rgba(37, 211, 102, 0.45);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1240px;
  --container-narrow: 880px;

  --display: 'Cairo', 'Tajawal', sans-serif;
  --sans: 'Tajawal', 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* ============== UTILITIES ============== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.text-blue { color: var(--blue); }
.text-pink { color: var(--pink); }
.text-yellow { color: var(--yellow-deep); }
.text-green { color: var(--green-deep); }

/* yellow brush highlight behind text */
.highlight {
  position: relative;
  display: inline-block;
  padding: 0 8px;
  z-index: 0;
}
.highlight::before {
  content: '';
  position: absolute;
  inset: 8% -4px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 8px;
  transform: rotate(-1deg);
}
.highlight--yellow::before { background: var(--yellow); }
.highlight--pink::before { background: var(--pink-soft); }
.highlight--blue::before { background: var(--blue-soft); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
  padding: 8px 18px;
  background: var(--blue-soft);
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow--light {
  color: var(--navy);
  background: var(--yellow);
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: var(--display);
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  transform: translateY(-3px);
  background: var(--blue-deep);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: #fff;
}
.btn--whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn--whatsapp:hover {
  background: #1FB855;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55);
}
.btn--yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow-yellow);
}
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--block { width: 100%; }
.btn svg { transition: transform 0.3s var(--ease); }
[dir="rtl"] .btn:hover svg { transform: translateX(4px); }

/* ============== ANNOUNCEMENT BAR ============== */
.announcement {
  background: var(--navy);
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
}
.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announcement__dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.3);
  animation: pulse 2s infinite;
}
.announcement__sep { color: var(--yellow); }
.announcement__loc { color: var(--yellow); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
}

/* ============== HEADER ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.header__logo img { height: 52px; width: auto; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  transition: color 0.2s var(--ease);
}
.header__nav a:hover { color: var(--blue); }
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.header__nav a:hover::after { width: 100%; }
.header__cta { padding: 10px 22px; font-size: 14px; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__burger span {
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.header__burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}
.mobile-menu a {
  padding: 14px 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease);
}
.mobile-menu a:not(.btn):hover { background: var(--blue-softer); color: var(--blue); }
.mobile-menu.active { display: flex; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 70px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--blue-softer) 0%, #fff 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.hero__shape--yellow {
  width: 380px;
  height: 380px;
  top: -60px;
  right: 8%;
  background: var(--yellow);
}
.hero__shape--blue {
  width: 460px;
  height: 460px;
  bottom: -120px;
  left: -120px;
  background: var(--blue);
  opacity: 0.25;
}
.hero__shape--pink {
  width: 280px;
  height: 280px;
  top: 40%;
  right: -80px;
  background: var(--pink);
  opacity: 0.2;
}
.hero__dots {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--blue) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.4;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero__badge-dot {
  width: 9px;
  height: 9px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.25);
  animation: pulse 2s infinite;
}
.hero__title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--navy);
}
.hero__subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__trust-item strong {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.hero__trust-item span {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}
.hero__trust-divider {
  width: 2px;
  height: 32px;
  background: var(--border);
}

/* Hero card */
.hero__card {
  position: relative;
}
.hero__card-glow {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.25), transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.2), transparent 60%);
  filter: blur(30px);
  z-index: 0;
}
.hero__card-inner {
  position: relative;
  background: #fff;
  color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18), 0 0 0 1px var(--border-light);
  overflow: hidden;
}
.hero__card-inner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--yellow-soft), transparent 70%);
  pointer-events: none;
}
.hero__card-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 24px;
  font-family: var(--sans);
  direction: ltr;
}
.hero__card-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2s infinite;
}
.hero__card-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.hero__card-stat {
  padding: 18px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  direction: ltr;
  text-align: left;
  border: 1px solid var(--border-light);
}
.hero__card-stat:first-child { background: var(--blue-softer); border-color: var(--blue-soft); }
.hero__card-stat:last-child { background: var(--yellow-soft); border-color: rgba(251, 191, 36, 0.3); }
.hero__card-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 700;
}
.hero__card-stat-value {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero__card-stat-change {
  font-size: 12px;
  font-weight: 700;
}
.hero__card-stat-change.up { color: var(--green-deep); }
.hero__card-chart {
  position: relative;
  height: 80px;
  margin-bottom: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 8px;
}
.hero__card-chart svg { width: 100%; height: 100%; }
.hero__card-objectives {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.hero__obj {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 6px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease);
}
.hero__obj:hover { transform: translateY(-3px); }
.hero__obj-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  border-radius: 50%;
}
.hero__obj-icon--blue { background: var(--blue-soft); }
.hero__obj-icon--green { background: var(--green-soft); }
.hero__obj-icon--yellow { background: var(--yellow-soft); }
.hero__obj-icon--pink { background: var(--pink-soft); }
.hero__obj-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--sans);
}

/* floating platform icons next to card */
.hero__platforms {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__platform {
  position: absolute;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 26px;
  font-family: var(--sans);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
  animation: float 4s ease-in-out infinite;
}
.hero__platform--fb { background: #1877F2; top: -20px; right: -20px; animation-delay: 0s; }
.hero__platform--ig {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  bottom: 60px; left: -25px;
  animation-delay: 0.8s;
}
.hero__platform--wa { background: var(--green); top: 50%; right: -28px; animation-delay: 1.6s; }
.hero__platform--msg { background: #00B2FF; bottom: -10px; right: 30%; animation-delay: 2.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--blue);
  color: #fff;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { right: 0; background: linear-gradient(270deg, var(--blue), transparent); }
.marquee::after { left: 0; background: linear-gradient(90deg, var(--blue), transparent); }
.marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee__item {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  direction: ltr;
  color: #fff;
}
.marquee__item .dot { color: var(--yellow); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ============== SECTIONS ============== */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section--soft { background: var(--bg-soft); }
.section--blue-soft { background: var(--blue-softer); }
.section--blue {
  background: var(--blue);
  color: #fff;
}
.section__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.section__deco-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}
.section__deco-circle--yellow {
  width: 400px; height: 400px;
  top: -100px; right: -100px;
  background: var(--yellow);
}
.section__deco-circle--pink {
  width: 350px; height: 350px;
  bottom: -100px; left: -100px;
  background: var(--pink);
}
.section__head { max-width: 760px; margin-bottom: 64px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}
.section__title--light { color: #fff; }
.section__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
  color: var(--slate);
  max-width: 680px;
}
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }
.section__sub--light { color: rgba(255, 255, 255, 0.9); }
.section--blue .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ============== FEATURES (about) ============== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  padding: 36px 28px;
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  position: relative;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 20px;
  color: #fff;
  transition: transform 0.3s var(--ease);
}
.feature:hover .feature__icon { transform: rotate(-8deg) scale(1.05); }
.feature__icon svg { width: 28px; height: 28px; }
.feature--blue .feature__icon { background: var(--blue); box-shadow: var(--shadow-blue); }
.feature--blue:hover { border-color: var(--blue); }
.feature--yellow .feature__icon { background: var(--yellow); color: var(--navy); box-shadow: var(--shadow-yellow); }
.feature--yellow:hover { border-color: var(--yellow); }
.feature--pink .feature__icon { background: var(--pink); box-shadow: var(--shadow-pink); }
.feature--pink:hover { border-color: var(--pink); }
.feature--green .feature__icon { background: var(--green); box-shadow: var(--shadow-green); }
.feature--green:hover { border-color: var(--green); }

.feature h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--navy);
}
.feature p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* ============== PATHS (earning) ============== */
.paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.path {
  position: relative;
  padding: 36px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  color: var(--navy);
}
.path:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.path--featured {
  background: var(--yellow);
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.4);
}
.path--featured:hover {
  transform: translateY(-16px);
}
.path__ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 6px 16px;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 999px;
  box-shadow: var(--shadow-pink);
}
.path__num {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  direction: ltr;
}
.path--featured .path__num { color: var(--navy); }
.path__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.path__icon {
  font-size: 32px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  flex-shrink: 0;
}
.path__icon--blue { background: var(--blue-soft); }
.path__icon--yellow { background: #fff; }
.path__icon--pink { background: var(--pink-soft); }
.path__head h3 {
  font-size: 22px;
  color: var(--navy);
  flex: 1;
}
.path__desc {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.path--featured .path__desc { color: var(--navy-2); }
.path__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.path__list li {
  position: relative;
  padding-right: 28px;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.6;
}
.path__list li::before {
  content: '✓';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.path--featured .path__list li::before { background: var(--navy); }

.stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
}
.stat { text-align: center; }
.stat__value {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
  direction: ltr;
}
.stat__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ============== MODULES (curriculum) ============== */
.modules {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.module {
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.module:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.module[data-open="true"] {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.module__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  text-align: right;
}
.module__head-left {
  display: flex;
  align-items: center;
  gap: 22px;
}
.module__num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  direction: ltr;
  min-width: 56px;
}
.module__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 4px;
}
.module__title {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
}
.module__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.module__duration {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.module__duration--blue { background: var(--blue-soft); color: var(--blue-deep); }
.module__duration--yellow { background: var(--yellow-soft); color: var(--yellow-deep); }
.module__duration--pink { background: var(--pink-soft); color: var(--pink-deep); }
.module__duration--green { background: var(--green-soft); color: var(--green-deep); }
.module__chevron {
  color: var(--gray);
  transition: transform 0.3s var(--ease);
}
.module[data-open="true"] .module__chevron { transform: rotate(180deg); color: var(--blue); }
.module__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.module[data-open="true"] .module__body { max-height: 800px; }
.module__intro {
  padding: 0 28px 16px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  border-bottom: 2px dashed var(--border-light);
}
.module__lessons {
  display: flex;
  flex-direction: column;
  padding: 8px 0 24px;
}
.module__lessons li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 28px;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.5;
  transition: background 0.2s var(--ease);
}
.module__lessons li:hover { background: var(--blue-softer); }
.module__lessons li span {
  flex-shrink: 0;
  font-family: var(--display);
  font-weight: 800;
  color: var(--blue);
  min-width: 36px;
  direction: ltr;
}

/* ============== CAREER ============== */
.career__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.career__items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}
.career__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.career__item-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
}
.career__item-icon svg { width: 16px; height: 16px; }
.career__item h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.career__item p {
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.career__visual { position: relative; }
.career__roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.role {
  padding: 26px;
  background: #fff;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.role::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  height: 5px;
}
.role--blue::before { background: var(--blue); }
.role--yellow::before { background: var(--yellow); }
.role--pink::before { background: var(--pink); }
.role--green::before { background: var(--green); }
.role:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.role--blue:hover { border-color: var(--blue); }
.role--yellow:hover { border-color: var(--yellow); }
.role--pink:hover { border-color: var(--pink); }
.role--green:hover { border-color: var(--green); }
.role:nth-child(2) { transform: translateY(20px); }
.role:nth-child(2):hover { transform: translateY(15px); }
.role:nth-child(3) { transform: translateY(-12px); }
.role:nth-child(3):hover { transform: translateY(-17px); }
.role__title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.role__salary {
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 6px;
  direction: ltr;
  text-align: right;
  font-family: var(--display);
}
.role--blue .role__salary { color: var(--blue); }
.role--yellow .role__salary { color: var(--yellow-deep); }
.role--pink .role__salary { color: var(--pink); }
.role--green .role__salary { color: var(--green-deep); }
.role__type {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}

/* ============== METHOD ============== */
.method {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.method::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 8%;
  left: 8%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 10px, transparent 10px 20px);
  opacity: 0.3;
  z-index: 0;
}
.method__step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.method__step-num {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 22px;
}
.method__step-num--blue { background: var(--blue); box-shadow: var(--shadow-blue); }
.method__step-num--yellow { background: var(--yellow); color: var(--navy); box-shadow: var(--shadow-yellow); }
.method__step-num--pink { background: var(--pink); box-shadow: var(--shadow-pink); }
.method__step-num--green { background: var(--green); box-shadow: var(--shadow-green); }

.method__step h3 {
  font-size: 21px;
  margin-bottom: 10px;
  color: var(--navy);
}
.method__step p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 240px;
}

/* ============== TRUST GRID ============== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-card {
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.trust-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.trust-card--blue::after { background: var(--blue); }
.trust-card--yellow::after { background: var(--yellow); }
.trust-card--pink::after { background: var(--pink); }
.trust-card--green::after { background: var(--green); }
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.trust-card:hover::after { transform: scaleX(1); }
.trust-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 20px;
}
.trust-card--blue .trust-card__icon { background: var(--blue-soft); }
.trust-card--yellow .trust-card__icon { background: var(--yellow-soft); }
.trust-card--pink .trust-card__icon { background: var(--pink-soft); }
.trust-card--green .trust-card__icon { background: var(--green-soft); }

.trust-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.trust-card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* ============== FAQ ============== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq__item.active {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  text-align: right;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--display);
}
.faq__icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--blue-soft);
  border-radius: 50%;
  transition: background 0.3s var(--ease);
}
.faq__item.active .faq__icon { background: var(--blue); }
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item.active .faq__icon::before,
.faq__item.active .faq__icon::after { background: #fff; }
.faq__item.active .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__item.active .faq__a { max-height: 300px; }
.faq__a p {
  padding: 0 26px 24px;
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0;
}
.faq__a strong { color: var(--blue); }

/* ============== CTA SECTION ============== */
.section--cta { padding: 60px 0 120px; }
.cta-card {
  position: relative;
  padding: 80px 60px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.35);
}
.cta-card__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cta-card__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.cta-card__shape--yellow {
  width: 350px; height: 350px;
  top: -100px; right: -80px;
  background: var(--yellow);
  opacity: 0.35;
}
.cta-card__shape--pink {
  width: 300px; height: 300px;
  bottom: -100px; left: -50px;
  background: var(--pink);
  opacity: 0.3;
}
.cta-card__content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-card h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 18px;
  color: #fff;
}
.cta-card .highlight::before { background: var(--yellow); }
.cta-card p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA actions (WhatsApp + Call) */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.btn--xl {
  padding: 20px 38px;
  font-size: 17px;
  gap: 12px;
}
.btn--outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn--outline-light:hover {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}
.cta-note {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.cta-note__pin { font-size: 18px; }
.cta-note strong { color: var(--yellow); font-weight: 800; }

/* ============== FOOTER ============== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}
.footer__logo {
  height: 60px;
  width: auto;
  background: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.footer__brand p {
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 340px;
}
.footer__col h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 18px;
  font-family: var(--display);
}
.footer__col a {
  display: block;
  padding: 5px 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--yellow); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
}
.footer__tag {
  font-family: var(--display);
  font-style: italic;
  color: var(--yellow);
  letter-spacing: 0.02em;
  font-weight: 700;
}

/* ============== FLOATING WHATSAPP ============== */
.float-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-family: var(--display);
  font-size: 15px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  transition: all 0.3s var(--ease);
}
.float-wa:hover {
  transform: translateY(-3px) scale(1.03);
  background: #1FB855;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.6);
}
.float-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--green);
  z-index: -1;
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__card { max-width: 480px; margin: 0 auto; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .paths { grid-template-columns: 1fr; }
  .path--featured { transform: none; }
  .path--featured:hover { transform: translateY(-6px); }
  .career__grid { grid-template-columns: 1fr; gap: 48px; }
  .method { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .method::before { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 56px 0 80px; }
  .header__nav, .header__cta { display: none; }
  .header__burger { display: flex; }
  .hero__trust { gap: 16px; }
  .hero__trust-divider { display: none; }
  .hero__ctas .btn { flex: 1; min-width: 0; }
  .features { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
  .module__head { padding: 18px 20px; flex-wrap: wrap; gap: 12px; }
  .module__head-left { gap: 14px; }
  .module__num { font-size: 28px; min-width: 40px; }
  .module__title { font-size: 17px; }
  .module__lessons li { padding: 10px 20px; font-size: 14px; }
  .module__intro { padding: 0 20px 14px; font-size: 14px; }
  .career__roles { grid-template-columns: 1fr; }
  .role:nth-child(2), .role:nth-child(3) { transform: none; }
  .role:nth-child(2):hover, .role:nth-child(3):hover { transform: translateY(-5px); }
  .method { grid-template-columns: 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 52px 24px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn--xl { padding: 16px 28px; font-size: 15px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .section__head { margin-bottom: 48px; }
  .marquee__item { font-size: 18px; }
  .float-wa__label { display: none; }
  .float-wa { padding: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero__title { font-size: 36px; }
  .header__logo img { height: 42px; }
  .btn--lg { padding: 15px 24px; font-size: 15px; }
  .hero__platform { width: 44px; height: 44px; font-size: 20px; }
}

/* ============== ANIMATIONS ============== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}
