@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;
  --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: hidden; }
#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: hidden;
}
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(--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;
  background: rgba(10, 25, 47, 0.96);
  color: var(--white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: visible;
}
.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;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 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;
}
.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: 6px; }
.nav { display: flex; justify-content: center; align-items: center; gap: 8px; position: relative; z-index: 1; }
.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;
}
.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; }
.menu-toggle {
  display: none; align-items: center; justify-content: center;
  background: none; border: 0; color: var(--white);
  width: 44px; height: 44px; min-width: 44px; font-size: 22px; border-radius: 8px;
}

.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-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; min-height: 2.4em; }
.course-card .excerpt { color: var(--muted); font-size: 14px; margin: 0; }
.meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 13px; }
.card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; }
.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: 380px; }
.page-hero .hero-inner { padding-bottom: 70px; max-width: none; }
.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); }
.course-shell {
  display: grid; grid-template-columns: 1fr 340px; gap: 28px;
  padding: 28px 0 64px; align-items: start;
}
.course-shell > aside {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 12px);
  align-self: start;
  z-index: 4;
}
.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; }
.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); }
.course-widget {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow);
}
.course-widget > img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.widget-body { padding: 20px; }
.course-widget .price { font-size: 26px; margin-bottom: 14px; }
.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;
}
.include-rows span { color: var(--muted); }
.widget-loc { font-size: 13px; color: var(--muted); margin-bottom: 12px; }

.container.archive { display: grid; grid-template-columns: 280px 1fr; gap: 28px; padding: 48px 0 80px; }
.filters { border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: var(--white); height: max-content; position: sticky; top: 104px; box-shadow: var(--shadow-sm); }
.filters h3 { font-size: 18px; }
.filter-group { border-top: 1px solid var(--line); padding: 14px 0; }
.filter-group label { display: flex; gap: 8px; align-items: center; font-size: 14px; margin: 7px 0; }
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 12px; }
.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;
}
.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); }

.woocommerce-account .woocommerce {
  display: grid; grid-template-columns: 240px 1fr; gap: 20px; align-items: start;
}
.woocommerce-MyAccount-navigation {
  background: var(--navy); color: var(--white); border-radius: 14px; padding: 16px 0; height: fit-content;
}
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation a {
  display: block; padding: 10px 18px; font-size: 14px; color: #fff; opacity: .85;
}
.woocommerce-MyAccount-navigation .is-active a {
  background: rgba(255,126,32,.16); color: var(--orange); border-inline-start: 3px solid var(--orange); opacity: 1;
}
.woocommerce-MyAccount-content { min-width: 0; }
.woocommerce-MyAccount-content h2, .woocommerce-MyAccount-content h3 { font-size: 20px; }
.sparks-dash-note { color: var(--muted); }
.woocommerce-MyAccount-content table.shop_table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.woocommerce-MyAccount-content table.shop_table th,
.woocommerce-MyAccount-content table.shop_table td {
  text-align: start; padding: 12px 10px; border-bottom: 1px solid var(--line);
}

.woocommerce-checkout .col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.woocommerce-checkout #order_review_heading { margin-top: 28px; }
.woocommerce-checkout-review-order {
  background: var(--off); border: 1px solid var(--line); border-radius: 14px; padding: 20px;
}
.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; }

@media (max-width: 1100px) {
  .woocommerce-account .woocommerce,
  .woocommerce-checkout .col2-set { grid-template-columns: 1fr; }
}

.site-footer { background: #071221; color: rgba(255,255,255,.78); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr 1.25fr; gap: 28px; padding-bottom: 36px; }
.site-footer h4 { color: #fff; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.site-footer a { display: block; margin: 7px 0; font-size: 14px; }
.site-footer a:hover { color: var(--orange); }
.legal { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; display: flex; justify-content: space-between; font-size: 13px; }
.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-line { display: flex; gap: 10px; margin: 8px 0; font-size: 14px; }
.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); }
.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-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; }
  .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 { grid-template-columns: 1fr 1fr; }
  .archive, .course-layout, .course-shell, .checkout-grid, .dash, .split, .about-story, .about-intro, .ceo, .contact-layout, .transform-split, .accredit-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .learn-checks { grid-template-columns: 1fr; }
  .course-shell > aside { position: static; width: 100%; max-width: 420px; }
  .course-widget { max-width: 100%; }
  .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; }
  .nav { display: none; }
  .nav.is-open {
    display: flex !important; flex-direction: column; align-items: stretch;
    position: fixed !important; top: 0; inset-inline-start: 0;
    width: min(86vw, 340px); height: 100dvh; max-height: none;
    background: #071221; padding: 16px 20px 24px; z-index: 100050;
    transform: none !important; overflow-y: auto;
  }
  .nav.is-open .nav-sub { display: block; position: static; border: 0; box-shadow: none; min-width: 0; padding: 0 0 8px 12px; }
  .header-shape { display: none; }
  .topbar-inner { font-size: 12px; flex-wrap: wrap; gap: 8px; padding-block: 6px; }
  .menu-toggle { display: inline-flex; }
  .filters { position: static; }
  .header-inner {
    display: flex; align-items: center; gap: 10px;
    grid-template-columns: none;
  }
  .logo { margin-inline-end: auto; max-width: min(210px, 52vw); }
  .header-actions { order: 2; gap: 8px; }
  .menu-toggle { order: 3; }
  .nav { order: 4; }
  .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(--container)); }
  .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 { grid-template-columns: 1fr; }
  .about-story img { height: 280px; }
  .header-actions .login-link, .cart-link, .topbar-welcome { display: none; }
  .header-actions .btn { min-height: 40px; padding: 0 14px; font-size: 11px; }
  .logo { max-width: min(188px, 58vw); padding: 4px 8px; }
  .logo img { height: 36px; }
  .support-cta .container, .legal, .section-head, .toolbar, .trust-bar .container { flex-direction: column; align-items: stretch; }
  .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; }
  .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; }
}
