
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; text-rendering: optimizeSpeed; }
  .scroll-anchor {
    display: block;
    position: relative;
    top: calc(-1 * (var(--nav-height, 80px) + 16px));
    height: 1px;
    visibility: hidden;
    pointer-events: none;
  }
  .belt-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(24px, 3.5vw, 44px) var(--gutter);
  }
  /* Belt SVG dividers — wrapper only; the SVG itself carries all styling */
  @media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: auto; }
  }
  img, video, svg { display: block; max-width: 100%; height: auto; }
  button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }

  :root {
    /* Clean white + bold blue palette */
    --bg: #f8fafc;
    --bg-2: #ffffff;
    --bg-3: #eef4fc;       /* soft blue tint */
    --bg-blue-soft: #e7f0fb;
    --bg-deep: #0c1f3f;    /* deep navy for inverted moments */

    --ink: #0f172a;        /* slate-900 */
    --ink-soft: #475569;   /* slate-600 */
    --ink-faint: #94a3b8;  /* slate-400 */
    --ink-on-blue: #ffffff;
    --ink-on-blue-soft: rgba(255,255,255,0.85);

    --blue: #2563eb;       /* primary */
    --blue-hot: #1d4ed8;
    --blue-deep: #1e40af;
    --blue-pale: #dbeafe;
    --blue-tint: #f0f6ff;

    /* Yellow accent — picks up the logo's yellow */
    --yellow: #fbbf24;       /* warm amber */
    --yellow-hot: #f59e0b;   /* deeper for hover */
    --yellow-light: #fef3c7; /* pale soft fill */

    --rule: rgba(15,23,42,0.08);
    --rule-strong: rgba(15,23,42,0.16);
    --rule-dark: rgba(255,255,255,0.18);

    --shadow-card: 0 4px 20px rgba(15,23,42,0.05);
    --shadow-card-hover: 0 12px 36px rgba(15,23,42,0.1);
    --shadow-float: 0 20px 60px rgba(15,23,42,0.08);

    --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    --font-ar: "Cairo", "Tajawal", system-ui, sans-serif;

    --container: 1320px;
    --gutter: clamp(20px, 5vw, 80px);
    --section-py: clamp(80px, 12vw, 140px);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-sharp: cubic-bezier(0.32, 0.72, 0, 1);
  }

  /* Bilingual visibility */
  html[lang="en"] [lang="ar"] { display: none !important; }
  html[lang="ar"] [lang="en"] { display: none !important; }

  html[lang="ar"] { --font-sans: var(--font-ar); }

  body {
    background: var(--bg-2);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* TYPOGRAPHY */
  h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
  }
  html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 {
    letter-spacing: 0;
    line-height: 1.35;
    font-weight: 800;
  }

  .display {
    font-size: clamp(40px, 6.4vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  html[lang="ar"] .display { font-weight: 800; line-height: 1.25; letter-spacing: -0.005em; }

  .h-section {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
  }
  html[lang="ar"] .h-section { font-weight: 800; line-height: 1.3; letter-spacing: 0; }

  .h-card {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
  }
  html[lang="ar"] .h-card { font-weight: 700; line-height: 1.4; letter-spacing: 0; }

  /* Emphasis — blue text + yellow highlighter underline (picks up logo's yellow) */
  .emph {
    color: var(--blue);
    position: relative;
    display: inline-block;
    white-space: nowrap;
  }
  .emph::after {
    content: "";
    position: absolute;
    left: 3%;
    right: 5%;
    bottom: 0.06em;
    height: 0.12em;
    min-height: 5px;
    background: var(--yellow);
    border-radius: 4px;
    opacity: 1;
    z-index: -1;
  }
  html[lang="ar"] .emph { color: var(--blue); }

  /* Kicker pill — outlined */
  .kicker-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    border: 1px solid var(--blue-pale);
    background: var(--blue-tint);
    border-radius: 999px;
  }
  html[lang="ar"] .kicker-pill {
    letter-spacing: 0;
    text-transform: none;
    font-size: 13px;
    font-weight: 700;
  }
  .kicker-pill.on-dark {
    color: #93c5fd;
    border-color: rgba(147,197,253,0.3);
    background: rgba(37,99,235,0.15);
  }

  /* Simple kicker — line + label */
  .kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
  }
  html[lang="ar"] .kicker {
    letter-spacing: 0;
    text-transform: none;
    font-size: 13px;
  }
  .kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
  }
  .kicker.on-dark { color: #93c5fd; }

  .lead {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 60ch;
  }
  html[lang="ar"] .lead { line-height: 1.9; }
  .lead.on-dark { color: var(--ink-on-blue-soft); }

  /* BUTTONS */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    transition: transform .18s var(--ease-sharp), background-color .18s var(--ease-sharp), color .18s var(--ease-sharp), border-color .18s var(--ease-sharp), box-shadow .18s var(--ease-sharp);
    white-space: nowrap;
    border: 1px solid transparent;
    font-family: var(--font-sans);
  }

  .btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37,99,235,0.3);
  }
  .btn-primary:hover {
    background: var(--blue-hot);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37,99,235,0.4);
  }

  .btn-ghost {
    color: var(--ink);
    border-color: transparent;
  }
  .btn-ghost:hover {
    color: var(--blue);
  }
  .btn-ghost-bordered {
    border-color: var(--rule-strong);
    color: var(--ink);
  }
  .btn-ghost-bordered:hover {
    border-color: var(--blue);
    color: var(--blue);
  }
  .btn-ghost-bordered.on-dark {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
  }
  .btn-ghost-bordered.on-dark:hover {
    border-color: #fff;
    background: #fff;
    color: var(--ink);
  }

  .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

  /* NAV */
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 16px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: background-color .2s var(--ease-sharp);
    will-change: transform;
  }
  /* Shadow + border via opacity-only pseudo-element — compositor-only, zero layout cost */
  .nav::after {
    content: '';
    position: absolute;
    inset: 0;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 1px 10px rgba(0,0,0,.07);
    opacity: 0;
    transition: opacity .2s var(--ease-sharp);
    pointer-events: none;
    z-index: -1;
  }
  .nav.is-scrolled {
    background: rgba(255,255,255,0.98);
  }
  .nav.is-scrolled::after {
    opacity: 1;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity .2s;
  }
  .nav-logo:hover { opacity: 0.75; }
  .nav-logo-shield {
    width: auto;
    height: 48px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,.18));
  }
  .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.02em;
    color: var(--ink);
    padding-left: 10px;
    border-left: 1.5px solid var(--rule);
  }
  html[lang="ar"] .nav-logo-text {
    font-size: 17px;
    padding-left: 0;
    padding-right: 10px;
    border-left: none;
    border-right: 1.5px solid var(--rule);
  }
  .nav-logo-text small {
    font-size: 10.5px;
    color: var(--ink-soft);
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-top: 3px;
    text-transform: uppercase;
  }
  html[lang="ar"] .nav-logo-text small {
    letter-spacing: 0;
    text-transform: none;
    font-size: 11px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 600;
  }
  html[lang="ar"] .nav-links { font-size: 16px; font-weight: 700; }
  .nav-links a {
    color: var(--ink);
    transition: color .2s;
    position: relative;
    padding: 4px 0;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-links a.nav-day {
    background: var(--blue);
    color: #fff;
    padding: 7px 16px;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background .18s, transform .18s;
    box-shadow: 0 2px 10px rgba(37,99,235,0.25);
  }
  .nav-links a.nav-day:hover { background: var(--blue-hot); color: #fff; transform: translateY(-1px); }

  /* Programs dropdown */
  .nav-dropdown { position: relative; }
  .nav-dropdown-btn {
    background: none; border: none; cursor: pointer; padding: 4px 0;
    font: inherit; font-size: 14px; font-weight: 600;
    color: var(--ink); display: inline-flex; align-items: center; gap: 5px;
    transition: color .2s; font-family: var(--font-sans);
  }
  .nav-dropdown-btn:hover { color: var(--blue); }
  .nav-dropdown-btn svg { opacity: .55; transition: transform .2s; flex-shrink: 0; }
  .nav-dropdown:hover .nav-dropdown-btn svg,
  .nav-dropdown:focus-within .nav-dropdown-btn svg,
  .nav-dropdown.is-open .nav-dropdown-btn svg { transform: rotate(180deg); }
  .nav-dropdown-panel {
    position: absolute; top: calc(100% + 12px); left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #fff; border: 1px solid var(--rule);
    border-radius: 14px; box-shadow: 0 8px 28px rgba(0,0,0,.12);
    min-width: 210px; padding: 6px;
    opacity: 0; pointer-events: none;
    transition: opacity .18s, transform .18s;
    z-index: 200;
  }
  /* Invisible bridge fills the 12px gap between button and panel so the
     mouse never leaves the hover zone while moving between them */
  .nav-dropdown-panel::before {
    content: ''; position: absolute;
    top: -12px; left: 0; right: 0; height: 12px;
  }
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel,
  .nav-dropdown.is-open .nav-dropdown-panel {
    opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown-panel a {
    display: block; padding: 9px 16px; border-radius: 9px;
    font-size: 14px; font-weight: 600; color: var(--ink-soft);
    transition: background .12s, color .12s;
  }
  .nav-dropdown-panel a:hover { background: var(--bg); color: var(--blue); }

  .nav-right { display: flex; align-items: center; gap: 10px; }

  .lang-toggle {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--rule-strong);
    border-radius: 999px;
    color: var(--ink);
    background: #fff;
    transition: transform .15s var(--ease-sharp), background-color .15s var(--ease-sharp), color .15s var(--ease-sharp), border-color .15s var(--ease-sharp);
    font-family: var(--font-sans);
  }
  .lang-toggle:hover {
    border-color: var(--blue);
    color: var(--blue);
  }
  html[lang="ar"] .lang-toggle { font-size: 14px; }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    background: var(--blue);
    color: #fff;
    border-radius: 999px;
    transition: transform .15s var(--ease-sharp), background-color .15s var(--ease-sharp), color .15s var(--ease-sharp), border-color .15s var(--ease-sharp);
    box-shadow: 0 4px 14px rgba(37,99,235,0.25);
  }
  html[lang="ar"] .nav-cta { font-size: 15px; }
  .nav-cta:hover {
    background: var(--blue-hot);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.35);
  }
  .nav-cta svg { width: 18px; height: 18px; }

  .nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    color: var(--ink);
  }
  .nav-toggle svg { width: 22px; height: 22px; }

  @media (max-width: 1100px) { .nav-links { gap: 22px; } }
  @media (max-width: 980px) {
    .nav-links { display: none; }
    .nav-cta span { display: none; }
    .nav-cta { padding: 10px; }
    .nav-toggle { display: inline-flex; }
  }
  @media (max-width: 600px) {
    .lang-toggle { padding: 7px 14px; font-size: 12px; }
  }

  /* MOBILE MENU */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: var(--bg-2);
    padding: 90px var(--gutter) 40px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
  }
  html[dir="rtl"] .mobile-menu { transform: translateX(-100%); }
  .mobile-menu.is-open { transform: translateX(0); }
  .mobile-menu-close {
    position: absolute;
    top: 22px; right: 22px;
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink);
  }
  html[dir="rtl"] .mobile-menu-close { right: auto; left: 22px; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a {
    font-family: var(--font-sans);
    font-size: clamp(26px, 5.5vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    transition: color .2s;
  }
  html[lang="ar"] .mobile-menu nav a { letter-spacing: 0; }
  .mobile-menu nav a:hover { color: var(--blue); }
  .mobile-menu-foot {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* HERO — split layout (text left, media right) */
  .hero {
    position: relative;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
    overflow: hidden;
    padding-top: 90px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    max-width: var(--container);
    margin-inline: auto;
    padding: clamp(40px, 5vw, 70px) 0 clamp(80px, 8vw, 100px) var(--gutter);
    align-items: center;
    min-height: 80vh;
  }
  html[dir="rtl"] .hero-grid { padding: clamp(40px, 5vw, 70px) var(--gutter) clamp(80px, 8vw, 100px) 0; }

  @media (max-width: 900px) {
    .hero-grid {
      grid-template-columns: 1fr;
      padding: 40px var(--gutter) 80px;
    }
    html[dir="rtl"] .hero-grid { padding: 40px var(--gutter) 80px; }
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 30px);
    max-width: 600px;
  }
  .hero-text h1 {
    margin-top: 8px;
  }
  .hero-sub {
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 68ch;
  }
  html[lang="ar"] .hero-sub { line-height: 1.85; font-size: clamp(15px, 1.3vw, 18px); }

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

  .hero-reassurance {
    display: flex;
    gap: 18px 32px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 500;
  }
  html[lang="ar"] .hero-reassurance { font-size: 14px; }
  .hero-reassurance span { display: flex; align-items: center; gap: 8px; }
  .hero-reassurance svg.check-circle {
    width: 20px; height: 20px;
    color: var(--blue);
    flex-shrink: 0;
  }

  .hero-media {
    position: relative;
    height: clamp(420px, 65vh, 640px);
    border-radius: 28px 0 0 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15,23,42,0.12);
  }
  html[dir="rtl"] .hero-media { border-radius: 0 28px 28px 0; }
  @media (max-width: 900px) {
    .hero-media {
      height: clamp(360px, 55vh, 500px);
      border-radius: 24px;
      margin-inline: 0;
    }
  }
  .hero-video-desktop, .hero-video-mobile {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .hero-video-mobile { display: none; }
  @media (max-width: 900px) {
    .hero-video-desktop { display: none; }
    .hero-video-mobile { display: block; }
  }
  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,0.15) 100%);
    pointer-events: none;
  }

  /* Bottom curve transition */
  .hero-curve {
    position: relative;
    width: 100%;
    height: clamp(40px, 5vw, 80px);
    background: var(--bg-3);
    overflow: hidden;
  }
  .hero-curve::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-2);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: translateY(50%);
  }

  /* VALUE BAR — floating, overlapping section break */
  .value-bar-section {
    position: relative;
    background: var(--bg-2);
    padding: 0 var(--gutter);
    z-index: 5;
  }
  .value-bar {
    max-width: var(--container);
    margin: -60px auto 0;
    background: var(--bg-2);
    border: 1px solid var(--rule);
    border-radius: 24px;
    padding: clamp(20px, 2.5vw, 32px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 32px);
    box-shadow: var(--shadow-float);
    position: relative;
    z-index: 2;
  }
  @media (max-width: 900px) {
    .value-bar { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
  }
  @media (max-width: 500px) {
    .value-bar { grid-template-columns: 1fr; }
  }
  .value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .value-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--blue-tint);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
  }
  .value-item-icon svg { width: 22px; height: 22px; }
  .value-item-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
  .value-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  html[lang="ar"] .value-item h3 { font-size: 16px; letter-spacing: 0; line-height: 1.4; }
  .value-item p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.45;
  }
  html[lang="ar"] .value-item p { font-size: 14px; line-height: 1.7; }

  /* WHY JJMA — text left + 4 icon items / photo right (per mockup) */
  .why {
    padding: clamp(80px, 10vw, 140px) var(--gutter) var(--section-py);
    background: var(--bg-2);
    position: relative;
  }
  .why-inner {
    max-width: var(--container);
    margin-inline: auto;
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
  }
  @media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 50px; } }

  .why-body { display: flex; flex-direction: column; gap: 22px; }
  .why-body h2 { max-width: 14ch; }
  .why-body p.lead { margin-bottom: 8px; }

  .why-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    margin-top: 8px;
  }
  @media (max-width: 480px) { .why-icons { grid-template-columns: 1fr; gap: 24px; } }

  .why-icon-item { display: flex; flex-direction: column; gap: 10px; }
  .why-icon {
    width: 36px;
    height: 36px;
    color: var(--blue);
  }
  .why-icon-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  html[lang="ar"] .why-icon-item h3 { font-size: 16px; line-height: 1.4; }
  .why-icon-item p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
    max-width: 26ch;
  }
  html[lang="ar"] .why-icon-item p { font-size: 14px; line-height: 1.75; }

  .why-media {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
  }
  .why-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* BUILT FOR EVERY CHILD */
  .built {
    background: var(--bg-3);
    padding: var(--section-py) var(--gutter);
    position: relative;
  }
  .built-inner {
    max-width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
  }
  @media (max-width: 900px) { .built-inner { grid-template-columns: 1fr; gap: 50px; } }

  .built-media {
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
  }
  .built-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .built-media-tag {
    position: absolute;
    bottom: 20px; left: 20px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.97);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.04em;
  }
  html[lang="ar"] .built-media-tag { letter-spacing: 0; font-size: 13px; }

  .built-body { display: flex; flex-direction: column; gap: 24px; }
  .built-body h2 { max-width: 18ch; }

  .built-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
  }
  .built-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .built-point-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .built-point-icon svg { width: 13px; height: 13px; }
  .built-point-body { flex: 1; }
  .built-point-body strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
  }
  html[lang="ar"] .built-point-body strong { font-size: 17px; }
  .built-point-body p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  html[lang="ar"] .built-point-body p { font-size: 15px; line-height: 1.85; }

  /* PROGRAMS */
  .programs {
    padding: var(--section-py) var(--gutter);
    background: var(--bg-2);
  }
  .programs-inner { max-width: var(--container); margin-inline: auto; }
  .programs-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: clamp(40px, 5vw, 60px);
    align-items: end;
  }
  @media (max-width: 800px) { .programs-head { grid-template-columns: 1fr; gap: 20px; } }

  .programs-subsection {
    margin-bottom: clamp(40px, 5vw, 56px);
  }
  .programs-subsection:last-child { margin-bottom: 0; }

  .programs-subsection-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
  }
  .programs-subsection-head h3 {
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  html[lang="ar"] .programs-subsection-head h3 { letter-spacing: 0; line-height: 1.4; }
  .programs-subsection-head h3::before {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
  }
  .programs-subsection-meta {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  html[lang="ar"] .programs-subsection-meta { letter-spacing: 0; text-transform: none; font-size: 13px; }

  .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 1100px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .programs-grid { grid-template-columns: 1fr; } }

  .program-card {
    background: var(--bg-2);
    border: 1px solid var(--rule);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s var(--ease-sharp), box-shadow .2s var(--ease-sharp), border-color .2s var(--ease-sharp);
  }
  .program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--blue-pale);
  }
  .program-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
  }
  .program-card-media img,
  .program-card-media video {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
  }
  .program-card:hover .program-card-media img,
  .program-card:hover .program-card-media video { transform: scale(1.04); }
  .program-card-body {
    padding: clamp(20px, 2vw, 26px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }
  .program-card-body h3 {
    font-size: clamp(18px, 1.5vw, 21px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
  }
  html[lang="ar"] .program-card-body h3 { letter-spacing: 0; line-height: 1.4; }
  .program-card-body p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
    flex: 1;
  }
  html[lang="ar"] .program-card-body p { font-size: 15px; line-height: 1.8; }
  .program-ages {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
  }
  .program-age {
    padding: 5px 12px;
    background: var(--blue-tint);
    color: var(--blue);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  html[lang="ar"] .program-age { font-size: 12px; letter-spacing: 0; }

  /* WEEKLY SCHEDULE — branded dark day cards on soft blue background */
  .schedule {
    background: var(--bg-3);
    padding: var(--section-py) var(--gutter);
    position: relative;
  }
  .schedule-inner {
    max-width: var(--container);
    margin-inline: auto;
  }
  .schedule-head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
  }
  .schedule-head h2 {
    max-width: 22ch;
    margin-inline: auto;
  }
  .schedule-head .lead {
    margin-inline: auto;
    margin-top: 18px;
    text-align: center;
  }

  .schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
  }
  @media (max-width: 900px) {
    .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    .schedule-grid { grid-template-columns: 1fr; }
  }

  .schedule-day {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--bg-deep) 100%);
    border-radius: 22px;
    padding: clamp(24px, 2.5vw, 32px);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform .2s var(--ease-sharp), box-shadow .2s var(--ease-sharp);
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2vw, 26px);
    min-height: 320px;
  }
  .schedule-day:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(12, 31, 63, 0.28);
  }

  /* Decorative concentric circles in top corner — echoes the social media cards */
  .schedule-day::before,
  .schedule-day::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    pointer-events: none;
    z-index: 0;
  }
  .schedule-day::before {
    inset-inline-end: -50px;
    top: -50px;
    width: 220px;
    height: 220px;
  }
  .schedule-day::after {
    inset-inline-end: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-color: rgba(255, 255, 255, 0.04);
  }

  /* Saturday gets a yellow corner accent — single weekend session */
  .schedule-day.is-weekend::before {
    border-color: rgba(251, 191, 36, 0.18);
  }

  .schedule-day-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
  }
  .schedule-day-name {
    font-family: var(--font-sans);
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
  }
  html[lang="ar"] .schedule-day-name {
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    font-size: clamp(24px, 2.4vw, 30px);
  }

  .schedule-day-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
    padding: 4px 10px;
    background: rgba(251, 191, 36, 0.14);
    border-radius: 999px;
    white-space: nowrap;
  }
  html[lang="ar"] .schedule-day-tag {
    letter-spacing: 0;
    text-transform: none;
    font-size: 11px;
  }

  .schedule-slots {
    display: flex;
    flex-direction: column;
    gap: 11px;
    position: relative;
    z-index: 1;
    flex: 1;
  }
  .schedule-slot {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .schedule-slot-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    padding: 6px 11px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    min-width: 108px;
    text-align: center;
    flex-shrink: 0;
    letter-spacing: 0.01em;
  }
  .schedule-slot-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.25;
  }
  html[lang="ar"] .schedule-slot-label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 14.5px;
    font-weight: 700;
  }

  /* Schedule footer — closed Fridays + WhatsApp confirm CTA */
  .schedule-foot {
    margin-top: clamp(28px, 3vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px clamp(20px, 2vw, 28px);
    background: var(--bg-2);
    border: 1px solid var(--rule);
    border-radius: 16px;
  }
  @media (max-width: 640px) {
    .schedule-foot {
      flex-direction: column;
      text-align: center;
      padding: 22px;
    }
  }
  .schedule-foot-note {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
  }
  html[lang="ar"] .schedule-foot-note { font-size: 15px; }
  .schedule-foot-note-icon {
    width: 36px;
    height: 36px;
    background: var(--blue-tint);
    color: var(--blue);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .schedule-foot-note-icon svg { width: 18px; height: 18px; }
  .schedule-foot strong {
    color: var(--ink);
    font-weight: 700;
  }
  .schedule-foot .btn {
    flex-shrink: 0;
    padding: 11px 20px;
    font-size: 13.5px;
  }

  /* FREE TRIAL */
  .trial {
    background: var(--bg-3);
    padding: clamp(48px, 6vw, 80px) var(--gutter) var(--section-py);
    position: relative;
    overflow: hidden;
  }
  .trial-inner { max-width: var(--container); margin-inline: auto; position: relative; z-index: 1; }
  .trial-head {
    text-align: center;
    margin-bottom: clamp(50px, 6vw, 70px);
  }
  .trial-head h2 { max-width: 22ch; margin-inline: auto; }
  .trial-head .lead { margin-inline: auto; margin-top: 18px; text-align: center; }

  .trial-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: clamp(40px, 5vw, 60px);
  }
  @media (max-width: 900px) { .trial-steps { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .trial-steps { grid-template-columns: 1fr; } }

  .trial-step {
    background: var(--bg-2);
    border-radius: 20px;
    padding: clamp(24px, 2.5vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .2s var(--ease-sharp), box-shadow .2s var(--ease-sharp);
  }
  .trial-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
  }
  .trial-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
  }
  .trial-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  html[lang="ar"] .trial-step h3 { font-size: 18px; letter-spacing: 0; line-height: 1.4; }
  .trial-step p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  html[lang="ar"] .trial-step p { font-size: 15px; line-height: 1.85; }

  .trial-cta { text-align: center; padding-top: 10px; }

  /* ALL LEVELS WELCOME BANNER */
  .adults-all-levels {
    margin-top: clamp(40px, 5vw, 60px);
    background: var(--bg-deep);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 48px) clamp(28px, 5vw, 60px);
  }
  .adults-all-levels-inner p {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    max-width: 76ch;
  }
  html[lang="ar"] .adults-all-levels-inner p {
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 2;
  }

  /* ADULTS VIDEO REEL STRIP */
  .adults-reel {
    margin-top: clamp(24px, 3vw, 36px);
  }
  .adults-reel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  @media (max-width: 740px) {
    /* Switch to horizontal scroll strip on mobile */
    .adults-reel-grid {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 8px;
      padding-bottom: 4px;
    }
    .adults-reel-grid::-webkit-scrollbar { display: none; }
  }
  .adults-reel-cell {
    aspect-ratio: 9 / 14;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-deep);
    flex-shrink: 0;
  }
  @media (max-width: 740px) {
    .adults-reel-cell {
      width: 52vw;
      scroll-snap-align: start;
    }
  }
  @media (max-width: 480px) {
    .adults-reel-cell { width: 70vw; }
  }
  .adults-reel-cell video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* PRIVATE CLASSES CALLOUT */
  .private-callout {
    margin-top: clamp(40px, 5vw, 56px);
    background: linear-gradient(135deg, var(--blue-tint) 0%, var(--bg-2) 100%);
    border: 1px solid var(--blue-pale);
    border-radius: 20px;
    padding: clamp(24px, 3vw, 36px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(16px, 2.5vw, 32px);
    align-items: center;
  }
  @media (max-width: 700px) {
    .private-callout {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 16px;
    }
  }
  .private-callout-icon {
    width: 56px;
    height: 56px;
    background: var(--blue);
    color: #fff;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  @media (max-width: 700px) {
    .private-callout-icon { margin-inline: auto; }
  }
  .private-callout-icon svg { width: 28px; height: 28px; }
  .private-callout-body h3 {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.015em;
  }
  html[lang="ar"] .private-callout-body h3 { letter-spacing: 0; line-height: 1.4; }
  .private-callout-body p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  html[lang="ar"] .private-callout-body p { font-size: 15px; line-height: 1.85; }

  /* MOMENTS GALLERY — clean uniform grid (replaces bento) */
  .moments {
    padding: var(--section-py) var(--gutter);
    background: var(--bg-2);
  }
  .moments-head {
    max-width: var(--container);
    margin: 0 auto clamp(40px, 5vw, 60px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
  }
  @media (max-width: 800px) { .moments-head { grid-template-columns: 1fr; gap: 20px; } }

  .gallery-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  @media (max-width: 800px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  }
  @media (max-width: 500px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  }

  .gallery-tile {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-3);
    cursor: pointer;
    isolation: isolate;
    transition: transform .2s var(--ease-sharp), box-shadow .2s var(--ease-sharp);
    border: 0;
    padding: 0;
    width: 100%;
    display: block;
    font: inherit;
    color: inherit;
    text-align: start;
  }
  .gallery-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
  }
  .gallery-tile:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
  }

  .gallery-tile img,
  .gallery-tile video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease), opacity .4s var(--ease);
    opacity: 0;
  }
  .gallery-tile img.is-loaded,
  .gallery-tile video.is-loaded { opacity: 1; }
  .gallery-tile:hover img,
  .gallery-tile:hover video { transform: scale(1.05); }

  .gallery-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,0.55) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s var(--ease);
    z-index: 1;
  }
  .gallery-tile:hover::after,
  .gallery-tile:focus-visible::after { opacity: 1; }

  .gallery-tile-caption {
    position: absolute;
    inset-inline: 14px;
    bottom: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    z-index: 2;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  html[lang="ar"] .gallery-tile-caption { font-size: 14px; }
  .gallery-tile:hover .gallery-tile-caption,
  .gallery-tile:focus-visible .gallery-tile-caption {
    opacity: 1;
    transform: translateY(0);
  }

  .gallery-tile-badge {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    z-index: 2;
    background: rgba(255,255,255,0.97);
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  html[lang="ar"] .gallery-tile-badge { letter-spacing: 0; text-transform: none; font-size: 11px; }
  .gallery-tile-badge svg { width: 11px; height: 11px; fill: currentColor; }

  /* Loading shimmer for tiles */
  .gallery-tile:not(:has(.is-loaded))::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-3) 0%, var(--blue-tint) 50%, var(--bg-3) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.6s var(--ease-sharp) infinite;
    z-index: 0;
  }
  @keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* Play-icon overlay on video tiles */
  .gallery-tile-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 4;
    transition: opacity 0.3s ease;
  }
  .gallery-tile-play svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
  }
  .gallery-tile-play.is-playing { opacity: 0; }

  /* FAST LIGHTBOX */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(8,18,38,0.96);
    backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 60px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease);
    outline: none;
  }
  .lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .lightbox-content {
    position: relative;
    max-width: min(1100px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    width: auto;
    transform: scale(0.95);
    transition: transform .3s var(--ease);
    overflow: hidden;
  }
  .lightbox.is-open .lightbox-content { transform: scale(1); }
  .lightbox img,
  .lightbox video {
    max-width: 100%;
    max-height: calc(100vh - 80px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    background: #000;
  }
  .lightbox-close {
    position: fixed;
    top: 16px;
    inset-inline-end: 16px;
    width: 52px; height: 52px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,0.65);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s var(--ease-sharp), background-color .15s var(--ease-sharp), border-color .15s var(--ease-sharp);
    z-index: 210;
    touch-action: manipulation;
  }
  .lightbox-close:hover {
    border-color: #fff;
    background: var(--blue);
    transform: rotate(90deg);
  }
  .lightbox-close:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
  }
  .lightbox-close svg { width: 22px; height: 22px; }

  .lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s var(--ease-sharp), background-color .15s var(--ease-sharp), border-color .15s var(--ease-sharp);
    z-index: 210;
    touch-action: manipulation;
  }
  .lightbox-nav:hover { border-color: #fff; background: var(--blue); transform: translateY(-50%); }
  .lightbox-nav:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
  }
  .lightbox-nav svg { width: 22px; height: 22px; }
  .lightbox-prev { inset-inline-start: 12px; }
  .lightbox-next { inset-inline-end: 12px; }
  html[dir="rtl"] .lightbox-prev svg,
  html[dir="rtl"] .lightbox-next svg { transform: scaleX(-1); }

  @media (max-width: 640px) {
    .lightbox-nav { width: 44px; height: 44px; }
    .lightbox-prev { inset-inline-start: 8px; }
    .lightbox-next { inset-inline-end: 8px; }
    .lightbox-close { top: 12px; inset-inline-end: 12px; }
    .lightbox img, .lightbox video { max-height: calc(100vh - 70px); border-radius: 8px; }
  }

  /* COMPETITION */
  .competition {
    background: var(--bg-2);
    padding: var(--section-py) var(--gutter);
  }
  .competition-inner {
    max-width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
  }
  @media (max-width: 900px) { .competition-inner { grid-template-columns: 1fr; gap: 40px; } }

  .competition-body { display: flex; flex-direction: column; gap: 22px; }
  .competition-body h2 { max-width: 14ch; }

  .competition-note {
    margin-top: 8px;
    padding: 22px 26px;
    background: var(--blue-tint);
    border-radius: 16px;
    border-inline-start: 4px solid var(--blue);
    font-size: 14px;
    color: var(--ink);
    line-height: 1.6;
  }
  html[lang="ar"] .competition-note { font-size: 15px; line-height: 1.85; }
  .competition-note strong { color: var(--blue-deep); font-weight: 700; }

  .competition-media {
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
  }
  .competition-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }

  /* TESTIMONIALS */
  .testimonials {
    padding: var(--section-py) var(--gutter);
    background: var(--bg-3);
  }
  .testimonials-inner { max-width: var(--container); margin-inline: auto; }
  .testimonials-head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
  }
  .testimonials-head h2 { max-width: 18ch; margin-inline: auto; }
  .testimonials-head .lead { margin-inline: auto; margin-top: 18px; text-align: center; }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; } }

  /* FEATURED TESTIMONIAL */
  .testimonial-featured {
    background: var(--bg-2);
    border: 1px solid var(--rule);
    border-radius: 24px;
    padding: clamp(28px, 3.5vw, 48px);
    margin-bottom: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2vw, 26px);
    transition: transform .2s var(--ease-sharp), box-shadow .2s var(--ease-sharp), border-color .2s var(--ease-sharp);
    overflow: hidden;
  }
  .testimonial-featured::before {
    content: "";
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    width: 4px;
    background: var(--blue);
  }
  .testimonial-featured:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--blue-pale);
  }
  .testimonial-featured-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .testimonial-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--blue-tint);
    color: var(--blue);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  html[lang="ar"] .testimonial-featured-badge {
    letter-spacing: 0;
    text-transform: none;
    font-size: 13px;
  }
  .testimonial-featured-badge svg { width: 13px; height: 13px; fill: currentColor; }
  .testimonial-featured-stars {
    display: flex;
    gap: 4px;
    color: var(--yellow);
  }
  .testimonial-featured-stars svg { width: 18px; height: 18px; fill: currentColor; }
  .testimonial-featured blockquote {
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.6;
    color: var(--ink);
    font-weight: 500;
  }
  html[lang="ar"] .testimonial-featured blockquote { line-height: 1.95; font-size: clamp(17px, 1.6vw, 21px); }
  .testimonial-featured blockquote .emph {
    color: var(--blue);
  }
  .testimonial-featured blockquote .emph::after { display: none; }
  .testimonial-featured-author {
    padding-top: 20px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 24px;
    align-items: baseline;
  }
  .testimonial-featured-author strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px;
    letter-spacing: -0.01em;
  }
  html[lang="ar"] .testimonial-featured-author strong { font-size: 17px; letter-spacing: 0; }
  .testimonial-featured-author small {
    font-size: 12px;
    color: var(--ink-faint);
    letter-spacing: 0.02em;
  }
  html[lang="ar"] .testimonial-featured-author small { font-size: 13px; letter-spacing: 0; }
  .testimonial-featured-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg-2);
    border: 1px solid var(--blue-pale);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.04em;
  }
  html[lang="ar"] .testimonial-featured-meta { letter-spacing: 0; font-size: 13px; }
  .testimonial-featured-meta svg { width: 13px; height: 13px; }

  .testimonial {
    background: var(--bg-2);
    padding: clamp(28px, 3vw, 36px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: 1px solid var(--rule);
    transition: transform .2s var(--ease-sharp), box-shadow .2s var(--ease-sharp), border-color .2s var(--ease-sharp);
  }
  .testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--blue-pale);
  }
  .testimonial-stars {
    display: flex;
    gap: 3px;
    color: var(--yellow);
  }
  .testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
  .testimonial blockquote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    font-weight: 500;
    flex: 1;
  }
  html[lang="ar"] .testimonial blockquote { line-height: 1.85; font-size: 17px; }
  .testimonial blockquote .emph {
    color: var(--blue);
  }
  .testimonial blockquote .emph::after { display: none; }
  .testimonial-author {
    padding-top: 16px;
    border-top: 1px solid var(--rule);
  }
  .testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
  }
  html[lang="ar"] .testimonial-author strong { font-size: 15px; }
  .testimonial-author small {
    font-size: 12px;
    color: var(--ink-faint);
    letter-spacing: 0.02em;
  }
  html[lang="ar"] .testimonial-author small { font-size: 13px; letter-spacing: 0; }

  /* COACHES */
  .coaches {
    padding: var(--section-py) var(--gutter);
    background: var(--bg-2);
  }
  .coaches-inner { max-width: var(--container); margin-inline: auto; }
  .coaches-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: clamp(40px, 5vw, 60px);
    align-items: end;
  }
  @media (max-width: 800px) { .coaches-head { grid-template-columns: 1fr; gap: 20px; } }

  .coach-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  @media (max-width: 700px) { .coach-cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

  .why-coaches-callout {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(37,99,235,.18) 0%, rgba(37,99,235,.07) 100%);
    border: 1.5px solid rgba(96,165,250,.45);
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 28px;
  }
  .why-coaches-num {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: #60a5fa;
    letter-spacing: -2px;
    flex-shrink: 0;
  }
  .why-coaches-text strong {
    display: block;
    font-size: 17px;
    color: var(--fg);
    margin-bottom: 6px;
  }
  .why-coaches-text p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--fg-2);
    margin: 0;
  }
  html[dir="rtl"] .why-coaches-callout { flex-direction: row-reverse; }
  @media (max-width: 480px) {
    .why-coaches-callout { flex-direction: column; align-items: flex-start; gap: 10px; }
    .why-coaches-num { font-size: 44px; }
  }

  .coach-card {
    background: var(--bg-3);
    border: 1px solid var(--rule);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s var(--ease-sharp), box-shadow .2s var(--ease-sharp);
  }
  .coach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(37,99,235,.10);
  }
  .coach-card-photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg-deep);
  }
  .coach-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .4s var(--ease-sharp);
  }
  .coach-card:hover .coach-card-photo img { transform: scale(1.04); }
  .coach-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }
  .coach-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-tint);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    width: fit-content;
  }
  html[lang="ar"] .coach-card-badge { font-size: 13px; letter-spacing: 0; }
  .coach-card-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  html[lang="ar"] .coach-card-name { font-size: 20px; }
  .coach-card-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
  }
  html[lang="ar"] .coach-card-role { font-size: 14px; }
  .coach-card-bio {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-top: 4px;
  }
  html[lang="ar"] .coach-card-bio { font-size: 15px; line-height: 1.85; }

  /* FAQ */
  .faq {
    padding: var(--section-py) var(--gutter);
    background: var(--bg-3);
  }
  .faq-inner { max-width: 880px; margin-inline: auto; }
  .faq-head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
  }
  .faq-head h2 { max-width: 18ch; margin-inline: auto; }
  .faq-head .lead { margin-inline: auto; margin-top: 18px; text-align: center; }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-subsection {
    margin-bottom: clamp(40px, 5vw, 56px);
  }
  .faq-subsection:last-child { margin-bottom: 0; }

  .faq-subsection-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
  }
  .faq-subsection-head h3 {
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  html[lang="ar"] .faq-subsection-head h3 { letter-spacing: 0; line-height: 1.4; }
  .faq-subsection-head h3::before {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
  }
  .faq-subsection-meta {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  html[lang="ar"] .faq-subsection-meta { letter-spacing: 0; text-transform: none; font-size: 13px; }
  .faq-item {
    background: var(--bg-2);
    border: 1px solid var(--rule);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
  }
  .faq-item.is-open {
    border-color: var(--blue-pale);
    box-shadow: var(--shadow-card);
  }
  .faq-q {
    width: 100%;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: clamp(15px, 1.3vw, 17px);
    font-weight: 700;
    color: var(--ink);
    text-align: start;
    letter-spacing: -0.01em;
    transition: color .2s;
  }
  html[lang="ar"] .faq-q { letter-spacing: 0; line-height: 1.4; font-size: clamp(15px, 1.3vw, 17px); }
  .faq-q:hover { color: var(--blue); }
  .faq-q-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--blue-tint);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
    transition: background .25s, transform .3s var(--ease);
  }
  .faq-q-icon svg { width: 12px; height: 12px; transition: transform .3s var(--ease); }
  .faq-item.is-open .faq-q-icon { background: var(--blue); color: #fff; }
  .faq-item.is-open .faq-q-icon svg { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
  }
  .faq-a-inner {
    padding: 0 26px 24px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
  }
  html[lang="ar"] .faq-a-inner { font-size: 16px; line-height: 1.9; }

  /* FINAL CTA */
  .final-cta {
    padding: clamp(80px, 12vw, 140px) var(--gutter);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/img/kids-parent-hero.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
    mix-blend-mode: overlay;
  }
  .final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .final-cta h2 {
    color: #fff;
    max-width: 14ch;
  }
  .final-cta h2 .emph {
    color: var(--yellow-light);
  }
  .final-cta h2 .emph::after { background: var(--yellow); opacity: 0.9; }
  .final-cta p {
    font-size: clamp(15px, 1.3vw, 18px);
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    max-width: 50ch;
  }
  html[lang="ar"] .final-cta p { line-height: 1.85; }
  .final-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
  }
  .final-cta .btn-primary {
    background: #fff;
    color: var(--blue);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  }
  .final-cta .btn-primary:hover {
    background: var(--yellow-light);
    color: var(--ink);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
  }
  .final-cta-reassurance {
    margin-top: 22px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.18);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
  }
  html[lang="ar"] .final-cta-reassurance { font-size: 14px; }
  .final-cta-reassurance span { display: flex; align-items: center; gap: 8px; }
  .final-cta-reassurance svg { width: 16px; height: 16px; color: var(--yellow-light); flex-shrink: 0; }

  /* FOOTER */
  .footer {
    padding: 70px var(--gutter) 36px;
    background: var(--bg-deep);
    color: rgba(255,255,255,0.7);
  }
  .footer-grid {
    max-width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 30px; } }
  @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

  .footer-brand .nav-logo-text { color: #fff; }
  .footer-brand .nav-logo-text small { color: rgba(255,255,255,0.5); }
  .footer-brand p {
    margin-top: 22px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    max-width: 38ch;
  }
  html[lang="ar"] .footer-brand p { line-height: 1.85; font-size: 15px; }
  .footer-col h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  html[lang="ar"] .footer-col h4 { letter-spacing: 0; text-transform: none; font-size: 13px; }
  .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color .2s;
  }
  .footer-col a:hover { color: #93c5fd; }
  .footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 14px;
  }
  html[lang="ar"] .footer-col p { line-height: 1.85; font-size: 15px; }

  .footer-bottom {
    max-width: var(--container);
    margin: 28px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
  }
  .footer-bottom .socials { display: flex; gap: 10px; }
  .footer-bottom .socials a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: transform .15s var(--ease-sharp), background-color .15s var(--ease-sharp), color .15s var(--ease-sharp), border-color .15s var(--ease-sharp);
  }
  .footer-bottom .socials a:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
  }
  .footer-bottom .socials svg { width: 16px; height: 16px; }

  /* FLOAT WHATSAPP (blue per mockup) */
  .float-wa {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px 14px 16px;
    border-radius: 999px;
    background: var(--blue);
    color: white;
    box-shadow: 0 12px 28px rgba(37,99,235,0.35);
    transition: transform .18s var(--ease-sharp), background-color .18s var(--ease-sharp);
    font-size: 14px;
    font-weight: 700;
    isolation: isolate;
  }
  html[dir="rtl"] .float-wa { right: auto; left: 22px; padding: 14px 16px 14px 22px; }
  html[lang="ar"] .float-wa { font-size: 15px; }
  .float-wa:hover {
    background-color: var(--blue-hot);
    transform: translateY(-2px);
  }
  .float-wa-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .float-wa-icon svg { width: 18px; height: 18px; }
  .float-wa-text { display: inline; }
  @media (max-width: 480px) {
    .float-wa { padding: 12px; }
    .float-wa-text { display: none; }
  }
  /* COACH MODAL */
  .coach-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(8,18,38,0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease-sharp);
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  @media (min-width: 640px) {
    .coach-modal-overlay { align-items: center; }
  }
  .coach-modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .coach-modal {
    background: var(--bg-2);
    border-radius: 28px 28px 0 0;
    width: 100%;
    max-width: 880px;
    max-height: 92vh;
    overflow-y: auto;
    transform: translateY(24px);
    transition: transform .25s var(--ease-sharp);
    padding: 28px 24px 36px;
    position: relative;
  }
  @media (min-width: 640px) {
    .coach-modal { border-radius: 28px; padding: 44px 56px 52px; }
  }
  .coach-modal-overlay.is-open .coach-modal { transform: translateY(0); }
  .coach-modal-close {
    position: absolute;
    top: 18px;
    inset-inline-end: 18px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-3);
    border: 0;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-soft);
    font-size: 18px;
    transition: background .15s;
    z-index: 2;
  }
  .coach-modal-close:hover { background: var(--blue-pale); color: var(--blue); }
  .coach-modal-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
    align-items: center;
  }
  @media (min-width: 720px) {
    .coach-modal-header {
      grid-template-columns: 280px 1fr;
      gap: 36px;
      margin-bottom: 44px;
    }
  }
  .coach-modal-photo-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--blue-pale) 0%, var(--bg-3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .coach-modal-photo {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
  .coach-modal-title { display: flex; flex-direction: column; gap: 10px; }
  .coach-modal-name {
    font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -.02em;
    line-height: 1.15;
  }
  @media (min-width: 720px) {
    .coach-modal-name { font-size: 32px; }
  }
  html[lang="ar"] .coach-modal-name { font-size: 26px; }
  @media (min-width: 720px) {
    html[lang="ar"] .coach-modal-name { font-size: 30px; }
  }
  .coach-modal-role {
    font-size: 14px; font-weight: 600; color: var(--blue); line-height: 1.5;
  }
  html[lang="ar"] .coach-modal-role { font-size: 15px; }
  .coach-modal-creds {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 4px;
  }
  .coach-modal-cred {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--bg-3);
    border: 1px solid rgba(0,0,0,.06);
    padding: 5px 10px;
    border-radius: 6px;
    line-height: 1.2;
  }
  .coach-modal-cred.is-belt {
    background: var(--blue);
    color: #fff;
    border-color: transparent;
  }
  html[lang="ar"] .coach-modal-cred {
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
  }
  .coach-modal-section {
    margin-bottom: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--bg-3);
  }
  .coach-modal-section:first-of-type {
    border-top: 0;
    padding-top: 0;
  }
  .coach-modal-section:last-child { margin-bottom: 0; }
  .coach-modal-section h4 {
    font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 16px;
  }
  html[lang="ar"] .coach-modal-section h4 { letter-spacing: 0; font-size: 14px; }
  .coach-modal-section p {
    font-size: 16px; line-height: 1.8; color: var(--ink-soft);
    max-width: 65ch;
  }
  html[lang="ar"] .coach-modal-section p { font-size: 17px; line-height: 1.95; }
  .coach-modal-tags {
    display: flex; flex-wrap: wrap; gap: 10px;
  }
  .coach-modal-tag {
    background: var(--blue-tint); color: var(--blue);
    font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 100px;
  }
  html[lang="ar"] .coach-modal-tag { font-size: 14px; }
  .coach-modal-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 65ch;
  }
  .coach-modal-highlights li {
    position: relative;
    padding-inline-start: 26px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
  }
  .coach-modal-highlights li::before {
    content: "";
    position: absolute;
    inset-inline-start: 6px;
    top: 11px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--blue);
  }
  html[lang="ar"] .coach-modal-highlights li { font-size: 17px; line-height: 1.85; }
  .coach-learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-tint);
    border: 0;
    padding: 9px 18px;
    border-radius: 100px;
    cursor: pointer;
    transition: background .15s;
    width: fit-content;
  }
  html[lang="ar"] .coach-learn-btn { font-size: 14px; }
  .coach-learn-btn:hover { background: var(--blue-pale); }
  .coach-learn-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

  /* LADIES-ONLY CLASSES */
  .ladies {
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
    padding: var(--section-py) var(--gutter);
    position: relative;
  }
  .ladies-inner {
    max-width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
  }
  @media (max-width: 900px) {
    .ladies-inner { grid-template-columns: 1fr; gap: 50px; }
  }

  .ladies-media {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 14px;
    grid-template-areas:
      "main belts"
      "main caption"
      "main ladycta";
  }
  @media (max-width: 540px) {
    .ladies-media {
      grid-template-columns: 1fr;
      grid-template-areas:
        "main"
        "belts"
        "caption"
        "ladycta";
    }
  }
  .ladies-media-cta {
    grid-area: ladycta;
    align-self: start;
  }
  .ladies-media-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .ladies-media-main {
    grid-area: main;
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
  }
  .ladies-media-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }
  .ladies-media-belts {
    grid-area: belts;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }
  .ladies-media-belts img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .ladies-media-caption {
    grid-area: caption;
    padding: 14px 16px;
    background: var(--bg-2);
    border: 1px solid var(--rule);
    border-radius: 14px;
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.5;
    align-self: end;
  }
  html[lang="ar"] .ladies-media-caption { font-size: 13px; line-height: 1.75; }
  .ladies-media-caption strong {
    display: block;
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 2px;
  }
  html[lang="ar"] .ladies-media-caption strong { font-size: 14px; }

  .ladies-body { display: flex; flex-direction: column; gap: 22px; }
  .ladies-body h2 { max-width: 14ch; }

  .ladies-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    margin-top: 10px;
  }
  @media (max-width: 480px) { .ladies-points { grid-template-columns: 1fr; } }
  .ladies-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .ladies-point-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--blue-tint);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .ladies-point-icon svg { width: 15px; height: 15px; }
  .ladies-point-body { flex: 1; }
  .ladies-point-body strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
  }
  html[lang="ar"] .ladies-point-body strong { font-size: 15px; letter-spacing: 0; }
  .ladies-point-body p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  html[lang="ar"] .ladies-point-body p { font-size: 14px; line-height: 1.8; }

  .ladies-extras {
    margin-top: 6px;
    padding: 18px 22px;
    background: var(--bg-2);
    border: 1px solid var(--blue-pale);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .ladies-extras-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .ladies-extras-icon svg { width: 18px; height: 18px; }
  .ladies-extras-body { flex: 1; }
  .ladies-extras-body strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
  }
  html[lang="ar"] .ladies-extras-body strong { font-size: 15px; letter-spacing: 0; }
  .ladies-extras-body p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.45;
  }
  html[lang="ar"] .ladies-extras-body p { font-size: 14px; line-height: 1.75; }

  .ladies-cta {
    margin-top: 4px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  /* REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
    will-change: opacity, transform;
  }
  .reveal.in { opacity: 1; transform: translateY(0); will-change: auto; }
  .reveal-d2 { transition-delay: .05s; }
  .reveal-d3 { transition-delay: .10s; }
  .reveal-d4 { transition-delay: .15s; }
  .reveal-d5 { transition-delay: .20s; }
  .reveal-d6 { transition-delay: .25s; }

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

  /* Skip layout/paint for off-screen sections — browser renders on demand */
  section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
  }
  footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 420px;
  }

  /* HERO PROGRAM TAGS */
  .hero-program-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 4px;
    margin-bottom: 14px;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.18);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 100px;
  }
  .hero-tag svg { flex-shrink: 0; opacity: 0.7; }
  .hero-tag-sep { color: var(--ink-muted); font-size: 13px; padding: 0 2px; }

  /* HERO DISCIPLINES BAR */
  .hero-disciplines {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 14px 18px;
    background: var(--bg-3);
    border-radius: 14px;
    border: 1px solid var(--border);
  }
  .hero-disc {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
  }
  .disc-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .hero-disc-sep {
    width: 1px;
    height: 32px;
    background: var(--border);
    flex-shrink: 0;
  }
  html[dir="rtl"] .hero-program-tags,
  html[dir="rtl"] .hero-disciplines { direction: rtl; }

  /* ADULTS HOOK SECTION */
  .adults-hook {
    background: var(--bg-deep);
    padding: var(--section-py) var(--gutter);
    color: #fff;
  }
  .adults-hook-inner {
    max-width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
  }
  @media (max-width: 900px) {
    .adults-hook-inner { grid-template-columns: 1fr; }
  }
  .adults-hook-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  }
  .adults-hook-media video,
  .adults-hook-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .adults-hook-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.18) 0%, transparent 60%);
    pointer-events: none;
  }
  .adults-hook-body .kicker { color: var(--blue-pale); }
  .adults-hook-body .h-section { color: #fff; margin-top: 16px; }
  .adults-hook-body .lead { color: rgba(255,255,255,0.75); margin-top: 16px; }
  .adults-hook-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }
  .adults-hook-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    line-height: 1.5;
  }
  .adults-hook-point-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
    background: rgba(37,99,235,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
  }
  .adults-hook-point-icon svg { width: 12px; height: 12px; }
  .adults-hook-point strong { color: #fff; }

  /* CONTACT SECTION */
  .contact {
    background: var(--bg);
    padding: var(--section-py) var(--gutter);
  }
  .contact-inner {
    max-width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
  }
  @media (max-width: 760px) {
    .contact-inner { grid-template-columns: 1fr; }
  }
  .contact-head { margin-bottom: 36px; }
  .contact-head .kicker { margin-bottom: 12px; }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact-info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .contact-info-icon {
    width: 44px; height: 44px;
    background: var(--bg-3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
  }
  .contact-info-icon svg { width: 20px; height: 20px; }
  .contact-info-body { display: flex; flex-direction: column; gap: 2px; }
  .contact-info-body strong { font-size: 14px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
  .contact-info-body a, .contact-info-body p { font-size: 16px; color: var(--ink); font-weight: 500; line-height: 1.5; }
  .contact-info-body a:hover { color: var(--blue); }
  .contact-wa-card {
    background: linear-gradient(145deg, #075e54 0%, #128c7e 100%);
    border-radius: 28px;
    padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(7,94,84,0.25);
    position: relative;
    overflow: hidden;
  }
  .contact-wa-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='28' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E") center/180px repeat;
    pointer-events: none;
  }
  .contact-wa-icon-wrap {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .contact-wa-icon-wrap svg { width: 40px; height: 40px; fill: #fff; }
  .contact-wa-card h3 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    line-height: 1.2;
    position: relative;
  }
  .contact-wa-card p {
    font-size: 15px;
    opacity: 0.85;
    max-width: 26ch;
    line-height: 1.6;
    position: relative;
  }
  .contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #075e54;
    font-weight: 800;
    font-size: clamp(15px, 1.8vw, 17px);
    padding: 16px 28px;
    border-radius: 100px;
    text-decoration: none;
    margin-top: 6px;
    position: relative;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .contact-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
  .contact-wa-btn svg { width: 22px; height: 22px; fill: #25d366; }
  .contact-also {
    display: flex;
    gap: 12px;
    margin-top: 4px;
    position: relative;
  }
  .contact-also a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.15s;
  }
  .contact-also a:hover { background: rgba(255,255,255,0.2); }
  .contact-also svg { width: 16px; height: 16px; }
