/* =====================================================
   HERO — light two-column layout
===================================================== */
.hero {
  background: linear-gradient(150deg, #ffffff 0%, #f5f9ff 55%, #eef4fd 100%);
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}

/* Circuit tracks background layer */
.hero-tracks {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.hero-tracks svg { width: 100%; height: 100%; }

.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;
  padding: 130px 0 90px; position: relative; z-index: 1;
}
.hero-content { position: relative; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1.5px solid #D1D5DB; border-radius: 999px;
  padding: 8px 18px; font-size: 13px; font-weight: 600;
  color: var(--brand-text); margin-bottom: 26px;
  background: rgba(255,255,255,.85);
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-blue); flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 64px); font-weight: 700;
  letter-spacing: -.04em; line-height: 1.08;
  margin-bottom: 22px; color: var(--brand-text);
}
.hero h1 .accent { color: var(--brand-blue); }
.hero-sub {
  font-size: 18px; color: var(--brand-muted);
  max-width: 520px; line-height: 1.7; margin-bottom: 30px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.htag {
  display: inline-flex; align-items: center;
  border: 1.5px solid #DBEAFE; border-radius: 999px;
  background: #fff; overflow: hidden; cursor: default;
  font-size: 13px; font-weight: 600;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.htag:hover { border-color: #93C5FD; box-shadow: 0 4px 14px rgba(20,118,189,.12); transform: translateY(-1px); }
.htag-ico {
  padding: 7px 11px; background: #EFF6FF;
  border-inline-end: 1.5px solid #DBEAFE;
  font-size: 15px; line-height: 1;
}
.htag-txt { padding: 7px 14px; color: #1A3A5C; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-blue); color: #fff;
  border: 2px solid var(--brand-blue); border-radius: 999px;
  padding: 13px 28px; font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-hero-primary:hover {
  background: #1057a8; border-color: #1057a8;
  transform: translateY(-2px); box-shadow: 0 12px 28px rgba(20,118,189,.3);
}
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.8); color: var(--brand-text);
  border: 2px solid #D1D5DB; border-radius: 999px;
  padding: 13px 28px; font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}
.btn-hero-outline:hover {
  border-color: var(--brand-blue); color: var(--brand-blue);
  background: #EFF6FF; transform: translateY(-2px);
}

/* Image side */
.hero-visual { position: relative; }

/* Outer PCB-themed frame */
.hero-img-frame {
  position: relative;
  border-radius: 22px;
  border: 1.5px solid rgba(20,118,189,.25);
  box-shadow:
    0 0 0 8px rgba(20,118,189,.04),
    0 28px 72px rgba(20,118,189,.16),
    0 6px 20px rgba(10,22,40,.07);
}

/* PCB L-bracket corners */
.ic {
  position: absolute; width: 28px; height: 28px;
  z-index: 4; pointer-events: none;
}
.ic::before {
  content: ''; position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-blue); opacity: .9;
}
.ic::after {
  content: ''; position: absolute;
  width: 4px; height: 4px; border-radius: 50%;
  background: #fff;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  opacity: .8;
}
.ic-tl { top: -2px; left: -2px;
  border-top: 2.5px solid var(--brand-blue);
  border-left: 2.5px solid var(--brand-blue);
  border-radius: 10px 0 0 0; }
.ic-tl::before { top: -4px; left: -4px; }
.ic-tr { top: -2px; right: -2px;
  border-top: 2.5px solid var(--brand-blue);
  border-right: 2.5px solid var(--brand-blue);
  border-radius: 0 10px 0 0; }
.ic-tr::before { top: -4px; right: -4px; }
.ic-bl { bottom: -2px; left: -2px;
  border-bottom: 2.5px solid var(--brand-blue);
  border-left: 2.5px solid var(--brand-blue);
  border-radius: 0 0 0 10px; }
.ic-bl::before { bottom: -4px; left: -4px; }
.ic-br { bottom: -2px; right: -2px;
  border-bottom: 2.5px solid var(--brand-blue);
  border-right: 2.5px solid var(--brand-blue);
  border-radius: 0 0 10px 0; }
.ic-br::before { bottom: -4px; right: -4px; }

/* Inner image container */
.hero-img-wrap {
  border-radius: 20px; overflow: hidden;
  background: #d4e8f7;
}
.hero-img-wrap img {
  width: 100%; height: 500px;
  object-fit: cover; object-position: center top;
  display: block;
}

/* Floating live badge on image */
.img-badge {
  position: absolute; bottom: 18px; left: 50%;
  transform: translateX(-50%);
  background: rgba(10,22,40,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: 9px 20px;
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600;
  white-space: nowrap; z-index: 3;
}
.img-badge .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ADE80; flex-shrink: 0;
  animation: livepulse 2s infinite;
}
html[dir="rtl"] .hero-inner { direction: rtl; }

/* =====================================================
   WHY US
===================================================== */
.why-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.why-card {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg); padding: 32px;
  transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.22); }
.why-icon {
  width: 54px; height: 54px; background: rgba(255,255,255,.1); border-radius: 16px;
  display: grid; place-items: center; font-size: 26px; margin-bottom: 18px;
}
.why-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.why-card p { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.65; }

/* =====================================================
   DIPLOMA LEVELS (ARDUINO)
===================================================== */
.levels-wrap { position: relative; margin-top: 56px; }
.levels-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  position: relative;
}
.levels-row::before {
  content: ''; position: absolute; top: 38px;
  left: calc(10% + 8px); right: calc(10% + 8px); height: 2px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-blue));
  z-index: 0;
}
.lv-card {
  position: relative; z-index: 1; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px 20px; box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.lv-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: var(--brand-blue); }
.lv-num {
  width: 50px; height: 50px; border-radius: 16px; background: var(--brand-yellow);
  color: var(--brand-text); display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700;
  margin-bottom: 18px;
}
.lv-focus { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 8px; }
.lv-card h3 { font-size: 19px; font-weight: 700; color: var(--brand-text); margin-bottom: 12px; }
.lv-card p { font-size: 13px; color: var(--brand-muted); line-height: 1.65; margin-bottom: 14px; }
.lv-outcome {
  background: #EFF6FF; border-left: 3px solid var(--brand-blue);
  border-radius: 8px; padding: 11px 13px;
  font-size: 12px; color: var(--brand-blue); font-weight: 600; line-height: 1.5;
}

/* =====================================================
   DIPLOMA STRUCTURE
===================================================== */
.struct-row {
  display: grid; grid-template-columns: 1fr 44px 1fr 44px 1fr;
  gap: 0; align-items: center; margin-top: 48px;
}
.struct-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--sh-sm); text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.struct-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.struct-icon { font-size: 34px; margin-bottom: 14px; }
.struct-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.struct-card p { font-size: 14px; color: var(--brand-muted); line-height: 1.6; }
.struct-arrow { display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--brand-blue); }
html[dir="rtl"] .struct-arrow { transform: scaleX(-1); } /* point left in RTL */

/* =====================================================
   AI DIPLOMA
===================================================== */
.ai-section { background: var(--brand-dark); color: #fff; position: relative; overflow: hidden; }
.ai-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(20,118,189,.22) 1px, transparent 0);
  background-size: 30px 30px; pointer-events: none;
}
.ai-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(254,206,0,.12); border: 1px solid rgba(254,206,0,.38);
  color: var(--brand-yellow); padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700; margin-bottom: 22px;
}
.ai-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 48px; }
.ai-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 22px 16px;
  position: relative; overflow: hidden;
  transition: transform .3s;
}
.ai-card:hover { transform: translateY(-4px); }
.coming-overlay {
  position: absolute; inset: 0; background: rgba(10,22,40,.64);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; border-radius: var(--r-lg);
}
.lock { font-size: 26px; }
.soon-lbl { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.ai-num {
  width: 42px; height: 42px; border-radius: 13px;
  background: rgba(20,118,189,.28); border: 1px solid rgba(20,118,189,.45);
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700;
  color: #93C5FD; margin-bottom: 14px;
}
.ai-focus { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(254,206,0,.65); margin-bottom: 7px; }
.ai-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 9px; }
.ai-card p { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; }
.ai-prereq {
  background: rgba(254,206,0,.07); border: 1px solid rgba(254,206,0,.18);
  border-radius: var(--r-md); padding: 18px 26px; margin-top: 36px;
  text-align: center; font-size: 14px; color: rgba(255,255,255,.6);
}
.ai-prereq strong { color: var(--brand-yellow); }

/* =====================================================
   PARENT FOLLOW-UP
===================================================== */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.compare-col { border-radius: var(--r-xl); padding: 34px; }
.compare-col.portal { background: var(--brand-gray); border: 1px solid var(--border); }
.compare-col.parent { background: var(--brand-blue); color: #fff; }
.compare-col h3 { font-size: 19px; font-weight: 700; margin-bottom: 22px; }
.compare-col.portal h3 { color: var(--brand-text); }
.compare-col.parent h3 { color: #fff; }
.compare-col ul { list-style: none; display: grid; gap: 12px; }
.compare-col ul li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.compare-col.portal ul li { color: var(--brand-text); }
.compare-col.parent ul li { color: rgba(255,255,255,.9); }
.chk {
  width: 28px; height: 28px; border-radius: 50%; display: grid;
  place-items: center; flex-shrink: 0; font-size: 13px; font-weight: 700;
}
.compare-col.portal .chk { background: #DBEAFE; color: var(--brand-blue); }
.compare-col.parent .chk { background: rgba(255,255,255,.18); color: #fff; }
.ptag { font-size: 11px; font-weight: 700; background: rgba(255,255,255,.15); color: rgba(255,255,255,.75); padding: 3px 9px; border-radius: 999px; margin-left: 8px; }
.soon-tag { font-size: 11px; font-weight: 700; background: #FEF3C7; color: #92400E; padding: 3px 9px; border-radius: 999px; margin-left: 8px; }

/* =====================================================
   STUDENT PORTAL COMING SOON
===================================================== */
.portal-section { background: #0D1F3C; color: #fff; position: relative; overflow: hidden; }
.portal-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,118,189,.18) 0%, transparent 55%);
}
.portal-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; }
.portal-feats { display: flex; flex-direction: column; gap: 12px; margin: 32px 0; text-align: left; }
.portal-feat {
  display: flex; align-items: center; gap: 15px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 14px 18px;
  font-size: 15px; color: rgba(255,255,255,.78);
}
.plock { font-size: 18px; flex-shrink: 0; color: rgba(254,206,0,.55); }

/* =====================================================
   FOOTER
===================================================== */
.footer { background: var(--brand-dark); color: rgba(255,255,255,.75); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 52px;
}
.footer .logo-name { color: #fff; }
.footer .logo-img { height: 100px; }
.footer .logo-academy { color: var(--brand-yellow); -webkit-text-stroke: .3px rgba(229,185,0,.6); }
.f-tagline { font-size: 14px; color: rgba(255,255,255,.44); line-height: 1.7; margin: 14px 0 22px; }
.f-socials { display: flex; gap: 9px; }
.f-soc {
  width: 36px; height: 36px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11); border-radius: 9px;
  display: grid; place-items: center; font-size: 15px;
  color: rgba(255,255,255,.55); transition: background .2s, color .2s;
}
.f-soc:hover { color: #fff; }
.f-soc.soc-fb:hover { background: #1877F2; border-color: #1877F2; }
.f-soc.soc-wa:hover { background: #25D366; border-color: #25D366; }
.f-soc.soc-ig:hover { background: linear-gradient(135deg,#833AB4,#E1306C,#FD1D1D); border-color: #E1306C; }
.f-soc.soc-li:hover { background: #0A66C2; border-color: #0A66C2; }
.f-soc.soc-em:hover { background: #EA4335; border-color: #EA4335; }
.f-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .09em; }
.f-col ul { list-style: none; display: grid; gap: 9px; }
.f-col ul li a { font-size: 14px; color: rgba(255,255,255,.44); transition: color .2s; }
.f-col ul li a:hover { color: var(--brand-yellow); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bar p { font-size: 13px; color: rgba(255,255,255,.3); }

/* =====================================================
   DIPLOMA TRACK CARDS
===================================================== */
.tracks-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 52px;
}
.track-card {
  background: #fff; border-radius: 20px;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  overflow: hidden; position: relative;
  transition: box-shadow .3s, transform .3s;
}
.track-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.track-card-ai { border-color: rgba(124,58,237,.18); }
.track-bar { height: 5px; width: 100%; flex-shrink: 0; }
.track-badge-new {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg,#7C3AED,#4F46E5);
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 5px 13px; border-radius: 999px; letter-spacing: .03em;
}
html[dir="rtl"] .track-badge-new { right: auto; left: 20px; }
.track-body { padding: 28px 28px 0; flex: 1; }
.track-eyebrow {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: var(--brand-blue); margin-bottom: 10px;
}
.track-card-ai .track-eyebrow { color: #7C3AED; }
.track-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--brand-dark);
  margin-bottom: 20px; line-height: 1.2;
}
.track-meta { list-style: none; display: grid; gap: 10px; margin-bottom: 0; }
.track-meta li {
  font-size: 14px; color: var(--brand-muted); line-height: 1.5;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.track-meta li:last-child { border-bottom: none; }
.track-meta strong { color: var(--brand-dark); margin-inline-end: 5px; }
.track-actions {
  display: flex; gap: 12px; padding: 24px 28px;
  border-top: 1px solid var(--border); margin-top: 20px;
}
.btn-track-apply {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-blue); color: #fff;
  border: 2px solid var(--brand-blue); border-radius: 999px;
  padding: 11px 20px; font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: background .2s, transform .2s;
}
.btn-track-apply:hover { background: #0f5fa3; transform: translateY(-1px); }
.btn-track-apply-alt {
  background: linear-gradient(135deg,#7C3AED,#4F46E5);
  border-color: #7C3AED;
}
.btn-track-apply-alt:hover { background: linear-gradient(135deg,#6D28D9,#4338CA); }
.btn-track-explore {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--brand-blue);
  border: 2px solid var(--brand-blue); border-radius: 999px;
  padding: 11px 20px; font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.btn-track-explore:hover { background: #EFF6FF; transform: translateY(-1px); }
.btn-track-explore-alt { color: #7C3AED; border-color: #7C3AED; }
.btn-track-explore-alt:hover { background: #F5F3FF; }

/* =====================================================
   DIPLOMA DETAIL MODAL
===================================================== */
.diploma-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,22,40,.55); backdrop-filter: blur(6px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.diploma-modal.open {
  opacity: 1; pointer-events: all;
}
.dm-panel {
  width: 100%; max-width: 860px;
  background: #fff; border-radius: 24px 24px 0 0;
  max-height: 92vh; display: flex; flex-direction: column;
  transform: translateY(40px);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.diploma-modal.open .dm-panel { transform: translateY(0); }
.dm-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; border-bottom: 1px solid var(--border);
  flex-shrink: 0; position: sticky; top: 0; background: #fff; z-index: 2;
}
.dm-track-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--brand-blue);
  text-transform: uppercase; letter-spacing: .1em;
}
.dm-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: #F3F4F6; border: none; cursor: pointer;
  font-size: 15px; color: #6B7280;
  display: grid; place-items: center;
  transition: background .2s, color .2s;
}
.dm-close:hover { background: #E5E7EB; color: #111; }
.dm-scroll { overflow-y: auto; flex: 1; padding: 36px 36px 48px; }

/* Modal hero block */
.dm-hero { margin-bottom: 36px; }
.dm-hero h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px; font-weight: 800; color: var(--brand-dark);
  margin-bottom: 12px; line-height: 1.15;
}
.dm-hero p { font-size: 16px; color: var(--brand-muted); line-height: 1.7; max-width: 680px; }

/* Stats row */
.dm-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 40px;
  padding: 24px; background: #F8FAFC;
  border-radius: 16px; border: 1.5px solid var(--border);
}
.dm-stat { text-align: center; }
.dm-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 800; color: var(--brand-blue);
  line-height: 1.1;
}
.dm-stat-lbl { font-size: 12px; color: var(--brand-muted); margin-top: 4px; font-weight: 600; }

/* Section titles inside modal */
.dm-section { margin-bottom: 40px; }
.dm-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--brand-dark);
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid var(--brand-blue);
  display: inline-block;
}

/* What you'll build cards */
.dm-builds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dm-build-card {
  background: #F8FAFC; border: 1.5px solid var(--border);
  border-radius: 14px; padding: 18px 16px; text-align: center;
}
.dm-build-ico { font-size: 28px; margin-bottom: 8px; }
.dm-build-lbl { font-size: 13px; font-weight: 700; color: var(--brand-dark); line-height: 1.4; }

/* Who it's for */
.dm-whofor { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dm-who-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: #F8FAFC; border: 1.5px solid var(--border);
  border-radius: 14px; padding: 18px;
}
.dm-who-ico { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.dm-who-txt strong { display: block; font-size: 14px; font-weight: 700; color: var(--brand-dark); margin-bottom: 4px; }
.dm-who-txt span { font-size: 13px; color: var(--brand-muted); line-height: 1.5; }

/* Curriculum levels accordion */
.dm-levels { display: grid; gap: 12px; }
.dm-level {
  border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden;
}
.dm-level-head {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; cursor: pointer;
  background: #F8FAFC; border: none; width: 100%; text-align: left;
  transition: background .2s;
}
html[dir="rtl"] .dm-level-head { text-align: right; }
.dm-level-head:hover { background: #EFF6FF; }
.dm-level-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand-blue); color: #fff;
  font-size: 12px; font-weight: 800; font-family: 'Space Grotesk', sans-serif;
  display: grid; place-items: center; flex-shrink: 0;
}
.dm-level-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--brand-dark); flex: 1;
}
.dm-level-focus {
  font-size: 12px; color: var(--brand-blue); font-weight: 700;
  background: #DBEAFE; padding: 3px 10px; border-radius: 999px;
}
.dm-chevron {
  font-size: 12px; color: var(--brand-muted); flex-shrink: 0;
  transition: transform .25s;
}
.dm-level.open .dm-chevron { transform: rotate(180deg); }
.dm-level-body { display: none; padding: 0 20px; }
.dm-level.open .dm-level-body { display: block; padding: 16px 20px 20px; }
.dm-level-inner { display: grid; gap: 6px; }
.dm-level-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--brand-muted); line-height: 1.5;
}
.dm-level-item::before {
  content: '›'; color: var(--brand-blue); font-weight: 700;
  font-size: 16px; flex-shrink: 0; line-height: 1.4;
}

/* Modal CTA */
.dm-cta {
  text-align: center; padding: 36px 28px;
  background: linear-gradient(135deg,#EFF6FF,#F0FDF4);
  border-radius: 20px; border: 1.5px solid #DBEAFE;
  margin-top: 40px;
}
.dm-cta h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--brand-dark);
  margin-bottom: 8px;
}
.dm-cta p { font-size: 15px; color: var(--brand-muted); margin-bottom: 24px; }
.dm-cta .btn-track-apply { display: inline-flex; width: auto; min-width: 220px; font-size: 16px; padding: 14px 36px; }
