/* =========================================================
   Rober Mossad — Landing Page
   Theme: black × red · bilingual (AR/EN)
   ========================================================= */

:root {
  /* Core blacks — matches the logo's true black background */
  --bg:            #050507;
  --bg-2:          #0A0A0D;
  --surface:       #111115;
  --surface-2:     #17171D;

  --border:        rgba(255, 255, 255, .06);
  --border-strong: rgba(255, 255, 255, .13);

  /* Warmer off-whites (match the logo's refined feel) */
  --text:          #F1F1F4;
  --text-dim:      #A6A7B1;
  --text-mute:     #6B6C76;

  /* Executive red — deeper than crimson, more confident than scarlet */
  --red:           #C8102E;
  --red-2:         #E8313A;
  --red-deep:      #7A0B1E;
  --red-soft:      rgba(200, 16, 46, .10);
  --red-line:      rgba(200, 16, 46, .36);

  --grad:        linear-gradient(135deg, #E8313A 0%, #C8102E 50%, #7A0B1E 100%);
  --grad-soft:   linear-gradient(135deg, rgba(232,49,58,.12), rgba(122,11,30,.02));
  --grad-line:   linear-gradient(90deg, transparent, #C8102E, transparent);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;

  --shadow-sm:    0 4px 20px rgba(0,0,0,.28);
  --shadow:       0 10px 40px rgba(0,0,0,.5);
  --shadow-red:   0 12px 32px rgba(200, 16, 46, .22);
  --shadow-red-l: 0 18px 44px rgba(200, 16, 46, .32);

  --font-en: 'Inter', system-ui, sans-serif;
  --font-ar: 'Tajawal', system-ui, sans-serif;
  --font-display: 'Playfair Display', serif;

  --container: 1200px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-en);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[dir="rtl"] body,
html[lang="ar"] body { font-family: var(--font-ar); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

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

/* -------- Phone number LTR isolation -------- */
.phone {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-en);
}

/* -------- Language visibility -------- */
.en, .ar { display: none; }
body.lang-en .en { display: inline; }
body.lang-ar .ar { display: inline; }

body.lang-en .hero__title .en,
body.lang-ar .hero__title .ar,
body.lang-en .hero__sub .en,
body.lang-ar .hero__sub .ar {
  display: block;
}

/* -------- Container -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* -------- Section base -------- */
.section { padding: 110px 0; position: relative; }
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red-2);
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--red-line);
  border-radius: 100px;
  background: var(--red-soft);
}
body.lang-ar .section__eyebrow { letter-spacing: 0; text-transform: none; font-size: 13px; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  margin: 24px 0 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}
body.lang-ar .section__title {
  font-family: var(--font-ar);
  font-weight: 800;
  letter-spacing: 0;
}

.section__head { text-align: center; max-width: 760px; margin: 0 auto 60px; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--red-soft);
  border: 1px solid var(--red-line);
  border-radius: 100px;
  font-size: 13px;
  color: var(--red-2);
  font-weight: 500;
  letter-spacing: .04em;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(200,16,46,.25);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,.45); }
  50%      { box-shadow: 0 0 0 6px rgba(200,16,46,0); }
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: all .35s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-l);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  border-color: var(--red-line);
  background: var(--red-soft);
  color: var(--red-2);
}

/* -------- Navigation -------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: all .4s var(--ease);
  background: rgba(5, 5, 7, 0);
}
.nav.is-scrolled {
  background: rgba(5, 5, 7, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  height: 76px;
  transition: height .4s var(--ease);
}
.nav.is-scrolled .nav__logo { height: 58px; }

.nav__logo-img {
  height: 100%;
  width: auto;
  mix-blend-mode: screen;
  filter: contrast(1.04) brightness(1.05);
  transition: filter .3s var(--ease);
  pointer-events: none;
}
.nav__logo:hover .nav__logo-img { filter: contrast(1.08) brightness(1.12); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 14px;
  color: var(--text-dim);
  position: relative;
  transition: color .3s var(--ease);
  font-weight: 500;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  width: 42px; height: 38px;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-dim);
  transition: all .3s var(--ease);
}
.lang-toggle:hover { border-color: var(--red-line); color: var(--red-2); }

.nav__burger { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------- HERO -------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .45;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: rgba(200, 16, 46, .35);
  top: -120px; left: -120px;
  animation: float 18s ease-in-out infinite;
}
.hero__orb--2 {
  width: 420px; height: 420px;
  background: rgba(140, 28, 24, .35);
  bottom: -100px; right: -80px;
  animation: float 22s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(60px, 40px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content { display: flex; flex-direction: column; gap: 28px; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.05;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.025em;
}
body.lang-ar .hero__title {
  font-family: var(--font-ar);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.hero__sub {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero Media */
.hero__media { display: flex; justify-content: center; align-items: center; position: relative; }
.hero__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
}
.hero__photo-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--red) 30%, var(--red-2) 45%, transparent 70%);
  animation: spin 12s linear infinite;
  opacity: .5;
  filter: blur(2px);
  z-index: 0;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.hero__photo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 240px 240px 24px 24px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg-2) 100%);
  box-shadow: var(--shadow);
  z-index: 1;
}

/* scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scroll span {
  display: block;
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--text-mute);
  border-radius: 100px;
  position: relative;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  border-radius: 2px;
  background: var(--red);
  animation: scroll-dot 1.8s var(--ease) infinite;
}
@keyframes scroll-dot {
  0%   { opacity: 0; transform: translate(-50%, -6px); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* -------- TRUSTED (static grid) -------- */
.trusted {
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.trusted__label {
  text-align: center;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 40px;
  font-weight: 500;
}
body.lang-ar .trusted__label { letter-spacing: 0; text-transform: none; font-size: 14px; }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin: 40px auto 0;
}
.logo-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.logo-grid__item:hover {
  border-color: var(--red-line);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.logo-grid__item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 1100px) { .logo-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 768px)  { .logo-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px)  { .logo-grid { grid-template-columns: repeat(3, 1fr); } .logo-grid__item { height: 80px; padding: 12px; } }
@media (max-width: 380px)  { .logo-grid { grid-template-columns: repeat(2, 1fr); } }

/* -------- ABOUT -------- */
.about__inner { max-width: 860px; margin: 0 auto; }
.about__head { text-align: center; margin-bottom: 40px; }

.about__text p { color: var(--text-dim); font-size: 17px; line-height: 1.8; margin: 0 0 20px; }
.about__highlight {
  color: var(--text) !important;
  font-weight: 500;
  padding: 20px 24px;
  border-inline-start: 3px solid var(--red);
  background: var(--red-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 24px !important;
}
html[dir="rtl"] .about__highlight { border-radius: var(--radius) 0 0 var(--radius); }

/* -------- SERVICES -------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all .5s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--red-line);
  box-shadow: var(--shadow);
}
.service-card:hover::before { opacity: 1; }

.service-card__top { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.service-card__num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.service-card__tag {
  padding: 5px 11px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: .05em;
  font-weight: 500;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.25;
  margin: 0;
  font-weight: 600;
  position: relative; z-index: 1;
}
body.lang-ar .service-card__title { font-family: var(--font-ar); font-weight: 800; font-size: 22px; }

.service-card__desc {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  position: relative; z-index: 1;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  position: relative; z-index: 1;
}
.service-card__list li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 14.5px;
  color: var(--text);
}
.service-card__list li::before {
  content: "";
  position: absolute;
  top: 9px;
  inset-inline-start: 0;
  width: 14px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.service-card__cta {
  margin-top: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  color: var(--red-2);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid var(--red-line);
  width: fit-content;
  transition: gap .3s var(--ease);
  position: relative; z-index: 1;
}
.service-card__cta:hover { gap: 12px; }
.service-card__cta svg { transition: transform .3s var(--ease); }
html[dir="rtl"] .service-card__cta svg { transform: scaleX(-1); }

.service-card__ctas { display: flex; flex-wrap: wrap; gap: 20px; margin-top: auto; justify-content: center; position: relative; z-index: 1; }
.service-card__cta--ghost { color: var(--text-dim); border-color: var(--border-strong); }
.service-card__cta--ghost:hover { color: var(--text); }

/* -------- BOOKING / PRICING -------- */
.booking { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }

.booking__video {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 32px auto 0;
  cursor: pointer;
  text-decoration: none;
}
.booking__video-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-red-l);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.booking__video:hover .booking__video-wrap {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 50px rgba(200, 16, 46, .4);
}
.booking__video-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease), filter .35s var(--ease);
}
.booking__video:hover .booking__video-wrap img {
  transform: scale(1.05);
  filter: brightness(.85);
}
.booking__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 0, 0, .92);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5), 0 0 0 0 rgba(255, 0, 0, .55);
  animation: play-pulse 2.2s ease-in-out infinite;
}
.booking__video-play svg { margin-inline-start: 4px; }
@keyframes play-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, .5), 0 0 0 0 rgba(255, 0, 0, .55); }
  50%      { box-shadow: 0 10px 30px rgba(0, 0, 0, .5), 0 0 0 18px rgba(255, 0, 0, 0); }
}
.booking__video-caption {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-mute);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.booking__video:hover .booking__video-caption { color: var(--red-2); border-color: var(--red-line); }
.booking__video-caption svg { color: #ff0000; flex: 0 0 auto; }
@media (prefers-reduced-motion: reduce) {
  .booking__video-play { animation: none; }
}

.currency-switch {
  display: inline-flex;
  padding: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-top: 28px;
  gap: 4px;
}
.currency-switch__btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.currency-switch__btn.is-active {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all .4s var(--ease);
}
.price-card:hover { transform: translateY(-4px); border-color: var(--red-line); }

.price-card__kicker {
  font-size: 12px;
  color: var(--red-2);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.lang-ar .price-card__kicker { letter-spacing: 0; text-transform: none; font-size: 13px; }

.price-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 8px 0 4px;
  font-weight: 600;
}
body.lang-ar .price-card__title { font-family: var(--font-ar); font-weight: 800; }

.price-card__duration { color: var(--text-dim); font-size: 14px; margin: 0; }

.price-card__audience {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--red-line);
  border-radius: 100px;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3;
  white-space: nowrap;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.price-card__audience::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(232, 49, 58, .7);
  flex: 0 0 auto;
  animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(232, 49, 58, .55); }
  50%      { box-shadow: 0 0 14px rgba(232, 49, 58, .95); }
}
.price-card:hover .price-card__audience {
  border-color: var(--red);
  background: rgba(200, 16, 46, .08);
  transform: translateY(-1px);
}
html[dir="rtl"] .price-card__audience,
body.lang-ar .price-card__audience {
  letter-spacing: 0;
  text-transform: none;
  font-size: 12px;
  padding: 7px 11px 7px 14px;
}
@media (prefers-reduced-motion: reduce) {
  .price-card__audience::before { animation: none; }
}
@media (max-width: 480px) {
  .price-card__audience { font-size: 10px; padding: 6px 11px 6px 9px; }
}

.duration-badge {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  padding: 3px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 14px rgba(200, 16, 46, .35);
  margin: 0 4px;
  vertical-align: 1px;
  animation: badge-pulse 2.4s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(200, 16, 46, .35); transform: translateY(0); }
  50%      { box-shadow: 0 6px 20px rgba(200, 16, 46, .55); transform: translateY(-1px); }
}
@media (prefers-reduced-motion: reduce) {
  .duration-badge { animation: none; }
}

.price-card__watch { margin-top: 12px; }
.price-card__watch svg { color: var(--red-2); }

.price-card__price {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -.02em;
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.price-card__list { display: flex; flex-direction: column; gap: 12px; }
.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.price-card__list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--red-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5A54' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Payment methods (Egyptian + International) */
.payment-grid {
  max-width: 980px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.payment-box {
  padding: 24px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.payment-box:hover { border-color: var(--red-line); transform: translateY(-3px); }
.payment-box__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.payment-box__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--red-soft);
  color: var(--red-2);
  border-radius: 12px;
}
.payment-box__brand {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}
.payment-box__brand svg,
.payment-box__brand img { width: 100%; height: 100%; display: block; object-fit: cover; }
.payment-box__brand--vodafone { box-shadow: 0 6px 18px rgba(230, 0, 0, .35); }
.payment-box__brand--payoneer { box-shadow: 0 6px 18px rgba(255, 72, 0, .35); }
.payment-box__kicker {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-2);
  font-weight: 700;
  margin-bottom: 2px;
}
body.lang-ar .payment-box__kicker { letter-spacing: 0; text-transform: none; font-size: 12px; }
.payment-box h4 {
  margin: 0;
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
}
body.lang-ar .payment-box h4 { font-family: var(--font-ar); font-weight: 800; }
.payment-box p { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.7; }
.payment-box b { color: var(--text); }
.payment-box a { color: var(--red-2); text-decoration: underline; }
.payment-box a:hover { color: var(--red); }

@media (max-width: 720px) {
  .payment-grid { grid-template-columns: 1fr; }
}

/* -------- Booking Form -------- */
.booking-form {
  max-width: 860px;
  margin: 60px auto 0;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.booking-form__head { text-align: center; margin-bottom: 30px; }
.booking-form__head h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 8px;
  font-weight: 600;
}
body.lang-ar .booking-form__head h3 { font-family: var(--font-ar); font-weight: 800; }
.booking-form__head p { color: var(--text-dim); margin: 0; }

.booking-form__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red-line);
  background: var(--surface-2);
}
.field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.field select { cursor: pointer; }

.field__hint {
  color: var(--text-mute);
  font-size: 12px;
  font-weight: 400;
  margin-inline-start: 4px;
}

/* -------- Custom check / radio grid -------- */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.check:hover { border-color: var(--border-strong); background: var(--surface); }
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check__box {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 5px;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.check__box--radio { border-radius: 50%; }
.check__box::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 2px;
  transform: scale(0);
  transition: transform .2s var(--ease);
}
.check__box--radio::after { border-radius: 50%; }
.check input:checked ~ .check__box {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(200, 16, 46, .35);
}
.check input:checked ~ .check__box::after { transform: scale(1); }
.check input:focus-visible ~ .check__box {
  outline: 2px solid var(--red-2);
  outline-offset: 2px;
}
.check:has(input:checked) {
  border-color: var(--red-line);
  background: var(--red-soft);
}
.check__text { font-size: 14px; color: var(--text); }
.check__text .en, .check__text .ar { line-height: 1; }

.referral-other {
  margin-top: 10px;
}
.referral-other[hidden] { display: none; }

.booking-form__submit { margin-top: 10px; text-align: center; }
.booking-form__hint { color: var(--text-mute); font-size: 13px; margin: 12px 0 0; }

/* -------- WHY -------- */
.why { background: var(--bg-2); }
.why__story {
  max-width: 820px;
  margin: 0 auto 60px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.why__quote { position: absolute; top: -12px; inset-inline-start: 30px; color: var(--red); }
.why__lead { font-size: 18px; color: var(--text); margin: 0 0 20px; line-height: 1.7; }
.why__story p { color: var(--text-dim); font-size: 16px; line-height: 1.8; margin: 20px 0; }
.why__story b { color: var(--text); font-weight: 600; }

.why__photo {
  float: inline-end;
  width: 230px;
  margin: 4px 0 18px 28px;
  margin-inline-start: 28px;
  margin-inline-end: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-red-l);
  shape-outside: margin-box;
}
.why__photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
@media (max-width: 640px) {
  .why__photo {
    float: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 24px;
  }
}

.why__gallery {
  clear: both;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 28px 0 24px;
}
.why__gallery-item {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.why__gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}
.why__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .why__gallery { grid-template-columns: repeat(2, 1fr); }
}

.why__skills, .why__learnings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 20px 0;
}
.why__skills li, .why__learnings li {
  position: relative;
  padding-inline-start: 24px;
  color: var(--text);
  font-size: 15px;
}
.why__skills li::before, .why__learnings li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 3px var(--red-soft);
}

.why__punch {
  padding: 24px;
  background: var(--red-soft);
  border-inline-start: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px !important;
  color: var(--text) !important;
  margin-top: 30px !important;
}
html[dir="rtl"] .why__punch { border-radius: var(--radius) 0 0 var(--radius); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-point {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-point:hover { border-color: var(--red-line); transform: translateY(-3px); }
.why-point__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.why-point p { margin: 0; color: var(--text); font-size: 15.5px; line-height: 1.6; }

/* -------- RESOURCES -------- */
.resources__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.resource-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.resource-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.resource-card:hover { border-color: var(--red-line); transform: translateY(-4px); }
.resource-card:hover::before { opacity: 1; }

.resource-card__icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 14px;
  position: relative; z-index: 1;
}
.resource-card__body { flex: 1; position: relative; z-index: 1; }
.resource-card__kicker {
  font-size: 12px;
  color: var(--red-2);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
body.lang-ar .resource-card__kicker { letter-spacing: 0; text-transform: none; font-size: 13px; }

.resource-card__body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 6px 0 8px;
  font-weight: 600;
}
body.lang-ar .resource-card__body h3 { font-family: var(--font-ar); font-weight: 800; }
.resource-card__body p { margin: 0; color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

.resource-card__arrow {
  color: var(--text-mute);
  transition: all .3s var(--ease);
  position: relative; z-index: 1;
}
.resource-card:hover .resource-card__arrow { color: var(--red); transform: translate(2px, -2px); }

/* Podcast card with multiple platform buttons (not a full link) */
.resource-card--podcast { cursor: default; }
.resource-card--podcast:hover { transform: none; }

.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.platform-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.platform-btn svg { flex: 0 0 auto; }

.platform-btn--spotify {
  background: #1DB954;
  box-shadow: 0 6px 18px rgba(29, 185, 84, .28);
}
.platform-btn--spotify:hover { box-shadow: 0 10px 24px rgba(29, 185, 84, .42); }

.platform-btn--anghami {
  background: linear-gradient(135deg, #ff2db1 0%, #b00086 100%);
  box-shadow: 0 6px 18px rgba(255, 45, 177, .28);
}
.platform-btn--anghami:hover { box-shadow: 0 10px 24px rgba(255, 45, 177, .42); }

/* -------- Course Poster (infographic) -------- */
.course__poster {
  position: relative;
  max-width: 980px;
  margin: 0 auto 60px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.course__poster:hover {
  transform: translateY(-3px);
  border-color: var(--red-line);
}
.course__poster img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 10px);
  display: block;
}
.course__poster figcaption {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  background: rgba(5,5,7,.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--red-line);
  border-radius: 100px;
  font-size: 13px;
  color: var(--red-2);
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s var(--ease), bottom .3s var(--ease);
  pointer-events: none;
}
.course__poster:hover figcaption { opacity: 1; bottom: 34px; }

/* -------- Lightbox -------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3, 3, 6, .92);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
  animation: fade-in .3s var(--ease);
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(200, 16, 46, .25);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border-strong);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.lightbox__close:hover {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(90deg);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* -------- COURSE TRACK (Masterclass) -------- */
.course {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  overflow: hidden;
}
.course__hero {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
}
.course__kicker {
  display: inline-block;
  padding: 6px 14px;
  background: var(--red-soft);
  border: 1px solid var(--red-line);
  color: var(--red-2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
body.lang-ar .course__kicker { letter-spacing: 0; text-transform: none; font-size: 13px; }
.course__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 16px;
}
body.lang-ar .course__title { font-family: var(--font-ar); font-weight: 800; }

.course__tagline {
  color: var(--text-dim);
  font-size: 17px;
  margin: 0;
  line-height: 1.6;
}

/* 3 columns: pain / situation / promises */
.course__triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.course-col {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .4s var(--ease);
}
.course-col:hover { border-color: var(--red-line); transform: translateY(-4px); }
.course-col__head { display: flex; align-items: center; gap: 12px; }
.course-col__tag {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.course-col__head h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}
body.lang-ar .course-col__head h3 { font-family: var(--font-ar); font-weight: 800; font-size: 19px; }

.course-col ul { display: flex; flex-direction: column; gap: 10px; }
.course-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
}
.course-col ul li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}

/* Outcomes band */
.course__outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px;
  background: linear-gradient(90deg, var(--red-soft), transparent, var(--red-soft));
  border: 1px solid var(--red-line);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}
.course-outcome {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 10px;
}
.course-outcome + .course-outcome {
  border-inline-start: 1px solid var(--red-line);
  padding-inline-start: 24px;
}
.course-outcome strong {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red-2);
  font-weight: 700;
}
body.lang-ar .course-outcome strong { letter-spacing: 0; text-transform: none; font-size: 13px; }
.course-outcome span { color: var(--text); font-size: 15px; line-height: 1.5; }

/* Free preview CTA */
.course__preview {
  text-align: center;
  margin: 0 auto 70px;
}
.course__preview-btn {
  font-size: 16px;
  padding: 16px 32px;
  animation: preview-glow 2.4s ease-in-out infinite;
}
.course__preview-btn svg { color: #fff; }
@keyframes preview-glow {
  0%, 100% { box-shadow: var(--shadow-red); }
  50%      { box-shadow: var(--shadow-red-l); transform: translateY(-2px); }
}
@media (prefers-reduced-motion: reduce) {
  .course__preview-btn { animation: none; }
}

/* Journey roadmap */
.course__journey-head {
  text-align: center;
  margin-bottom: 40px;
}
.course__journey-head h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}
body.lang-ar .course__journey-head h3 { font-family: var(--font-ar); font-weight: 800; }

.journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.journey::before {
  content: "";
  position: absolute;
  top: 40px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-line), var(--red), var(--red-line), transparent);
  z-index: 0;
}
.journey-step {
  position: relative;
  z-index: 1;
  padding: 28px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .4s var(--ease);
}
.journey-step:hover {
  border-color: var(--red-line);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.journey-step__num {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-red);
  margin: 0 auto;
}
.journey-step__title {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 0;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
  color: var(--red-2);
  letter-spacing: .02em;
}
body.lang-ar .journey-step__title { font-family: var(--font-ar); font-weight: 800; font-size: 15px; }
.journey-step__title small {
  display: block;
  color: var(--text);
  font-family: var(--font-ar);
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0;
}
.journey-step p {
  margin: 0;
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.55;
  text-align: center;
}

.course__cta {
  text-align: center;
  margin-top: 50px;
}

/* -------- BD BOOK -------- */
.book__authors {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 16px;
}
.book__authors b { color: var(--text); font-weight: 700; }

.book__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 40px;
}
.book__cover {
  display: flex;
  justify-content: center;
}
.book__cover-wrap {
  position: relative;
  width: 100%;
  max-width: 920px;
  aspect-ratio: 1280 / 826;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-red-l);
  transition: transform .5s var(--ease);
}
.book__cover-wrap:hover {
  transform: translateY(-4px);
}
.book__cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}
.book__lead {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.75;
  margin: 0 0 28px;
}
.book__sub {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 16px;
}
.book__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.book__list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}
html[dir="rtl"] .book__list li,
body.lang-ar .book__list li {
  padding-left: 0;
  padding-right: 28px;
}
.book__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px var(--red-soft);
}
html[dir="rtl"] .book__list li::before,
body.lang-ar .book__list li::before {
  left: auto;
  right: 0;
}
.book__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 26px;
}
.book__price-current {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -.02em;
  direction: ltr;
  unicode-bidi: isolate;
}
.book__price-old {
  position: relative;
  font-size: 18px;
  color: var(--text-mute);
  font-weight: 500;
  direction: ltr;
  unicode-bidi: isolate;
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}
.book__price-tag {
  padding: 5px 12px;
  background: var(--red-soft);
  border: 1px solid var(--red-line);
  border-radius: 100px;
  color: var(--red-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
body.lang-ar .book__price-tag { letter-spacing: 0; text-transform: none; }

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

/* Book Order Form */
.book-order {
  max-width: 880px;
  margin: 60px auto 0;
  padding: 36px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.book-order__head { text-align: center; margin-bottom: 28px; }
.book-order__head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 8px;
  font-weight: 600;
}
body.lang-ar .book-order__head h3 { font-family: var(--font-ar); font-weight: 800; }
.book-order__head p { color: var(--text-dim); margin: 0; }
.book-order__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px) {
  .book-order__form { grid-template-columns: 1fr; }
  .book-order { padding: 28px 22px; }
}
@media (max-width: 900px) {
  .book__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .book__cover-wrap {
    transform: none;
    max-width: 280px;
  }
}

/* -------- TESTIMONIALS -------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  padding: 10px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-line);
  box-shadow: var(--shadow-red);
}
.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 8px);
}
@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* -------- CONTACT -------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact__desc { color: var(--text-dim); margin: 20px 0 30px; font-size: 16px; line-height: 1.7; }

.contact__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.contact__list li:hover { border-color: var(--red-line); transform: translateX(4px); }
html[dir="rtl"] .contact__list li:hover { transform: translateX(-4px); }

.contact__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact__list a,
.contact__list .contact__row { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.contact__kicker { font-size: 12px; color: var(--text-mute); letter-spacing: .05em; }
.contact__val { font-size: 15px; color: var(--text); font-weight: 500; }

.contact__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.contact__socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-dim);
  transition: all .3s var(--ease);
}
.contact__socials a:hover {
  color: var(--red);
  border-color: var(--red-line);
  background: var(--red-soft);
  transform: translateY(-2px);
}

.contact__cta-card {
  padding: 40px;
  background: linear-gradient(180deg, rgba(200,16,46,.08), var(--surface));
  border: 1px solid var(--red-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}
.contact__cta-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 12px;
  font-weight: 600;
}
body.lang-ar .contact__cta-card h3 { font-family: var(--font-ar); font-weight: 800; }
.contact__cta-card p { color: var(--text-dim); margin: 0 0 24px; }

/* -------- FOOTER -------- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__brand { display: inline-flex; align-items: center; gap: 12px; }
.footer__logo-img {
  height: 64px;
  width: auto;
  mix-blend-mode: screen;
  filter: contrast(1.04) brightness(1.05);
  pointer-events: none;
}
.footer__copy { color: var(--text-mute); font-size: 13px; margin: 0; }

/* -------- Floating WhatsApp -------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
  z-index: 90;
  transition: transform .3s var(--ease);
  animation: wa-pulse 2s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .4); }
  50%      { box-shadow: 0 10px 30px rgba(37, 211, 102, .4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* -------- Scroll reveal -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

/* -------- RESPONSIVE -------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 340px; margin: 0 auto; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
  .resources__grid { grid-template-columns: 1fr; }

  .course__triple { grid-template-columns: 1fr; }
  .course__outcomes { grid-template-columns: 1fr; }
  .course-outcome + .course-outcome {
    border-inline-start: 0;
    padding-inline-start: 0;
    padding-top: 16px;
    border-top: 1px solid var(--red-line);
  }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .journey::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav__logo { height: 56px; }
  .nav.is-scrolled .nav__logo { height: 46px; }

  .nav__menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(5,5,7,.96);
    backdrop-filter: blur(18px);
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu .nav__link { padding: 16px 0; width: 100%; border-bottom: 1px solid var(--border); font-size: 16px; }
  .nav__burger { display: flex; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero__title { font-size: 38px; }
  .hero__scroll { display: none; }

  .pricing { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .why__skills, .why__learnings { grid-template-columns: 1fr; }

  .booking-form { padding: 28px 20px; }
  .booking-form__form { grid-template-columns: 1fr; }

  .currency-switch { flex-direction: column; width: 100%; max-width: 380px; border-radius: var(--radius); }
  .currency-switch__btn { width: 100%; border-radius: var(--radius); }

  .why__story { padding: 28px 20px; }
  .contact__cta-card { padding: 28px 22px; }

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
