:root {
  --blue: #0866e5;
  --blue-dark: #063e9d;
  --blue-soft: #eaf3ff;
  --cyan: #00b8d9;
  --green: #16a66a;
  --amber: #f2a516;
  --violet: #7357d8;
  --ink: #071b42;
  --text: #33476a;
  --muted: #71809b;
  --line: #dce5f2;
  --surface: #f6f9fd;
  --white: #fff;
  --shadow: 0 18px 55px rgba(18, 67, 133, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  flex: 0 0 auto;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 6px 16px;
  color: var(--white);
  background: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.announcement svg {
  width: 17px;
  height: 17px;
  color: #7ee6ff;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(220, 229, 242, 0.9);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(8, 102, 229, 0.25);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.brand > span:last-child {
  display: grid;
  min-width: 0;
}

.brand strong {
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}

.brand small {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.6px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav > a {
  position: relative;
  color: #253754;
  font-size: 13px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transition: width 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  width: 100%;
}

.main-nav .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(8, 102, 229, 0.2);
}

.main-nav .nav-cta:hover {
  background: var(--blue-dark);
}

.main-nav .nav-cta svg {
  width: 16px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  color: var(--blue);
  border-color: #9fc5fa;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 44%, rgba(33, 139, 255, 0.18), transparent 27%),
    linear-gradient(110deg, #fff 0%, #f5f9ff 47%, #dcecff 100%);
}

.hero::before {
  position: absolute;
  top: 34px;
  left: 3%;
  width: 220px;
  height: 170px;
  content: "";
  opacity: 0.3;
  background-image: radial-gradient(#2984f3 1.4px, transparent 1.4px);
  background-size: 15px 15px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 65px;
  padding-block: 72px 92px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.eyebrow {
  padding: 7px 13px;
  background: var(--blue-soft);
  border: 1px solid #d4e7ff;
  border-radius: 20px;
}

.eyebrow svg,
.section-kicker svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  min-height: 170px;
  margin: 24px 0 12px;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0;
}

.hero h1 span:first-child {
  background: linear-gradient(135deg, var(--ink) 5%, var(--blue) 62%, #00a8cb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.typing-caret {
  width: 3px;
  height: 1.05em;
  display: inline-block;
  margin-right: 6px;
  vertical-align: -0.12em;
  background: var(--blue);
  animation: caretBlink 0.75s step-end infinite;
}

@keyframes caretBlink {
  50% { opacity: 0; }
}

.hero-subtitle {
  margin: 0 0 28px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 23px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 25px rgba(8, 102, 229, 0.23);
}

.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 15px 30px rgba(8, 68, 158, 0.27);
}

.btn-secondary {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  border-color: #9fc5fa;
}

.btn-secondary:hover {
  background: var(--white);
  border-color: var(--blue);
}

.btn-white {
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(3, 38, 94, 0.2);
}

.btn-white:hover {
  background: #eaf7ff;
}

.btn-block {
  width: 100%;
}

.btn-large {
  min-height: 57px;
  font-size: 15px;
}

.stats-row {
  min-height: 71px;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.stats-row > div:not(.stars) {
  display: grid;
}

.stats-row strong {
  direction: ltr;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.stats-row span {
  color: var(--muted);
  font-size: 11px;
}

.stats-divider {
  width: 1px;
  height: 44px;
  background: var(--line);
}

.stats-row .stars {
  direction: ltr;
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 2px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 30px 0 22px;
}

.visual-glow {
  position: absolute;
  inset: 15% 7%;
  border-radius: 50%;
  background: rgba(78, 166, 255, 0.35);
  filter: blur(60px);
}

.course-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #071226;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 35px 70px rgba(14, 67, 136, 0.28), 0 0 0 8px rgba(255, 255, 255, 0.25);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.hero-media-window {
  width: min(100%, 380px);
  margin-inline: auto;
}

.window-bar {
  height: 39px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  color: #dcecff;
  background: #0c2143;
  font-size: 10px;
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6978;
}

.window-bar span:nth-child(2) { background: #ffbd46; }
.window-bar span:nth-child(3) { background: #36d18a; }
.window-bar b { margin-right: auto; font-weight: 500; }

.hero-video-grid {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  gap: 7px;
  padding: 7px;
  background: #041024;
}

.hero-video-grid video {
  width: 0;
  min-width: 0;
  flex: 1 1 0;
  aspect-ratio: 9 / 16;
  display: block;
  object-fit: cover;
  background: #020816;
  border-radius: 4px;
}

.window-meta {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  color: var(--white);
}

.window-meta > div {
  display: grid;
}

.window-meta span {
  color: #67d9f4;
  font-size: 10px;
}

.window-meta strong {
  font-size: 12px;
}

.window-meta .play-badge {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}

.float-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(20, 69, 127, 0.16);
  font-size: 11px;
  font-weight: 700;
  animation: floatNote 4s ease-in-out infinite;
}

.float-note svg {
  color: var(--blue);
}

.note-one {
  top: 0;
  right: -25px;
}

.note-two {
  bottom: 1px;
  left: -20px;
  animation-delay: -2s;
}

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

.trust-band {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 110px;
}

.trust-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border-left: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-left: 0;
}

.trust-grid svg {
  width: 27px;
  height: 27px;
  color: var(--blue);
}

.trust-grid span {
  display: grid;
  color: var(--muted);
  font-size: 10px;
}

.trust-grid strong {
  color: var(--ink);
  font-size: 12px;
}

.section {
  padding-block: 100px;
}

.course-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 75px;
}

.course-image-wrap {
  position: relative;
}

.course-image-wrap::before {
  position: absolute;
  z-index: -1;
  top: -20px;
  right: -20px;
  width: 46%;
  height: 60%;
  content: "";
  border: 2px solid #77b4ff;
  border-radius: 8px;
}

.course-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.course-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 7px 12px;
  color: var(--white);
  background: var(--green);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
}

.course-info h2,
.section-heading h2,
.faq-intro h2,
.outline-layout h2 {
  margin: 11px 0 18px;
  font-size: 36px;
  line-height: 1.55;
}

.course-info > p,
.faq-intro > p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 15px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.check-list svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.check-list li.update-highlight {
  width: fit-content;
  padding: 6px 10px;
  color: #8a5900;
  background: #fff6d6;
  border: 1px solid #efcc68;
  border-radius: 4px;
  font-weight: 800;
}

.check-list li.update-highlight svg {
  padding: 2px;
  color: #b77900;
  background: transparent;
}

.process-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading .section-kicker {
  margin-inline: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.steps > div {
  position: relative;
  min-height: 270px;
  padding: 36px 38px;
  background: var(--white);
  border-block: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.steps > div:first-child {
  border-radius: 0 8px 8px 0;
  border-right: 1px solid var(--line);
}

.steps > div:last-child {
  border-radius: 8px 0 0 8px;
}

.steps > div > span {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #d6e7fd;
  font-family: Arial, sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.steps > div > svg {
  width: 43px;
  height: 43px;
  color: var(--blue);
}

.steps h3 {
  margin: 24px 0 10px;
  font-size: 18px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary svg {
  transition: transform 180ms ease;
}

.faq-list details[open] summary {
  color: var(--blue);
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 0 24px;
  padding-left: 45px;
  color: var(--text);
  font-size: 13px;
}

.cta-band {
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-dark), var(--blue) 70%, #008fb8);
}

.cta-band .container {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta-band span {
  color: #bce7ff;
  font-size: 12px;
  font-weight: 700;
}

.cta-band h2 {
  margin: 4px 0 0;
  font-size: 32px;
}

.site-footer {
  padding-top: 65px;
  color: #bed0ea;
  background: #06152f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 70px;
  padding-bottom: 50px;
}

.brand-light {
  color: var(--white);
}

.brand-light small {
  color: #61d8ff;
}

.footer-grid p {
  max-width: 390px;
  margin: 18px 0 0;
  font-size: 12px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
}

.footer-grid > div > strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--white);
}

.copyright {
  padding-block: 19px;
  border-top: 1px solid rgba(206, 222, 244, 0.15);
  font-size: 10px;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-float a {
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: #21cf72;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(12, 91, 51, 0.3);
  animation: whatsPulse 2.4s ease-in-out infinite;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.whatsapp-message {
  position: relative;
  max-width: 210px;
  padding: 10px 13px;
  color: #18432c;
  background: var(--white);
  border: 1px solid #bdebd2;
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(26, 66, 49, 0.15);
  font-size: 11px;
  font-weight: 700;
}

.whatsapp-message::after {
  position: absolute;
  top: 50%;
  left: -7px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--white);
  border-left: 1px solid #bdebd2;
  border-bottom: 1px solid #bdebd2;
  transform: translateY(-50%) rotate(45deg);
}

@keyframes whatsPulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(12, 91, 51, 0.3), 0 0 0 0 rgba(33, 207, 114, 0.3); }
  50% { box-shadow: 0 12px 28px rgba(12, 91, 51, 0.3), 0 0 0 9px rgba(33, 207, 114, 0); }
}

.toast {
  position: fixed;
  z-index: 100;
  right: 50%;
  bottom: 30px;
  max-width: min(90vw, 460px);
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(50%, 0);
}

/* Inner pages */
.inner-page {
  min-height: 60vh;
}

.page-heading {
  padding-block: 90px 80px;
  text-align: center;
  background: linear-gradient(145deg, #fff 0%, #eef6ff 63%, #dcecff 100%);
  border-bottom: 1px solid var(--line);
}

.page-heading .eyebrow {
  margin-inline: auto;
}

.page-heading h1 {
  max-width: 800px;
  margin: 20px auto 13px;
  font-size: 43px;
  line-height: 1.55;
}

.page-heading p {
  max-width: 670px;
  margin: 0 auto;
  color: var(--text);
  font-size: 15px;
}

.compact-heading {
  padding-block: 70px;
}

.courses-section {
  background: var(--surface);
}

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

.course-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(29, 69, 116, 0.08);
}

.course-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.course-card:hover .course-card-image img {
  transform: scale(1.03);
}

.course-card-image > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(2, 16, 44, 0.08);
}

.course-card-image > span svg {
  width: 50px;
  height: 50px;
  padding: 15px;
  background: rgba(8, 102, 229, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(2, 15, 38, 0.3);
}

.course-card-body {
  padding: 24px;
}

.course-card-meta,
.course-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.course-card-meta span,
.course-facts span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.course-card-meta svg,
.course-facts svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
}

.course-card h2 {
  margin: 14px 0 8px;
  font-size: 18px;
  line-height: 1.65;
}

.course-card h2 a:hover {
  color: var(--blue);
}

.course-card p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 11px;
}

.course-hero {
  padding-block: 80px;
  background: linear-gradient(130deg, #fff, #f3f8ff 50%, #dfedff);
  border-bottom: 1px solid var(--line);
}

.course-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 75px;
  align-items: center;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 11px;
}

.breadcrumb:hover { color: var(--blue); }
.breadcrumb svg { width: 16px; }

.course-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  padding: 7px 11px;
  color: #7a4b00;
  background: #fff3c4;
  border: 1px solid #e7b93f;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}

.course-badge svg {
  width: 15px;
  height: 15px;
  color: #b77900;
}

.course-update-details {
  width: fit-content;
  margin-bottom: 14px;
}

.course-update-details summary {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #b77900;
  background: #fff6d6;
  border: 1px solid #efcc68;
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

.course-update-details summary::-webkit-details-marker {
  display: none;
}

.course-update-details summary svg {
  width: 16px;
  height: 16px;
}

.course-update-details p {
  max-width: 650px;
  margin: 8px 0 0;
  padding: 8px 10px;
  color: #6f5a2a;
  background: #fffaf0;
  border: 1px solid #f0d994;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.9;
}

.course-hero h1 {
  margin: 0 0 17px;
  font-size: 40px;
  line-height: 1.6;
}

.course-hero-copy > p {
  max-width: 650px;
  margin: 0 0 25px;
  color: var(--text);
  font-size: 15px;
}

.course-side {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.course-side > small {
  display: block;
  padding: 11px 7px 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.course-cover-preview {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 13px;
  border-radius: 6px;
  background: #071326;
}

.course-cover-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outline-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 75px;
}

.outline-list {
  border-top: 1px solid var(--line);
}

.outline-list > div {
  min-height: 74px;
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 5px;
  border-bottom: 1px solid var(--line);
}

.outline-list svg { color: var(--blue); }
.outline-list strong { font-size: 12px; }

.outline-list > div.outline-locked {
  color: #8a6a24;
  background: #fffaf0;
}

.outline-list > div.outline-locked svg {
  color: #b77900;
}

.outline-list > div.outline-locked strong {
  color: #6f5a2a;
}

.activation-dialog {
  width: min(calc(100% - 28px), 490px);
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(3, 20, 51, 0.35);
}

.activation-dialog::backdrop {
  background: rgba(3, 17, 43, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  left: 14px;
}

.dialog-icon,
.login-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
}

.dialog-icon svg,
.login-icon svg {
  width: 28px;
  height: 28px;
}

.activation-dialog h2 {
  margin: 0 0 7px;
  font-size: 23px;
}

.activation-dialog > p {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 11px;
}

.activation-dialog form,
.boss-login-box form {
  display: grid;
  gap: 8px;
}

.activation-dialog label,
.boss-login-box label {
  margin-top: 5px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.activation-dialog input,
.boss-login-box input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cad7e9;
  border-radius: 5px;
  outline: 0;
}

.activation-dialog input:focus,
.boss-login-box input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 102, 229, 0.1);
}

.phone-field {
  height: 48px;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid #cad7e9;
  border-radius: 5px;
}

.phone-field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 102, 229, 0.1);
}

.phone-field span {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--text);
  background: var(--surface);
  border-right: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.phone-field input {
  height: 46px;
  border: 0;
  border-radius: 0;
  font-family: Arial, sans-serif;
}

.phone-field input:focus { box-shadow: none; }

.activation-dialog form > small {
  color: var(--muted);
  font-size: 9px;
}

.form-error {
  min-height: 0;
  color: #ba2334;
  font-size: 10px;
}

.form-error.visible {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  background: #fff0f2;
  border: 1px solid #ffd2d8;
  border-radius: 4px;
}

.dialog-help {
  display: block;
  margin-top: 17px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.policy-content {
  width: min(calc(100% - 40px), 850px);
}

.policy-content > section {
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.policy-content p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

.policy-note {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  color: #075e3b;
  background: #e8f9f2;
  border: 1px solid #bcebd8;
  border-radius: 7px;
  font-size: 11px;
}

.policy-note a { font-weight: 800; text-decoration: underline; }

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

.contact-main h2 { margin: 18px 0 8px; font-size: 28px; }
.contact-main p { max-width: 540px; margin: 0 0 24px; color: var(--text); font-size: 13px; }

.contact-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 12px 25px rgba(22, 166, 106, 0.22);
}

.contact-icon svg { width: 29px; height: 29px; }

.whatsapp-btn {
  direction: ltr;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 25px rgba(22, 166, 106, 0.22);
}

.contact-details {
  border-top: 1px solid var(--line);
}

.contact-details > div {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid var(--line);
}

.contact-details svg { width: 28px; height: 28px; color: var(--blue); }
.contact-details span { display: grid; color: var(--muted); font-size: 10px; }
.contact-details strong { color: var(--ink); font-size: 13px; }

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding: 50px 20px;
  text-align: center;
}

.not-found strong {
  color: #d7e7fc;
  font-family: Arial, sans-serif;
  font-size: 100px;
  line-height: 1;
}

.not-found h1 { margin: 15px 0 5px; }
.not-found p { margin: 0 0 25px; color: var(--muted); }

/* Learning */
.learning-shell {
  min-height: 100vh;
  background: #f3f6fa;
}

.learning-header {
  position: sticky;
  z-index: 40;
  top: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 280px 1fr 48px;
  align-items: center;
  gap: 25px;
  padding: 10px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.compact-brand .brand-mark { width: 38px; height: 38px; }
.compact-brand strong { font-size: 12px; }

.learning-progress {
  width: min(100%, 460px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-self: center;
  gap: 13px;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
}

.learning-progress > div {
  height: 6px;
  overflow: hidden;
  background: #e4eaf3;
  border-radius: 8px;
}

.learning-progress b {
  height: 100%;
  display: block;
  background: var(--green);
  border-radius: 8px;
}

.learning-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  min-height: calc(100vh - 72px);
}

.lesson-sidebar {
  padding: 28px 20px;
  background: #081b3d;
  color: var(--white);
}

.sidebar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8da5c9;
  font-size: 10px;
  font-weight: 700;
}

.lesson-sidebar h1 {
  margin: 7px 0 23px;
  font-size: 14px;
  line-height: 1.7;
}

.lesson-sidebar nav {
  display: grid;
  gap: 7px;
}

.lesson-link {
  min-height: 68px;
  display: grid;
  grid-template-columns: 30px 1fr 20px;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  color: #bdd0ed;
  border: 1px solid transparent;
  border-radius: 6px;
}

a.lesson-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.lesson-link.active {
  color: var(--white);
  background: var(--blue);
  border-color: #4d9afa;
}

.lesson-link.locked {
  color: #64799a;
  cursor: not-allowed;
}

.lesson-link > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.lesson-link b {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.65;
}

.lesson-link > svg { width: 17px; height: 17px; }

.sidebar-close,
.lessons-mobile-btn {
  display: none;
}

.lesson-main {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding: 40px 45px 70px;
}

.lesson-heading > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.lesson-heading h2 {
  margin: 5px 0 24px;
  font-size: 25px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020816;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(10, 29, 58, 0.18);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lesson-description {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  margin-top: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.lesson-description h3 { margin: 0 0 5px; font-size: 15px; }
.lesson-description p { margin: 0; color: var(--text); font-size: 11px; }
.lesson-description a { color: var(--blue); text-decoration: underline; }

.completed-badge,
.watch-hint {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
}

.completed-badge { color: #087149; background: #dff8ed; }
.watch-hint { color: #8a5b00; background: #fff3d5; }
.completed-badge svg, .watch-hint svg { width: 15px; height: 15px; }

/* Boss */
.boss-login-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 30px;
  padding: 35px 20px;
  background: linear-gradient(145deg, #f4f8fd, #e2efff);
}

.boss-login-box {
  width: min(100vw - 40px, 430px);
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.boss-login-box h1 { margin: 0 0 5px; font-size: 23px; }
.boss-login-box > p { margin: 0 0 20px; color: var(--muted); font-size: 10px; }

.boss-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  background: #f4f7fb;
}

.boss-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  color: #c7d8ef;
  background: #071a39;
}

.boss-sidebar .brand { margin-bottom: 38px; }
.boss-sidebar .brand strong { font-size: 11px; }

.boss-sidebar nav {
  display: grid;
  gap: 5px;
}

.boss-sidebar nav a,
.boss-sidebar form button {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: #a9bedb;
  background: transparent;
  border: 0;
  border-radius: 5px;
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.boss-sidebar nav a:hover,
.boss-sidebar nav a.active {
  color: var(--white);
  background: rgba(61, 143, 250, 0.16);
}

.boss-sidebar nav a.active svg { color: #52c9ff; }
.boss-sidebar form { margin-top: auto; }
.boss-sidebar form button { width: 100%; color: #ffadb7; }

.boss-main {
  min-width: 0;
  padding: 28px 34px 60px;
}

.boss-main > header {
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.boss-main > header span { color: var(--muted); font-size: 9px; }
.boss-main > header h1 { margin: 2px 0 0; font-size: 23px; }

.boss-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.boss-stats > div {
  min-height: 145px;
  padding: 19px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 6px;
}

.metric-icon svg { width: 20px; height: 20px; }
.metric-icon.blue { color: var(--blue); background: var(--blue-soft); }
.metric-icon.green { color: var(--green); background: #e2f8ed; }
.metric-icon.amber { color: #ad7000; background: #fff2d2; }
.metric-icon.violet { color: var(--violet); background: #eeeaff; }

.boss-stats p { margin: 13px 0 0; color: var(--muted); font-size: 9px; }
.boss-stats strong { font-family: Arial, sans-serif; font-size: 27px; line-height: 1.2; }

.boss-section {
  margin-top: 20px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.boss-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.boss-section-title span { color: var(--muted); font-size: 8px; }
.boss-section-title h2 { margin: 2px 0 0; font-size: 16px; }
.boss-section-title > b { color: var(--blue); font-size: 9px; }

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: #087149 !important;
  background: #e4f8ee;
  border-radius: 12px;
}

.live-pill i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }

.iraq-map {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #e7eef7;
}

.map-note { margin: 10px 0 0; color: var(--muted); font-size: 8px; }

.subscriber-map-marker {
  border: 0;
  background: transparent;
}

.subscriber-map-marker > span {
  position: relative;
  width: 27px;
  height: 27px;
  display: block;
  background: #e23b4b;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 7px 18px rgba(122, 20, 34, 0.38);
  transform: rotate(-45deg);
}

.subscriber-map-marker > span > b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1;
  transform: rotate(45deg);
}

.subscriber-map-marker > span > b:empty::after {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--white);
  border-radius: 50%;
}

.subscriber-popup {
  min-width: 145px;
  display: grid;
  gap: 3px;
  font-family: "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
  text-align: right;
}

.subscriber-popup strong {
  color: var(--ink);
  font-size: 11px;
  text-align: right;
}

.subscriber-popup > div {
  display: grid;
  gap: 5px;
  margin-top: 4px;
}

.subscriber-popup span {
  display: grid;
  gap: 1px;
  padding-top: 5px;
  border-top: 1px solid var(--line);
}

.subscriber-popup span b {
  direction: ltr;
  color: var(--text);
  font-family: Arial, sans-serif;
  font-size: 11px;
  text-align: right;
}

.subscriber-popup small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
  font-size: 9px;
  text-align: right;
}

th {
  padding: 11px 12px;
  color: var(--muted);
  background: #f6f8fb;
  border-block: 1px solid var(--line);
  font-weight: 700;
}

td {
  padding: 12px;
  color: var(--text);
  border-bottom: 1px solid #edf1f6;
}

.empty-cell { height: 90px; color: var(--muted); text-align: center; }

.progress-pill {
  padding: 5px 8px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 10px;
  font-size: 8px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 40px;
  }

  .hero h1 { font-size: 43px; min-height: 145px; }
  .course-hero-grid { grid-template-columns: 1fr 410px; gap: 45px; }
  .boss-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-grid; }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.open { display: grid; }
  .main-nav > a { padding: 12px; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .main-nav .nav-cta { margin-top: 5px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 65px;
  }

  .hero-copy { max-width: 700px; }
  .hero h1 { min-height: 130px; }
  .hero-visual { width: min(100%, 720px); margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-left: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .course-feature { grid-template-columns: 1fr; gap: 50px; }
  .course-info { max-width: 700px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .courses-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .course-hero-grid { grid-template-columns: 1fr; }
  .course-side { width: min(100%, 620px); }
  .outline-layout { grid-template-columns: 1fr; gap: 35px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; gap: 45px; }

  .learning-header { grid-template-columns: 220px 1fr 48px; padding-inline: 15px; }
  .learning-layout { grid-template-columns: 1fr; }
  .lesson-sidebar {
    position: fixed;
    z-index: 60;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88vw, 340px);
    overflow-y: auto;
    box-shadow: -20px 0 50px rgba(1, 9, 23, 0.3);
    transform: translateX(105%);
    transition: transform 200ms ease;
  }
  .lesson-sidebar.open { transform: translateX(0); }
  .sidebar-close { display: inline-grid; color: var(--white); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); }
  .lessons-mobile-btn { display: inline-flex; margin-bottom: 22px; }

  .boss-shell { grid-template-columns: 75px minmax(0, 1fr); }
  .boss-sidebar { padding-inline: 12px; }
  .boss-sidebar .brand > span:last-child,
  .boss-sidebar nav a:not(.active) { }
  .boss-sidebar .brand { justify-content: center; }
  .boss-sidebar .brand-mark { width: 42px; }
  .boss-sidebar .brand > span:last-child { display: none; }
  .boss-sidebar nav a,
  .boss-sidebar form button { justify-content: center; font-size: 0; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement { min-height: 34px; font-size: 10px; }
  .nav-wrap { min-height: 66px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: 11px; }

  .hero {
    min-height: auto;
    background: linear-gradient(160deg, #fff 0%, #f2f8ff 58%, #dcecff 100%);
  }

  .hero::before { left: -45px; }
  .hero-grid { padding-block: 46px 62px; gap: 36px; }
  .hero-copy { text-align: center; }
  .hero .eyebrow { margin-inline: auto; font-size: 10px; }
  .hero h1 { min-height: 116px; margin-top: 18px; font-size: 32px; line-height: 1.7; }
  .hero-subtitle { margin-bottom: 22px; font-size: 14px; }
  .hero-actions { justify-content: center; }
  .hero-actions .btn { flex: 1 1 140px; }
  .stats-row { justify-content: center; gap: 14px; margin-top: 28px; }
  .stats-row strong { font-size: 19px; }
  .stats-row .stars { display: none; }
  .hero-visual { padding-inline: 5px; }
  .course-window { transform: none; box-shadow: 0 22px 45px rgba(14, 67, 136, 0.25); }
  .hero-media-window { width: min(100%, 270px); }
  .hero-video-grid { gap: 5px; padding: 5px; }
  .window-meta { min-height: 63px; }
  .window-meta strong { font-size: 9px; }
  .float-note { padding: 8px 9px; font-size: 8px; }
  .float-note svg { width: 15px; height: 15px; }
  .note-one { right: -7px; top: 3px; }
  .note-two { left: -7px; bottom: 2px; }

  .trust-grid { min-height: 0; }
  .trust-grid > div { justify-content: flex-start; padding: 16px 11px; }
  .trust-grid svg { width: 23px; height: 23px; }
  .trust-grid strong { font-size: 10px; }
  .trust-grid span { font-size: 8px; }

  .section { padding-block: 70px; }
  .course-feature { gap: 38px; }
  .course-image-wrap::before { top: -10px; right: -8px; }
  .course-info h2,
  .section-heading h2,
  .faq-intro h2,
  .outline-layout h2 { font-size: 26px; }
  .course-info > p, .faq-intro > p { font-size: 12px; }
  .check-list li { align-items: flex-start; font-size: 11px; }

  .steps { grid-template-columns: 1fr; gap: 12px; }
  .steps > div { min-height: 220px; border: 1px solid var(--line); border-radius: 8px !important; }
  .faq-list summary { min-height: 74px; font-size: 12px; }
  .faq-list details p { padding-left: 0; font-size: 11px; }
  .cta-band .container { min-height: 230px; flex-direction: column; justify-content: center; text-align: center; }
  .cta-band h2 { font-size: 25px; }

  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .whatsapp-float { bottom: 15px; left: 14px; }
  .whatsapp-float a { width: 53px; height: 53px; }
  .whatsapp-message { max-width: 158px; padding: 8px 10px; font-size: 9px; }

  .page-heading { padding-block: 65px; }
  .page-heading h1 { font-size: 29px; }
  .page-heading p { font-size: 11px; }
  .courses-grid { grid-template-columns: 1fr; }
  .course-hero { padding-block: 55px; }
  .course-hero h1 { font-size: 28px; }
  .course-hero-copy > p { font-size: 12px; }
  .course-side { padding: 9px; }
  .outline-list > div { grid-template-columns: 22px 1fr; }
  .outline-list strong { font-size: 10px; }
  .activation-dialog { padding: 29px 20px 24px; }
  .dialog-close { top: 9px; left: 9px; }
  .policy-content { width: min(calc(100% - 28px), 850px); }
  .contact-main h2 { font-size: 24px; }

  .learning-header {
    grid-template-columns: 1fr auto;
    min-height: 65px;
  }
  .learning-header .compact-brand small { display: none; }
  .learning-progress { grid-column: 1 / -1; grid-row: 2; width: 100%; }
  .lesson-main { padding: 25px 14px 55px; }
  .lesson-heading h2 { font-size: 18px; }
  .video-frame { border-radius: 5px; }
  .lesson-description { flex-direction: column; }

  .boss-shell { display: block; }
  .boss-sidebar {
    position: static;
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
  }
  .boss-sidebar .brand { margin: 0; }
  .boss-sidebar nav { display: flex; margin-right: auto; }
  .boss-sidebar nav a { display: none; }
  .boss-sidebar form { margin: 0 8px 0 0; }
  .boss-main { padding: 20px 12px 45px; }
  .boss-stats { gap: 10px; }
  .boss-stats > div { min-height: 125px; padding: 14px; }
  .boss-section { padding: 14px 10px; }
  .iraq-map { height: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
