/* ===========================================================================
   ورشة Extreme Vision — نفس توكنز moves / lights (عائلة بصرية وحدة)
   =========================================================================== */
:root {
  color-scheme: dark;

  --ink: #0a0f1c;
  --ink-2: #0d1424;
  --panel: #0c1220;
  --card: #111a2c;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.14);
  --fg: #eef3f8;
  --muted: #8d9bb0;
  --muted-2: #5d6b80;

  --blue: #0a9fd4;
  --blue-soft: rgba(10, 159, 212, 0.16);
  --blue-ring: rgba(10, 159, 212, 0.32);
  --ember: #ff5c2a;

  --grad: linear-gradient(103deg, #0a9fd4 0%, #2fb8e6 52%, #8ad9f2 100%);

  --ar: "Zain", "SF Arabic", Tahoma, Arial, sans-serif;
  --latin: "Avenir Next", "Helvetica Neue", sans-serif;

  --r: 14px;
  --shadow-md: 0 8px 26px rgba(0, 0, 0, 0.5);
  --glow: 0 8px 30px rgba(10, 159, 212, 0.32);
  --ease: cubic-bezier(0.22, 0.68, 0.2, 1);

  --section-pad: clamp(6rem, 11vw, 11rem);
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --max-width: 1200px;
  --header-height: 60px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--fg);
  font-family: var(--ar);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: var(--blue-ring);
  color: #fff;
}

a {
  color: inherit;
}

/* ------------------------------------------------------------------ أساسيات */
.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.6rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
}

/* ------------------------------------------------------------------ الهيدر */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 28, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-shell {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0 var(--gutter);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  /* اللوقو يسار وزر الحجز يمين — ثابت في العربي والإنجليزي */
  direction: ltr;
}

/* نفس لوقو صفحة lights — سطر واحد ثابت */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  border-radius: 9px;
  box-shadow: 0 0 0 1px var(--line-2), 0 4px 14px rgba(0, 0, 0, 0.5);
}

.brand span {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.35;
}

.brand b {
  font-family: var(--latin);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
}

.brand small {
  font-family: var(--latin);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.header-cta {
  white-space: nowrap;
  min-width: 172px;
  text-align: center;
  padding: 0.55rem 1.35rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--fg);
  background: rgba(10, 159, 212, 0.08);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.header-cta:hover {
  border-color: var(--blue-ring);
  background: var(--blue-soft);
}

.header-lang {
  white-space: nowrap;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--muted);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.header-lang:hover {
  border-color: var(--blue-ring);
  color: var(--fg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ------------------------------------------------------------------ الهيرو */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--ink) 4%, rgba(10, 15, 28, 0.55) 38%, rgba(10, 15, 28, 0.15) 66%, rgba(10, 15, 28, 0.35) 100%),
    linear-gradient(to left, rgba(10, 15, 28, 0.25), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
  padding: calc(var(--header-height) + 2.5rem) var(--gutter) clamp(3.5rem, 8vh, 6rem);
}

.hero h1 {
  max-width: 15ch;
  font-size: clamp(2.1rem, 5.2vw, 3.9rem);
  line-height: 1.3;
}

.hero-lead {
  max-width: 46ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.badge {
  padding: 0.42rem 1rem;
  border: 1px solid var(--blue-ring);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--fg);
  background: var(--blue-soft);
}

.badge-soft {
  border-color: var(--line-2);
  background: transparent;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-credit {
  margin: 2.4rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ------------------------------------------------------------------ الأزرار */
.cta {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  border: none;
  border-radius: 999px;
  background: var(--grad);
  color: #04121c;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--glow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(10, 159, 212, 0.45);
}

.cta-ghost {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--fg);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s var(--ease);
}

.cta-ghost:hover {
  border-color: var(--blue-ring);
}

/* ------------------------------------------------------------------ الأقسام */
.section {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter) 0;
}

.section:last-of-type {
  padding-bottom: var(--section-pad);
}

.section-heading {
  max-width: 640px;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
}

.section-lead {
  margin: 1.2rem 0 0;
  color: var(--muted);
}

/* ظهور هادئ عند السكرول — الحركة الوحيدة بالصفحة */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ------------------------------------------------------------------ الأيام */
.curriculum-tabs {
  margin-top: 3.5rem;
}

.curriculum-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.curriculum-tablist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.curriculum-tab {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.3rem 0.5rem 1.5rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.curriculum-tab b {
  font-size: 1.3rem;
  color: var(--blue);
  opacity: 0.6;
  transition: opacity 0.2s var(--ease);
}

.curriculum-tab span {
  font-size: 0.9rem;
}

.curriculum-tab:hover {
  color: var(--fg);
}

#day-1:checked ~ .curriculum-tablist [for="day-1"],
#day-2:checked ~ .curriculum-tablist [for="day-2"],
#day-3:checked ~ .curriculum-tablist [for="day-3"] {
  color: var(--fg);
  border-bottom-color: var(--blue);
}

#day-1:checked ~ .curriculum-tablist [for="day-1"] b,
#day-2:checked ~ .curriculum-tablist [for="day-2"] b,
#day-3:checked ~ .curriculum-tablist [for="day-3"] b,
.curriculum-tab:hover b {
  opacity: 1;
}

#day-1:focus-visible ~ .curriculum-tablist [for="day-1"],
#day-2:focus-visible ~ .curriculum-tablist [for="day-2"],
#day-3:focus-visible ~ .curriculum-tablist [for="day-3"] {
  outline: 2px solid var(--blue-ring);
  outline-offset: 4px;
  border-radius: 6px;
}

.curriculum-panel {
  display: none;
  padding-top: 2.6rem;
}

#day-1:checked ~ .curriculum-panels [data-panel="1"],
#day-2:checked ~ .curriculum-panels [data-panel="2"],
#day-3:checked ~ .curriculum-panels [data-panel="3"] {
  display: block;
}

.panel-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.panel-row h3 {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
}

.panel-row p {
  margin: 0;
  color: var(--fg);
}

/* ------------------------------------------------------------- لمن هذه الورشة */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.audience-card {
  position: relative;
  padding: 1.9rem 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(to bottom, rgba(17, 26, 44, 0.55), rgba(12, 18, 32, 0.35));
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.audience-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(to left, var(--blue), transparent 70%);
  opacity: 0.7;
}

.audience-card:hover {
  border-color: var(--blue-ring);
  transform: translateY(-3px);
}

.audience-card-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.audience-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--blue);
}

.audience-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.audience-card h3 {
  font-size: 1.08rem;
}

.audience-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.audience-takeaways {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
  max-width: 820px;
  margin-inline: auto;
}

.audience-takeaways li {
  position: relative;
  padding-inline-start: 1.4rem;
  color: var(--fg);
  font-size: 0.95rem;
}

.audience-takeaways li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.62em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px rgba(10, 159, 212, 0.5);
}

/* ------------------------------------------------------------------ المدرب */
.instructor {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.instructor.has-image {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.instructor-visual img {
  width: 100%;
  border-radius: var(--r);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.instructor-name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
}

.instructor-name-row h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.instructor-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 1.4rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  background: var(--grad);
  color: #04121c;
  text-decoration: none;
  box-shadow: var(--glow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.instructor-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(10, 159, 212, 0.45);
}

.instructor-social svg {
  width: 1.3rem;
  height: 1.3rem;
}

.instructor-points {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.instructor-points li {
  position: relative;
  padding-inline-start: 1.4rem;
  color: var(--muted);
}

.instructor-points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.75em;
  width: 0.5rem;
  height: 1px;
  background: var(--blue);
}

[data-credentials],
.instructor-credentials {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

[data-credentials] li,
.instructor-credentials li {
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted-2);
}

/* ------------------------------------------------------------------ الأسئلة */
.faq-list {
  margin-top: 2.8rem;
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  padding: 1.3rem 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-inline-end: 2.2rem;
  transition: color 0.2s var(--ease);
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
  color: var(--blue);
}

.faq-item p {
  margin: 0;
  padding: 0 0 1.4rem;
  color: var(--muted);
  max-width: 60ch;
}

/* ------------------------------------------------------------------ التسجيل */
.registration-form {
  margin-top: 2.8rem;
  max-width: 560px;
  display: grid;
  gap: 1.4rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--panel);
  color: var(--fg);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s var(--ease);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--blue-ring);
}

.phone-field {
  display: flex;
  gap: 0.5rem;
}

.phone-field input {
  flex: 1;
  min-width: 0;
  font-family: var(--latin);
  letter-spacing: 0.06em;
}

.phone-field input::placeholder {
  color: var(--muted-2);
  letter-spacing: normal;
}

/* الإنجليزي: نفس ترتيب البوكس العربي — +965 يسار والحقل يمين */
html[lang="en"] .phone-field {
  flex-direction: row-reverse;
}

.phone-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  padding-inline: 0.95rem;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--panel);
  color: var(--muted);
  font-family: var(--latin);
  font-size: 0.9rem;
  direction: ltr;
}

.form-footer {
  margin-top: 0.4rem;
}

.form-footer .cta {
  width: 100%;
  text-align: center;
}

.cta-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.82rem;
  text-align: center;
}

.register-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.register-steps {
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1.3rem;
}

.register-steps li {
  counter-increment: step;
  position: relative;
  padding-inline-start: 2.9rem;
  color: var(--muted);
}

.register-steps li::before {
  content: counter(step);
  position: absolute;
  inset-inline-start: 0;
  top: 0.1em;
  width: 1.9rem;
  height: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--blue-ring);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
}

.register-card {
  padding: clamp(1.8rem, 3vw, 2.8rem);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  background: linear-gradient(to bottom, rgba(17, 26, 44, 0.75), rgba(12, 18, 32, 0.55));
  box-shadow: var(--shadow-md);
}

.register-badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--blue-ring);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
}

.register-card-title {
  margin-top: 1.4rem;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.register-card-sub {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.register-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  margin-top: 2.2rem;
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 15, 28, 0.5);
  color: var(--muted);
  font-size: 0.84rem;
}

.register-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
}

.register-card .registration-form {
  margin-top: 1.8rem;
  max-width: none;
}

/* ------------------------------------------------------------------ الراعي */
.sponsor-card {
  padding: 3rem 0 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.sponsor-logo {
  display: inline-block;
  max-width: 340px;
  margin-inline: auto;
}

.sponsor-logo img {
  width: 100%;
  height: auto;
}

/* ------------------------------------------------------- زر واتساب العائم */
.wa-float {
  position: fixed;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--grad);
  color: #04121c;
  box-shadow: var(--glow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(10, 159, 212, 0.55);
}

.wa-float svg {
  width: 1.9rem;
  height: 1.9rem;
}

/* بوب-أب «راسلنا» عند الهوفر */
.wa-float::after {
  content: "راسلنا";
  position: absolute;
  left: calc(100% + 0.7rem);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--grad);
  color: #04121c;
  font-family: var(--ar);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(10, 159, 212, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.wa-float:hover::after,
.wa-float:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

html[lang="en"] .wa-float::after {
  content: "Message us";
  font-family: var(--latin);
}

/* الإنجليزي: زر الواتساب يمين والبوب-أب على يساره */
html[lang="en"] .wa-float {
  left: auto;
  right: 1.4rem;
}

html[lang="en"] .wa-float::after {
  left: auto;
  right: calc(100% + 0.7rem);
  transform: translateY(-50%) translateX(6px);
}

html[lang="en"] .wa-float:hover::after,
html[lang="en"] .wa-float:focus-visible::after {
  transform: translateY(-50%) translateX(0);
}

/* ------------------------------------------------------------------ الفوتر */
.site-footer {
  position: relative;
  margin-top: var(--section-pad);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.footer-visual {
  position: absolute;
  inset: 0;
}

.footer-visual picture,
.footer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--ink) 0%, rgba(10, 15, 28, 0.35) 22%, transparent 45%),
    linear-gradient(to top, rgba(10, 15, 28, 0.78) 0%, rgba(10, 15, 28, 0.22) 40%, transparent 70%);
}

.site-footer.has-visual {
  border-top: none;
}

.site-footer.has-visual .footer-shell {
  padding-top: clamp(7rem, 16vw, 13rem);
}

.footer-shell {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 3.5rem var(--gutter) 2.5rem;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  text-align: center;
}

.visit-line {
  margin: 0;
  font-family: var(--latin);
  font-size: 0.75rem;
  color: var(--muted-2);
}

.site-footer .footer-shell > small {
  font-size: 0.92rem;
  color: var(--fg);
  opacity: 0.85;
}

/* ------------------------------------------------------------------ موبايل */
@media (max-width: 760px) {
  .hero {
    min-height: 92svh;
  }

  .header-cta {
    font-size: 0.8rem;
    padding: 0.45rem 1.05rem;
  }

  .hero-poster {
    object-position: 62% center;
  }

  .curriculum-tab span {
    display: none;
  }

  .panel-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .instructor.has-image {
    grid-template-columns: 1fr;
  }

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .audience-takeaways {
    grid-template-columns: 1fr;
  }

  .instructor-visual {
    max-width: 320px;
  }

  .hero-actions .cta,
  .hero-actions .cta-ghost {
    width: 100%;
    text-align: center;
  }

  .register-grid {
    grid-template-columns: 1fr;
  }

  .register-strip {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    padding-inline: 0.7rem;
    font-size: 0.72rem;
  }
}
