/* ================================================================
   EDUCATION PAGE — education.css
   Light-themed design, Coursera-inspired app mockups
   ================================================================ */

/* ================================================================
   HERO
   ================================================================ */
.edu-hero {
  background: linear-gradient(160deg, #f0f7ff 0%, #e8f4fe 45%, #f5f9ff 100%);
  padding: 72px 32px 0;
  overflow: hidden;
}

.edu-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ---- Eyebrow ---- */
.edu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.edu-eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a56db, #60a5fa);
  flex-shrink: 0;
}

/* ---- Copy ---- */
.edu-hero__copy h1 {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin-bottom: 22px;
}

.edu-hero__accent {
  color: var(--blue);
}

.edu-hero__copy p {
  font-size: 17px;
  color: #475569;
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 32px;
}

.edu-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- Visual / orbit ---- */
.edu-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.edu-hero__orbit {
  position: relative;
  width: 320px;
  height: 320px;
}

.edu-orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(26, 86, 219, 0.18);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.edu-orbit__ring--1 {
  width: 240px;
  height: 240px;
  animation: spinRing 18s linear infinite;
}

.edu-orbit__ring--2 {
  width: 310px;
  height: 310px;
  animation: spinRing 26s linear infinite reverse;
}

@keyframes spinRing {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.edu-hero__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a56db 0%, #4f46e5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(26, 86, 219, 0.28), 0 0 0 12px rgba(26, 86, 219, 0.08);
  z-index: 2;
}

.edu-hero__center-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Orbit cards ---- */
.edu-orbit-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
  white-space: nowrap;
  z-index: 3;
}

.edu-orbit-card__icon {
  font-size: 18px;
  flex-shrink: 0;
}

.edu-orbit-card--1 { top: 8px; left: 50%; transform: translateX(-50%); animation: floatOrbit 3.4s ease-in-out infinite; }
.edu-orbit-card--2 { top: 50%; right: -10px; transform: translateY(-50%); animation: floatOrbit 4s ease-in-out infinite 0.7s; }
.edu-orbit-card--3 { bottom: 8px; left: 50%; transform: translateX(-50%); animation: floatOrbit 3.7s ease-in-out infinite 1.2s; }
.edu-orbit-card--4 { top: 50%; left: -10px; transform: translateY(-50%); animation: floatOrbit 4.3s ease-in-out infinite 0.3s; }

@keyframes floatOrbit {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.edu-orbit-card--2,
.edu-orbit-card--4 {
  animation-name: floatOrbitY;
}

@keyframes floatOrbitY {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-6px); }
}

/* ---- Floating hero badges ---- */
.edu-hero-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}

.edu-hero-badge--top {
  top: 0;
  right: -24px;
  text-align: center;
}

.edu-hero-badge--top strong {
  display: block;
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.edu-hero-badge--top span {
  font-size: 11px;
  color: var(--muted);
}

.edu-hero-badge--bottom {
  bottom: 12px;
  right: -16px;
  width: 168px;
}

.edu-hero-badge__progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 7px;
}

.edu-hero-badge__bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.edu-hero-badge__fill {
  height: 100%;
  background: linear-gradient(90deg, #1a56db, #60a5fa);
  border-radius: 999px;
}

/* ---- Stats strip ---- */
.edu-hero__stats {
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(26, 86, 219, 0.1);
}

.edu-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 44px;
}

.edu-hero-stat strong {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.edu-hero-stat span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.edu-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(26, 86, 219, 0.1);
  flex-shrink: 0;
}

/* ================================================================
   SHARED SECTION
   ================================================================ */
.edu-section {
  padding: 96px 32px;
}

.edu-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.edu-section__heading {
  text-align: center;
  margin-bottom: 64px;
}

.edu-section__heading h2 {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 12px 0 18px;
}

.edu-section__heading p {
  font-size: 17px;
  color: #475569;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.72;
}

.edu-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

.edu-label--center {
  text-align: center;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.edu-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
}

.edu-btn-primary:hover {
  background: #1a3560;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11, 29, 58, 0.2);
  text-decoration: none;
  color: #fff;
}

.edu-btn-primary--large {
  padding: 15px 32px;
  font-size: 16px;
}

.edu-btn-primary--light {
  background: linear-gradient(135deg, #1a56db, #7c3aed);
}

.edu-btn-primary--light:hover {
  background: linear-gradient(135deg, #1d4ed8, #6d28d9);
  box-shadow: 0 10px 32px rgba(26, 86, 219, 0.38);
}

.edu-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 86, 219, 0.07);
  color: var(--blue);
  border: 1.5px solid rgba(26, 86, 219, 0.2);
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
}

.edu-btn-secondary:hover {
  background: rgba(26, 86, 219, 0.12);
  text-decoration: none;
  color: var(--blue);
}

.edu-btn-secondary--large {
  padding: 15px 32px;
  font-size: 16px;
}

/* ================================================================
   WHY WE'RE DIFFERENT
   ================================================================ */
.edu-why-section {
  position: relative;
  background: #0b1d3a;
  overflow: hidden;
}

.edu-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/Education%20Images/Background%20education%20section1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.18;
  transform: scale(1.03);
  pointer-events: none;
}

.edu-why-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(11, 29, 58, 0.92) 0%, rgba(26, 86, 219, 0.52) 100%),
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 42%);
  pointer-events: none;
}

.edu-why-section .edu-section__inner {
  position: relative;
  z-index: 1;
}

.edu-why-section .edu-section__heading h2 {
  color: #fff;
}

.edu-why-section .edu-section__heading p {
  color: rgba(226, 232, 240, 0.88);
}

.edu-why-section .edu-label {
  color: #93c5fd;
}

.edu-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.edu-why-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.edu-why-card:hover {
  box-shadow: 0 14px 40px rgba(11, 29, 58, 0.28);
  transform: translateY(-2px);
}

.edu-why-card--featured {
  background: linear-gradient(135deg, rgba(11, 29, 58, 0.88) 0%, rgba(21, 46, 85, 0.92) 100%);
  border-color: rgba(147, 197, 253, 0.24);
  box-shadow: 0 24px 60px rgba(11, 29, 58, 0.32);
  transform: translateY(-10px);
}

.edu-why-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 70px rgba(11, 29, 58, 0.38);
}

.edu-why-card--featured h3 {
  color: #fff;
}

.edu-why-card--featured .edu-why-card__tag--white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.edu-why-card h3 {
  color: #fff;
}

.edu-why-card p {
  color: rgba(226, 232, 240, 0.82);
}

.edu-why-card__tag {
  background: rgba(255, 255, 255, 0.12);
  color: #dbeafe;
}

.edu-why-card__tag--green {
  background: rgba(16, 185, 129, 0.16);
  color: #86efac;
}

.edu-why-card__icon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.edu-why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.edu-why-card__icon--blue { background: rgba(59, 130, 246, 0.18); }
.edu-why-card__icon--white { background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255,255,255,0.12); }
.edu-why-card__icon--green { background: rgba(16, 185, 129, 0.18); }

.edu-why-card h3 {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.edu-why-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.82);
  margin-bottom: 22px;
}

.edu-why-card--featured p {
  color: rgba(255, 255, 255, 0.86);
}

.edu-why-card__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #dbeafe;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.edu-why-card__tag--white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.edu-why-card__tag--green {
  background: rgba(16, 185, 129, 0.16);
  color: #86efac;
}

/* ================================================================
   PLATFORM SECTION
   ================================================================ */
.edu-platform-section {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.edu-platform-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.edu-platform__copy h2 {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin: 12px 0 18px;
}

.edu-platform__copy p {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 28px;
}

.edu-platform__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.edu-platform__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.edu-platform__list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.edu-platform__list-dot--blue { background: var(--blue); }
.edu-platform__list-dot--purple { background: var(--purple); }
.edu-platform__list-dot--green { background: var(--green); }

.edu-platform__list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.edu-platform__list span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.edu-platform__mockup {
  display: flex;
  justify-content: center;
}

/* ================================================================
   MOCKUP WRAPPER + LABEL
   ================================================================ */
.edu-mockup-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.edu-mockup-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 20px;
  letter-spacing: 0.05em;
}

/* ================================================================
   PHONE FRAME (shared across all 4 mockups)
   ================================================================ */
.edu-phone {
  width: 268px;
  height: 568px;
  border-radius: 44px;
  border: 10px solid #1e293b;
  background: #f9fafb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* --- Status bar --- */
.edu-phone__status {
  height: 28px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 10px;
  font-weight: 700;
  color: #1e293b;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.edu-phone__status-icons {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 9px;
}

/* --- App header --- */
.edu-app-header {
  height: 46px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.edu-app-header__title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.edu-app-header__search {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
}

/* --- Greeting strip --- */
.edu-phone__greeting {
  padding: 10px 16px 6px;
  background: #fff;
  flex-shrink: 0;
}

.edu-phone__greeting strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}

.edu-phone__greeting span {
  font-size: 10px;
  color: #94a3b8;
}

/* --- Filter tabs --- */
.edu-tabs {
  display: flex;
  gap: 7px;
  padding: 8px 16px;
  background: #fff;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.edu-tabs::-webkit-scrollbar { display: none; }

.edu-tab {
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  background: #f1f5f9;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}

.edu-tab--active {
  background: var(--blue);
  color: #fff;
}

/* --- Course cards (inside phone) --- */
.edu-phone__courses {
  flex: 1;
  overflow: hidden;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.edu-course-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  padding: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.edu-course-card__thumb {
  width: 52px;
  height: 64px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.edu-course-card__thumb--blue   { background: linear-gradient(135deg, #1a56db, #4f46e5); }
.edu-course-card__thumb--green  { background: linear-gradient(135deg, #059669, #0891b2); }
.edu-course-card__thumb--purple { background: linear-gradient(135deg, #7c3aed, #4f46e5); }

.edu-course-card__body { flex: 1; min-width: 0; }

.edu-course-card__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 4px;
}

.edu-course-card__tag--blue   { background: #eff6ff; color: #1a56db; }
.edu-course-card__tag--green  { background: #ecfdf5; color: #059669; }
.edu-course-card__tag--purple { background: #ede9fe; color: #7c3aed; }

.edu-course-card__title {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 3px;
}

.edu-course-card__meta {
  font-size: 9px;
  color: #94a3b8;
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
}

.edu-course-card__progress {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: #94a3b8;
}

/* --- Progress bars (reusable) --- */
.edu-progress-bar {
  flex: 1;
  height: 4px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
}

.edu-progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #1a56db, #60a5fa);
  border-radius: 999px;
}

.edu-progress-bar__fill--green  { background: linear-gradient(90deg, #059669, #34d399); }
.edu-progress-bar__fill--purple { background: linear-gradient(90deg, #7c3aed, #a78bfa); }

/* --- Bottom nav bar --- */
.edu-phone__bottom-nav {
  height: 52px;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  flex-shrink: 0;
}

.edu-bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  color: #94a3b8;
  padding: 6px 8px;
  cursor: pointer;
}

.edu-bnav-item--active { color: var(--blue); }

/* --- Lesson header --- */
.edu-lesson-header {
  height: 46px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  flex-shrink: 0;
  overflow: hidden;
}

.edu-lesson-header span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.edu-back-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--blue);
  padding: 0;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

/* --- Video area --- */
.edu-video-area {
  height: 134px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
}

.edu-play-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--navy);
  padding-left: 3px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.edu-video-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* --- Lesson progress (in phone) --- */
.edu-lesson-progress {
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid #f8fafc;
  flex-shrink: 0;
}

.edu-lesson-progress__label {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 5px;
}

/* --- Lesson list (in phone) --- */
.edu-lesson-list {
  flex: 1;
  overflow: hidden;
  padding: 4px 12px;
  display: flex;
  flex-direction: column;
}

.edu-lesson-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  border-bottom: 1px solid #f8fafc;
  font-size: 10px;
  color: #475569;
  flex-shrink: 0;
}

.edu-lesson-item--done span { color: #94a3b8; }

.edu-lesson-item--current {
  background: #eff6ff;
  border-radius: 8px;
  padding: 8px 8px;
  border-bottom: none;
  margin: 2px 0;
}

.edu-lesson-item--current span {
  color: var(--blue);
  font-weight: 600;
}

.edu-lesson-item__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  flex-shrink: 0;
}

.edu-lesson-item__check--done    { background: #ecfdf5; color: #059669; }
.edu-lesson-item__check--current { background: var(--blue); color: #fff; }

/* --- Learning path profile --- */
.edu-path-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.edu-path-profile__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a56db, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.edu-path-profile__info { flex: 1; }

.edu-path-profile__info strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
}

.edu-path-profile__info span { font-size: 9px; color: #94a3b8; }

.edu-path-profile__streak {
  font-size: 12px;
  font-weight: 700;
  color: #d97706;
}

/* --- Learning path ring row --- */
.edu-path-ring-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: #f8fbff;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.edu-path-ring-item {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu-path-ring-label {
  position: absolute;
  font-size: 10px;
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  line-height: 1.2;
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
}

.edu-path-ring-label small {
  display: block;
  font-size: 8px;
  font-weight: 400;
  color: #94a3b8;
  font-family: "Helvetica Neue", sans-serif;
}

.edu-path-ring-stats {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.edu-path-stat {
  display: flex;
  gap: 8px;
  align-items: center;
}

.edu-path-stat strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  min-width: 24px;
  line-height: 1;
}

.edu-path-stat span { font-size: 9px; color: #94a3b8; }

/* --- Roadmap --- */
.edu-roadmap {
  flex: 1;
  overflow: hidden;
  padding: 6px 16px;
  display: flex;
  flex-direction: column;
}

.edu-roadmap-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f8fafc;
  flex-shrink: 0;
}

.edu-roadmap-item--active {
  background: #eff6ff;
  border-radius: 10px;
  padding: 8px 8px;
  border-bottom: none;
  margin: 2px -4px;
}

.edu-roadmap-item__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  background: #f1f5f9;
  color: #94a3b8;
  flex-shrink: 0;
}

.edu-roadmap-item__dot--done   { background: #ecfdf5; color: #059669; }
.edu-roadmap-item__dot--active { background: var(--blue); color: #fff; }

.edu-roadmap-item__body strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
}

.edu-roadmap-item--active .edu-roadmap-item__body strong { color: var(--blue); }

.edu-roadmap-item__body span { font-size: 9px; color: #94a3b8; }

/* --- Quiz elements --- */
.edu-quiz-progress {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.edu-quiz-dots {
  display: flex;
  gap: 5px;
}

.edu-quiz-dot {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
}

.edu-quiz-dot--done   { background: var(--blue); }
.edu-quiz-dot--active { background: #93c5fd; }

.edu-quiz-progress span { font-size: 10px; font-weight: 600; color: #94a3b8; }

.edu-quiz-question {
  padding: 14px 16px 8px;
  background: #fff;
  border-bottom: 1px solid #f8fafc;
  flex-shrink: 0;
}

.edu-quiz-question__num {
  font-size: 9px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.edu-quiz-question__text {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
}

.edu-quiz-options {
  flex: 1;
  padding: 8px 12px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.edu-quiz-option {
  background: #f8fafc;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: #374151;
  cursor: pointer;
  flex-shrink: 0;
}

.edu-quiz-option--correct {
  background: #ecfdf5;
  border-color: #6ee7b7;
}

.edu-quiz-option__letter {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #6b7280;
  flex-shrink: 0;
}

.edu-quiz-option__letter--correct { background: #059669; color: #fff; }

.edu-quiz-option__check {
  margin-left: auto;
  font-size: 11px;
  color: #059669;
  font-weight: 700;
}

.edu-quiz-explanation {
  margin: 0 12px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 9px;
  color: #065f46;
  line-height: 1.55;
  flex-shrink: 0;
}

.edu-quiz-explanation strong { font-weight: 700; }

.edu-quiz-next {
  margin: 8px 12px 0;
  padding: 10px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  width: calc(100% - 24px);
  flex-shrink: 0;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
}

/* ================================================================
   TOPICS GRID
   ================================================================ */
.edu-topics-section {
  background: #f9fafb;
}

.edu-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.edu-topic-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.edu-topic-card:hover {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.edu-topic-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.edu-topic-card h3 {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.edu-topic-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 18px;
}

.edu-topic-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.edu-topic-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 10px;
}

.edu-topic-tag--blue   { background: #eff6ff; color: #1a56db; }
.edu-topic-tag--green  { background: #ecfdf5; color: #059669; }
.edu-topic-tag--gold   { background: #fef3c7; color: #d97706; }
.edu-topic-tag--purple { background: #ede9fe; color: #6d28d9; }
.edu-topic-tag--red    { background: #fef2f2; color: #dc2626; }
.edu-topic-tag--sky    { background: #f0f9ff; color: #0284c7; }

/* ================================================================
   LESSON SECTION
   ================================================================ */
.edu-lesson-section {
  background: #fff;
}

.edu-lesson-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.edu-lesson__mockup {
  display: flex;
  justify-content: center;
}

.edu-lesson__copy h2 {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin: 12px 0 18px;
}

.edu-lesson__copy p {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 30px;
}

.edu-lesson__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.edu-lesson-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.edu-lesson-feature__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.edu-lesson-feature__dot--blue   { background: var(--blue); }
.edu-lesson-feature__dot--purple { background: var(--purple); }
.edu-lesson-feature__dot--green  { background: var(--green); }

.edu-lesson-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.edu-lesson-feature span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ================================================================
   PROGRESS / QUIZ SECTION
   ================================================================ */
.edu-progress-section {
  background: #f9fafb;
}

.edu-progress-mockups {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* ================================================================
   MARKETS SECTION
   ================================================================ */
.edu-markets-section {
  background: #fff;
}

.edu-markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.edu-market-card {
  border-radius: 28px;
  padding: 40px 36px;
}

.edu-market-card--malaysia {
  background: linear-gradient(160deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1.5px solid #a7f3d0;
}

.edu-market-card--usa {
  background: linear-gradient(160deg, #f0f7ff 0%, #eff6ff 100%);
  border: 1.5px solid #bfdbfe;
}

.edu-market-card__flag {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.edu-market-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.edu-market-card h3 {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.edu-market-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 12px;
}

.edu-market-badge--green { background: #ecfdf5; color: #059669; }
.edu-market-badge--blue  { background: #eff6ff; color: #1a56db; }

.edu-market-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.72;
  margin-bottom: 24px;
}

.edu-market-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.edu-market-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}

.edu-market-list li::before {
  content: "✓";
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.edu-market-card--malaysia .edu-market-list li::before { color: #059669; }
.edu-market-card--usa      .edu-market-list li::before { color: #1a56db; }

.edu-market-card__footer {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ================================================================
   WEB ANNOUNCEMENT
   ================================================================ */
.edu-web-announcement {
  padding: 80px 32px;
  background: #f9fafb;
}

.edu-web-announcement__inner {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(140deg, #0b1d3a 0%, #152e55 100%);
  border-radius: 32px;
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle grid overlay */
.edu-web-announcement__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* glow */
.edu-web-announcement__inner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(12px);
}

.edu-web-announcement__badge {
  display: inline-block;
  position: relative;
  z-index: 1;
  background: rgba(96, 165, 250, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 24px;
}

.edu-web-announcement__inner h2 {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.edu-web-announcement__inner p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.72;
  max-width: 580px;
  margin: 0 auto 44px;
  position: relative;
  z-index: 1;
}

.edu-web-features {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.edu-web-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 130px;
  max-width: 200px;
}

.edu-web-feature__icon {
  margin-bottom: 4px;
  line-height: 1;
}

.edu-web-feature__icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.edu-web-feature strong {
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
}

.edu-web-feature span {
  font-size: 12px;
  color: #64748b;
  text-align: center;
  line-height: 1.55;
}

.edu-web-announcement__inner .edu-btn-primary--light {
  position: relative;
  z-index: 1;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.edu-cta-section {
  padding: 96px 32px;
  background: #fff;
}

.edu-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.edu-cta__inner h2 {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin: 12px 0 18px;
}

.edu-cta__inner p {
  font-size: 17px;
  color: #475569;
  line-height: 1.72;
  max-width: 520px;
  margin: 0 auto 36px;
}

.edu-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.edu-cta__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.edu-cta__download span {
  font-size: 13px;
  color: var(--muted);
}

.edu-cta__download img {
  height: 36px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.edu-cta__download a:hover img { opacity: 1; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1000px) {
  .edu-platform-layout,
  .edu-lesson-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .edu-platform__mockup { order: -1; }
  .edu-lesson__mockup   { order: -1; }

  .edu-why-grid,
  .edu-topics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .edu-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .edu-hero__visual { display: none; }

  .edu-why-card--featured { transform: none; }

  .edu-markets-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .edu-hero {
    padding: 48px 16px 0;
  }

  .edu-hero__stats {
    flex-wrap: wrap;
    padding: 20px 16px;
  }

  .edu-hero-stat {
    padding: 10px 18px;
    flex: 1;
    min-width: 130px;
  }

  .edu-stat-divider { display: none; }

  .edu-section {
    padding: 64px 16px;
  }

  .edu-why-grid,
  .edu-topics-grid {
    grid-template-columns: 1fr;
  }

  .edu-platform-layout,
  .edu-lesson-layout {
    gap: 32px;
  }

  .edu-progress-mockups {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .edu-markets-grid { grid-template-columns: 1fr; }

  .edu-market-card { padding: 28px 24px; }

  .edu-market-card h3 { font-size: 22px; }

  .edu-web-announcement { padding: 48px 16px; }

  .edu-web-announcement__inner {
    padding: 40px 24px;
  }

  .edu-web-features {
    gap: 20px;
  }

  .edu-cta-section { padding: 64px 16px; }

  .edu-phone {
    width: 250px;
    height: 520px;
  }
}
