/* ============================================================
   AL FAISAL GROUP — Design System
   Theme: Deep Navy + Blues + Teal/Turquoise
   ============================================================ */

:root {
  /* ── Brand Palette (Coolors: a1d2ce/78cad2/62a8ac/5497a7/50858b) ── */
  --c1:            #a1d2ce;   /* lightest mint teal  */
  --c2:            #78cad2;   /* bright teal         */
  --c3:            #62a8ac;   /* mid teal            */
  --c4:            #5497a7;   /* steel teal          */
  --c5:            #50858b;   /* deep teal slate     */

  --bg-primary:    #050f12;
  --bg-secondary:  #071519;
  --bg-card:       rgba(80, 133, 139, 0.12);
  --bg-glass:      rgba(120, 202, 210, 0.06);

  --blue-deep:     #50858b;
  --blue-mid:      #5497a7;
  --blue-bright:   #78cad2;
  --teal:          #62a8ac;
  --teal-bright:   #78cad2;
  --turquoise:     #a1d2ce;
  --teal-glow:     rgba(120, 202, 210, 0.15);
  --teal-line:     rgba(97, 168, 172, 0.3);

  --gold:          #c9a84c;   /* FIXED (Audit): matched to spec value used in progress bars */
  --gold-light:    #e8c85a;

  --text-primary:  #eaf6f7;
  --text-secondary:#8ab8be;
  --text-muted:    #4d7d82;

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;

  /* OPTIMIZED: explicit properties instead of 'all' to avoid triggering layout/paint on every change */
  --transition:    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                   background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                   background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                   transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                   box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                   opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                   border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                   padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;

  --shadow-glow:   0 0 40px rgba(120, 202, 210, 0.25);
  --shadow-card:   0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-blue:   0 8px 32px rgba(84, 151, 167, 0.4);
}

/* ── Accessibility Utilities ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── Canvas removed — globe disabled ── */

/* ════════════════════════════════════════════════════
   ISSUE 3 FIX: Hero background state classes
   Use class toggles instead of inline display:none so
   any upload branch can cleanly restore visibility.
════════════════════════════════════════════════════ */
/* Default: video visible */
.hero-bg--image .hero-video-wrap  { visibility: hidden; opacity: 0; pointer-events: none; }
.hero-bg--image .hero-video       { display: none; }
/* Restore when switching back to video */
.hero-bg--video .hero-video-wrap  { visibility: visible; opacity: 1; pointer-events: auto; }
.hero-bg--video .hero-video       { display: block; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 13, 26, 0.92);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--teal-line);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  height: clamp(96px, 12vw, 110px);   /* scales smoothly: 96px floor → 110px on wide screens, always readable */
  width: auto;
  filter: brightness(1.18);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text span:first-child {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 500;
}

.nav-logo-text span:last-child {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--teal-bright);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--teal-bright); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex !important;
  align-items: center !important;
  background: linear-gradient(135deg, var(--teal), var(--blue-mid));
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
  transition: var(--transition) !important;
  line-height: 1.4 !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.35) !important;
}

.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;   /* FIX: remove browser-default button white bg */
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ── Hero Section ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* BUG 1 FIX: Remove any browser-default border/outline */
  border: none;
  outline: none;
  box-shadow: none;
}

/* BUG 1 FIX: Bottom edge fades into page background — no hard cut */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  z-index: 3;
  pointer-events: none;
}

/* ── Hero Video Wrap ── */
@keyframes heroVideoScale {
  0%   { transform: scale(1.00) translate(0,      0     ); }
  33%  { transform: scale(1.02) translate(-0.4%, 0.15%); }
  66%  { transform: scale(1.015) translate(0.3%, -0.15%); }
  100% { transform: scale(1.025) translate(-0.15%, 0.25%); }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: -1.5%; /* minimal oversize — just enough to hide KB edge on max scale(1.025) */
  width: 103%;
  height: 103%;
  object-fit: cover;
  object-position: center 30%; /* bias upward so subjects' faces/upper body are centred */
  opacity: 0;
  transition: opacity 2.4s ease;
  animation: heroVideoScale 56s ease-in-out infinite alternate;
  will-change: transform;
  transform: translateZ(0);
}

.hero-video.is-ready {
  opacity: 1;
}

/* Fallback: dark brand background while video loads */
#hero.hero-animated::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-primary);
  z-index: 0;
}

/* Dark cinematic vignette over the video — lightened per feedback */
.hero-video-fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(5,15,18,0.30) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(5,15,18,0.15) 0%, transparent 40%, rgba(5,15,18,0.60) 100%);
  z-index: 1;
}

/* Stacking order inside hero — position:absolute must be explicitly preserved */
#hero.hero-animated .hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#hero.hero-animated .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}
#hero.hero-animated .hero-content    { position: relative; z-index: 4; }
#hero.hero-animated .hero-stats      { position: relative; z-index: 4; }
#hero.hero-animated .scroll-indicator{ position: relative; z-index: 4; }

/* ════════════════════════════════════════
   CINEMATIC BREAKS  (video banner)
════════════════════════════════════════ */
.cinematic-break {
  position: relative;
  width: 100%;
  height: 42vh;
  min-height: 260px;
  max-height: 520px;
  overflow: hidden;
  background: var(--bg-primary);
  /* FIX (re-restored): no border, no outline, no box-shadow — banner must blend
     smoothly into the page background with no visible frame. */
  border: 0 none transparent;
  outline: 0 none transparent;
  box-shadow: none;
  margin: 0;
  isolation: isolate;
}
.cinematic-break::before,
.cinematic-break::after { border: none !important; outline: none !important; }
.cbreak-video,
.hm-video {
  border: 0 none transparent;
  outline: 0 none transparent;
  box-shadow: none;
}

.cbreak-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 2.5s ease;
  will-change: transform;
  transform: translateZ(0);
}

/* When a promo (portrait/presenter) video plays in a short cinematic break,
   shift up so the face shows rather than the chest */
[data-vid-pool="promo"] .cbreak-video {
  object-position: center 12%;
}

.cbreak-video.is-ready {
  opacity: 1;
}

.cbreak-top-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to bottom, var(--bg-primary), transparent);
  z-index: 2;
  pointer-events: none;
}

.cbreak-btm-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 2;
  pointer-events: none;
}

.cbreak-label {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(161, 210, 206, 0.55);
  white-space: nowrap;
  pointer-events: none;
}

/* ════════════════════════════════════════
   HUMAN MOMENT — Full-screen podcast promo
════════════════════════════════════════ */
.human-moment {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: #020b0d;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hm-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;            /* edge-to-edge fill */
  object-position: center 8%;   /* desktop: full face down to upper chest, no top-crop of head */
  opacity: 1;           /* poster always visible — no black gap while video loads */
  transition: opacity 2.5s ease;
  will-change: transform;
  transform: translateZ(0);
}

.hm-video.is-ready {
  opacity: 1;
}

/* Gradient fades — blend with adjacent sections */
.hm-top-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hm-btm-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Subtle dark vignette so text is always readable */
.human-moment::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(2,11,13,0.55) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(2,11,13,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Podcast badge — top left */
.hm-badge {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(2,11,13,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(120,202,210,0.25);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-bright);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 2.4s ease 1.0s;
}

.human-moment.is-active .hm-badge {
  opacity: 1;
}

.hm-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  animation: hmDotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hmDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

/* Arabic caption — bottom center */
.hm-caption {
  position: relative;
  z-index: 3;
  margin-bottom: 52px;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: rgba(234,246,247,0.75);
  letter-spacing: 0.04em;
  text-align: center;
  direction: rtl;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 2.4s ease 1.4s, transform 2.4s ease 1.4s;
  pointer-events: none;
}

.human-moment.is-active .hm-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile adjustments ── */
@media (max-width: 768px) {
  .human-moment { height: 85vh; }
  .hm-badge { font-size: 0.64rem; padding: 6px 14px; }
  .hm-caption { font-size: clamp(1rem, 4vw, 1.3rem); margin-bottom: 60px; }
}

@media (max-width: 480px) {
  .cinematic-break { height: 38vh; min-height: 200px; }
  .cbreak-label { font-size: 0.62rem; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(13, 71, 161, 0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(0, 180, 216, 0.12) 0%, transparent 60%),
              linear-gradient(to bottom, transparent 60%, var(--bg-primary) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-text-col {
  width: 100%;
}

/* Ensure hero-stats sit in bottom-right on desktop */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-line);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title .line-1 { display: block; color: var(--text-primary); }
.hero-title .line-2 {
  display: block;
  background: linear-gradient(135deg, var(--teal), var(--blue-bright), var(--teal-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 48px;
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-tagline strong { color: var(--teal); font-style: normal; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--blue-mid));
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 32px rgba(0, 180, 216, 0.4);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 229, 255, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 1px solid var(--teal-line);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--teal-glow);
  border-color: var(--teal);
  transform: translateY(-3px);
}

.hero-stats {
  position: absolute;
  bottom: 80px; right: 60px;
  z-index: 2;
  display: flex;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

.hero-stat {
  text-align: right;
}

.hero-stat-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal-bright);
  line-height: 1.15;
  padding-bottom: 2px;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--teal-line);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-mouse::after {
  content: '';
  width: 3px; height: 8px;
  background: var(--teal-bright);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  animation: scrollDot 2s infinite;
}

/* ── Section Base ── */
section { position: relative; overflow: hidden; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--teal);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-title span {
  background: linear-gradient(135deg, var(--teal), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 600px;
  line-height: 1.7;
}

/* ── Divider Line ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal-line), transparent);
  margin: 48px 0;   /* breathing room above and below every divider */
}

/* ── About Section ── */
#about {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

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

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--teal), var(--blue-mid), transparent);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
}

.about-image-frame img {
  width: 100%;
  height: auto;          /* full image, no crop — fills the column naturally */
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
}

.about-badge-floating {
  position: absolute;
  bottom: -20px; right: -20px;
  background: transparent;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 0;
  min-width: unset;
  box-shadow: none;
  text-align: center;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner ring — same pulse as timeline centrepiece */
.about-badge-floating::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(80,133,139,0.5);
  box-shadow: 0 0 16px rgba(120,202,210,0.15), inset 0 0 12px rgba(120,202,210,0.05);
  animation: tl-ring-pulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Outer ring */
.about-badge-floating::after {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(80,133,139,0.2);
  animation: tl-ring-pulse 3s ease-in-out infinite 1.2s;
  pointer-events: none;
  z-index: 0;
}

.about-badge-floating .val {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.about-badge-floating .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-badge-logo {
  width: 152px;
  height: 152px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(201,162,39,0.55)) drop-shadow(0 0 4px rgba(201,162,39,0.4));
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.about-badge-floating .about-badge-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-badge-floating .about-badge-lbl {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 4px;
}

.about-text { padding-top: 0; }

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.about-text p strong { color: var(--teal); font-weight: 600; }

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.credential-item:hover {
  border-color: var(--teal);
  background: rgba(0, 180, 216, 0.08);
  transform: translateX(6px);
}

.credential-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--teal), var(--blue-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.credential-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 2px;
}

.credential-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Impact Numbers ── */
#impact {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.1) 0%, transparent 50%, rgba(0, 180, 216, 0.05) 100%);
  border-top: 1px solid var(--teal-line);
  border-bottom: 1px solid var(--teal-line);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.impact-card {
  padding: 48px 32px;
  text-align: center;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--teal-line);
  position: relative;
  overflow: visible; /* must be visible so gradient-clip numbers aren't chopped */
  transition: var(--transition);
}

.impact-card:hover {
  background: rgba(0, 180, 216, 0.1);
  border-color: var(--teal);
  transform: translateY(-6px);
  z-index: 1;
  box-shadow: var(--shadow-glow);
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--teal-bright), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.impact-card:hover::before { opacity: 1; }

.impact-number {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal-bright), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;        /* breathing room so top/bottom of glyphs aren't clipped */
  padding-bottom: 4px;      /* extra clearance for gradient-clip on heavy weights */
  margin-bottom: 12px;
  display: block;
}

.impact-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.impact-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

/* ── Business Lines ── */
#business {
  padding: 120px 0;
}

.business-header {
  text-align: center;
  margin-bottom: 80px;
}

.business-header .section-label { justify-content: center; }
.business-header .section-label::before { display: none; }
.business-header .section-label::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--teal);
}

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

.business-card {
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.business-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--teal), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.business-card:hover {
  border-color: var(--teal);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.business-card:hover::before { transform: scaleX(1); }

.business-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.business-card:hover .business-card-glow { opacity: 1; }

.business-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(13, 71, 161, 0.3));
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 28px;
  transition: var(--transition);
}

.business-card:hover .business-icon {
  background: linear-gradient(135deg, var(--teal), var(--blue-mid));
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.4);
}

.business-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.business-type {
  font-size: 0.78rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 20px;
}

.business-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--teal);
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ── Services ── */
#services {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.service-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-md);
  transition: var(--transition);
  align-items: flex-start;
}

.service-item:hover {
  border-color: var(--teal);
  background: rgba(0, 180, 216, 0.07);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal-line), var(--teal-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 48px;
}

.service-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Programs Section ── */
#programs {
  padding: 120px 0;
}

.programs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.programs-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.program-card {
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-md);
  padding: 0;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  border-color: var(--teal);
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-glow);
  background: rgba(0, 180, 216, 0.08);
}

.program-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.program-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}

/* Per-card thumbnail focus adjustments */
.program-card:nth-child(1) .program-img-wrap img { object-position: left center; }   /* IQLAA: focus on Dr. Faisal (left) */
.program-card:nth-child(3) .program-img-wrap img { object-position: left center; }   /* NASA: shift left to show both persons */
.program-card:nth-child(4) .program-img-wrap img { object-position: center center; } /* Village: edge-to-edge fill */

.program-card:hover .program-img-wrap img {
  transform: scale(1.06);
}

.program-card-body {
  padding: 24px 20px 28px;
  flex: 1;
}

.program-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.program-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.program-stat {
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
}

.program-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 8px;
}

/* ── Milestones Timeline ── */
#milestones {
  padding: 120px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

/* ══════════════════════════════════════════
   TIMELINE — Left/Right Alternating + 30 Years Centrepiece
   ══════════════════════════════════════════ */
.timeline {
  position: relative;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Center spine */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(80,133,139,0.5) 4%,
    rgba(80,133,139,0.5) 96%,
    transparent 100%
  );
  z-index: 0;
}

/* ── Base item: full-width block — each milestone gets its own row ── */
.timeline-item {
  position: relative;
  width: 100%;
  display: block;
  box-sizing: border-box;
  margin-bottom: 30px;
  min-height: 40px;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
              transform 0.55s cubic-bezier(0.22,1,0.36,1);
  z-index: 1;
}

/* ── LEFT items: content pushed into left half, right-aligned ── */
/* padding-right: 50% + 54px pushes content to 0→(50%-54px), leaving 54px gap to spine */
.tl-left {
  text-align: right;
  padding-right: calc(50% + 54px);
  padding-left: 0;
  transform: translateX(-22px);
}

/* ── RIGHT items: content pushed into right half, left-aligned ── */
.tl-right {
  text-align: left;
  padding-left: calc(50% + 54px);
  padding-right: 0;
  transform: translateX(22px);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0) !important;
}

/* ── Dot: always on the spine center ── */
/* Spine at left:50%; dot 12px wide → left: calc(50% - 6px) centers it exactly */
.timeline-dot {
  display: block;
  position: absolute;
  top: 4px;
  left: calc(50% - 6px);
  right: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid rgba(120,202,210,0.4);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
  z-index: 2;
}

.tl-left .timeline-dot,
.tl-right .timeline-dot {
  left: calc(50% - 6px);
  right: auto;
}

.timeline-item.visible .timeline-dot {
  background: var(--teal);
  border-color: rgba(120,202,210,0.85);
  box-shadow: 0 0 0 5px rgba(80,133,139,0.15), 0 0 14px rgba(120,202,210,0.35);
}

.timeline-item:hover .timeline-dot {
  border-color: #78cad2;
  box-shadow: 0 0 0 7px rgba(80,133,139,0.2), 0 0 22px rgba(120,202,210,0.55);
}

/* ── Connector: bridges the 48px gap between content edge and dot edge ── */
/* Left: right edge of connector = dot left edge = calc(50%+6px) from right of item  */
/* Right: left edge of connector = dot right edge = calc(50%+6px) from left of item  */
.timeline-item::before {
  content: '';
  position: absolute;
  top: 10px;
  height: 1px;
  width: 48px;
  background: rgba(80,133,139,0.3);
  transition: background 0.3s;
  z-index: 1;
}

.tl-left::before  { right: calc(50% + 6px); left: auto; }
.tl-right::before { left:  calc(50% + 6px); right: auto; }

.timeline-item:hover::before { background: rgba(120,202,210,0.5); }

/* ── Year badge ── */
.timeline-year {
  display: inline-block;
  font-size: 0.67rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  background: rgba(80,133,139,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(80,133,139,0.25);
}

.timeline-item h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.35;
}

.timeline-item p {
  font-size: 0.79rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════
   30 YEARS CENTREPIECE
   ════════════════════════════════ */
.tl-centrepiece {
  clear: both;
  text-align: center;
  padding: 28px 0 20px;
  position: relative;
  z-index: 2;
}

.tl-coin-wrap {
  position: relative;
  display: inline-block;
  width: 108px;
  height: 108px;
}

.tl-coin-wrap img,
.tl-coin-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 3;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px rgba(120,202,210,0.25));
}

/* CSS-only coin text (replaces img when no logo image is used) */
.tl-coin-text {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue-mid));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(120,202,210,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.tl-coin-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.tl-coin-yrs {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 3px;
}

/* Inner ring */
.tl-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(80,133,139,0.5);
  box-shadow: 0 0 16px rgba(120,202,210,0.15), inset 0 0 12px rgba(120,202,210,0.05);
  animation: tl-ring-pulse 3s ease-in-out infinite;
  z-index: 1;
}

/* Outer ring */
.tl-ring-outer {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(80,133,139,0.2);
  animation: tl-ring-pulse 3s ease-in-out infinite 1.2s;
  z-index: 1;
}

@keyframes tl-ring-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.04);
              box-shadow: 0 0 28px rgba(120,202,210,0.4); }
}

.tl-coin-label {
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.8;
}

/* ── Mobile: single left-aligned column ── */
@media (max-width: 640px) {
  .timeline { max-width: 100%; }
  .timeline::before { left: 19px; transform: none; }

  .timeline-item {
    text-align: left !important;
    padding-left: 52px !important;
    padding-right: 8px !important;
    transform: translateX(0) !important;
  }

  .tl-left .timeline-dot,
  .tl-right .timeline-dot {
    left: 13px !important;
    right: auto !important;
  }

  /* Mobile connector: from dot right edge (25px) to content left (52px) = 27px */
  .tl-left::before,
  .tl-right::before {
    left: 25px !important;
    right: auto !important;
    width: 27px !important;
  }
}

/* ── Partners / Media ── */
#media {
  padding: 100px 0;
}

/* Media feature layout: wide photo + aside card */
.media-feature {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.media-feature-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--teal-line);
}

.media-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
  display: block;
}

.media-feature-img:hover img { transform: scale(1.03); }

.media-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,13,26,0.88) 0%, rgba(5,13,26,0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 36px;
}

.media-feature-text { max-width: 480px; }

.media-feature-aside { display: flex; flex-direction: column; gap: 20px; }

/* QR block in contact */
.contact-qr-block {
  margin-top: 24px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

/* Legacy grid (kept for compatibility) */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
}

.media-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media-card:hover img { transform: scale(1.05); }

.media-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 13, 26, 0.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.media-card-overlay span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Responsive: media feature stacks on tablet */
@media (max-width: 900px) {
  .media-feature {
    grid-template-columns: 1fr;
  }
  .media-feature-img { aspect-ratio: 16/9; }
}

/* ── Contact Section ── */
#contact {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(0, 40, 80, 0.3) 50%, var(--bg-primary) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(13, 71, 161, 0.2));
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-text span {
  font-size: 1rem;
  color: var(--text-primary);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-lg);
  padding: 44px;
  backdrop-filter: blur(12px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  background: rgba(0, 180, 216, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--bg-secondary); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--blue-mid));
  color: white;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  margin-top: 8px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 180, 216, 0.4);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ── HOLD-TO-VERIFY ── */
.verify-group { margin-top: 4px; }

.hold-verify-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.hold-verify-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: rgba(120, 202, 210, 0.07);
  border: 1px solid rgba(120, 202, 210, 0.3);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  min-width: 220px;
}

.hold-verify-btn:hover:not(.verified) {
  border-color: rgba(120, 202, 210, 0.55);
  background: rgba(120, 202, 210, 0.13);
}

.hold-verify-btn.holding {
  border-color: rgba(120, 202, 210, 0.7);
  color: var(--teal-light, #78cad2);
}

.hold-verify-btn.verified {
  border-color: rgba(80, 200, 120, 0.55);
  background: rgba(80, 200, 120, 0.09);
  color: #6ee7a0;
  cursor: default;
}

.hold-progress {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: rgba(120, 202, 210, 0.16);
  z-index: 0;
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.hold-icon,
.hold-label {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.hold-hint {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

@keyframes hv-shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

/* Legacy CAPTCHA styles removed — replaced by hold-to-verify system */

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(80,133,139,0.12);
  border: 1px solid rgba(120,202,210,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--teal);
  font-size: 0.88rem;
  margin-top: 12px;
}

/* ── Footer ── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--teal-line);
  padding: 60px 0 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Frosted glass box — Al Faisal symbol */
/* BUG 2 FIX: Increased box size so logos are clearly readable */
.footer-logo-box {
  flex-shrink: 0;
  width: 189px;
  height: 155px;
  background: transparent;
  border: none;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-box img {
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 123px;
  object-fit: contain;
  display: block;
}

.footer-logo-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);   /* theme color — matches site design */
}

.footer-cr {
  /* Matches footer nav link style — same as all footer body text */
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Qatar entity — below social icons */
.footer-qatar-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

/* Dr. Faisal logo box */
.footer-qatar-logo-box {
  flex-shrink: 0;
  width: 180px;
  height: 148px;
  background: transparent;
  border: none;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.footer-qatar-logo {
  width: 90%;
  max-width: 100%;
  height: auto;
  max-height: 160px;   /* +7% from 150px */
  object-fit: contain;
  display: block;
  filter: none;
}

.footer-qatar-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-qatar-name {
  /* Matches .footer-col h4 — same style as "Our Ventures" / "Connect" headings */
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  line-height: 1.5;
}

.footer-qatar-cr {
  /* Matches footer nav link style — same as all footer body text */
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover { color: var(--teal-bright); padding-left: 4px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--teal-line);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--teal); }

/* ── Footer registration strip ── */
.footer-reg-strip {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-reg-entity {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-reg-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: brightness(1.2);
}
.footer-reg-logo--gold {
  height: 72px;
  filter: brightness(1.3) drop-shadow(0 0 10px rgba(201,162,39,0.4));
}
.footer-reg-logo--alfaisal {
  height: 52px;
  filter: brightness(0) invert(1) opacity(0.82) drop-shadow(0 0 8px rgba(120,202,210,0.35));
}
.footer-reg-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-reg-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.footer-reg-cr {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.footer-reg-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .footer-reg-strip { flex-direction: column; gap: 24px; }
  .footer-reg-divider { width: 60px; height: 1px; }
}

/* ── Floating particles background ── */
.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--teal);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

/* ── Glow Orbs ── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.12;
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeUpFast {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.8); }
}

@keyframes scrollDot {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-20px) translateX(var(--dx, 40px)); opacity: 0; }
}

/* @keyframes spin3d — removed (unused) */

/* Animated gradient shift — hero title + section spans */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Shimmer sweep — section labels */
@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(400%) skewX(-15deg); }
}

/* Card border glow pulse */
@keyframes borderPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(120,202,210,0.15), var(--shadow-card); }
  50%       { box-shadow: 0 0 30px rgba(120,202,210,0.2), 0 0 0 1px rgba(120,202,210,0.5), var(--shadow-card); }
}

/* Float up/down for orbs and decorative elements */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* Scanline sweep on promo scenes */
@keyframes scanline {
  0%   { transform: translateY(-100%); opacity: 0.4; }
  100% { transform: translateY(100vh);  opacity: 0; }
}

/* Timeline dot ping */
@keyframes ping {
  0%   { transform: scale(1); opacity: 0.8; }
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

/* @keyframes counterPop — removed (unused) */

/* ── Animated gradient on hero title line-2 + section spans ── */
.hero-title .line-2 {
  background: linear-gradient(135deg, var(--teal), var(--blue-bright), var(--c1), var(--teal-bright), var(--teal));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

.section-title span {
  background: linear-gradient(135deg, var(--teal), var(--blue-bright), var(--c1), var(--teal));
  background-size: 250% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

/* ── Shimmer on section labels ── */
.section-label {
  position: relative;
  overflow: hidden;
}
.section-label::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(120,202,210,0.35), transparent);
  animation: shimmer 4s ease infinite;
  pointer-events: none;
}

/* ── 30th Anniversary badge — bottom-right of every promo scene ── */
.promo-anniv-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 80px;
  height: 80px;
  z-index: 10;
  pointer-events: none;
}
.promo-anniv-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.55))
          drop-shadow(0 0 4px rgba(201,162,39,0.4));
}
/* Inner pulsing ring */
.promo-anniv-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.50);
  box-shadow: 0 0 16px rgba(201,162,39,0.20), inset 0 0 10px rgba(201,162,39,0.08);
  animation: tl-ring-pulse 3s ease-in-out infinite;
  z-index: 1;
}
/* Outer pulsing ring */
.promo-anniv-ring-outer {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.22);
  animation: tl-ring-pulse 3s ease-in-out infinite 1.2s;
  z-index: 1;
}
@media (max-width: 640px) {
  .promo-anniv-badge { width: 60px; height: 60px; bottom: 18px; right: 16px; }
  .promo-anniv-ring  { inset: -10px; }
  .promo-anniv-ring-outer { inset: -20px; }
}

/* ── Scanline on promo scenes ── */
.promo-scene::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, rgba(120,202,210,0.4), transparent);
  animation: scanline 8s linear infinite;
  z-index: 5;
  pointer-events: none;
}

/* ── Staggered promo content children ── */
.promo-scene.promo-active .promo-federation-logo,
.promo-scene.promo-active .promo-brand   { animation: fadeUpFast 0.65s 0.15s both; }
.promo-scene.promo-active .promo-headline{ animation: fadeUpFast 0.65s 0.35s both; }
.promo-scene.promo-active .promo-desc    { animation: fadeUpFast 0.65s 0.50s both; }
.promo-scene.promo-active .promo-stats-row{ animation: fadeUpFast 0.65s 0.65s both; }
.promo-scene.promo-active .promo-tags-row{ animation: fadeUpFast 0.65s 0.72s both; }
.promo-scene.promo-active .promo-btn     { animation: fadeUpFast 0.65s 0.85s both; }

/* Keep parent opacity transition but reset transforms for children */
.promo-content {
  transition: opacity 0.5s ease;
}
.promo-brand, .promo-headline, .promo-desc,
.promo-stats-row, .promo-tags-row, .promo-btn,
.promo-federation-logo {
  opacity: 0;
}
.promo-scene.promo-active .promo-content {
  opacity: 1;
}

/* ── Real Stories (achievements) grid — responsive ──
   The grid columns are set inline (repeat(3,1fr)); these !important overrides
   beat the inline rule so cards never get cropped on smaller screens.
   Mobile = one full-width card (full wording readable, per request). */
@media (max-width: 1024px) {
  .achievements-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .achievements-grid { grid-template-columns: 1fr !important; }
}

/* ── Ken Burns — alternating origins per frame ── */
.promo-frame:nth-child(1) .promo-img { transform-origin: center center;  transform: scale(1.12); }
.promo-frame:nth-child(2) .promo-img { transform-origin: top left;       transform: scale(1.12); }
.promo-frame:nth-child(3) .promo-img { transform-origin: bottom right;   transform: scale(1.12); }
.promo-frame:nth-child(4) .promo-img { transform-origin: top right;      transform: scale(1.12); }

.promo-frame.active .promo-img { transform: scale(1.0) !important; transition: transform 7s cubic-bezier(0.0, 0.0, 0.2, 1); }

/* ── Glow orbs float ── */
.glow-orb { animation: floatY 8s ease-in-out infinite; }
.glow-orb:nth-child(2) { animation-delay: -3s; animation-duration: 11s; }
.glow-orb:nth-child(3) { animation-delay: -6s; animation-duration: 9s; }

/* ── Achievement Cards hover ── */
.achievement-card:hover {
  border-color: var(--teal) !important;
  background: rgba(0, 180, 216, 0.08) !important;
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

/* ── Innovation card arrow animate on hover ── */
.inno-card:hover .inno-card-arrow {
  transform: translateY(6px) scale(1.15);
  box-shadow: 0 0 24px var(--card-accent, var(--teal));
}

/* ── SVG Icon system ── */
svg.ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  flex-shrink: 0;
  overflow: visible;
}

/* Icon containers — set the font-size to control icon size */
.credential-icon         { font-size: 1.4rem; display: flex; align-items: center; justify-content: center; }
.business-icon           { font-size: 1.8rem; margin-bottom: 16px; }
.advisory-feature-icon   { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-icon       { font-size: 1.25rem; display: flex; align-items: center; justify-content: center; }
.store-service-icon      { font-size: 1.5rem; }
.impact-icon             { font-size: 1.9rem; }
.program-emoji           { font-size: 1.2rem; }
.social-btn svg.ico      { width: 1.1rem; height: 1.1rem; }
#afg-btn svg.ico         { width: 1.25rem; height: 1.25rem; }
.afg-bar-lbl svg.ico     { width: 0.9rem; height: 0.9rem; vertical-align: -0.1em; }

/* Seminar badges & highlights */
.seminar-location-badge svg.ico { width: 0.85rem; height: 0.85rem; vertical-align: -0.05em; }
.seminar-highlight svg.ico      { width: 0.9rem; height: 0.9rem; vertical-align: -0.08em; }

/* Store */
.store-card-meta svg.ico        { width: 0.9rem; height: 0.9rem; vertical-align: -0.08em; }
.store-category-label svg.ico   { width: 1rem; height: 1rem; vertical-align: -0.12em; }


/* ── Scroll-reveal utility ── */
.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible  { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }

/* stagger delays — extended to 8 levels */
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.44s; }
.delay-5 { transition-delay: 0.56s; }
.delay-6 { transition-delay: 0.68s; }
.delay-7 { transition-delay: 0.80s; }
.delay-8 { transition-delay: 0.92s; }

/* ── Timeline dot ping animation ── */
.timeline-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  animation: ping 2.5s ease-out infinite;
}

/* ── Program card border pulse ── */
.program-card { animation: borderPulse 4s ease-in-out infinite; }
.program-card:nth-child(2) { animation-delay: -1s; }
.program-card:nth-child(3) { animation-delay: -2s; }
.program-card:nth-child(4) { animation-delay: -3s; }
.program-card:nth-child(5) { animation-delay: -0.5s; }

/* ── Nav CTA shimmer ── */
.nav-cta {
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-15deg);
  animation: shimmer 3s ease infinite;
}

/* ── Inno portal label lines pulse ── */
.inno-portal-label::before,
.inno-portal-label::after {
  transition: width 0.4s ease;
}
.inno-portal-label:hover::before,
.inno-portal-label:hover::after { width: 60px; }

/* ── Mobile / Top Drop-Down Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  /* FIX: opaque (not solid white) dark navy — matches brand and never reads as white */
  background: rgba(3, 9, 18, 0.985);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--teal-bright); }

.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .navbar { padding: 18px 32px; }
  .navbar.scrolled { padding: 12px 32px; }
  .hero-content { padding: 0 32px; grid-template-columns: 1fr; }
  /* Globe removed — 3D hero disabled */
  .section-inner { padding: 0 32px; }
  .about-grid { gap: 48px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .business-grid { grid-template-columns: 1fr 1fr; }
  .programs-track { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { padding: 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { right: 32px; }
  .media-feature { grid-template-columns: 1fr; }
  /* Advisory sections */
  .advisory-hero-grid { grid-template-columns: 1fr; }
  .advisory-hero-grid--reverse { grid-template-columns: 1fr; }
  .advisory-pricing-card { position: static; }
  /* Seminars */
  .seminars-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  /* Store */
  .store-grid { grid-template-columns: repeat(2, 1fr); }
  /* Books */
  .books-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  /* Globe removed — 3D hero disabled */
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-stats { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-frame img { height: 500px; object-fit: cover; object-position: center 38%; }  /* mobile: crop to head+torso */
  .about-badge-floating { right: 0; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .business-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .programs-track { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .media-feature { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  section { padding: 80px 0 !important; }
  /* Advisory */
  .advisory-hero-grid,
  .advisory-hero-grid--reverse { grid-template-columns: 1fr; gap: 32px; }
  .advisory-pricing-card { position: static; }
  /* Seminars */
  .seminars-grid { grid-template-columns: 1fr; }
  /* Store */
  .store-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .store-service-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .store-service-right { width: 100%; display: flex; justify-content: flex-start; }
  /* Books */
  .books-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  /* Podcast */
  .podcast-feature { grid-template-columns: 1fr; }
  .podcast-show-logo img { max-width: 220px; }
  /* nav logo: clamp handles responsive sizing now */
}

@media (max-width: 480px) {
  .hero-content { padding: 0 20px; }
  .section-inner { padding: 0 20px; }
  .impact-grid { grid-template-columns: 1fr; }
  .programs-track { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  /* Store & Books single col on tiny screens */
  .store-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .books-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  /* Seminar cards compact */
  .seminar-cover { aspect-ratio: 16 / 9; }
  /* nav logo: clamp handles responsive sizing now */
  /* Promo stats wrap */
  .promo-stats-row { flex-wrap: wrap; gap: 12px; }
  .promo-stat { min-width: 100px; }
  .contact-form { padding: 28px 20px; }
  .footer-inner { padding: 0 20px; }
}

/* ── Mobile performance: strip heavy blur/filter effects on small screens ── */
@media (max-width: 768px) {
  /* backdrop-filter is GPU-expensive on mobile — remove from cards & panels */
  .navbar.scrolled,
  .mobile-menu,
  .hero-badge,
  .business-card,
  .impact-card,
  .achievement-card,
  .program-card,
  .inno-card,
  .wa-float,
  .booking-card,
  .advisory-pricing-card,
  .contact-form,
  .media-card,
  .tt-phone {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Cinematic breaks: shorter on mobile to reduce rendering surface */
  .cinematic-break {
    height: 30vh;
    min-height: 180px;
    max-height: 320px;
  }

  /* Human moments on mobile: keep a tall portrait band so the contained 9:16
     clip stays large. No max-height cap (that was cropping the subject's head). */
  .human-moment {
    height: 80vh;
    min-height: 420px;
    max-height: none;
  }

  /* Reduce heavy glow animations on mobile */
  .business-card:hover,
  .program-card:hover,
  .impact-card:hover,
  .achievement-card:hover {
    transform: none !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4) !important;
  }

  /* Disable particle system on mobile (canvas-heavy) */
  .bg-particles { display: none; }

  /* Reduce hero video scaling animation on mobile — even slower */
  .hero-video {
    animation-duration: 70s;
  }

  /* FIX (re-restored): mobile hero cover/poster was chopping half of the persons.
     Use `contain` so the full frame is visible, biased to top so both faces stay in view.
     Add a brand backdrop so the letterbox sides blend with the section, not white. */
  #hero {
    background: var(--bg-primary);
  }
  .hero-video,
  #hero-video,
  .hero-video-wrap video {
    object-fit: cover;
    object-position: center 22%;   /* show people, bias slightly above center */
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

/* Narrow phones — favour both subjects centred horizontally, full body visible */
@media (max-width: 480px) {
  .hero-video,
  #hero-video,
  .hero-video-wrap video {
    object-fit: cover;
    object-position: 50% 28%;
  }
}

/* ═══════════════════════════════════════════════
   CONTRIBUTIONS PORTAL — reuses inno-* classes
═══════════════════════════════════════════════ */
#contributions {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #030d10 0%, #040c0a 50%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

#contributions::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,162,39,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* 3-column card row for contributions (not 6) */
.contrib-cards-row {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 960px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   INNOVATIONS PORTAL
═══════════════════════════════════════════════ */
#innovations {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #030d10 100%);
  position: relative;
  overflow: hidden;
}

#innovations::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(120,202,210,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.inno-portal-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.inno-portal-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}

.inno-portal-label::before,
.inno-portal-label::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--teal);
}

.inno-portal-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.inno-portal-title span {
  background: linear-gradient(135deg, var(--teal-bright), var(--c1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inno-portal-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

/* ── Innovation Cards Row ── */
.inno-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.inno-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
}

.inno-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--card-accent, #78cad2);
}

.inno-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.inno-card:hover .inno-card-bg { transform: scale(1.08); }

.inno-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.inno-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,10,14,0.95) 0%, rgba(3,10,14,0.4) 50%, rgba(3,10,14,0.15) 100%);
  transition: background 0.4s ease;
}

.inno-card:hover .inno-card-overlay {
  background: linear-gradient(to top, rgba(3,10,14,0.98) 0%, rgba(3,10,14,0.55) 60%, rgba(3,10,14,0.2) 100%);
}

.inno-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.inno-card-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--card-accent, var(--teal));
  text-transform: uppercase;
  margin-bottom: 6px;
}

.inno-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  display: block;
}

.inno-card-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.inno-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--card-accent, var(--teal));
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inno-card:hover .inno-card-arrow {
  transform: translateY(4px);
  box-shadow: 0 0 20px var(--card-accent, var(--teal));
}

/* ═══════════════════════════════════════════════
   PROMO SCENES — Cinematic Innovation Sections
═══════════════════════════════════════════════ */
.promo-scene {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  scroll-margin-top: 80px;
  /* FIX: no outline/border/gap between sections */
  border: none;
  outline: none;
  margin: 0;
}

/* ── Film / Image cycling ── */
.promo-film {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.promo-frame.active {
  opacity: 1;
  z-index: 1;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.08);
  transition: transform 6s ease-out;
}

/* FIX: p1 is landscape (fine), p2 is portrait (1032×2219) — center top
   shows upper portion of both frames so faces/heads are always visible */
#scene-contrib-bahrain .promo-img { object-position: center top; }
/* FIX: Honoring section — portrait group shot, slight upward crop for faces */
#scene-contrib-honoring .promo-img { object-position: center top; }

/* Mobile overrides — remove Ken Burns zoom; shift to left-top so people
   (typically left/centre-left in wide shots) stay visible on narrow screens */
@media (max-width: 768px) {
  #scene-contrib-bahrain .promo-img {
    object-position: left top;        /* show left side where subjects stand */
    transform: scale(1.0) !important;
  }
  #scene-contrib-honoring .promo-img {
    object-position: center top;      /* group shot — keep top (faces) visible */
    transform: scale(1.0) !important;
  }
}
#scene-contrib-greencity .promo-img { object-position: center top; }

.promo-frame.active .promo-img {
  transform: scale(1.0);
}

/* ── Gradient overlays ── */
.promo-grad-left,
.promo-grad-bottom {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ── Scene number + category top-right ── */
.promo-eyebrow {
  position: absolute;
  top: 40px;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.promo-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  opacity: 0.9;
}

.promo-category {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ── Main content bottom-left ── */
.promo-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  padding: 0 60px 100px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.promo-scene.promo-active .promo-content {
  opacity: 1;
  transform: translateY(0);
}

.promo-brand {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.promo-headline {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.promo-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}

/* ── Stats row ── */
.promo-stats-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.promo-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.psv {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.psl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ── Tags row ── */
.promo-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.promo-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

/* ── Federation logo in promo scene ──
   FIX: restored the frosted-glass container plate behind the logo. The logo
   sits on a translucent blurred panel so it lifts off the busy scene image
   and stays clearly visible (transparent container, not a solid white block). */
.promo-federation-logo {
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 18px 26px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.promo-federation-logo img {
  height: 168px;
  width: auto;
  display: block;
  background: transparent;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.55));
}

.promo-btn {
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* ── Progress strip bottom-right ── */
.promo-progress-strip {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 10;
  display: none; /* removed — user requested no timeline dots on video banners */
  align-items: center;
  gap: 10px;
}

.promo-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.promo-dot.active {
  background: white;
  transform: scale(1.4);
}

/* FIXED: height 3px, gold fill, white-alpha track per spec */
.promo-bar-track {
  width: 80px;
  height: 3px;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
  overflow: hidden;
}

.promo-bar {
  height: 100%;
  width: 0%;
  background: var(--gold, #c9a84c);
  border-radius: 2px;
  transition: none;
}

/* Responsive promo scenes */
@media (max-width: 1024px) {
  .inno-cards-row { grid-template-columns: repeat(3, 1fr); }
  .inno-portal-inner { padding: 0 32px; }
  .promo-content { padding: 0 32px 80px; }
  .promo-eyebrow { right: 32px; }
  .promo-progress-strip { right: 32px; }
}

@media (max-width: 768px) {
  .contrib-cards-row { grid-template-columns: repeat(2, 1fr) !important; }
  .inno-cards-row { grid-template-columns: repeat(2, 1fr); }
  .inno-card { height: 280px; }
  .promo-scene { height: auto; min-height: 100vh; align-items: flex-end; }
  .promo-content { padding: 0 24px 80px; }
  .promo-eyebrow { right: 20px; top: 24px; }
  .promo-num { font-size: 2.2rem; }
  .promo-stats-row { gap: 16px; }
  .promo-progress-strip { right: 20px; bottom: 20px; }
  .inno-portal-inner { padding: 0 24px; }
}

@media (max-width: 480px) {
  .contrib-cards-row { grid-template-columns: 1fr !important; }
  .inno-cards-row { grid-template-columns: 1fr; }
  .inno-card { height: 240px; }
  .promo-brand { font-size: 1.8rem; }
  .promo-headline { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════════
   YOUTUBE STORY SERIES GRID
═══════════════════════════════════════════════ */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Compact 4-column lock — no responsive collapse until small screens */
.yt-grid-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 640px) {
  .yt-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
}

.yt-card {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.yt-card:hover {
  transform: translateY(-4px);
  border-color: #ff0000;
  box-shadow: 0 8px 32px rgba(255,0,0,0.2);
}

.yt-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.yt-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.yt-card:hover .yt-thumb-wrap img {
  transform: scale(1.05);
}

/* Always-visible play button (subtle), brighter on hover */
.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s ease;
}

.yt-play-icon {
  width: 40px;
  height: 28px;
  background: rgba(255,0,0,0.85);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.yt-play-icon svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.yt-card:hover .yt-play-btn {
  background: rgba(0,0,0,0.45);
}

.yt-card:hover .yt-play-icon {
  background: #ff0000;
  transform: scale(1.12);
}

/* YouTube bottom bar */
.yt-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #0f0f0f;
}

.yt-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.yt-logo svg {
  width: 18px;
  height: 13px;
}

.yt-card-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex: 1;
}

@media (max-width: 1100px) {
  .yt-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .yt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .yt-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ═══════════════════════════════════════════════
   BOOKS & RESEARCH SECTION
═══════════════════════════════════════════════ */
.books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.book-card {
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-md);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  animation: borderPulse 4s ease-in-out infinite;
  /* Clip only the image, not the text */
  isolation: isolate;
}

.book-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.book-cover-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a1a18;
  flex-shrink: 0;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.book-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #0a1a18;
  display: block;
  transition: transform 0.5s ease;
}

.book-card:hover .book-cover-wrap img {
  transform: scale(1.04);
}

.book-card-body {
  padding: 24px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.book-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.book-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: visible;
}

.book-author {
  font-size: 0.82rem;
  color: var(--teal-bright);
  font-weight: 500;
}

.book-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 4px;
  flex: 1;
}

@media (max-width: 1100px) {
  .books-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .books-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* Book download free button */
.book-download-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--teal), var(--blue-mid));
  color: white;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.book-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(97,168,172,0.4);
}

/* ═══════════════════════════════════════════════
   PODCAST FEATURE — LEADING INNOVATION
═══════════════════════════════════════════════ */
/* New 2-col podcast layout: left=photo+text, right=TikTok phones */
.podcast-feature {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-lg);
  overflow: visible;
  padding: 0;
}

/* ═══════════════════════════════════════════════
   PODCAST FEATURE V2 — Leading Innovation
   Base rules first, then breakpoints
═══════════════════════════════════════════════ */

/* Section shell — padding-bottom reserves space so phones sit in the corner */
.podcast-feature-v2 {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 28px;
  padding: 52px 52px 230px 52px;
  min-height: 420px;
}

/* Banner background — Dr. Faisal photo */
.podcast-banner-bg {
  position: absolute !important;
  inset: 0;
  background-image: url('../assets/images/podcast-banner-wide.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.podcast-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 20, 35, 0.68) 0%,
    rgba(4, 20, 35, 0.55) 40%,
    rgba(4, 20, 35, 0.82) 62%,
    rgba(4, 20, 35, 0.90) 100%
  );
}

/* All direct children sit above the banner */
.podcast-feature-v2 > *:not(.podcast-banner-bg) {
  position: relative;
  z-index: 1;
}

/* Header */
.podcast-v2-header {
  max-width: calc(100% - 255px);
  text-align: left;
  margin-bottom: 28px;
}
.podcast-v2-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 12px 0 8px;
  line-height: 1.2;
}
.podcast-v2-title span {
  display: block;
  color: var(--teal-bright);
  font-size: 0.85em;
  font-weight: 600;
}
.podcast-v2-tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

/* ── Trio of phones ──
   Fixed height so bottom: anchors the container to the section floor.
   min-height would push the container top upward making phones appear mid-section.
*/
.tt-phones-col--trio {
  position: absolute !important;
  bottom: 14px;
  right: 20px;
  width: 210px;
  height: 196px;        /* fixed — right-phone bottom = top(48)+height(140)+buffer(8) */
  z-index: 2;
  margin: 0;
  max-width: none;
}

/* Phone sizes */
.tt-phones-col--trio .tt-iphone        { width: 68px; }

/* Frame: visible bezel on dark background */
.tt-phones-col--trio .tt-iphone-frame  {
  width: 66px;
  height: 140px;
  background: #111;
  border: 2px solid #555;
  border-radius: 13px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.10),
    0 10px 28px rgba(0,0,0,0.85);
}
/* Screen — radius must match scaled-down frame */
.tt-phones-col--trio .tt-screen        { border-radius: 10px; }
/* Notch — scaled down to fit 66px frame */
.tt-phones-col--trio .tt-notch         { width: 28px; height: 8px; top: 5px; }

/* Center phone — slightly taller, floats */
.tt-phones-col--trio .tt-iphone--center {
  width: 78px;
  left: calc(50% - 39px);
  top: 0;
  animation: ttFloat3 4.5s ease-in-out infinite;
}
.tt-phones-col--trio .tt-iphone--center .tt-iphone-frame {
  width: 76px;
  height: 158px;
  border-radius: 15px;
}
.tt-phones-col--trio .tt-iphone--center .tt-screen { border-radius: 12px; }
.tt-phones-col--trio .tt-iphone--center .tt-notch  { width: 32px; }

/* Side phones */
.tt-phones-col--trio .tt-iphone--left  { left: 0;   top: 28px; }
.tt-phones-col--trio .tt-iphone--right { right: 0;  top: 46px; }

/* Footer CTA */
.podcast-v2-footer {
  max-width: calc(100% - 255px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.podcast-v2-stats {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
}

/* ── Tablet (≤860px) ── */
@media (max-width: 860px) {
  .podcast-feature-v2 {
    padding: 40px 28px 205px 28px;
    min-height: 360px;
  }
  .podcast-v2-header { max-width: calc(100% - 205px); }
  .podcast-v2-footer { max-width: calc(100% - 205px); }
  .tt-phones-col--trio {
    width: 182px;
    height: 168px;
    bottom: 12px;
    right: 14px;
  }
  .tt-phones-col--trio .tt-iphone        { width: 58px; }
  .tt-phones-col--trio .tt-iphone-frame  { width: 56px; height: 120px; border-radius: 11px; }
  .tt-phones-col--trio .tt-screen        { border-radius: 8px; }
  .tt-phones-col--trio .tt-notch         { width: 22px; height: 7px; }
  .tt-phones-col--trio .tt-iphone--center { width: 66px; left: calc(50% - 33px); top: 0; }
  .tt-phones-col--trio .tt-iphone--center .tt-iphone-frame { width: 64px; height: 136px; border-radius: 13px; }
  .tt-phones-col--trio .tt-iphone--center .tt-notch { width: 26px; }
  .tt-phones-col--trio .tt-iphone--left  { left: 0;   top: 24px; }
  .tt-phones-col--trio .tt-iphone--right { right: 0;  top: 40px; }
}

/* ── Mobile (≤640px) ── */
@media (max-width: 640px) {
  .podcast-banner-bg {
    background-image: url('../assets/images/podcast-banner.jpg');
    background-position: top center;
  }
  .podcast-feature-v2 {
    padding: 28px 16px 172px 16px;
    border-radius: 20px;
    min-height: 280px;
  }
  .podcast-v2-header {
    max-width: calc(100% - 158px);
    text-align: left;
    margin-bottom: 18px;
  }
  .podcast-v2-footer {
    max-width: calc(100% - 158px);
    align-items: flex-start;
  }
  .podcast-v2-stats { justify-content: flex-start; gap: 12px; flex-wrap: wrap; }

  .tt-phones-col--trio {
    width: 150px;
    height: 150px;
    bottom: 10px;
    right: 8px;
  }
  .tt-iphone--left,
  .tt-iphone--right { display: block !important; }

  .tt-phones-col--trio .tt-iphone        { width: 46px; }
  .tt-phones-col--trio .tt-iphone-frame  {
    width: 44px;
    height: 94px;
    background: #111;
    border: 2px solid #555;
    border-radius: 9px;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.18),
      inset 0 0 0 1px rgba(255,255,255,0.10),
      0 6px 18px rgba(0,0,0,0.85);
  }
  .tt-phones-col--trio .tt-screen        { border-radius: 7px; }
  .tt-phones-col--trio .tt-notch         { width: 18px; height: 6px; top: 4px; }
  .tt-phones-col--trio .tt-iphone--center {
    width: 54px;
    left: calc(50% - 27px);
    top: 0;
  }
  .tt-phones-col--trio .tt-iphone--center .tt-iphone-frame { width: 52px; height: 110px; border-radius: 11px; }
  .tt-phones-col--trio .tt-iphone--center .tt-screen { border-radius: 9px; }
  .tt-phones-col--trio .tt-iphone--center .tt-notch  { width: 22px; }
  .tt-phones-col--trio .tt-iphone--left  { left: 0;  top: 18px; }
  .tt-phones-col--trio .tt-iphone--right { right: 0; top: 30px; }
}

.podcast-left-col {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 460px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}

.podcast-img-frame {
  position: relative;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
}

.podcast-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.podcast-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--teal-line);
  border-radius: 40px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.podcast-text-col {
  padding: 40px 40px 40px 32px;
}

.podcast-show-logo {
  margin-bottom: 20px;
}

.podcast-show-logo img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
}

.podcast-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 12px;
}

.podcast-title span {
  color: var(--teal-bright);
}

.podcast-tagline {
  font-size: 1rem;
  color: var(--teal);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
}

.podcast-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.podcast-stats-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.podcast-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.podcast-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.podcast-stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .podcast-feature {
    grid-template-columns: 1fr;
  }
  .podcast-img-col {
    min-height: 320px;
    max-height: 380px;
  }
  .podcast-text-col {
    padding: 36px 28px 36px;
  }
}
@media (max-width: 540px) {
  .podcast-text-col { padding: 28px 20px 28px; }
  .podcast-stats-row { gap: 20px; }
}

/* ═══════════════════════════════════════════════
   ADVISORY SECTIONS — Global & Local
═══════════════════════════════════════════════ */
.advisory-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.advisory-hero-grid--reverse {
  grid-template-columns: 380px 1fr;
}

.advisory-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.advisory-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.advisory-feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  margin-top: 2px;
}

.advisory-feature-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.advisory-feature-item span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

/* Pricing card */
.advisory-pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  animation: borderPulse 4s ease-in-out infinite;
  position: sticky;
  top: 100px;
}

.advisory-pricing-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 10px;
}

.advisory-pricing-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.advisory-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.advisory-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal-bright);
  letter-spacing: -0.02em;
}

.advisory-price-note {
  font-size: 1rem;
  color: var(--text-muted);
}

.advisory-price-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.advisory-price-divider {
  height: 1px;
  background: var(--teal-line);
  margin: 16px 0;
}

.advisory-includes {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.advisory-includes li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Case studies column */
.advisory-case-studies {
  margin-top: 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.advisory-case-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}

.advisory-case-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(80,133,139,0.1);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.advisory-case-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .advisory-hero-grid,
  .advisory-hero-grid--reverse {
    grid-template-columns: 1fr;
  }
  .advisory-hero-grid--reverse .advisory-pricing-col { order: 2; }
  .advisory-hero-grid--reverse .advisory-text { order: 1; }
  .advisory-pricing-card { position: static; }
}

/* ═══════════════════════════════════════════════
   SEMINARS & WORKSHOPS
═══════════════════════════════════════════════ */
.seminars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.seminar-card {
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  animation: borderPulse 4s ease-in-out infinite;
}

.seminar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.seminar-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  flex-shrink: 0;
}

.seminar-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.seminar-card:hover .seminar-cover img { transform: scale(1.04); }

.seminar-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,15,12,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
}

.seminar-location-badge {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.seminar-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seminar-sector-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.seminar-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
}

.seminar-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.seminar-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.seminar-highlight {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: rgba(80,133,139,0.08);
  border-radius: 6px;
  padding: 7px 10px;
}

.seminar-audience {
  padding: 14px;
  background: rgba(80,133,139,0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
}

.seminar-audience-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 5px;
}

.seminar-audience-list {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.seminar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--teal-line);
}

.seminar-price { display: flex; flex-direction: column; gap: 2px; }
.seminar-price-val { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); }
.seminar-price-label { font-size: 0.72rem; color: var(--text-muted); }

.seminar-btn { font-size: 0.88rem; padding: 12px 22px; white-space: nowrap; }

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

/* ═══════════════════════════════════════════════
   STORE SECTION
═══════════════════════════════════════════════ */
.store-category-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.store-card {
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.store-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.store-card--coming { opacity: 0.65; }

.store-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a1a18;
  flex-shrink: 0;
}

.store-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #0a1a18;
  display: block;
  transition: transform 0.4s ease;
}

.store-card:hover .store-img-wrap img { transform: scale(1.04); }

.store-img-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(80,133,139,0.08);
}

.store-placeholder-inner {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.store-card-body {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.store-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.store-card-title span {
  font-weight: 500;
  color: var(--text-secondary);
}

.store-card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal-bright);
}

.store-card-price--free { color: #22c55e; }

.store-card-rating {
  font-size: 0.78rem;
  color: #f59e0b;
}
.store-card-rating span { color: var(--text-muted); }

.store-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.store-buy-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  color: white;
  text-decoration: none;
  border: none;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  margin-top: auto;
}

.store-buy-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(80,133,139,0.3); }
.store-buy-btn--free { background: linear-gradient(135deg, #16a34a, #15803d); }
.store-buy-btn--disabled { background: rgba(80,133,139,0.15); color: var(--text-muted); cursor: default; }
.store-buy-btn--disabled:hover { transform: none; box-shadow: none; }

/* Services grid */
.store-services-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-service-card {
  background: var(--bg-card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.store-service-card:hover {
  border-color: var(--teal);
  transform: translateX(4px);
}

.store-service-icon { font-size: 1.8rem; flex-shrink: 0; }

.store-service-info { flex: 1; }

.store-service-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.store-service-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.store-service-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.store-service-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal-bright);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .store-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .store-service-card { flex-wrap: wrap; }
  .store-service-right { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
}

/* ═══════════════════════════════════════════════
   TIKTOK iPHONE MOCKUPS
═══════════════════════════════════════════════ */
@keyframes ttFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%       { transform: translateY(-12px) rotate(-6deg); }
}
@keyframes ttFloat2 {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50%       { transform: translateY(-9px) rotate(5deg); }
}
@keyframes ttFloat3 {
  0%, 100% { transform: translateY(-6px) rotate(0deg); }
  50%       { transform: translateY(6px) rotate(0deg); }
}

.tt-phones-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 500px;
}

.tt-iphone {
  position: absolute;
  width: 150px;
}

.tt-iphone--left {
  left: 10px;
  top: 30px;
  animation: ttFloat 5s ease-in-out infinite;
  z-index: 1;
}

.tt-iphone--center {
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  animation: ttFloat3 4.5s ease-in-out infinite;
  z-index: 3;
  width: 162px;
}

.tt-iphone--right {
  right: 10px;
  top: 60px;
  animation: ttFloat2 6s ease-in-out infinite;
  z-index: 1;
}

.tt-iphone-frame {
  width: 160px;
  height: 336px;
  background: #0a0a0a;
  border-radius: 34px;
  border: 3px solid #2a2a2a;
  box-shadow:
    0 0 0 1px #111,
    inset 0 0 0 1px #333,
    0 24px 60px rgba(0,0,0,0.7),
    0 0 40px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.tt-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background: #0a0a0a;
  border-radius: 20px;
  z-index: 10;
}

.tt-screen {
  position: absolute;
  inset: 0;
  border-radius: 31px;
  overflow: hidden;
  background: #111;
}

.tt-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* legacy fallback for div-based bg (kept for backward compat) */
  background-size: cover;
  background-position: center top;
  will-change: transform;
  transform: translateZ(0);
}

.tt-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.tt-tiktok-bar {
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 5;
}

.tt-bar-item {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.tt-bar-active {
  color: white;
  border-bottom: 1.5px solid white;
  padding-bottom: 2px;
}

.tt-bottom-ui {
  position: absolute;
  bottom: 20px;
  left: 10px;
  right: 40px;
  z-index: 5;
}

.tt-user-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}

.tt-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #62a8ac, #c9a227);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  border: 1.5px solid white;
}

.tt-username {
  font-size: 0.52rem;
  font-weight: 700;
  color: white;
}

.tt-follow-tag {
  background: transparent;
  border: 1px solid white;
  border-radius: 4px;
  font-size: 0.42rem;
  color: white;
  padding: 1px 4px;
  font-weight: 600;
  flex-shrink: 0;
}

.tt-caption {
  font-size: 0.48rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  margin-bottom: 4px;
}

.tt-sound-row {
  font-size: 0.42rem;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tt-right-actions {
  position: absolute;
  right: 6px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  z-index: 5;
}

.tt-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.tt-action svg { filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }
.tt-action svg { width: 16px; height: 16px; }

.tt-action span {
  font-size: 0.38rem;
  color: white;
  font-weight: 600;
}

/* TikTok follow button */
.tt-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #010101, #2d2d2d);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: var(--transition);
}

.tt-follow-btn:hover {
  background: #ee1d52;
  border-color: #ee1d52;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(238,29,82,0.4);
}

/* Podcast responsive — old v1 layout */
@media (max-width: 1100px) {
  .podcast-feature { grid-template-columns: 1fr; }
  .tt-phones-col { min-height: 280px; }
  .podcast-left-col { grid-template-columns: 220px 1fr; }
}
@media (max-width: 640px) {
  .podcast-left-col { grid-template-columns: 1fr; }
  .podcast-img-frame { min-height: 260px; }
  .podcast-v2-stats { gap: 20px; flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;        /* FIX: moved from right to left — no overlap with 30-years badge */
  right: auto;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #25d366 0%, #1aab52 100%);
  color: white;
  text-decoration: none;
  padding: 9px 16px 9px 10px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40), 0 2px 6px rgba(0,0,0,0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.wa-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.10);
}

/* FIX (re-restored): proper WhatsApp glyph — never the OG / avatar thumbnail */
.wa-float-glyph {
  display: block;
  width: 30px;
  height: 30px;
}

.wa-float-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.wa-float-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.wa-float-sub {
  font-size: 0.60rem;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.wa-float:hover {
  box-shadow: 0 8px 28px rgba(37,211,102,0.55), 0 2px 10px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.40), 0 0 0 0 rgba(37,211,102,0.30); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.40), 0 0 0 8px rgba(37,211,102,0); }
}

.wa-float { animation: waPulse 3.5s ease-in-out infinite; }
.wa-float:hover { animation: none; }

/* Mobile: icon-only pill — hide text label, anchored LEFT (no overlap with 30y badge on right) */
@media (max-width: 768px) {
  .wa-float {
    padding: 6px;
    border-radius: 50%;
    gap: 0;
    bottom: 20px;
    left: 18px;
    right: auto;
  }
  .wa-float-content { display: none; }
  .wa-float-icon {
    width: 48px;
    height: 48px;
    background: transparent;
  }
  .wa-float-glyph { width: 30px; height: 30px; }
}

/* ════════════════════════════════════════
   REDUCED MOTION — pause all videos, hide cinematic breaks
════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap { display: none; }
  .cinematic-break { display: none; }
  .human-moment { height: 0; overflow: hidden; }
  .cbreak-video, .hm-video { animation: none; }
}


/* ════════════════════════════════════════════════
   30 YEARS ANNIVERSARY LOGO — transparent PNG
════════════════════════════════════════════════ */

/* Shared rule for every placement */
.hero-30years-img,
.badge-30years-img,
.cbreak-30years-img,
.footer-30years-img {
  display: block;
  object-fit: contain;
}

/* ── 1. Hero stat — 30 years logo ── */
.hero-stat--logo30 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.hero-logo30-frame {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1.5px solid rgba(120, 202, 210, 0.45);
  box-shadow: 0 0 18px rgba(120, 202, 210, 0.2), inset 0 0 10px rgba(0,0,0,0.5);
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.hero-logo30-frame:hover {
  border-color: rgba(120, 202, 210, 0.8);
  box-shadow: 0 0 28px rgba(120, 202, 210, 0.4);
}

.hero-logo30-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  transform: scale(1.05);
}

/* ── 2. About badge ── */
.about-badge--logo30 {
  background: transparent !important;
  padding: 0 !important;
  min-width: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  bottom: -52px;
  right: -40px;
}
.badge-30years-img {
  width: 148px;
  height: 148px;
  transition: transform 0.5s ease;
}
.badge-30years-img:hover {
  transform: scale(1.06) rotate(5deg);
}

/* ── 3. Cinematic break row ── */
.cbreak-30-row {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.cbreak-30years-img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.cbreak-30-row .cbreak-label {
  position: static;
  transform: none;
  left: auto;
}

/* ── 4. Footer ── */
.footer-30years {
  margin-bottom: 4px;
  margin-top: -8px;
}
.footer-30years-img {
  width: 90px;
  height: 90px;
  transition: transform 0.5s ease;
}
.footer-30years-img:hover {
  transform: rotate(6deg) scale(1.06);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero-30years-img  { width: 72px;  height: 72px; }
  .badge-30years-img { width: 110px; height: 110px; }
  .cbreak-30years-img { width: 42px; height: 42px; }
  .footer-30years-img { width: 72px; height: 72px; }
  .about-badge--logo30 { bottom: -36px; right: -16px; }
}

/* ══════════════════════════════════════════
   PROGRAMS SECTION — ENHANCED
══════════════════════════════════════════ */

/* Impact stats bar */
.prog-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--teal-line);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-md);
  margin-bottom: 56px;
  overflow: hidden;
}
.prog-stat-item {
  background: var(--bg-secondary);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prog-stat-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}
.prog-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Featured: Harvard roundtable */
.prog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
  background: var(--bg-card);
  min-height: 420px;
}
.prog-featured-img {
  position: relative;
  overflow: hidden;
}
.prog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}
.prog-featured:hover .prog-featured-img img {
  transform: scale(1.04);
}
.prog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg-secondary) 100%),
              linear-gradient(to top, rgba(5,15,18,0.6) 0%, transparent 40%);
}
.prog-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}
.prog-featured-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.prog-featured-eyebrow {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.prog-featured-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.prog-featured-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.prog-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prog-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(97,168,172,0.1);
  border: 1px solid rgba(97,168,172,0.25);
  padding: 5px 12px;
  border-radius: 20px;
}
.prog-cnbc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(120,202,210,0.04);
  border: 1px solid rgba(120,202,210,0.12);
  border-radius: var(--radius-sm);
  margin-top: 4px;
}
.prog-cnbc-img-wrap {
  width: 72px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.prog-cnbc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.prog-cnbc-caption {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.prog-cnbc-caption strong {
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 700;
}
.prog-cnbc-caption span {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Partner logos strip */
.programs-partners {
  margin-bottom: 56px;
}
.programs-partners-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}
.programs-partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 32px;
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
}
.prog-partner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 20px;
  border: 1px solid rgba(97,168,172,0.2);
  border-radius: 10px;
  background: rgba(97,168,172,0.05);
  transition: border-color 0.3s, background 0.3s;
}
.prog-partner-badge:hover {
  border-color: var(--teal);
  background: rgba(97,168,172,0.1);
}
.prog-partner-badge--gold {
  border-color: rgba(201,162,39,0.25);
  background: rgba(201,162,39,0.05);
}
.prog-partner-badge--gold:hover {
  border-color: var(--gold);
  background: rgba(201,162,39,0.1);
}
.prog-partner-name {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}
.prog-partner-badge--gold .prog-partner-name {
  color: var(--gold-light);
}
.prog-partner-sub {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   SECURITY EVENT — PROMO-SCENE STYLE (100vh cinematic)
══════════════════════════════════════════ */
.sec-event-scene {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #050a0d;
}

/* Background cycling frames — identical mechanism to .promo-film */
.sec-film {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sec-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.sec-frame.active {
  opacity: 1;
}
.sec-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  transition: transform 7s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.sec-frame:nth-child(1) .sec-frame-img { transform-origin: center center; }
.sec-frame:nth-child(2) .sec-frame-img { transform-origin: top right; }
.sec-frame:nth-child(3) .sec-frame-img { transform-origin: bottom left; }
.sec-frame:nth-child(4) .sec-frame-img { transform-origin: top left; }
.sec-frame:nth-child(5) .sec-frame-img { transform-origin: bottom right; }
.sec-frame.active .sec-frame-img {
  transform: scale(1.0) !important;
}
/* Mobile: reduce Ken Burns intensity + BUG 3 FIX: show people from top */
@media (max-width: 768px) {
  .sec-frame-img {
    transform: scale(1.02);
    transition: transform 5s cubic-bezier(0.0, 0.0, 0.2, 1);
    object-position: center top; /* BUG 3 FIX: portraits show faces, not feet */
  }
  .sec-frame { transition: opacity 0.8s ease; }
}

/* Gradient overlays */
.sec-grad-left {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(5,12,18,0.78) 0%, rgba(5,12,18,0.50) 45%, rgba(5,12,18,0.15) 75%, transparent 100%);
  pointer-events: none;
}
.sec-grad-bottom {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(5,15,18,0.82) 0%, transparent 50%);
  pointer-events: none;
}

/* Eyebrow chips — top left */
.sec-eyebrow {
  position: absolute;
  top: 36px;
  left: 56px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-date-chip {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-bright);
  background: rgba(120,202,210,0.12);
  border: 1px solid rgba(120,202,210,0.35);
  padding: 5px 14px;
  border-radius: 20px;
}
.sec-type-chip {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(234,246,247,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 14px;
  border-radius: 20px;
}

/* Content area — left-anchored, bottom-aligned like promo-content */
.sec-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 110px;
  max-width: 680px;
  width: 100%;
}

/* Individual panels — visibility-based fade (display:none blocks transitions) */
.sec-panel {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.sec-panel.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Panel typography */
.sec-panel-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.sec-panel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.sec-panel-orgtags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}
.sec-panel-orgtags span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--teal-bright);
  background: rgba(120,202,210,0.1);
  border: 1px solid rgba(120,202,210,0.28);
  padding: 3px 11px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}
.sec-panel-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.sec-panel-title span {
  color: var(--teal-bright);
}
.sec-panel-desc {
  font-size: 0.88rem;
  color: rgba(234,246,247,0.72);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}

/* Solutions row — panel 1 */
.sec-panel-solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.sec-sol {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(120,202,210,0.07);
  border: 1px solid rgba(120,202,210,0.18);
  padding: 7px 14px;
  border-radius: 8px;
}
.sec-sol .ico {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--teal);
}

/* Attendees row — panel 1 */
.sec-panel-attendees {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sec-panel-attendees span {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(234,246,247,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3px 10px;
  border-radius: 14px;
  letter-spacing: 0.06em;
}

/* Outcome columns — panels 2-5 */
.sec-panel-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sec-outcome-col {
  background: rgba(5,20,26,0.75);
  border: 1px solid rgba(120,202,210,0.14);
  border-radius: 10px;
  padding: 16px 18px;
  backdrop-filter: blur(12px);
}
.sec-outcome-heading {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--teal-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(120,202,210,0.12);
}
.sec-outcome-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sec-outcome-col ul li {
  font-size: 0.75rem;
  color: rgba(234,246,247,0.65);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.sec-outcome-col ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Progress strip — bottom right, identical to promo-progress-strip */
.sec-progress-strip {
  position: absolute;
  bottom: 36px;
  right: 56px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(120,202,210,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.35s;
}
.sec-dot.active {
  background: var(--teal-bright);
  transform: scale(1.3);
  width: 22px;
  border-radius: 4px;
}
/* FIXED: height 3px, gold fill, white-alpha track per spec */
.sec-bar-track {
  width: 80px;
  height: 3px;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
  overflow: hidden;
  margin-left: 6px;
}
.sec-bar {
  height: 100%;
  width: 0%;
  background: var(--gold, #c9a84c);
  border-radius: 2px;
}

/* Entry animation when scene becomes active */
.sec-active .sec-panel.active { animation: fadeUpFast 0.65s 0.1s both; }

/* ── Responsive — Programs enhanced ── */
@media (max-width: 1024px) {
  .prog-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .prog-featured { grid-template-columns: 1fr; min-height: auto; }
  .prog-featured-img { height: 280px; }
  .sec-panel-outcomes { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 768px) {
  .prog-stats-bar { grid-template-columns: 1fr 1fr; }
  .prog-featured-body { padding: 28px 24px; }
  .prog-featured-title { font-size: 1.4rem; }
  .programs-partners-strip { gap: 8px; padding: 16px; }
  .prog-partner-badge { padding: 8px 12px; }
  .sec-event-scene { height: auto; min-height: 100vh; align-items: flex-end; }
  .sec-content { padding: 0 24px 90px; max-width: 100%; }
  .sec-panel-title { font-size: 2rem; }
  .sec-eyebrow { left: 24px; top: 24px; }
  .sec-progress-strip { right: 24px; bottom: 24px; }
}
@media (max-width: 480px) {
  .prog-stats-bar { grid-template-columns: 1fr 1fr; }
  .prog-cnbc-row { flex-direction: column; align-items: flex-start; }
  .sec-panel-title { font-size: 1.65rem; }
  .sec-panel-solutions { gap: 7px; }
  .sec-sol { font-size: 0.68rem; padding: 6px 10px; }
}

/* ══════════════════════════════════════════
   SCROLLING LOGOS BAND — both event scenes
══════════════════════════════════════════ */
.scene-logos-band {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  /* FIX (re-restored): preserve the white opaque bar behind scrolling logos —
     do NOT remove. Slight translucency keeps the section bleeding into bg,
     while logos remain readable on a clean light surface. */
  background: rgba(255, 255, 255, 0.50);  /* 50% opaque as requested */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.40);
  box-shadow: 0 -2px 22px rgba(0, 0, 0, 0.18);
  padding: 28px 0 30px;        /* extra vertical breathing so logos never clip */
  overflow: hidden;            /* clip horizontally for scroll; logos sized to fit within container */
}

.scene-logos-label {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15, 30, 60, 0.55);   /* FIX: dark teal label readable on white bar */
  margin-bottom: 14px;
  pointer-events: none;
}

.scene-logos-marquee {
  overflow: hidden;     /* single declaration — avoids the overflow-x + overflow-y conflict */
  width: 100%;
}

.scene-logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoScroll 38s linear infinite;
}

.scene-logos-track:hover {
  animation-play-state: paused;
}

.scene-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 130px;            /* tall enough that all logos fit without overflow */
  overflow: hidden;         /* clip to container — logos sized to fit within */
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  min-width: 140px;
}

.scene-logo-item img {
  height: 64px;
  max-height: 90px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;   /* normal — preserves all colours, no invisible-white issue */
  display: block;
  flex-shrink: 0;
}

/* ── Per-logo size overrides (capped to band height to prevent clipping) ── */
.scene-logo-item img[alt="Bahrain Development Bank"] {
  height: 117px;
  max-height: 117px;
  max-width: 240px;
}
.scene-logo-item img[alt="NASA"] {
  height: 70px;
  max-height: 70px;
  max-width: 220px;
}
.scene-logo-item img[alt="Court of the Crown Prince"] {
  height: 76px;
  max-height: 76px;
  max-width: 180px;
}
.scene-logo-item img[alt="Bahrain Chamber of Commerce"] {
  height: 123px;
  max-height: 123px;
  max-width: 280px;
}
.scene-logo-item img[alt="United Nations"] {
  height: 64px;
  max-height: 64px;
  max-width: 200px;
}

/* ── Security bar per-logo overrides ── */
.scene-logo-item img[alt="Office of the Deputy Prime Minister"] {
  height: 101px;            /* +20% as requested (was 84px) */
  max-height: 101px;
  max-width: 280px;
}
.scene-logo-item img[alt="Ministry of Interior"] {
  height: 96px;             /* enlarged to show full emblem without clip */
  max-height: 96px;
  max-width: 200px;
}
.scene-logo-item img[alt="Bahrain Customs"] {
  height: 90px;             /* enlarged to show full emblem without clip */
  max-height: 90px;
  max-width: 180px;
}
.scene-logo-item img[alt="National Oil &amp; Gas Authority"] {
  height: 66px;
  max-height: 66px;
  max-width: 260px;
}
.scene-logo-item img[alt="BAPCO Energies"] {
  height: 50px;
  max-height: 50px;
  max-width: 180px;
}
.scene-logo-item img[alt="BAPCO Tatweer"] {
  height: 70px;
  max-height: 70px;
  max-width: 200px;
}
.scene-logo-item img[alt="King Fahd Causeway Authority"] {
  height: 64px;
  max-height: 64px;
  max-width: 220px;
}
.scene-logo-item img[alt="Bahrain Airport Company"] {
  height: 56px;
  max-height: 56px;
  max-width: 200px;
}

.scene-logos-track:hover .scene-logo-item img {
  opacity: 1;
}

.scene-logo-item:hover img {
  opacity: 1;
}

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Adjust progress strip & content to not overlap logos band */
.sec-event-scene .sec-progress-strip {
  bottom: 150px; /* FIX: lifted further above the now-taller white logos band */
}

.sec-event-scene .sec-content {
  padding-bottom: 200px; /* FIX: leave clear space below content for white bar */
}

@media (max-width: 768px) {
  /* FIX: logos band — overflow-x only so logos are not clipped top/bottom */
  .scene-logos-band {
    padding: 16px 0 18px;
    overflow: hidden;
  }
  .scene-logos-marquee {
    overflow: hidden;
  }
  /* Mobile logo band — sized so all emblems fit without clipping */
  .scene-logo-item  { padding: 0 16px; height: 90px; overflow: hidden; }
  /* Cap ALL logos to mobile container height */
  .scene-logo-item img,
  .scene-logo-item img[alt="Bahrain Development Bank"],
  .scene-logo-item img[alt="NASA"],
  .scene-logo-item img[alt="Court of the Crown Prince"],
  .scene-logo-item img[alt="Bahrain Chamber of Commerce"],
  .scene-logo-item img[alt="United Nations"],
  .scene-logo-item img[alt="Office of the Deputy Prime Minister"],
  .scene-logo-item img[alt="Ministry of Interior"],
  .scene-logo-item img[alt="Bahrain Customs"],
  .scene-logo-item img[alt="National Oil &amp; Gas Authority"],
  .scene-logo-item img[alt="BAPCO Energies"],
  .scene-logo-item img[alt="BAPCO Tatweer"],
  .scene-logo-item img[alt="King Fahd Causeway Authority"],
  .scene-logo-item img[alt="Bahrain Airport Company"],
  .scene-logo-item img[alt="SABIC"],
  .scene-logo-item img[alt="Saudi Aramco"] {
    height: auto;
    max-height: 72px;
    max-width: 140px;
  }
  .sec-event-scene .sec-progress-strip { bottom: 110px; }
  .sec-event-scene .sec-content { padding-bottom: 160px; }
}

/* ════════════════════════════════════════════════════════════
   LOGO NORMALISATION
   Consistent rendering across all partner/client logo strips.
   SVGs are clean; PNGs may have dirty halos.
   • Dark-background contexts  → mix-blend-mode: screen
   • Light/neutral backgrounds → mix-blend-mode: multiply
═══════════════════════════════════════════════════════════ */

/* ── All logos inside any scrolling marquee ── */
.scene-logo-item img {
  width: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
  transition: opacity 0.3s, filter 0.3s;
}

/* Band logos: normal blend — preserves all colours including government seals.
   multiply caused white logos to vanish and coloured seals to lose their hue. */
.scene-logos-band .scene-logo-item img {
  mix-blend-mode: normal;
  filter: none;
}

/* ── Navbar logo (dark navbar bg) ── */
.nav-logo img {
  mix-blend-mode: screen;
  object-fit: contain;
}

/* ── Footer logo boxes (transparent bg, white logos) ── */
.footer-logo-box img,
.footer-qatar-logo {
  mix-blend-mode: normal;
  object-fit: contain;
  width: auto;
}

/* ── Entrepreneur partner logos in cards (still dark card bg) ── */
.logos-entrepreneurs .scene-logo-item img,
#programs .scene-logo-item img {
  mix-blend-mode: screen;
}
/* Inside the white scrolling bar this is overridden — multiply wins for legibility */
.scene-logos-band.logos-entrepreneurs .scene-logo-item img,
.scene-logos-band #programs .scene-logo-item img {
  mix-blend-mode: multiply;
}

/* ── Inno-card background images: always cover the card ── */
.inno-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Desktop standard: 48px tall, auto wide */
@media (min-width: 769px) {
  .scene-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 20px;
  }
  .scene-logo-item img {
    height: 48px;
    max-height: 48px;
    width: auto;
    max-width: 140px;
  }
}

/* Mobile: 32px tall */
@media (max-width: 768px) {
  .scene-logo-item {
    height: 40px;
    padding: 0 12px;
  }
  .scene-logo-item img {
    height: 32px;
    max-height: 32px;
    width: auto;
    max-width: 90px;
  }
}

/* ── PNG logos with known white/light backgrounds: force multiply ──
   These appear against light or neutral containers in program sections  */
.logos-light-bg .scene-logo-item img,
.program-card .partner-logo img {
  mix-blend-mode: multiply;
}

/* ════════════════════════════════════════════════════════════
   ISSUE 2: VIDEO BACKGROUND STATE (always-live)
   .hero-bg--image class hides the video wrap without inline styles.
   Restored by toggling to .hero-bg--video.
════════════════════════════════════════════════════════════ */
/* Ensure tt-video-bg (podcast iPhone screens) fill their container */
.tt-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ════════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS — FULL REBUILD (Issue 4)
   Breakpoints: 768px (tablet/large phone), 480px (phone), 390px (iPhone 14 Pro)
════════════════════════════════════════════════════════════ */

/* ── Touch: disable magnetic effect visually ─────────────── */
@media (hover: none) {
  /* Magnetic buttons rely on mousemove — no equivalent on touch.
     Reset any transform the JS may have applied before touch was detected. */
  .btn-primary,
  .btn-secondary,
  .nav-cta {
    transform: none !important;
    transition: opacity 0.2s, box-shadow 0.2s !important;
  }
  /* Provide :active feedback instead */
  .btn-primary:active  { opacity: 0.85; }
  .btn-secondary:active { opacity: 0.85; }
}

/* ── Tap target minimum 44×44px ──────────────────────────── */
.nav-hamburger,
.mobile-close,
.hold-verify-btn,
.social-btn,
.wa-float {
  min-width:  44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dots stay visually small — extend hit area via pseudo-element only */
.promo-dot,
.sec-dot {
  position: relative;
}
.promo-dot::before,
.sec-dot::before {
  content: '';
  position: absolute;
  inset: -18px;   /* 6px dot + 18px padding each side = 42px hit area */
}

/* ── @media 768px — tablet / large phone ─────────────────── */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .navbar { padding: 14px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }      /* hamburger only on mobile */
  .nav-hamburger { display: flex; }  /* show burger */
  /* nav logo: clamp handles responsive sizing now */

  /* ── Hero ── */
  #hero {
    height: auto;              /* FIXED (Audit): reset 100vh so 100svh min-height wins */
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 100px;
  }
  .hero-content {
    padding: 0 20px;
    align-items: flex-start;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  .hero-tagline {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    margin-bottom: 32px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
  .hero-stats {
    position: relative;
    bottom: auto; right: auto;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 20px;
    justify-content: flex-start;
    animation: none;
    opacity: 1;
  }
  .hero-stat { text-align: left; }
  .hero-stat-value { font-size: 1.6rem; }

  /* ── Section base ── */
  .section-inner { padding: 0 20px; }
  section { padding: 64px 0; }

  /* ── Section headings ── */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  /* ── Innovations portal ── */
  .inno-portal-inner { padding: 48px 20px 32px; }
  .inno-portal-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* ── Promo scenes ── */
  .promo-content {
    padding: 0 20px 100px;
    max-width: 100%;
  }
  .promo-brand   { font-size: clamp(2rem, 10vw, 4rem); }
  .promo-headline { font-size: clamp(1.4rem, 5vw, 2rem); }
  .promo-stats-row { gap: 16px; flex-wrap: wrap; }
  .promo-progress-strip { right: 20px; bottom: 24px; }

  /* ── About grid ── */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }

  /* ── Image focal points: portrait shots show face, not ceiling ── */
  .about-image-frame img { object-position: center 38% !important; }  /* mobile: start from head */
  .media-feature-img img,
  .seminar-cover img,
  .store-img-wrap img {
    object-position: center top;
  }
  /* BUG 3 FIX: promo-img default → top so faces/people are not cropped */
  .promo-img {
    object-position: center top;
  }
  /* Landscape/non-people scenes stay centred */
  #scene-minigolf .promo-img,
  #scene-arabiancoin .promo-img {
    object-position: center center;
  }
  /* Cinematic breaks and podcast moments stay centred */
  .cbreak-video,
  .hm-video {
    object-position: center center;
  }

  /* ── Impact / stat grid ── */
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* ── Business cards ── */
  .business-grid,
  .business-cards-row {         /* FIXED (Audit): .business-grid is the actual HTML class */
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ── Contact form ── */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-brand p { text-align: center; }
  .footer-social  { justify-content: center; }
  .footer-qatar-card { margin: 0 auto; }
  .footer-col ul { padding: 0; }

  /* ── Event video sections ── */
  .cinematic-break {
    height: 38vw;
    min-height: 180px;
    max-height: 280px;
  }
  .cbreak-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .human-moment { height: 85vh; }

  /* ── Partner logo strip (already handled above, ensure wrap) ── */
  .scene-logos-marquee { overflow: hidden; }
  .scene-logos-track   { flex-wrap: nowrap; } /* marquee must not wrap */

  /* ── Store grid ── */
  .store-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* ── Seminars grid: single column on tablet ── */
  .seminars-grid { grid-template-columns: 1fr; }

  /* ── Media feature ── */
  .media-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .media-feature-aside { max-width: 100%; }

  /* ── Booking block ── */
  .booking-block { padding: 0 20px; }
  .booking-block > div[style*="flex"] {
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* ── @media 480px — compact phones ──────────────────────── */
@media (max-width: 480px) {

  /* ── Hero ── */
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .hero-badge { font-size: 0.68rem; padding: 6px 14px; }
  .promo-anniv-badge { width: 72px; height: 72px; bottom: 100px; right: 16px; }

  /* ── Section headings ── */
  .section-title { font-size: clamp(1.3rem, 7vw, 2rem); }
  .section-subtitle { font-size: 0.88rem; }

  /* ── Impact grid: single column on tiny screens ── */
  .impact-grid { grid-template-columns: 1fr; }

  /* ── Store grid ── */
  .store-grid { grid-template-columns: 1fr; }
  .store-service-card { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* ── Seminar card ── */
  .seminars-grid { grid-template-columns: 1fr; }

  /* ── WhatsApp float: compact on tiny screen ── */
  .wa-float-content { display: none; }
  .wa-float { border-radius: 50%; width: 52px; height: 52px; padding: 0; justify-content: center; }

  /* ── Promo scenes ── */
  .promo-content { padding: 0 16px 120px; }
  .promo-stats-row { flex-direction: column; gap: 8px; }
  .promo-stat { min-width: unset; }
  .promo-tags-row { gap: 6px; }
  .promo-tag { font-size: 0.68rem; padding: 4px 10px; }

  /* ── Cinematic break ── */
  .cinematic-break { height: 34vw; min-height: 160px; max-height: 220px; }

  /* ── Contact form ── */
  .contact-form { padding: 24px 16px; }
  .hold-verify-btn { width: 100%; }

  /* ── Footer ── */
  .footer-inner { padding: 48px 16px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── @media 390px — iPhone 14 Pro exact ─────────────────── */
@media (max-width: 390px) {
  .navbar { padding: 12px 16px; }
  /* nav logo: clamp handles responsive sizing now */
  .hero-title { font-size: clamp(1.6rem, 10vw, 2.4rem); }
  .btn-primary, .btn-secondary {
    font-size: 0.88rem;
    padding: 14px 20px;
  }
  .section-inner { padding: 0 16px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SCENE LOGOS BAND — FINAL CASCADE OVERRIDE (must stay last)
   The generic responsive .scene-logo-item rules earlier in the file
   reduce container height to 56px (desktop MQ) / 40px (mobile MQ).
   These higher-specificity .scene-logos-band .scene-logo-item rules
   restore the correct tall dimensions after all responsive overrides.
═══════════════════════════════════════════════════════════════════ */
.scene-logos-band .scene-logo-item {
  height: 130px !important;
  overflow: hidden;
  padding: 0 32px;
}

.scene-logos-band .scene-logo-item img {
  height: 64px;
  max-height: 90px;
  max-width: 200px;
  mix-blend-mode: normal;
  object-fit: contain;
}

/* Per-logo overrides within the band — all scoped to avoid clash */
.scene-logos-band .scene-logo-item img[alt="Bahrain Chamber of Commerce"] {
  height: 123px; max-height: 123px; max-width: 280px;
}
.scene-logos-band .scene-logo-item img[alt="Bahrain Development Bank"] {
  height: 117px; max-height: 117px; max-width: 240px;
}
.scene-logos-band .scene-logo-item img[alt="Office of the Deputy Prime Minister"] {
  height: 101px; max-height: 101px; max-width: 280px;
}
.scene-logos-band .scene-logo-item img[alt="Ministry of Interior"] {
  height: 96px; max-height: 96px; max-width: 200px;
}
.scene-logos-band .scene-logo-item img[alt="Bahrain Customs"] {
  height: 90px; max-height: 90px; max-width: 180px;
}
.scene-logos-band .scene-logo-item img[alt="NASA"] {
  height: 80px; max-height: 80px; max-width: 220px;
}
.scene-logos-band .scene-logo-item img[alt="United Nations"] {
  height: 72px; max-height: 72px; max-width: 200px;
}
.scene-logos-band .scene-logo-item img[alt="Court of the Crown Prince"] {
  height: 80px; max-height: 80px; max-width: 180px;
}

/* Mobile: scale down proportionally inside the band */
@media (max-width: 768px) {
  .scene-logos-band .scene-logo-item {
    height: 90px !important;
    overflow: hidden;
    padding: 0 16px;
  }
  .scene-logos-band .scene-logo-item img,
  .scene-logos-band .scene-logo-item img[alt="Bahrain Chamber of Commerce"],
  .scene-logos-band .scene-logo-item img[alt="Bahrain Development Bank"],
  .scene-logos-band .scene-logo-item img[alt="Office of the Deputy Prime Minister"],
  .scene-logos-band .scene-logo-item img[alt="Ministry of Interior"],
  .scene-logos-band .scene-logo-item img[alt="Bahrain Customs"],
  .scene-logos-band .scene-logo-item img[alt="NASA"],
  .scene-logos-band .scene-logo-item img[alt="United Nations"],
  .scene-logos-band .scene-logo-item img[alt="Court of the Crown Prince"] {
    height: auto;
    max-height: 72px;
    max-width: 140px;
  }
}

/* Green City thumbnail: show all 3 personas including Dr. Faisal on the right */
a[href="#scene-contrib-greencity"] .inno-card-bg img {
  object-position: 58% center;
}

/* ── Bahrain-KSA inno-card thumbnail: adjust focal point on small screens ── */
@media (max-width: 768px) {
  a[href="#scene-contrib-bahrain"] .inno-card-bg img {
    object-position: center 40%; /* show faces — skip empty top of portrait thumb */
  }
  a[href="#scene-contrib-honoring"] .inno-card-bg img {
    object-position: center 30%; /* show faces for Distinguished Honour thumb */
  }
  a[href="#scene-contrib-greencity"] .inno-card-bg img {
    object-position: 58% center;
  }
}