@font-face {
  font-display: swap;
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/IBMPlexSansArabic-Regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/IBMPlexSansArabic-Medium.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/IBMPlexSansArabic-SemiBold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "IBM Plex Sans Arabic";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/IBMPlexSansArabic-Bold.ttf") format("truetype");
}

:root {
  --purple-950: #2e1b44;
  --purple-800: #4c2776;
  --purple-500: #856ea0;
  --purple-100: #f1edf6;
  --gold: #f0b83f;
  --gold-strong: #d79a22;
  --teal: #2aa6a1;
  --ink: #1f1c24;
  --muted: #68616f;
  --line: #e7e1ed;
  --surface: #ffffff;
  --soft: #faf9fc;
  --focus: #2aa6a1;
  --font-gov: "IBM Plex Sans Arabic", "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  --font-ar: var(--font-gov);
  --font-en: var(--font-gov);
  --shadow: 0 18px 45px rgba(46, 27, 68, 0.14);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-en);
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.lang-ar {
  font-family: var(--font-ar);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  background: #fff;
  border: 2px solid var(--focus);
  border-radius: 6px;
  color: var(--purple-950);
  font-weight: 800;
  inset-inline-start: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transform: translateY(calc(-100% - 28px));
  transition: transform 160ms ease;
  z-index: 100;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.content-en {
  direction: ltr;
  text-align: left;
}

body.lang-ar .content-en {
  direction: rtl;
  text-align: right;
}

.site-header {
  align-items: center;
  background: rgba(46, 27, 68, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  direction: ltr;
  display: flex;
  gap: 28px;
  inset: 0 0 auto;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  position: fixed;
  z-index: 20;
}

body.lang-ar .site-header {
  flex-direction: row-reverse;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 126px;
}

.brand img {
  height: 48px;
  object-fit: contain;
  width: auto;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
  line-height: 1;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  margin-top: 5px;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  justify-content: center;
}

body.lang-ar .main-nav {
  direction: rtl;
}

.main-nav a {
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
  min-height: 46px;
  position: relative;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.main-nav a::after {
  background: var(--gold);
  bottom: -12px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 100%;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.language-switch {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  display: inline-flex;
  gap: 4px;
  padding: 3px;
}

.language-icon {
  height: 18px;
  margin-inline: 7px 3px;
  width: 18px;
}

.language-icon path,
.language-icon circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.language-switch button {
  background: transparent;
  border: 0;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  min-height: 30px;
  min-width: 44px;
  padding: 0 10px;
}

.language-switch button.active {
  background: #fff;
  color: var(--purple-950);
}

.nav-cta,
.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 46px;
  padding: 0 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta,
.button.primary {
  background: var(--gold);
  color: #21152d;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  background: var(--purple-950);
  color: #fff;
  min-height: 800px;
  overflow: hidden;
  position: relative;
}

.hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(46, 27, 68, 0.97) 0%, rgba(46, 27, 68, 0.78) 46%, rgba(46, 27, 68, 0.18) 100%),
    linear-gradient(0deg, rgba(46, 27, 68, 0.78) 0%, rgba(46, 27, 68, 0.04) 48%);
  inset: 0;
  position: absolute;
}

.hero-content {
  align-items: center;
  direction: ltr;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) 430px;
  margin: 0 auto;
  min-height: 800px;
  padding: 108px 0 66px;
  position: relative;
  width: var(--container);
  z-index: 1;
}

body.lang-ar .hero-shade {
  background:
    linear-gradient(270deg, rgba(46, 27, 68, 0.97) 0%, rgba(46, 27, 68, 0.78) 46%, rgba(46, 27, 68, 0.18) 100%),
    linear-gradient(0deg, rgba(46, 27, 68, 0.78) 0%, rgba(46, 27, 68, 0.04) 48%);
}

body.lang-ar .hero-content {
  direction: rtl;
}

.program-mark {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  height: 74px;
  margin-bottom: 22px;
  object-fit: contain;
  padding: 12px 18px;
  width: 168px;
}

.hero-kicker {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

body.lang-ar .hero-kicker {
  text-transform: none;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 24px;
  max-width: 920px;
  text-wrap: balance;
}

body.lang-ar .hero h1 {
  font-size: clamp(2.55rem, 4.3vw, 4.25rem);
  font-weight: 700;
  line-height: 1.18;
  max-width: 880px;
}

.hero-intro {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.8;
  margin: 0;
  max-width: 720px;
  text-wrap: pretty;
}

body.lang-ar .hero-intro {
  font-size: clamp(1.1rem, 1.35vw, 1.32rem);
  line-height: 2;
  max-width: 760px;
}

.hero-facts {
  border-left: 4px solid var(--gold);
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding-left: 18px;
}

body.lang-ar .hero-facts {
  border-left: 0;
  border-right: 4px solid var(--gold);
  padding-left: 0;
  padding-right: 18px;
}

.hero-facts span {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  font-size: 1.06rem;
  font-weight: 800;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-facts svg {
  color: var(--gold);
  height: 26px;
  width: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-cohort-note {
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 700;
  gap: 10px;
  line-height: 1.7;
  margin: 18px 0 0;
  max-width: 640px;
}

.hero-cohort-note::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
  height: 9px;
  width: 9px;
}

.hero-panel {
  backdrop-filter: blur(18px);
  background: rgba(33, 21, 45, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  padding: 22px;
}

.panel-eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.lang-ar .panel-eyebrow {
  text-transform: none;
}

.panel-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 28px 1fr;
}

body.lang-ar .panel-row {
  grid-template-columns: 1fr 34px;
}

body.lang-ar .panel-row > svg {
  grid-column: 2;
  grid-row: 1;
}

.panel-row > svg {
  color: var(--gold);
  height: 22px;
  margin-top: 2px;
  width: 22px;
}

.hero-panel strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.28;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 4px 0 0;
}

.hero-panel p:empty {
  display: none;
}

.panel-label {
  color: var(--gold);
  display: block;
  font-size: 0.7rem;
  font-weight: 900;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.panel-button {
  margin-top: 4px;
  width: 100%;
}

.video-toggle {
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  bottom: 34px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  position: absolute;
  right: 34px;
  width: 54px;
  z-index: 2;
}

body.lang-ar .video-toggle {
  left: 34px;
  right: auto;
}

.video-toggle svg {
  height: 24px;
  width: 24px;
}

.decision-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(46, 27, 68, 0.08);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(280px, 1.18fr);
  margin: -36px auto 0;
  position: relative;
  width: var(--container);
  z-index: 3;
}

.decision-strip div {
  border-inline-end: 1px solid var(--line);
  min-height: 104px;
  padding: 22px 20px;
}

.decision-strip div:last-child {
  border-inline-end: 0;
}

.decision-strip div:last-child strong {
  font-size: clamp(1.34rem, 1.8vw, 1.95rem);
  white-space: nowrap;
}

.decision-strip strong {
  color: var(--purple-800);
  display: block;
  font-size: clamp(1.42rem, 2vw, 2.12rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.decision-strip span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 10px;
}

.section {
  padding: 86px 0;
}

section[id],
.partners {
  scroll-margin-top: 92px;
}

.section-grid,
.registration {
  direction: ltr;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
  margin: 0 auto;
  width: var(--container);
}

body.lang-ar .section-grid {
  direction: rtl;
}

.section-copy h2,
.section-heading h2,
.registration-copy h2 {
  color: var(--purple-950);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 18px;
  text-wrap: balance;
}

body.lang-ar .section-copy h2,
body.lang-ar .section-heading h2,
body.lang-ar .registration-copy h2 {
  font-weight: 700;
  line-height: 1.22;
}

.section-copy p,
.section-heading p,
.registration-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  margin: 0 0 16px;
  max-width: 720px;
  text-wrap: pretty;
}

.registration-availability {
  background: rgba(76, 39, 118, 0.08);
  border-inline-start: 3px solid var(--gold);
  border-radius: 8px;
  color: var(--purple-950);
  font-weight: 700;
  line-height: 1.8;
  margin-top: 8px;
  padding: 14px 16px;
}

body.lang-ar .registration-availability {
  border-inline-end: 3px solid var(--gold);
  border-inline-start: 0;
}

body.lang-ar .section-copy p,
body.lang-ar .section-heading p,
body.lang-ar .registration-copy p,
body.lang-ar .week-cards p,
body.lang-ar .goal-grid p,
body.lang-ar .audience-grid p,
body.lang-ar .outcome-grid p,
body.lang-ar .experience-grid p,
body.lang-ar .journey-timeline p,
body.lang-ar .credential-grid p,
body.lang-ar .tab-panel p,
body.lang-ar .tab-panel li,
body.lang-ar .module-list span,
body.lang-ar .hero-panel p {
  line-height: 1.9;
}

.overview-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.overview-metrics div {
  background: var(--soft);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  padding: 16px;
}

.overview-metrics strong {
  color: var(--purple-800);
  display: block;
  font-size: 1.6rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.overview-metrics span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 8px;
}

.media-stack {
  display: grid;
  gap: 18px;
}

.overview-image-frame {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: block;
  max-width: 520px;
  overflow: visible;
  place-self: start center;
  width: 100%;
}

.overview-image-frame img {
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(46, 27, 68, 0.08);
  display: block;
  height: auto;
  width: 100%;
}

.partner-strip {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  padding: 18px;
}

.partner-strip img {
  margin: auto;
  max-height: 70px;
  object-fit: contain;
}

.audience,
.curriculum,
.detail-tabs {
  background: var(--soft);
}

.audience,
.curriculum {
  background: linear-gradient(180deg, #faf9fc 0%, #fff 100%);
}

.section-heading {
  margin: 0 auto 36px;
  width: var(--container);
}

.week-cards,
.goal-grid,
.audience-grid,
.outcome-grid,
.experience-grid,
.journey-timeline,
.credential-grid,
.tabs,
.testimonial-shell {
  margin: 0 auto;
  width: var(--container);
}

.audience-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.audience-grid article,
.experience-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(46, 27, 68, 0.08);
  min-height: 230px;
  padding: 24px;
}

.audience-grid article {
  display: flex;
  flex-direction: column;
}

.audience-grid span {
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.audience-grid h3,
.experience-grid h3 {
  color: var(--purple-950);
  font-size: 1.04rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.audience-grid p,
.experience-grid p {
  color: var(--muted);
  margin: 0;
}

.outcomes {
  background: #fff;
}

.outcome-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(215, 154, 34, 0.78);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(46, 27, 68, 0.08);
  min-height: 224px;
  padding: 26px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.outcome-grid article:hover {
  border-color: var(--purple-800);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.outcome-grid svg {
  color: var(--gold-strong);
  height: 38px;
  width: 38px;
}

.outcome-grid h3 {
  color: var(--purple-950);
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 18px 0 10px;
}

.outcome-grid p {
  color: var(--muted);
  margin: 0;
}

.learning-experience {
  background:
    linear-gradient(90deg, rgba(46, 27, 68, 0.96), rgba(76, 39, 118, 0.94)),
    var(--purple-950);
  color: #fff;
}

.learning-experience .section-heading h2,
.learning-experience .section-heading p {
  color: #fff;
}

.learning-experience .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.experience-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  min-height: 188px;
}

.experience-grid article::before {
  background: var(--gold);
  border-radius: 99px;
  content: "";
  display: block;
  height: 4px;
  margin-bottom: 22px;
  width: 42px;
}

.experience-grid h3 {
  color: #fff;
}

.experience-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.journey-timeline {
  counter-reset: journey;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.journey-timeline::before {
  background: linear-gradient(90deg, var(--purple-800), var(--gold));
  content: "";
  height: 3px;
  inset-inline: 0;
  position: absolute;
  top: 35px;
}

.journey-timeline article {
  counter-increment: journey;
  padding: 68px 22px 0;
  position: relative;
}

.journey-timeline article::before {
  align-items: center;
  background: var(--purple-800);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(76, 39, 118, 0.16);
  color: #fff;
  content: counter(journey);
  display: flex;
  font-size: 0.86rem;
  font-weight: 900;
  height: 48px;
  inset-inline-start: 22px;
  justify-content: center;
  position: absolute;
  top: 12px;
  width: 48px;
  z-index: 1;
}

.journey-timeline article:last-child::before {
  background: var(--gold-strong);
}

.journey-timeline span {
  color: var(--gold-strong);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

body.lang-ar .journey-timeline span {
  text-transform: none;
}

.journey-timeline h3 {
  color: var(--purple-950);
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.journey-timeline p {
  color: var(--muted);
  margin: 0;
}

.credentials {
  background: #fff;
  padding-top: 34px;
}

.credential-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.credential-grid article {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(46, 27, 68, 0.08);
  display: grid;
  grid-template-columns: minmax(136px, 0.44fr) minmax(0, 1.56fr);
  min-height: 212px;
  overflow: hidden;
}

.credential-logo-panel {
  align-items: center;
  align-self: stretch;
  border-inline-end: 1px solid rgba(76, 39, 118, 0.14);
  display: flex;
  justify-content: center;
  min-height: 100%;
  padding: 24px 18px;
  position: relative;
}

body.lang-ar .credential-logo-panel {
  border-inline-end: 0;
  border-inline-start: 1px solid rgba(76, 39, 118, 0.14);
}

.credential-logo-panel::before {
  background: linear-gradient(180deg, transparent, rgba(240, 184, 63, 0.58), transparent);
  content: "";
  height: 66%;
  inset-inline-end: -1px;
  position: absolute;
  top: 17%;
  width: 2px;
}

body.lang-ar .credential-logo-panel::before {
  inset-inline-end: auto;
  inset-inline-start: -1px;
}

.credential-logo {
  background: transparent;
  border: 0;
  filter: drop-shadow(0 10px 18px rgba(46, 27, 68, 0.1));
  object-fit: contain;
  width: 100%;
}

.cmi-logo {
  max-height: 112px;
  max-width: 190px;
}

.gini-logo {
  max-height: 86px;
  max-width: 190px;
}

.credential-copy {
  display: grid;
  min-height: 100%;
  padding: 28px 30px;
}

.credential-code {
  color: var(--gold-strong);
  display: block;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.credential-grid h3 {
  color: var(--purple-950);
  font-size: 1.22rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.credential-grid p {
  color: var(--muted);
  margin: 0;
}

.credential-grid small {
  align-self: end;
  color: var(--purple-800);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.5;
  margin-top: 18px;
}

body.lang-en .credential-grid small {
  justify-self: start;
}

body.lang-ar .credential-grid small {
  justify-self: end;
}

.week-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.week-cards article,
.goal-grid article,
.testimonial-card,
.registration-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(46, 27, 68, 0.08);
}

.week-cards article {
  padding: 30px;
  position: relative;
}

.week-cards article::before {
  background: linear-gradient(180deg, var(--purple-800), var(--gold));
  border-radius: 99px;
  content: "";
  height: calc(100% - 48px);
  left: 0;
  position: absolute;
  top: 24px;
  width: 4px;
}

body.lang-ar .week-cards article::before {
  left: auto;
  right: 0;
}

.week-cards span {
  color: var(--purple-800);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.week-cards h3 {
  color: var(--purple-950);
  font-size: 1.24rem;
  line-height: 1.35;
  margin: 10px 0 12px;
}

.week-cards p {
  color: var(--muted);
  margin: 0;
}

.goal-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.goal-grid article {
  border-top: 3px solid rgba(215, 154, 34, 0.78);
  min-height: 224px;
  padding: 26px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.goal-grid article:hover {
  border-color: var(--purple-800);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.goal-grid svg {
  color: var(--gold-strong);
  height: 38px;
  width: 38px;
}

.goal-grid h3 {
  color: var(--purple-950);
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 18px 0 10px;
}

.goal-grid p {
  color: var(--muted);
  margin: 0;
}

.tabs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(46, 27, 68, 0.1);
  overflow: hidden;
}

.tab-list {
  background: #f5f1f8;
  display: flex;
  gap: 0;
}

.tab-button {
  background: transparent;
  border: 0;
  border-inline-end: 1px solid rgba(76, 39, 118, 0.16);
  color: var(--purple-950);
  cursor: pointer;
  flex: 1 1 0;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  min-height: 56px;
  padding: 0 18px;
  touch-action: manipulation;
}

.tab-button.active {
  background: var(--purple-800);
  color: #fff;
}

.tab-panel {
  padding: 32px;
}

.tab-panel h3 {
  color: var(--purple-950);
  margin: 0 0 10px;
}

.tab-panel p,
.tab-panel li {
  color: var(--muted);
}

.module-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.module-list article {
  border-left: 3px solid var(--gold);
  display: grid;
  gap: 4px;
  padding: 8px 0 8px 16px;
}

body.lang-ar .module-list article {
  border-left: 0;
  border-right: 3px solid var(--gold);
  padding: 8px 16px 8px 0;
}

.module-list span {
  color: var(--muted);
}

.tabs.vertical {
  display: grid;
  grid-template-columns: 330px 1fr;
}

.tabs.vertical .tab-list {
  align-content: stretch;
  display: grid;
}

.tabs.vertical .tab-button {
  border-bottom: 1px solid rgba(76, 39, 118, 0.16);
  text-align: left;
}

body.lang-ar .tabs.vertical .tab-button {
  text-align: right;
}

.stats-band {
  background:
    linear-gradient(90deg, rgba(76, 39, 118, 0.94), rgba(46, 27, 68, 0.99)),
    var(--purple-950);
  color: #fff;
  padding: 68px 0;
}

.stats-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 auto 28px;
  text-align: center;
  width: var(--container);
}

.stats-band h2 strong {
  color: var(--gold);
}

.stats-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0 auto;
  width: var(--container);
}

.stats-grid div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  min-height: 110px;
  padding: 12px 16px;
  text-align: center;
}

.stats-grid div:first-child {
  border-left: 0;
}

body.lang-ar .stats-grid div {
  border-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

body.lang-ar .stats-grid div:first-child {
  border-right: 0;
}

.stats-grid strong {
  color: var(--gold);
  display: block;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 8px;
}

.testimonial-shell {
  position: relative;
}

.testimonial-card {
  align-items: start;
  display: none;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  min-height: 250px;
  padding: 34px;
}

.testimonial-card.active {
  display: grid;
}

.testimonial-person {
  align-content: start;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.testimonial-card img {
  border-radius: 50%;
  height: 96px;
  margin-bottom: 8px;
  object-fit: cover;
  width: 96px;
}

.testimonial-card blockquote {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
  line-height: 1.55;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 0;
}

.testimonial-card strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  text-wrap: balance;
}

body.lang-ar .testimonial-person span {
  order: 2;
}

body.lang-ar .testimonial-person strong {
  order: 3;
}

body.lang-ar .testimonial-person img {
  order: 1;
}

body.lang-ar .testimonial-card strong {
  max-width: 20ch;
}

.testimonial-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.testimonial-controls button {
  background: var(--line);
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  height: 9px;
  touch-action: manipulation;
  width: 32px;
}

.testimonial-controls button.active,
.testimonial-controls button[aria-pressed="true"] {
  background: var(--purple-800);
}

.partners {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  padding: 72px 0;
  width: var(--container);
}

.partner-section + .partner-section {
  margin-top: 46px;
}

.partners .section-heading {
  margin: 0 0 28px;
  width: min(760px, 100%);
}

body.lang-ar .partners .section-heading {
  margin-left: auto;
}

.partners h2 {
  color: var(--purple-950);
  font-size: 2rem;
  margin: 0 0 12px;
}

.organizer-grid,
.sponsor-grid {
  align-items: center;
  display: grid;
  gap: 22px;
}

.organizer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sponsor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.organizer-grid article,
.sponsor-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(46, 27, 68, 0.07);
}

.organizer-grid article {
  display: grid;
  gap: 14px;
  min-height: 255px;
  padding: 28px 26px;
}

.organizer-grid img {
  background: transparent;
  border: 0;
  height: 92px;
  justify-self: center;
  object-fit: contain;
  padding: 0;
  width: min(100%, 250px);
}

.organizer-grid article:nth-child(1) img {
  width: min(100%, 270px);
}

.organizer-grid article:nth-child(2) img {
  width: min(100%, 230px);
}

.organizer-grid article:nth-child(3) img {
  width: min(100%, 210px);
}

.organizer-grid h3 {
  color: var(--purple-950);
  font-size: 1.05rem;
  margin: 4px 0 0;
}

.organizer-grid p,
.sponsor-grid p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

.sponsor-section {
  background: linear-gradient(135deg, rgba(46, 27, 68, 0.06), rgba(240, 184, 63, 0.1));
  border: 1px solid rgba(46, 27, 68, 0.09);
  border-radius: var(--radius);
  padding: 28px;
}

.sponsor-grid article {
  align-content: center;
  min-height: 126px;
  padding: 20px;
  text-align: center;
}

.sponsor-grid span {
  border: 1px dashed rgba(76, 39, 118, 0.28);
  border-radius: 8px;
  color: var(--purple-800);
  display: grid;
  font-size: 0.92rem;
  font-weight: 900;
  min-height: 54px;
  place-items: center;
  text-transform: uppercase;
}

body.lang-ar .sponsor-grid span {
  text-transform: none;
}

.investment {
  background: linear-gradient(180deg, #fff 0%, #fbf9fd 100%);
  border-top: 1px solid var(--line);
}

.investment-inner {
  margin: 0 auto;
  width: var(--container);
}

.investment .section-heading {
  margin: 0 0 34px;
  width: min(820px, 100%);
}

body.lang-ar .investment .section-heading {
  margin-left: auto;
}

.investment-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

body.lang-ar .investment-layout {
  direction: rtl;
}

.investment-plans {
  display: grid;
  gap: 18px;
}

.investment-plans article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(46, 27, 68, 0.07);
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.investment-plans article::before {
  background: linear-gradient(90deg, var(--purple-950), var(--purple-800));
  content: "";
  height: 5px;
  inset: 0 0 auto;
  position: absolute;
}

.investment-plans article:nth-child(2)::before {
  background: linear-gradient(90deg, #0b4334, #1e7159);
}

.investment-plans span {
  color: var(--purple-950);
  font-size: 0.96rem;
  font-weight: 900;
}

.investment-plans strong {
  color: var(--purple-800);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.investment-plans p {
  color: var(--muted);
  margin: 0;
}

.investment-plans small {
  color: var(--gold-strong);
  font-size: 0.86rem;
  font-weight: 900;
}

.investment-includes {
  background: rgba(76, 39, 118, 0.06);
  border: 1px solid rgba(76, 39, 118, 0.1);
  border-radius: var(--radius);
  padding: 30px;
}

.investment-includes h3 {
  color: var(--purple-950);
  font-size: 1.35rem;
  margin: 0 0 18px;
}

.investment-includes ul {
  color: var(--ink);
  display: grid;
  gap: 10px;
  line-height: 1.65;
  margin: 0;
  padding-inline-start: 1.2rem;
}

body.lang-ar .investment-includes ul {
  padding-inline-end: 1.2rem;
  padding-inline-start: 0;
}

.investment-note {
  border-top: 1px solid rgba(76, 39, 118, 0.12);
  color: var(--muted);
  line-height: 1.85;
  margin: 22px 0 0;
  padding-top: 18px;
}

.registration {
  align-items: start;
  background: var(--purple-950);
  color: #fff;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  margin: 0;
  padding: 86px max(20px, calc((100vw - 1180px) / 2));
  width: 100%;
}

.registration-copy h2 {
  color: #fff;
}

.registration-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.calendar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.calendar-links a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 12px 16px;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease;
}

.calendar-icon {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Arial, sans-serif;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  line-height: 1;
  width: 24px;
}

.outlook-icon {
  background: linear-gradient(135deg, #0078d4, #0a4f9f);
  box-shadow: inset -6px 0 0 rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.82rem;
}

.google-calendar-icon {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #4285f4 0 25%, #34a853 25% 50%, #fbbc04 50% 75%, #ea4335 75%) border-box;
  border: 3px solid transparent;
  color: #1a73e8;
  font-size: 0.68rem;
}

.google-calendar-icon span {
  transform: translateY(1px);
}

.calendar-links a:hover,
.calendar-links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.registration-form {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 26px;
}

.registration-form label {
  color: var(--purple-950);
  display: grid;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 6px;
}

body.lang-ar .registration-form label {
  text-align: right;
}

.registration-form input,
.registration-form select {
  background: #fff;
  border: 1px solid #d9d0e4;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  line-height: 1.4;
  min-height: 44px;
  padding: 0 12px;
  width: 100%;
}

.registration-form input::placeholder {
  color: #8b8294;
}

.registration-form input:focus-visible,
.registration-form select:focus-visible {
  border-color: var(--purple-800);
  outline-color: rgba(42, 166, 161, 0.55);
}

.registration-form .button {
  margin-top: 8px;
  width: 100%;
}

.registration-form .button:disabled,
.registration-form .button[aria-disabled="true"] {
  background: #ebe7ef;
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: none;
  color: rgba(46, 27, 68, 0.62);
  cursor: not-allowed;
  opacity: 1;
}

.registration-form label:nth-child(9),
.registration-form label:nth-child(10),
.registration-form label:nth-child(11),
.registration-form .button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  color: var(--purple-800);
  font-weight: 800;
  margin: 0;
  min-height: 24px;
}

.site-footer {
  background:
    radial-gradient(circle at 10% 35%, rgba(255, 255, 255, 0.08), transparent 18rem),
    #1b1128;
  color: rgba(255, 255, 255, 0.78);
  direction: ltr;
  overflow: hidden;
  padding: 58px max(20px, calc((100vw - 1180px) / 2)) 30px;
  position: relative;
}

body.lang-ar .site-footer {
  direction: rtl;
}

.footer-mark {
  border: 22px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  height: 190px;
  inset: 42px auto auto max(26px, calc((100vw - 1180px) / 2));
  pointer-events: none;
  position: absolute;
  width: 190px;
}

body.lang-ar .footer-mark {
  inset: 42px max(26px, calc((100vw - 1180px) / 2)) auto auto;
}

.footer-main {
  display: grid;
  gap: clamp(34px, 6vw, 96px);
  grid-template-columns: minmax(280px, 1.1fr) minmax(170px, 0.45fr) minmax(210px, 0.55fr);
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.footer-brand {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.footer-brand img {
  height: auto;
  object-fit: contain;
  width: min(220px, 100%);
}

.footer-brand p,
.footer-column p,
.footer-bottom p {
  line-height: 1.8;
  margin: 0;
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-column h2 {
  color: var(--gold);
  font-size: 1rem;
  margin: 0 0 8px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-contact a {
  font-weight: 500;
}

.footer-initiative-logos {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-top: 76px;
}

.footer-initiative-logos img {
  display: block;
  height: 40px;
  object-fit: contain;
  width: auto;
}

.footer-initiative-logos img:first-child {
  height: 42px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

#footer-email,
#footer-phone {
  direction: ltr;
  unicode-bidi: isolate;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin: 44px auto 0;
  padding-top: 24px;
  width: 100%;
}

.footer-bottom p:last-child {
  text-align: end;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-social a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 40px;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  transform: translateY(-1px);
}

.footer-social svg {
  height: 20px;
  width: 20px;
}

.footer-social path,
.footer-social circle,
.footer-social rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (max-width: 980px) {
  .site-header {
    gap: 16px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .section-grid,
  .investment-layout,
  .registration {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
    padding-bottom: 92px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .decision-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
  }

  .decision-strip div {
    border-bottom: 1px solid var(--line);
  }

  .audience-grid,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-timeline {
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-timeline::before {
    display: none;
  }

  .journey-timeline article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(46, 27, 68, 0.08);
    padding: 84px 24px 24px;
  }

  .journey-timeline article::before {
    inset-inline-start: 24px;
    top: 22px;
  }

  .credential-grid,
  .credential-grid article {
    grid-template-columns: 1fr;
  }

  .credential-logo-panel {
    border-block-end: 1px solid rgba(76, 39, 118, 0.14);
    border-inline-end: 0;
    min-height: 148px;
    padding: 28px;
  }

  body.lang-ar .credential-logo-panel {
    border-block-end: 1px solid rgba(76, 39, 118, 0.14);
    border-inline-start: 0;
  }

  .credential-logo-panel::before {
    background: linear-gradient(90deg, transparent, rgba(240, 184, 63, 0.58), transparent);
    height: 2px;
    inset: auto 14% -1px;
    top: auto;
    width: auto;
  }

  body.lang-ar .credential-logo-panel::before {
    inset: auto 14% -1px;
  }

  .cmi-logo {
    max-height: 108px;
  }

  .gini-logo {
    max-height: 90px;
  }

  .overview-metrics,
  .stats-grid,
  .organizer-grid,
  .investment-plans,
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    gap: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-bottom p:last-child {
    text-align: start;
  }

  .tabs.vertical {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .site-header {
    gap: 10px;
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    height: auto;
    padding: 5px 7px;
    width: 92px;
  }

  .nav-cta {
    font-size: 0.76rem;
    min-height: 40px;
    max-width: 122px;
    padding-inline: 12px;
    white-space: nowrap;
  }

  .language-icon {
    display: none;
  }

  .language-switch button {
    font-size: 0.72rem;
    min-width: 34px;
    padding-inline: 7px;
  }

  .hero-content {
    padding-top: 104px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9vw, 2.65rem);
  }

  body.lang-ar .hero h1 {
    font-size: clamp(2.08rem, 8.5vw, 2.55rem);
  }

  .program-mark {
    height: 58px;
    width: 132px;
  }

  .hero-panel {
    gap: 8px;
    padding: 18px;
  }

  .panel-row {
    gap: 8px;
  }

  .hero-panel p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .hero-actions,
  .calendar-links {
    align-items: stretch;
    flex-direction: column;
  }

  .organizer-grid,
  .investment-plans,
  .sponsor-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .investment-includes {
    padding: 24px;
  }

  .sponsor-section {
    padding: 20px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-initiative-logos {
    margin-top: 24px;
  }

  .button,
  .calendar-links a {
    width: 100%;
  }

  .video-toggle {
    bottom: 20px;
    height: 48px;
    right: 18px;
    width: 48px;
  }

  body.lang-ar .video-toggle {
    left: 18px;
    right: auto;
  }

  .week-cards,
  .goal-grid,
  .audience-grid,
  .outcome-grid,
  .experience-grid,
  .journey-timeline,
  .credential-grid,
  .testimonial-card,
  .overview-metrics,
  .organizer-grid,
  .sponsor-grid,
  .partner-strip {
    grid-template-columns: 1fr;
  }

  .audience-grid article,
  .outcome-grid article,
  .experience-grid article {
    min-height: auto;
  }

  .journey-timeline article {
    min-height: auto;
    padding: 78px 22px 22px;
  }

  .credential-grid article {
    padding: 20px;
  }

  .credential-grid article {
    padding: 0;
  }

  .credential-copy {
    padding: 22px;
  }

  .testimonial-card {
    gap: 20px;
    padding: 24px;
  }

  .testimonial-person {
    justify-items: start;
  }

  body.lang-ar .testimonial-person {
    justify-items: end;
  }

  body.lang-ar .testimonial-card strong {
    max-width: none;
  }

  .decision-strip,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .decision-strip div,
  .decision-strip div:last-child {
    border-inline-end: 0;
    min-height: auto;
    padding: 18px 20px;
  }

  .registration-form {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .tab-list {
    display: grid;
  }

  .section {
    padding: 64px 0;
  }

  .stats-grid div,
  body.lang-ar .stats-grid div {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stats-grid div:first-child,
  body.lang-ar .stats-grid div:first-child {
    border-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
  }

  .nav-cta:hover,
  .button:hover,
  .outcome-grid article:hover,
  .goal-grid article:hover {
    transform: none;
  }
}
