@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;600;700&family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap");

:root {
  --navy: #0a192f;
  --navy-2: #0d2137;
  --navy-3: #132a45;
  --orange: #ff7e20;
  --orange-2: #ee6422;
  --orange-hover: #e86a12;
  --orange-soft: rgba(255, 126, 32, 0.14);
  --white: #ffffff;
  --off: #f6f7fa;
  --text: #122033;
  --muted: #5b6b80;
  --line: #e6eaf0;
  --ok: #1f9d55;
  --danger: #c0392b;
  --shadow: 0 18px 50px rgba(10, 25, 47, 0.1);
  --shadow-sm: 0 8px 24px rgba(10, 25, 47, 0.06);
  --radius: 12px;
  --header-h: 76px;
  --topbar-h: 40px;
  --sti-container: 1200px;
  --container: 1200px;
  --display: "Montserrat", "IBM Plex Sans Arabic", sans-serif;
  --font: "Inter", "IBM Plex Sans Arabic", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
#ceo, #team, #overview, #learn, #plan, #enroll { scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 12px); }
body,
body.sparks-theme,
body.archive,
body.home,
body.search {
  display: block;
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: clip;
}
img, video { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  margin: 0 0 0.45em;
  font-weight: 800;
  letter-spacing: -0.03em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
.container {
  width: min(100% - 32px, var(--sti-container));
  max-width: var(--sti-container);
  margin-inline: auto;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.accent { color: var(--orange); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 8px; border: 1px solid transparent;
  font-family: var(--display); font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; font-size: 12px; transition: .2s ease;
}
.btn .arrow { font-size: 14px; line-height: 1; }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 10px 24px rgba(255,126,32,.28); }
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-outline { background: transparent; color: var(--navy); border-color: #cfd6e0; }
.btn-outline:hover { border-color: var(--navy); }
.btn-block { width: 100%; }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-family: var(--display); font-size: 12px;
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: none; border: 0; min-height: auto; padding: 0;
}
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange); outline-offset: 2px;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  color: var(--white);
  overflow: visible;
}
.header-bar {
  position: relative;
  background: #0a192f;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.96);
  backdrop-filter: blur(16px);
  pointer-events: none;
  z-index: 0;
}
body.admin-bar .site-header {
  top: var(--wp-admin--admin-bar-height, 32px);
}
.topbar {
  background: #071221;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  min-height: var(--topbar-h);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--topbar-h);
  color: rgba(255,255,255,.78);
}
.topbar-links { display: flex; flex-wrap: wrap; gap: 18px; }
.topbar-links a:hover { color: var(--orange); }
.header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 20px;
  min-height: var(--header-h);
}
.header-shape {
  position: absolute; inset-inline-end: -40px; top: 50%;
  width: 180px; height: 180px; transform: translateY(-50%);
  color: rgba(255,255,255,.22); pointer-events: none; opacity: .55;
  grid-column: 1 / -1;
}
.logo {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 10px; padding: 5px 10px;
  flex-shrink: 0; position: relative; z-index: 1;
  max-width: min(240px, 64vw);
}
.logo img {
  width: auto; height: 44px; max-width: 100%;
  object-fit: contain; object-position: left center;
}
.site-footer .logo { margin-bottom: 18px; }
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 1101px) {
  .logo { grid-column: 1; grid-row: 1; }
  .nav { grid-column: 2; grid-row: 1; justify-self: center; }
  .header-actions { grid-column: 3; grid-row: 1; justify-self: end; }
  .nav-drawer-head,
  .nav-drawer-foot,
  .nav-backdrop,
  .menu-toggle { display: none !important; }
}
.nav > a, .nav-item > a {
  font-family: var(--display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.82);
  padding: 10px 12px; border-bottom: 2px solid transparent; display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
@media (min-width: 1101px) and (max-width: 1280px) {
  .nav { gap: 0; }
  .nav > a, .nav-item > a { padding: 10px 8px; font-size: 11px; letter-spacing: .08em; }
}
.nav > a:hover, .nav > a.is-active, .nav-item > a:hover, .nav-item.is-active > a {
  color: var(--orange); border-color: var(--orange);
}
.nav-item { position: relative; }
.nav-item .chev { font-size: 9px; opacity: .7; }
.nav-sub {
  display: none; position: absolute; inset-inline-start: 0; top: calc(100% - 2px);
  min-width: 280px; padding: 10px 0;
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--orange); border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow);
}
.nav-item:hover .nav-sub, .nav-item:focus-within .nav-sub { display: block; }
.nav-sub a {
  display: block; padding: 11px 18px; border: 0; text-transform: none;
  letter-spacing: 0; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.86);
}
.nav-sub a:hover { color: var(--orange); background: rgba(255,126,32,.1); }
.header-actions { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.lang {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; opacity: .9;
  display: flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 8px; padding: 7px 10px;
}
.lang a.is-active { color: var(--orange); }
.cart-link { position: relative; font-size: 13px; opacity: .9; }
.cart-link b {
  position: absolute; top: -8px; inset-inline-end: -10px;
  background: var(--orange); color: #fff; border-radius: 99px;
  font-size: 9px; min-width: 16px; height: 16px; display: grid; place-items: center;
}
.login-link { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  z-index: 6;
  overflow: visible;
}
.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px;
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: ""; position: absolute; left: 0;
}
.menu-toggle-bars::before { top: -6px; }
.menu-toggle-bars::after { top: 6px; }
.menu-open .menu-toggle-bars { background: transparent; }
.menu-open .menu-toggle-bars::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-toggle-bars::after { top: 0; transform: rotate(-45deg); }
.nav-drawer-head,
.nav-drawer-foot,
.nav-backdrop { display: none; }

.hero {
  position: relative; min-height: 780px; color: var(--white);
  display: grid; align-items: center; overflow: hidden;
  background: var(--navy) center/cover no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,25,47,.88) 0%, rgba(10,25,47,.42) 55%, rgba(10,25,47,.18) 100%),
    linear-gradient(180deg, rgba(10,25,47,.2) 0%, rgba(10,25,47,.55) 100%);
}
[dir="rtl"] .hero::before {
  background:
    linear-gradient(270deg, rgba(10,25,47,.88) 0%, rgba(10,25,47,.42) 55%, rgba(10,25,47,.18) 100%),
    linear-gradient(180deg, rgba(10,25,47,.2) 0%, rgba(10,25,47,.55) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 92px 0 140px; max-width: 720px; }
.hero-inner.wide { max-width: 780px; }
.hero h1 { font-size: clamp(36px, 5.4vw, 62px); max-width: 18ch; line-height: 1.08; }
.hero p.lead { max-width: 46ch; font-size: 18px; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 0; }
.hero-layout { position: relative; z-index: 1; }
.featured-mini {
  position: absolute; inset-inline-end: max(20px, calc((100% - var(--container)) / 2));
  top: 50%; transform: translateY(-42%); z-index: 2; width: min(340px, 90vw);
  background: #fff; color: var(--text); padding: 26px; border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.featured-mini .days {
  display: inline-block; background: var(--orange); color: #fff;
  font-family: var(--display); font-size: 11px; font-weight: 800; letter-spacing: .1em;
  padding: 6px 10px; border-radius: 6px; margin-bottom: 12px;
}
.featured-mini h3 { font-size: 20px; margin-bottom: 12px; }
.featured-mini ul { list-style: none; }
.featured-mini li {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 10px; font-size: 14px; color: var(--muted);
}
.featured-mini li::before { content: "✓"; color: var(--orange); font-weight: 800; }
.trust-bar {
  position: absolute; inset-inline: 0; bottom: 0; z-index: 2;
  background: rgba(10,25,47,.72); border-top: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
.trust-bar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 78px; flex-wrap: wrap; padding-block: 14px;
}
.trust-bar strong {
  font-family: var(--display); font-size: 11px; letter-spacing: .16em; color: rgba(255,255,255,.7);
}
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  border: 1px solid rgba(255,255,255,.22); padding: 8px 14px; border-radius: 999px;
  font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: .1em;
}

.section { padding: 88px 0; }
.section-compact-head { padding-top: 72px; padding-bottom: 28px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 36px; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.kicker {
  color: var(--orange); font-family: var(--display); font-size: 12px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 10px;
}
.why-grid, .stats, .course-grid, .insight-grid, .cert-grid { display: grid; gap: 22px; }
.cert-grid { grid-template-columns: repeat(3, 1fr); }
.why-grid { grid-template-columns: repeat(4, 1fr); }
.why-grid.why-3 { grid-template-columns: repeat(3, 1fr); }
.course-grid { grid-template-columns: 1fr; }
@media (min-width: 1101px) {
  .course-grid { grid-template-columns: repeat(3, 1fr); }
  .course-grid:has(.course-card:nth-child(2):last-child) { grid-template-columns: 1fr 1fr; }
  .course-grid:has(.course-card:first-child:last-child) { grid-template-columns: minmax(260px, 420px); }
  .container.archive .course-grid { grid-template-columns: 1fr 1fr; }
}
.why-card, .card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
}
.why-card { text-align: center; transition: .25s ease; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.why-card .icon {
  width: 58px; height: 58px; margin: 0 auto 16px;
  display: grid; place-items: center; color: var(--orange);
  border: 1px solid rgba(255,126,32,.25); border-radius: 50%; background: var(--orange-soft);
}
.why-card h3 { font-size: 18px; }
.why-card p { color: var(--muted); margin: 0; font-size: 14.5px; }
.stats {
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy); color: var(--white); padding: 46px 24px;
}
.stat { text-align: center; }
.stat .ico { color: var(--orange); font-size: 22px; margin-bottom: 8px; }
.stat b { display: block; font-family: var(--display); font-size: 40px; color: #fff; }
.stat span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); font-family: var(--display); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: stretch; }
.dark-panel { background: var(--navy); color: var(--white); border-radius: var(--radius); overflow: hidden; min-height: 320px; }
.dark-panel .pad { padding: 36px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.logo-row { display: flex; gap: 18px; flex-wrap: wrap; margin: 22px 0 28px; }
.logo-chip {
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 18px;
  font-family: var(--display); font-weight: 800; letter-spacing: .08em; font-size: 13px;
}
.transform-split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.transform-split .lead-copy { font-size: 18px; color: var(--muted); max-width: 46ch; }
.lead-checks { list-style: none; display: grid; gap: 14px; margin: 28px 0 0; padding: 0; }
.lead-checks li {
  position: relative; padding-block: 16px; padding-inline: 48px 18px;
  background: var(--off); border-radius: 12px; border-inline-start: 4px solid var(--orange);
  font-size: 15.5px;
}
.lead-checks li::before {
  content: "✓"; position: absolute; inset-inline-start: 16px; top: 16px;
  color: var(--orange); font-weight: 800;
}
.path-panel {
  background: var(--navy); color: #fff; border-radius: 18px;
  padding: 32px 28px; display: grid; gap: 18px; position: relative; overflow: hidden;
}
.path-panel::after {
  content: ""; position: absolute; inset-inline-end: -60px; top: -70px;
  width: 200px; height: 200px; border-radius: 50%;
  border: 32px solid rgba(255,126,32,.16);
}
.path-label {
  position: relative; z-index: 1; margin: 0 0 4px;
  color: var(--orange); font-family: var(--display); font-size: 12px;
  font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.path-panel article {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: start;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 18px 16px;
}
.path-panel article span {
  font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--orange);
  line-height: 1;
}
.path-panel article h3 { font-size: 18px; margin: 0 0 6px; }
.path-panel article p { margin: 0; color: rgba(255,255,255,.72); font-size: 14.5px; }

.institute-band {
  background: var(--navy); color: var(--white); padding: 88px 0; position: relative; overflow: hidden;
}
.institute-band::before {
  content: ""; position: absolute; inset-inline-end: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 40px solid rgba(255,126,32,.12);
}
.institute-intro { max-width: 760px; margin-bottom: 36px; position: relative; z-index: 1; }
.institute-intro h2 { font-size: clamp(30px, 4.2vw, 46px); }
.institute-intro p { color: rgba(255,255,255,.78); font-size: 17px; max-width: 62ch; }
.trust-tiles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; z-index: 1;
}
.trust-tiles article {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 26px 22px; min-height: 220px;
}
.trust-tiles b {
  display: block; font-family: var(--display); font-size: 28px; color: var(--orange);
  margin-bottom: 14px; letter-spacing: .04em;
}
.trust-tiles h3 { font-size: 18px; margin: 0 0 10px; }
.trust-tiles p { margin: 0; color: rgba(255,255,255,.7); font-size: 14.5px; }
.trust-steps {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin: 28px 0 0; padding: 0; position: relative; z-index: 1;
}
.trust-steps li {
  display: flex; align-items: center; gap: 12px;
  border-top: 2px solid var(--orange); padding-top: 16px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
}
.trust-steps span { color: var(--orange); font-size: 13px; letter-spacing: .12em; }

.accredit-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: stretch; }
.accredit-split p { color: var(--muted); }
.cert-panel {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 42px 36px; display: flex; flex-direction: column; justify-content: center;
  min-height: 320px; position: relative; overflow: hidden;
}
.cert-panel::after {
  content: ""; position: absolute; inset-inline-end: -40px; bottom: -50px;
  width: 180px; height: 180px; border-radius: 50%; border: 28px solid rgba(255,126,32,.18);
}
.cert-panel h2 { font-size: clamp(28px, 3.4vw, 38px); position: relative; z-index: 1; }
.cert-panel p { color: rgba(255,255,255,.78); position: relative; z-index: 1; }
.cert-panel .btn { align-self: flex-start; margin-top: 8px; position: relative; z-index: 1; }

.support-cta {
  background: var(--navy); color: var(--white); padding: 34px 0;
  border-top: 3px solid var(--orange);
}
.support-cta .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.support-cta h2 { margin: 0; font-size: 28px; }
.support-cta .btn { background: var(--orange); }

.check-list { list-style: none; padding: 0; display: grid; gap: 12px; margin: 16px 0 28px; }
.check-list li {
  position: relative; padding-block: 16px; padding-inline: 44px 18px;
  background: var(--off); border-radius: 12px; border-inline-start: 4px solid var(--orange);
}
.check-list li::before {
  content: "✓"; position: absolute; inset-inline-start: 16px; top: 16px;
  color: var(--orange); font-weight: 800;
}
.learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.learn-grid article {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 18px;
}
.learn-grid .num {
  color: var(--orange); font-family: var(--display); font-weight: 800;
  font-size: 13px; letter-spacing: .12em; margin-bottom: 8px;
}
.learn-grid p { margin: 0; color: var(--muted); font-size: 15px; }
.accordion ul { margin: 10px 0 0; padding-inline-start: 18px; color: var(--muted); }
.course-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: .25s ease;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.course-card .thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.course-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.course-card:hover .thumb img { transform: scale(1.06); }
.badge {
  position: absolute; top: 14px; inset-inline-start: 14px;
  background: var(--orange); color: var(--white);
  font-family: var(--display); font-size: 11px; font-weight: 800;
  letter-spacing: .08em; padding: 5px 9px; border-radius: 5px;
}
.badge.cert {
  inset-inline-start: auto; inset-inline-end: 14px;
  background: rgba(10,25,47,.86);
}
.badge.iadc { background: #b42318; }
.badge.iwcf { background: #175cd3; }
.badge.hse { background: #067647; }
.course-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.course-card h3 { font-size: 18px; line-height: 1.25; }
.course-card .excerpt {
  color: var(--muted); font-size: 14px; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 12px;
}
.card-foot .price { font-size: 13px; }
.price { color: var(--orange); font-weight: 800; font-size: 16px; font-family: var(--display); }
.stars { color: var(--orange); font-size: 13px; font-weight: 700; }

.page-hero { min-height: 0; }
.page-hero .hero-inner { padding: 88px 0 56px; max-width: 760px; }
.hero.page-hero { min-height: 0; }
.courses-hero { min-height: 0; align-items: flex-end; }
.courses-hero .container { padding: 96px 0 48px; }
.courses-hero h1 { max-width: 16ch; font-size: clamp(36px, 5vw, 56px); }
.courses-hero .tag { margin-bottom: 22px; }
.courses-hero .search-bar { margin: 0 0 22px; }
.courses-hero .trust-row { margin: 0; }
.course-bar {
  background: var(--navy); color: #fff; padding: 16px 0;
  border-bottom: 3px solid var(--orange);
}
.course-bar .crumbs { margin: 0; color: rgba(255,255,255,.72); }
.container.course-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  grid-template-areas:
    "intro side"
    "body side";
  column-gap: 28px;
  row-gap: 12px;
  padding: 28px 0 64px;
  align-items: start;
}
.course-intro { grid-area: intro; min-width: 0; }
.course-body { grid-area: body; min-width: 0; }
.container.course-shell > aside {
  grid-area: side;
  position: sticky;
  top: var(--sti-sticky-top, 140px);
  align-self: start;
  height: max-content;
  max-height: calc(100dvh - var(--sti-sticky-top, 140px) - 16px);
  z-index: 3;
  min-width: 0;
}
.course-widget {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: auto; box-shadow: var(--shadow);
  max-height: inherit;
}
.course-widget > img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.widget-body { padding: 20px; }
.course-widget .price {
  font-size: 22px; line-height: 1.15; margin-bottom: 12px;
}
.course-widget .price.is-note {
  font-size: 14px; font-weight: 800; letter-spacing: 0; line-height: 1.4;
}
.widget-note { color: var(--muted); font-size: 13px; margin: 12px 0 18px; }
.course-widget h3 { font-size: 14px; margin-bottom: 8px; }
.include-rows { list-style: none; margin: 0 0 14px; }
.include-rows li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13.5px;
  align-items: flex-start;
}
.include-rows strong { text-align: end; max-width: 62%; }
.include-rows span { color: var(--muted); }
.widget-loc { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.course-preview {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 16 / 8; background: var(--navy); margin-bottom: 22px;
}
.course-preview img { width: 100%; height: 100%; object-fit: cover; }
.course-h1 { font-size: clamp(28px, 4vw, 40px); max-width: none; margin-bottom: 8px; overflow-wrap: anywhere; }
.course-sub { color: var(--muted); margin-bottom: 12px; }
.course-meta-inline {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  color: var(--muted); font-size: 13px; font-weight: 600; margin: 0 0 28px;
}
.course-meta-inline span {
  background: var(--off); border-radius: 999px; padding: 6px 12px;
}
.course-panel { margin-bottom: 28px; }
.course-panel h2 { font-size: 22px; margin-bottom: 12px; }
.course-panel h3 { font-size: 16px; margin: 18px 0 10px; }
.learn-checks {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
}
.learn-checks li {
  position: relative; padding-inline-start: 28px; font-size: 14.5px;
}
.learn-checks li::before {
  content: "✓"; position: absolute; inset-inline-start: 0; color: var(--orange); font-weight: 800;
}
.curriculum {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: #fff; margin-bottom: 28px;
}
.curriculum-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 16px 20px; background: var(--off); border-bottom: 1px solid var(--line);
}
.curriculum-head h2 { font-size: 18px; margin: 0; }
.curriculum-head p { margin: 0; color: var(--muted); font-size: 13px; }
.curr-mod { border-bottom: 1px solid var(--line); }
.curr-mod:last-child { border-bottom: 0; }
.curr-mod summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 20px; cursor: pointer; font-family: var(--display); font-weight: 700;
  list-style: none;
}
.curr-mod summary::-webkit-details-marker { display: none; }
.curr-mod-title { font-size: 14.5px; }
.curr-mod-count { color: var(--muted); font-size: 12px; font-weight: 600; white-space: nowrap; }
.curr-lessons { list-style: none; margin: 0; padding: 0 20px 12px; }
.curr-lessons li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-top: 1px dashed var(--line);
  color: var(--muted); font-size: 14px;
}
.curr-lessons svg { flex: none; margin-top: 2px; color: var(--orange); }

.archive-page { background: var(--off); }
.container.archive { display: grid; grid-template-columns: 280px 1fr; gap: 28px; padding: 48px 0 80px; }
.container.archive .course-grid { grid-template-columns: 1fr; }
.filters {
  border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  background: var(--white); height: max-content;
  position: sticky; top: calc(var(--topbar-h) + var(--header-h) + 12px);
  box-shadow: var(--shadow-sm);
}
.filters h3 { font-size: 18px; margin-bottom: 4px; }
.filter-group { border-top: 1px solid var(--line); padding: 14px 0; }
.filter-group:first-of-type { border-top: 0; padding-top: 8px; }
.filter-group strong {
  display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; font-family: var(--display);
}
.filter-group label { display: flex; gap: 8px; align-items: center; font-size: 14px; margin: 7px 0; }
.filter-group input[type="search"],
.filter-group select {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 12px; background: #fff; margin-top: 6px;
}
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 12px; }
.toolbar p { margin: 0; font-family: var(--display); font-weight: 800; color: var(--navy); }
.toolbar-note { color: var(--muted); font-size: 13px; }
.related-courses { background: var(--off); padding-top: 56px; padding-bottom: 24px; }
.empty {
  background: #fff; border: 1px dashed var(--line); border-radius: 14px;
  padding: 32px 24px; color: var(--muted);
}
.search-bar {
  display: flex; background: var(--white); border-radius: 10px; overflow: hidden; max-width: 760px; margin: 24px 0 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.search-bar input { flex: 1; border: 0; padding: 16px 18px; }
.search-bar button { border: 0; }

.course-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding: 48px 0 80px; }
.crumbs { font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 16px; }
.course-meta-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.meta-chip {
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  padding: 12px 16px; border-radius: 10px; min-width: 120px;
}
.meta-chip small { opacity: .7; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.enroll-card, .side-card { border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: var(--white); margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.enroll-card { background: var(--navy); color: var(--white); position: sticky; top: 104px; }
.enroll-card .price { font-size: 32px; color: var(--orange); }
.tabs { display: flex; gap: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.tabs button { background: none; border: 0; padding: 12px 0; font-family: var(--display); font-weight: 700; color: var(--muted); border-bottom: 2px solid transparent; }
.tabs button.is-active { color: var(--navy); border-color: var(--orange); }
.accordion details { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 8px; padding: 14px 16px; background: #fff; }
.accordion summary { cursor: pointer; font-weight: 700; font-family: var(--display); }

.steps { display: flex; gap: 18px; margin: 18px 0 28px; flex-wrap: wrap; }
.step { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 700; }
.step.is-active { color: var(--orange); }
.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; padding: 36px 0 80px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; background: var(--white);
}
.pay-option { display: flex; gap: 12px; align-items: center; border: 1px solid var(--line); border-radius: 10px; padding: 14px; margin-bottom: 10px; }
.pay-option:has(input:checked) { border-color: var(--orange); background: var(--orange-soft); }

.dash { display: grid; grid-template-columns: 240px 1fr; gap: 20px; padding: 28px 0 64px; }
.dash-nav { background: var(--navy); color: var(--white); border-radius: 14px; padding: 16px 0; height: fit-content; }
.dash-nav a { display: block; padding: 10px 18px; font-size: 14px; opacity: .85; }
.dash-nav a.is-active { background: rgba(255,126,32,.16); color: var(--orange); border-inline-start: 3px solid var(--orange); opacity: 1; }
.dash-intro { margin: 0 0 18px; color: var(--muted); }
.dash-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.dash-table th, .dash-table td { text-align: start; padding: 12px 10px; border-bottom: 1px solid var(--line); }
.dash-table th { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.stat-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 18px 0; }
.progress { height: 8px; background: var(--line); border-radius: 99px; overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--orange); }

.sparks-woo-wrap { padding: 36px 0 80px; }
.sparks-woo-wrap .woocommerce-notices-wrapper { margin-bottom: 16px; }
.woocommerce-info, .woocommerce-message, .woocommerce-error {
  border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; list-style: none;
  position: relative;
}
.woocommerce-info::before,
.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::after,
.woocommerce-message::after,
.woocommerce-error::after,
.show-password-input,
.woocommerce-password-strength,
.woocommerce-form-coupon-toggle,
.woocommerce-MyAccount-navigation-link--orders,
.woocommerce-MyAccount-navigation-link--downloads,
.woocommerce-MyAccount-navigation-link--edit-address,
.woocommerce-MyAccount-navigation-link--payment-methods {
  display: none !important;
  content: none !important;
}
.woocommerce-info { background: var(--off); border-inline-start: 3px solid var(--navy); }
.woocommerce-message { background: #eef8f1; border-inline-start: 3px solid var(--ok); }
.woocommerce-error { background: #fdeeee; border-inline-start: 3px solid var(--danger); }

.sparks-account-page {
  width: min(100% - 32px, var(--sti-container));
  max-width: var(--sti-container);
  margin: 28px auto 80px;
}
.sparks-account-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.woocommerce-account .woocommerce {
  display: block !important;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  float: none;
}
.sparks-account-nav,
.woocommerce-MyAccount-navigation {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 12px 0;
  height: fit-content;
  float: none !important;
  width: auto !important;
}
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation a {
  display: block; padding: 12px 18px; font-size: 14px; color: #fff; opacity: .85; font-weight: 700;
}
.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation li.is-active a {
  background: rgba(255,126,32,.16); color: var(--orange); border-inline-start: 3px solid var(--orange); opacity: 1;
}
.sparks-account-main,
.woocommerce-MyAccount-content {
  min-width: 0;
  float: none !important;
  width: auto !important;
}
.woocommerce-MyAccount-content h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.woocommerce-MyAccount-content h2 { font-size: 22px; margin: 8px 0 16px; }
.sparks-dash-head { margin-bottom: 22px; }
.sparks-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.sparks-dash-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  display: block;
  color: inherit;
}
.sparks-dash-tile b { display: block; font-size: 28px; line-height: 1.1; margin-bottom: 6px; }
.sparks-dash-tile span { color: var(--muted); font-size: 13px; font-weight: 600; }
.sparks-dash-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.sparks-dash-note { color: var(--muted); }
.sparks-my-courses { margin: 0 0 28px; }
.sparks-my-course-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.sparks-my-course-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 0 0 20px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.sparks-my-course-card .kicker,
.sparks-my-course-card h3,
.sparks-my-course-card .sparks-dash-note,
.sparks-my-course-card .hero-actions { padding-inline: 18px; }
.sparks-my-course-card h3 { margin: 0 0 8px; font-size: 20px; }
.sparks-my-course-card .kicker { margin: 14px 0 6px; }
.sparks-my-course-thumb { display: block; width: 100%; height: 140px; object-fit: cover; }
.woocommerce-EditAccountForm .form-row-first,
.woocommerce-EditAccountForm .form-row-last {
  float: none;
  width: 100%;
}
@media (min-width: 700px) {
  .woocommerce-EditAccountForm .form-row-first,
  .woocommerce-EditAccountForm .form-row-last {
    width: calc(50% - 8px);
    display: inline-block;
    vertical-align: top;
  }
  .woocommerce-EditAccountForm .form-row-first { margin-inline-end: 16px; }
}

.woocommerce-checkout .col2-set { display: grid; grid-template-columns: 1fr; gap: 20px; }
body.woocommerce-checkout,
body.woocommerce-cart {
  background: var(--off);
}
body.woocommerce-checkout .sparks-woo-wrap,
body.woocommerce-cart .sparks-woo-wrap,
body.woocommerce-checkout .woocommerce,
body.woocommerce-cart .woocommerce {
  width: min(100% - 48px, var(--sti-container));
  max-width: var(--sti-container);
  margin-inline: auto;
  padding: 28px 0 72px;
}
body.woocommerce-checkout .sparks-woo-wrap .woocommerce,
body.woocommerce-cart .sparks-woo-wrap .woocommerce {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.sparks-checkout-page { margin: 0; }
.sparks-checkout-head { margin: 0 0 28px; max-width: 46rem; }
.sparks-checkout-head .kicker { margin-bottom: 8px; }
.sparks-checkout-head h1 {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.1;
  margin: 0 0 10px;
}
.sparks-checkout-head p { color: var(--muted); margin: 0; font-size: 16px; }
form.checkout.woocommerce-checkout {
  display: block;
}
.sparks-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .9fr);
  gap: 24px;
  align-items: start;
}
.sparks-checkout-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.sparks-checkout-details h3 {
  font-size: 22px;
  margin: 0 0 18px;
}
.sparks-checkout-summary {
  position: sticky;
  top: 20px;
}
.sparks-checkout-summary h2 {
  font-size: 22px;
  margin: 0 0 16px;
}
.woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.woocommerce-checkout .form-row,
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last,
.woocommerce-checkout .form-row-wide {
  width: 100% !important;
  float: none !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
}
.woocommerce-checkout .form-row-wide { grid-column: 1 / -1; }
.woocommerce-checkout .form-row label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
}
.woocommerce-checkout #billing_company_field,
.woocommerce-checkout .sparks-hide-field {
  display: none !important;
}
.woocommerce-checkout #order_review_heading { margin-top: 0; font-size: 20px; }
.woocommerce-checkout-review-order {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.woocommerce-checkout-payment {
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-top: 16px;
}
.woocommerce-checkout-payment .wc_payment_methods { list-style: none; margin: 0; padding: 0; }
.woocommerce-checkout-payment .wc_payment_method { margin: 0 0 10px; }
.sparks-checkout-summary #place_order {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
}
.woocommerce-shipping-fields,
.woocommerce-additional-fields,
#ship-to-different-address,
.woocommerce-form-coupon-toggle {
  display: none !important;
}
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td {
  padding: 12px 8px; border-bottom: 1px solid var(--line); text-align: start;
}
.woocommerce form .form-row { margin-bottom: 14px; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; background: var(--white);
}
.woocommerce #place_order,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce .button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 8px; border: 0;
  font-family: var(--display); font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; font-size: 12px; background: var(--orange); color: #fff;
}
.woocommerce button.button:hover, .woocommerce a.button:hover, .woocommerce #place_order:hover {
  background: var(--orange-hover);
}
.sparks-woo-next { margin-top: 24px; }
.woocommerce-cart-form, .cart-collaterals { margin-top: 16px; }
body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals,
body.woocommerce-cart table.shop_table {
  width: 100%;
  max-width: 100%;
}
body.woocommerce-cart table.shop_table.cart {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
body.woocommerce-cart table.cart img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
body.woocommerce-cart td.product-name a {
  font-weight: 700;
  color: var(--navy);
  overflow-wrap: anywhere;
}
body.woocommerce-cart .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
body.woocommerce-cart .coupon .input-text {
  flex: 1 1 160px;
  min-width: 0 !important;
  width: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--white);
}
body.woocommerce-cart .cart_totals {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 18px 16px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 420px;
  margin-inline-start: auto;
}
body.woocommerce-cart .cart_totals h2 {
  font-size: 20px;
  margin: 0 0 14px;
}
body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  width: 100%;
}
body.woocommerce-cart a.remove {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fdecea;
  color: var(--danger);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
}

@media (max-width: 768px) {
  body.woocommerce-cart .woocommerce,
  body.woocommerce-cart .sparks-woo-wrap {
    width: min(100% - 24px, var(--sti-container));
    padding: 16px 0 48px;
  }
  body.woocommerce-cart .sparks-woo-wrap .woocommerce {
    width: 100%;
    padding: 0;
  }
  body.woocommerce-cart table.shop_table.cart,
  body.woocommerce-cart table.shop_table.cart thead,
  body.woocommerce-cart table.shop_table.cart tbody,
  body.woocommerce-cart table.shop_table.cart tfoot {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  body.woocommerce-cart table.shop_table.cart {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }
  body.woocommerce-cart table.shop_table.cart thead {
    display: none;
  }
  body.woocommerce-cart table.shop_table.cart tr.cart_item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 2px 12px;
    width: 100%;
    margin: 0 0 14px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
  }
  body.woocommerce-cart table.shop_table.cart td {
    display: block;
    width: auto;
    max-width: 100%;
    padding: 6px 0;
    border: 0;
    text-align: start;
  }
  body.woocommerce-cart table.shop_table.cart td.product-remove {
    grid-column: 1;
    grid-row: 1 / span 4;
    padding: 0;
  }
  body.woocommerce-cart table.shop_table.cart td.product-thumbnail {
    display: none;
  }
  body.woocommerce-cart table.shop_table.cart td.product-name,
  body.woocommerce-cart table.shop_table.cart td.product-price,
  body.woocommerce-cart table.shop_table.cart td.product-quantity,
  body.woocommerce-cart table.shop_table.cart td.product-subtotal {
    grid-column: 2;
  }
  body.woocommerce-cart table.shop_table.cart td.product-name {
    padding-top: 0;
    font-size: 16px;
  }
  body.woocommerce-cart table.shop_table.cart td.product-price,
  body.woocommerce-cart table.shop_table.cart td.product-quantity,
  body.woocommerce-cart table.shop_table.cart td.product-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 14px;
  }
  body.woocommerce-cart table.shop_table.cart td.product-price::before,
  body.woocommerce-cart table.shop_table.cart td.product-quantity::before,
  body.woocommerce-cart table.shop_table.cart td.product-subtotal::before {
    content: attr(data-title);
    font-weight: 700;
    color: var(--muted);
  }
  body.woocommerce-cart table.shop_table.cart td.product-subtotal {
    font-weight: 700;
  }
  body.woocommerce-cart table.shop_table.cart .quantity,
  body.woocommerce-cart table.shop_table.cart .qty {
    max-width: 88px;
    min-width: 0;
  }
  body.woocommerce-cart table.shop_table.cart tr:not(.cart_item) {
    display: block;
    width: 100%;
  }
  body.woocommerce-cart table.shop_table.cart td.actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 4px 0 0;
    background: transparent;
  }
  body.woocommerce-cart .coupon {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  body.woocommerce-cart .coupon .input-text,
  body.woocommerce-cart .coupon .button,
  body.woocommerce-cart td.actions > .button {
    width: 100% !important;
    flex: none;
  }
  body.woocommerce-cart button[name="update_cart"] {
    background: var(--orange-soft);
    color: var(--navy);
  }
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .cart_totals {
    width: 100% !important;
    max-width: none;
    float: none !important;
    margin: 0;
  }
  body.woocommerce-cart .cart_totals table,
  body.woocommerce-cart .cart_totals table tbody,
  body.woocommerce-cart .cart_totals table tr,
  body.woocommerce-cart .cart_totals table th,
  body.woocommerce-cart .cart_totals table td {
    display: block;
    width: 100%;
  }
  body.woocommerce-cart .cart_totals table tr {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
  body.woocommerce-cart .cart_totals table th,
  body.woocommerce-cart .cart_totals table td {
    padding: 0;
    border: 0;
    width: auto;
  }
  body.woocommerce-cart .woocommerce-message,
  body.woocommerce-cart .woocommerce-info,
  body.woocommerce-cart .woocommerce-error {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 1100px) {
  .woocommerce-account .woocommerce,
  .woocommerce-checkout .col2-set,
  .sparks-my-course-grid,
  .sparks-dash-stats,
  .sparks-account-shell,
  .sparks-checkout-grid,
  .woocommerce-billing-fields__field-wrapper { grid-template-columns: 1fr; }
  .sparks-checkout-summary { position: static; }
}

.site-footer {
  display: block !important;
  visibility: visible !important;
  width: 100%;
  max-width: none;
  clear: both;
  background: #071221;
  color: rgba(255,255,255,.78);
  padding: 0;
  border-top: 3px solid var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(0, .82fr)) minmax(220px, 1.15fr);
  gap: 40px 32px;
  padding: 64px 0 48px;
  align-items: start;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-lead {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 34ch;
  color: rgba(255,255,255,.78);
}
.footer-note {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.6;
  max-width: 34ch;
  color: rgba(255,255,255,.52);
}
.footer-linkedin {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  width: fit-content;
}
.footer-linkedin:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,126,32,.08);
}
.site-footer h4 {
  color: #fff;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 6px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.site-footer h4::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -1px;
  width: 28px;
  height: 2px;
  background: var(--orange);
}
.footer-col a {
  display: block;
  margin: 0;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
.site-footer a:hover { color: var(--orange); }
.site-footer .contact-line a { display: inline; margin: 0; color: inherit; }
.site-footer .contact-line a:hover { color: var(--orange); }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.contact-ico {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,126,32,.14);
  color: var(--orange);
  margin-top: 1px;
}
.footer-legal {
  background: #050d18;
  border-top: 1px solid rgba(255,255,255,.08);
}
.legal {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 24px;
  font-size: 13px;
  line-height: 1.5;
  flex-wrap: wrap;
}
.legal > span { display: inline-block; }
.legal .footer-credit { color: rgba(255,255,255,.7); }
.legal .footer-credit a {
  display: inline !important;
  margin: 0 !important;
  color: var(--orange) !important;
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal .footer-credit a:hover { color: #fff !important; }
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
  display: grid; place-items: center; font-size: 12px;
}
.contact-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.contact-fact {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 22px 20px; box-shadow: var(--shadow-sm); min-height: 180px; transition: .2s ease;
}
.contact-fact:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.contact-fact .ico {
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 14px;
  border-radius: 50%; background: var(--orange-soft); color: var(--orange);
  font-family: var(--display); font-weight: 800; font-size: 14px;
}
.contact-fact small {
  display: block; color: var(--orange); font-family: var(--display); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 800; margin-bottom: 6px;
}
.contact-fact strong { display: block; font-size: 16px; margin-bottom: 6px; word-break: break-word; }
.contact-fact p { margin: 0; color: var(--muted); font-size: 14px; }
.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: start; }
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 32px 28px; box-shadow: var(--shadow-sm);
}
.contact-form h2 { margin-bottom: 8px; }
.contact-form .form-lead { color: var(--muted); margin-bottom: 22px; }
.contact-form .field { margin-bottom: 14px; font-weight: 600; color: var(--navy); }
.contact-form input, .contact-form select, .contact-form textarea { font-weight: 500; }
.contact-form .form-note { font-size: 13px; color: var(--muted); margin: 14px 0 0; }
.contact-form .form-success {
  margin-top: 16px; padding: 12px 14px; border-radius: 10px;
  background: rgba(31,157,85,.1); color: var(--ok); font-weight: 600;
}
.contact-side .side-card a { color: var(--navy); }
.contact-side .side-card a:hover { color: var(--orange); }
.contact-map { height: min(380px, 56vw); min-height: 220px; background: var(--navy); }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.15); }

.testimonial { display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: start; }
.avatar {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--orange-soft);
}
.insight-grid { grid-template-columns: repeat(3, 1fr); }
.insight-card { overflow: hidden; padding: 0; }
.insight-card img { height: 140px; width: 100%; object-fit: cover; }
.insight-card div { padding: 16px; }
.insight-card strong { display: block; margin-bottom: 6px; }

.empty { padding: 40px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-card { padding: 0; overflow: hidden; }
.blog-card-link { display: block; color: inherit; }
.blog-card-cover {
  min-height: 168px;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  background: var(--navy);
}
.blog-chip {
  display: inline-block;
  width: fit-content;
  margin: 0;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.blog-card-cover h2 {
  color: #fff;
  font-size: 18px;
  line-height: 1.28;
  margin: 0;
}
.blog-card-body { padding: 16px 18px 18px; }
.blog-card-body time {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}
.blog-card-body p { margin: 0 0 14px; color: var(--muted); font-size: 14.5px; }
.blog-more { color: var(--orange); font-weight: 800; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-pager { margin-top: 28px; }
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, .75fr);
  gap: 28px;
  align-items: start;
}
.blog-article { padding: 36px 32px; }
.blog-article h2 { font-size: 26px; margin: 28px 0 12px; }
.blog-article h3 { font-size: 18px; margin: 22px 0 10px; }
.blog-article p { color: var(--text); font-size: 16.5px; line-height: 1.75; }
.blog-article ul, .blog-article ol { margin: 0 0 16px; padding-inline-start: 20px; color: var(--text); }
.blog-article a { color: var(--orange); font-weight: 700; }
.blog-article li { margin: 6px 0; line-height: 1.6; }
.blog-article .tldr {
  background: var(--off);
  border-inline-start: 4px solid var(--orange);
  padding: 16px 18px;
  border-radius: 12px;
  margin: 8px 0 24px;
}
.about-hero .crumbs a { color: rgba(255,255,255,.8); }
.about-hero .crumbs a:hover { color: var(--orange); }
.blog-hero {
  min-height: 0;
  background: var(--navy) !important;
  align-items: flex-end;
}
.blog-hero::before {
  background: linear-gradient(180deg, rgba(10,25,47,.2) 0%, rgba(10,25,47,.08) 100%);
}
.blog-hero .container { padding: 48px 0 36px; }
.blog-hero h1 {
  max-width: none;
  width: 100%;
  font-size: clamp(32px, 4.6vw, 52px);
}
.blog-hero .tag { max-width: none; margin-bottom: 0; }
.blog-side { position: sticky; top: calc(var(--header-h) + 20px); }
.blog-side .card { padding: 22px 20px; margin-bottom: 16px; }
.blog-side h3 { font-size: 16px; margin: 0 0 10px; }
.blog-side p { color: var(--muted); font-size: 14px; margin: 0 0 14px; }
.blog-side .btn { width: 100%; }
.blog-more-list { list-style: none; margin: 0; padding: 0; }
.blog-more-list li { margin: 0; padding: 8px 0; border-bottom: 1px solid var(--line); }
.blog-more-list a { font-weight: 700; font-size: 14px; }
body.blog .site-footer,
body.single-post .site-footer,
body.search .site-footer,
body.archive .site-footer {
  display: block !important;
  visibility: visible !important;
}
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { border: 1px solid var(--line); padding: 12px; text-align: start; }
.table th { background: var(--navy); color: var(--white); }
.check { color: var(--ok); font-weight: 800; }
.cross { color: var(--danger); font-weight: 800; }
.journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.notice { background: var(--off); border-inline-start: 4px solid var(--orange); padding: 12px 14px; font-size: 14px; margin-bottom: 18px; }

.about-hero {
  position: relative; min-height: 560px; color: #fff;
  display: flex; align-items: flex-end;
  background: var(--navy) center/cover no-repeat;
  border-bottom: 3px solid var(--orange);
}
.about-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,25,47,.9) 0%, rgba(10,25,47,.5) 62%, rgba(10,25,47,.28) 100%),
    linear-gradient(180deg, rgba(10,25,47,.12) 0%, rgba(10,25,47,.78) 100%);
}
[dir="rtl"] .about-hero::before {
  background:
    linear-gradient(270deg, rgba(10,25,47,.9) 0%, rgba(10,25,47,.5) 62%, rgba(10,25,47,.28) 100%),
    linear-gradient(180deg, rgba(10,25,47,.12) 0%, rgba(10,25,47,.78) 100%);
}
.about-hero .container { position: relative; z-index: 1; padding: 108px 0 64px; }
.about-hero h1 {
  font-size: clamp(40px, 5.6vw, 64px); max-width: 14ch;
  color: #fff; margin: 8px 0 14px; line-height: 1.05;
}
.about-hero h1 em { color: var(--orange); font-style: normal; }
.about-hero .tag {
  font-size: 18px; font-weight: 500; color: rgba(255,255,255,.88);
  margin: 0 0 28px; max-width: 44ch; font-family: var(--font);
}
.about-hero .hero-actions { margin: 0 0 28px; }
.about-hero .trust-row { margin: 0; }
.about-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-facts span {
  background: var(--off); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--navy);
}
.about-intro { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 72px; align-items: start; }
.about-intro h2 { font-size: clamp(28px, 3.4vw, 42px); max-width: 14ch; }
.about-intro .copy p { color: var(--muted); font-size: 17px; }
.about-intro .copy p:last-child { margin-bottom: 0; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.mv-card {
  background: #fff; border: 0; border-radius: 14px; padding: 32px 28px;
  box-shadow: var(--shadow-sm); border-inline-start: 4px solid var(--orange);
}
.mv-card svg { color: var(--orange); margin-bottom: 14px; display: block; }
.mv-card h3 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.mv-card p { margin: 0; font-size: 18px; color: var(--text); font-family: var(--display); font-weight: 700; line-height: 1.4; }
.heading-lines { display: flex; align-items: center; justify-content: center; gap: 14px; }
.heading-lines::before, .heading-lines::after { content: ""; width: 40px; height: 2px; background: var(--orange); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.timeline article {
  background: #fff; border-radius: 14px; padding: 28px 24px;
  border-top: 3px solid var(--orange); box-shadow: var(--shadow-sm);
}
.timeline h3 { font-size: 20px; margin-bottom: 8px; }
.timeline p { margin: 0; color: var(--muted); }
.ceo-photo .ceo-initials {
  display: grid; place-items: center; width: 100%; height: 100%; min-height: 280px;
  background: var(--navy-3); color: var(--orange); font-family: var(--display);
  font-size: 64px; font-weight: 800; letter-spacing: .04em;
}
.ceo-panel { background: var(--navy); color: #fff; }
.ceo {
  display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center;
}
.ceo-photo { position: relative; margin: 0; }
.ceo-photo::after {
  content: ""; position: absolute; z-index: 0; border: 2px solid var(--orange); border-radius: 16px;
  inset-block-start: 16px; inset-inline-end: -16px; inset-block-end: -16px; inset-inline-start: 16px;
}
.ceo img, .ceo-photo img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center;
  border-radius: 16px; background: #dfe3ea; display: block;
}
.ceo h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); }
.ceo p { color: rgba(255,255,255,.78); }
.ceo .quote {
  font-size: 56px; line-height: .7; color: var(--orange); font-family: Georgia, serif; margin: 0 0 12px;
}
.ceo .sign { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.ceo .sign strong { display: block; font-family: var(--display); font-size: 16px; color: #fff; }
.ceo .sign span { color: var(--orange); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.team-section { background: var(--off); }
.team-head { text-align: center; margin-bottom: 36px; }
.team-head h2 { margin-bottom: 12px; }
.team-lead { max-width: 62ch; margin: 0 auto; color: var(--muted); }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.who-grid article {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 0 0 22px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.who-grid article img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top center;
  display: block; margin-bottom: 16px; background: #dfe3ea;
}
.who-grid h3 { font-size: 18px; margin: 0 0 10px; padding-inline: 22px; }
.who-grid p { margin: 0; color: var(--muted); font-size: 14.5px; padding-inline: 22px; }
.why-6 { grid-template-columns: repeat(3, 1fr); }
.why-6 .why-card { text-align: start; padding: 28px 24px; min-height: 220px; }
.why-6 .icon { margin: 0 0 14px; width: 48px; height: 48px; }
.why-6 h3 { font-size: 17px; }
.why-6 p { font-size: 14px; }
.stats-4 { grid-template-columns: repeat(4, 1fr); }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cap-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  position: relative; padding: 32px 26px 28px; transition: .2s ease;
}
.cap-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cap-card .num {
  font-family: var(--display); font-size: 13px; letter-spacing: .16em;
  color: var(--orange); font-weight: 800; margin-bottom: 12px;
}
.cap-card svg { color: var(--orange); margin-bottom: 12px; display: block; }
.cap-card h3 { font-size: 17px; }
.cap-card p { margin: 0; color: var(--muted); font-size: 14px; }
.faculty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.faculty-card { text-align: center; padding: 32px 20px; border: 1px solid var(--line); box-shadow: none; }
.faculty-card svg { color: var(--orange); margin: 0 auto 14px; display: block; }
.faculty-card h3 { font-size: 16px; }
.faculty-card p { margin: 0; font-size: 14px; color: var(--muted); }
.sectors { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.sector-chip { background: var(--off); border-radius: 999px; padding: 10px 18px; font-size: 13px; font-weight: 600; }

@media (max-width: 1100px) {
  :root { --header-h: 68px; --topbar-h: 0px; }
  .topbar { display: none; }
  .why-grid, .why-grid.why-3, .stats, .stat-mini, .journey, .insight-grid, .about-features, .why-6, .stats-4, .timeline, .faculty-grid, .cap-grid, .mv-grid, .learn-grid, .contact-facts, .trust-tiles, .trust-steps, .who-grid, .cert-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .container.archive, .course-layout, .checkout-grid, .dash, .split, .about-story, .about-intro, .ceo, .contact-layout, .transform-split, .accredit-split, .blog-layout { grid-template-columns: 1fr; }
  .blog-side { position: static; }
  .container.course-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "side"
      "body";
    gap: 20px;
    padding: 20px 0 48px;
  }
  .container.archive .course-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; padding: 48px 0 36px; }
  .footer-brand { grid-column: 1 / -1; max-width: 560px; }
  .learn-checks { grid-template-columns: 1fr; }
  .container.course-shell > aside {
    position: static;
    width: 100%;
    max-width: none;
    max-height: none;
    top: auto;
  }
  .course-widget { max-width: 100%; max-height: none; overflow: visible; }
  .course-preview { aspect-ratio: 16 / 9; }
  .ceo-photo { max-width: 280px; }
  .featured-mini { position: relative; inset: auto; transform: none; width: 100%; max-width: 420px; margin: 28px auto 90px; }
  .hero { min-height: 0; }
  .hero-inner { padding: 64px 0 48px; max-width: none; }
  .enroll-card { position: static; }
  .header-shape { display: none; }
  .topbar-inner { font-size: 12px; flex-wrap: wrap; gap: 8px; padding-block: 6px; }
  .header-inner {
    display: flex; align-items: center; gap: 10px;
    grid-template-columns: none;
  }
  .menu-toggle {
    display: inline-flex !important;
    order: 3;
    flex-shrink: 0;
  }
  .logo {
    order: 1;
    margin-inline-end: auto;
    max-width: 148px;
    padding: 4px 8px;
  }
  .nav { order: 4; }
  .logo img { height: 30px; }
  .header-actions {
    display: flex !important;
    order: 2;
    gap: 8px;
    margin-inline-end: 4px;
  }
  .header-actions .header-dash { display: none !important; }
  .header-actions .lang {
    padding: 6px 8px;
    font-size: 11px;
  }
  body.sparks-theme nav.nav {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    inset-inline-start: 0 !important;
    inset-inline-end: auto !important;
    width: min(86vw, 340px) !important;
    height: 100dvh !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 18px 18px 28px !important;
    background: #071221 !important;
    z-index: 100050 !important;
    transform: translate3d(-105%, 0, 0) !important;
    transition: transform .28s ease !important;
    overflow-y: auto !important;
    box-shadow: 16px 0 40px rgba(0,0,0,.28);
  }
  [dir="rtl"] body.sparks-theme nav.nav {
    transform: translate3d(105%, 0, 0) !important;
    box-shadow: -16px 0 40px rgba(0,0,0,.28);
  }
  body.sparks-theme.menu-open nav.nav,
  body.sparks-theme nav.nav.is-open,
  [dir="rtl"] body.sparks-theme.menu-open nav.nav,
  [dir="rtl"] body.sparks-theme nav.nav.is-open {
    transform: none !important;
  }
  body.admin-bar nav.nav {
    top: var(--wp-admin--admin-bar-height, 46px) !important;
    height: calc(100dvh - var(--wp-admin--admin-bar-height, 46px)) !important;
  }
  body.menu-open .site-header {
    z-index: 100060 !important;
  }
  body.menu-open nav.nav,
  body.menu-open nav.nav a,
  body.menu-open nav.nav button {
    pointer-events: auto !important;
    position: relative;
    z-index: 2;
  }
  .nav > a,
  .nav-item > a {
    display: flex;
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 14px;
    letter-spacing: .08em;
  }
  .nav.is-open .nav-sub {
    display: block;
    position: static;
    border: 0;
    box-shadow: none;
    min-width: 0;
    padding: 0 0 8px 8px;
    background: transparent;
  }
  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-family: var(--display);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
  }
  .nav-close {
    width: 40px; height: 40px; border: 0; border-radius: 8px;
    background: rgba(255,255,255,.08); color: #fff; font-size: 28px; line-height: 1;
    cursor: pointer;
  }
  .nav-drawer-foot {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
  }
  .nav-drawer-foot .btn { width: 100%; }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(7, 18, 33, .55);
    z-index: 100040;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
  }
  .menu-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  body.menu-open { overflow: hidden; }
  .filters { position: static; }
  .section, .institute-band { padding: 64px 0; }
  .path-panel, .cert-panel, .dark-panel .pad { padding: 28px 22px; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .container { width: min(100% - 24px, var(--sti-container)); max-width: var(--sti-container); }
  body.woocommerce-checkout .woocommerce,
  body.woocommerce-checkout .sparks-woo-wrap {
    width: min(100% - 24px, var(--sti-container));
    padding: 16px 0 48px;
  }
  body.woocommerce-checkout .sparks-woo-wrap .woocommerce {
    width: 100%;
    padding: 0;
  }
  .why-grid, .why-grid.why-3, .stats, .course-grid, .stat-mini, .form-grid, .journey, .insight-grid, .about-features, .why-6, .stats-4, .timeline, .faculty-grid, .cap-grid, .mv-grid, .learn-grid, .contact-facts, .trust-tiles, .trust-steps, .who-grid, .cert-grid, .footer-grid, .blog-grid { grid-template-columns: 1fr; }
  .blog-article { padding: 22px 18px; }
  .about-story img { height: 280px; }
  .header-actions .login-link, .cart-link, .topbar-welcome { display: none; }
  .logo { max-width: 136px; padding: 3px 7px; }
  .logo img { height: 28px; }
  .support-cta .container, .section-head, .toolbar, .trust-bar .container { flex-direction: column; align-items: stretch; }
  .footer-brand { grid-column: auto; max-width: none; }
  .footer-lead, .footer-note { max-width: none; }
  .footer-grid { padding: 40px 0 28px; gap: 28px; }
  .legal {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 16px 0 20px;
  }
  .hero h1, .about-hero h1 { font-size: clamp(28px, 8.4vw, 42px); max-width: none; }
  .hero p.lead, .about-hero .tag { font-size: 16px; max-width: none; }
  .hero-inner, .about-hero .container { padding: 48px 0 36px; }
  .hero-actions .btn, .support-cta .btn { width: 100%; }
  .section, .institute-band { padding: 48px 0; }
  .section-head { margin-bottom: 24px; }
  .featured-mini { margin: 20px auto 24px; padding: 20px; }
  .trust-bar { position: relative; }
  .course-h1 { font-size: clamp(24px, 7vw, 32px); }
  .course-meta-inline { gap: 8px; }
  .course-bar { padding: 12px 0; }
  .include-rows li { flex-direction: column; gap: 2px; }
  .include-rows strong { text-align: start; max-width: none; }
  .course-widget .price.is-note { font-size: 14px; }
  .curriculum-head, .curr-mod summary { flex-wrap: wrap; align-items: flex-start; }
  .curr-mod-count { white-space: normal; }
  .search-bar { flex-direction: column; }
  .search-bar button { width: 100%; border-radius: 0 0 10px 10px; }
  .path-panel article { grid-template-columns: 40px 1fr; }
  .stats { padding: 28px 16px; }
  .stat b { font-size: 32px; }
  .support-cta h2 { font-size: 22px; }
  .btn { min-height: 44px; }
  .container:has(> .table) { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table { min-width: 480px; }
}
