/* ============================================
   CYBER SQOOL — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ---- Variables ---- */
:root {
  --orange:    #FF8A00;
  --blue:      #1D92FF;
  --deep-blue: #004E89;
  --cyan:      #00D1FF;
  --dark:      #002C54;
  --bg-light:  #F0F7FF;
  --white:     #ffffff;
  --slate:     #4B5563; /* WCAG fix: was #64748b (3.2:1) → now 5.4:1 */
  --transition: 0.3s ease;
  --radius-xl: 1.5rem;
  --shadow-card: 0 8px 30px -5px rgba(0,78,137,0.12);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-light);
  color: var(--dark);
  overflow-x: hidden;
  margin: 0; padding: 0;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0; letter-spacing: -0.025em; }
p { margin: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   COMPONENTS
   ============================================ */

.pill-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 9999px;
  font-weight: 800; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--bg-light); color: var(--deep-blue);
  border: 1.5px solid rgba(29,146,255,0.25);
}
.pill-blue   { background: rgba(29,146,255,0.12); color: var(--blue);   border-color: rgba(29,146,255,0.3); }
.pill-orange { background: rgba(255,138,0,0.12);  color: var(--orange); border-color: rgba(255,138,0,0.3); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-weight: 700; font-family: 'Outfit', sans-serif;
  border-radius: 9999px; padding: 0.8rem 1.8rem; font-size: 0.9rem;
  cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary  { background: var(--orange); color: var(--white); box-shadow: 0 8px 20px -4px rgba(255,138,0,0.4); }
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 14px 28px -4px rgba(255,138,0,0.5); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--blue); border: 2px solid var(--blue); }
.btn-secondary:hover { background: var(--blue); color: var(--white); }
.btn-white  { background: white; color: var(--deep-blue); font-weight: 800; }
.btn-white:hover { background: var(--bg-light); color: var(--deep-blue); }
.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { filter: brightness(1.08); color: white; }
.btn-lg  { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-nav { padding: 0.55rem 1.3rem; font-size: 0.83rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  position: fixed; width: 100%; top: 0; left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(29,146,255,0.12);
  box-shadow: 0 2px 20px rgba(0,78,137,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 900; font-size: 1.05rem; color: var(--deep-blue);
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a { font-weight: 600; color: var(--deep-blue); font-size: 0.88rem; transition: color var(--transition); }
.nav-links a:hover { color: var(--orange); }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--deep-blue); font-size: 1.4rem; padding: 0.4rem; line-height: 1;
}
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: white; border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  padding: 1.25rem 1.5rem 1.5rem; z-index: 99;
  flex-direction: column; gap: 0.75rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 700; color: var(--deep-blue); padding: 0.6rem 0; border-bottom: 1px solid #f1f5f9; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav a.btn { border-bottom: none; text-align: center; margin-top: 0.5rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 140px 1.5rem 100px;
  position: relative; overflow: hidden;
  background: #ffffff;
}
/* Subtle dot grid for texture */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(29,146,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.10; }
.blob-1 { width: 650px; height: 650px; background: var(--blue);   top: -220px; right: -120px; }
.blob-2 { width: 500px; height: 500px; background: var(--cyan);   top:  180px; left:  -160px; }
.blob-3 { width: 350px; height: 350px; background: var(--orange); bottom: -80px; right: 28%; }

.hero-center {
  position: relative; z-index: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  padding-top: 1rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 900; color: var(--deep-blue); line-height: 1.1; max-width: 840px;
  letter-spacing: -0.03em;
}
.hero-title .highlight {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}
.hero-sub {
  font-size: 1.1rem; color: var(--slate); font-weight: 500;
  line-height: 1.65; max-width: 620px;
}

/* Audience cards — separate, distinct identities */
.audience-split {
  display: flex; align-items: stretch; gap: 1.25rem;
  width: 100%; max-width: 820px; margin-top: 0.5rem;
}
.audience-card {
  flex: 1; border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  border: 2px solid transparent;
  transition: all var(--transition); cursor: pointer; text-decoration: none; color: inherit;
}
.audience-card:hover { transform: translateY(-6px); }
.audience-school {
  background: rgba(29,146,255,0.07);
  border-color: rgba(29,146,255,0.25);
  box-shadow: 0 10px 40px -8px rgba(29,146,255,0.15);
}
.audience-school:hover {
  border-color: var(--blue);
  background: rgba(29,146,255,0.11);
  box-shadow: 0 20px 50px -8px rgba(29,146,255,0.28);
}
.audience-parent {
  background: rgba(255,138,0,0.07);
  border-color: rgba(255,138,0,0.25);
  box-shadow: 0 10px 40px -8px rgba(255,138,0,0.15);
}
.audience-parent:hover {
  border-color: var(--orange);
  background: rgba(255,138,0,0.11);
  box-shadow: 0 20px 50px -8px rgba(255,138,0,0.28);
}
.audience-icon  { font-size: 2.8rem; }
.audience-label { font-size: 1.15rem; font-weight: 900; color: var(--deep-blue); }
.audience-desc  { font-size: 0.87rem; color: var(--slate); line-height: 1.6; flex: 1; }
.audience-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.83rem; font-weight: 800;
  background: var(--blue); color: white;
  padding: 0.55rem 1.3rem; border-radius: 9999px; margin-top: 0.25rem;
  transition: all var(--transition);
}
.audience-cta-orange { background: var(--orange); }

/* Hero newsletter mini-form */
.hero-newsletter {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  width: 100%; max-width: 520px; margin-top: 0.25rem;
}
.hero-nl-form {
  display: flex; align-items: center; gap: 0;
  width: 100%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px;
  padding: 0.22rem 0.22rem 0.22rem 1.2rem;
  backdrop-filter: blur(6px);
}
.hero-nl-input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-size: 0.9rem; font-weight: 500;
  min-width: 0;
}
.hero-nl-input::placeholder { color: rgba(255,255,255,0.6); }
.hero-nl-btn {
  flex-shrink: 0;
  background: var(--orange); color: #fff;
  border: none; cursor: pointer;
  font-weight: 700; font-size: 0.88rem;
  padding: 0.6rem 1.3rem; border-radius: 9999px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.hero-nl-btn:hover { background: #e67c00; transform: scale(1.03); }
.hero-nl-feedback {
  font-size: 0.82rem; font-weight: 600; min-height: 1.2em;
  color: rgba(255,255,255,0.9);
}
.hero-nl-note {
  font-size: 0.88rem; color: var(--slate);
  margin: 0; display: flex; align-items: center; gap: 0.3rem;
}

.hero-trust {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.82rem; color: var(--slate); font-weight: 600;
}

/* ============================================
   SCHOOLS SECTION
   ============================================ */
.section-schools { padding: 90px 1.5rem; background: white; }
.section-label-row { margin-bottom: 0.75rem; }

.schools-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 4rem; align-items: start; margin-bottom: 3rem;
}
.schools-text { display: flex; flex-direction: column; gap: 1.25rem; }
.schools-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--deep-blue); }
.schools-text > p { font-size: 0.97rem; color: var(--slate); line-height: 1.7; }
.check-list { display: flex; flex-direction: column; gap: 0.65rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.92rem; font-weight: 500; color: var(--dark); }
.check-list li i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }
.schools-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* School inline inquiry form */
.school-inquiry-box {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
  border: 1.5px solid #bfdbfe; border-radius: 1.25rem;
  padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 1rem;
}
.si-header { display: flex; flex-direction: column; gap: 0.3rem; }
.si-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: #002C54; color: #fff; font-size: 0.72rem; font-weight: 800;
  padding: 0.2rem 0.75rem; border-radius: 9999px; align-self: flex-start;
}
.si-header h4 { font-size: 1rem; font-weight: 800; color: #002C54; margin: 0; }
.si-header p  { font-size: 0.82rem; color: #475569; margin: 0; }
.si-form { display: flex; flex-direction: column; gap: 0.6rem; }
.si-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.si-inp  {
  padding: 0.65rem 0.9rem; border: 1.5px solid #bfdbfe; border-radius: 0.75rem;
  font-size: 0.88rem; outline: none; background: #fff; transition: border-color 0.2s;
  font-family: inherit;
}
.si-inp:focus { border-color: #1D92FF; box-shadow: 0 0 0 3px rgba(29,146,255,.1); }
.si-feedback { font-size: 0.85rem; font-weight: 600; min-height: 1.2em; }
.si-note { font-size: 0.72rem; color: #94a3b8; margin: 0; display: flex; align-items: center; gap: 0.35rem; }
@media(max-width:560px) { .si-row { grid-template-columns: 1fr; } }

/* Dashboard visual */
.schools-visual { display: flex; flex-direction: column; gap: 1.25rem; }
.schools-mockup-wrap { position: relative; }
.dashboard-mockup {
  background: white; border-radius: 1.25rem;
  box-shadow: 0 30px 60px -10px rgba(0,78,137,0.2);
  overflow: hidden;
}
.mockup-bar {
  background: #f1f5f9; padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.4rem;
  border-bottom: 1px solid #e2e8f0;
}
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; background: #e2e8f0; }
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }
.mockup-url {
  width: auto !important; height: auto !important;
  background: white !important; border-radius: 4px;
  padding: 2px 10px; font-size: 0.72rem; color: #94a3b8;
  margin-left: 0.75rem; flex: 1;
}
.dashboard-mockup img { width: 100%; display: block; object-fit: cover; object-position: top; }

/* Float badges sit on .schools-mockup-wrap (no overflow:hidden) */
.float-badge {
  position: absolute; background: white; border-radius: 9999px;
  padding: 0.45rem 1rem; font-size: 0.78rem; font-weight: 700;
  color: var(--deep-blue); box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 0.4rem;
  animation: float 3s ease-in-out infinite; white-space: nowrap;
}
.float-badge i { color: var(--blue); }
.float-badge-1 { bottom: -14px; left: -16px; animation-delay: 0s; }
.float-badge-2 { top: 20px; right: -16px; animation-delay: 1s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.testimonial-card { background: white; border-radius: 1.25rem; padding: 1.75rem; box-shadow: var(--shadow-card); }
.testimonial-stars { font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.testimonial-author strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--deep-blue); }
.testimonial-author span  { font-size: 0.8rem; color: var(--slate); }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.stat-box {
  background: white; border-radius: 1.25rem; padding: 1.75rem 1.25rem;
  text-align: center; box-shadow: var(--shadow-card);
  border-top: 3px solid var(--blue);
}
.stat-box .stat-num {
  display: block; font-size: 3rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--blue) 0%, var(--deep-blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-box .stat-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--slate); margin-top: 6px; }

/* ============================================
   PARENTS / APP SECTION
   ============================================ */
.section-parents { padding: 90px 1.5rem; background: var(--dark); color: white; }
.parents-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: center;
}

/* Phone mockup */
.phone-mockup-wrap { position: relative; display: flex; justify-content: center; }
.phone-mockup {
  width: 260px; background: #111; border-radius: 36px; padding: 14px;
  box-shadow: 0 40px 80px -10px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative; animation: float 4s ease-in-out infinite;
}
.phone-screen {
  background: white; border-radius: 26px; overflow: hidden;
  padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; min-height: 420px;
}
.app-header {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--deep-blue); color: white;
  margin: -1rem -1rem 0; padding: 0.75rem 1rem;
}
.app-header img { width: 22px; height: 22px; border-radius: 4px; }
.app-header span { font-size: 0.78rem; font-weight: 800; }
.app-level-row { display: flex; gap: 0.5rem; justify-content: center; padding: 0.5rem 0; }
.app-level {
  flex: 1; text-align: center; font-size: 1.1rem;
  background: var(--bg-light); border-radius: 10px; padding: 0.6rem 0.25rem;
}
.app-level small { font-size: 0.62rem; font-weight: 700; color: var(--slate); display: block; margin-top: 2px; }
.app-level.active { background: rgba(29,146,255,0.1); border: 2px solid var(--blue); }
.app-level.locked { opacity: 0.4; }
.app-challenge {
  background: var(--bg-light); border-radius: 12px;
  padding: 0.85rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.app-challenge-label { font-size: 0.65rem; font-weight: 800; color: var(--blue); text-transform: uppercase; }
.app-challenge-text  { font-size: 0.88rem; font-weight: 800; color: var(--deep-blue); }
.app-progress-bar  { height: 6px; background: #e2e8f0; border-radius: 9999px; }
.app-progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 9999px; }
.app-challenge small { font-size: 0.7rem; color: var(--slate); }
.app-badge-row { display: flex; gap: 0.4rem; }
.app-badge {
  flex: 1; text-align: center;
  background: rgba(255,138,0,0.1); color: var(--orange);
  font-size: 0.72rem; font-weight: 800; padding: 0.4rem; border-radius: 8px;
  border: 1px solid rgba(255,138,0,0.2);
}
.phone-float-1, .phone-float-2 {
  position: absolute; background: white; color: var(--deep-blue);
  font-size: 0.75rem; font-weight: 700; padding: 0.5rem 1rem;
  border-radius: 9999px; box-shadow: 0 8px 20px rgba(0,0,0,0.15); white-space: nowrap;
}
.phone-float-1 { bottom: 60px; left: -40px;  animation: float 3s ease-in-out infinite; }
.phone-float-2 { top: 80px;    right: -30px; animation: float 3s ease-in-out infinite 1.5s; }

/* Parents content */
.parents-content { display: flex; flex-direction: column; gap: 1.5rem; }
.parents-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: white; }
.parents-content > p { font-size: 0.97rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.parent-steps { display: flex; flex-direction: column; gap: 1.1rem; }
.parent-step  { display: flex; align-items: flex-start; gap: 1rem; }
.parent-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); color: white; font-weight: 900; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.parent-step strong { display: block; font-size: 0.95rem; color: white; margin-bottom: 2px; }
.parent-step p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 0; }

/* Waitlist */
.waitlist-box {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl); padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem;
}
.waitlist-header { display: flex; flex-direction: column; gap: 0.5rem; }
.waitlist-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,138,0,0.2); color: var(--orange);
  font-size: 0.78rem; font-weight: 800; padding: 0.3rem 0.85rem;
  border-radius: 9999px; width: fit-content;
}
.waitlist-header h4 { font-size: 1.15rem; font-weight: 900; color: white; margin: 0; }
.waitlist-header p  { font-size: 0.87rem; color: rgba(255,255,255,0.55); margin: 0; }
.waitlist-form { display: flex; flex-direction: column; gap: 0.75rem; }
.waitlist-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.waitlist-inputs input {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px; color: white;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color var(--transition);
}
.waitlist-inputs input::placeholder { color: rgba(255,255,255,0.35); }
.waitlist-inputs input:focus { border-color: var(--orange); }
.waitlist-note { font-size: 0.77rem; color: rgba(255,255,255,0.35); text-align: center; margin: 0; }
.waitlist-note i { margin-right: 0.3rem; }

/* ============================================
   CARAVANE / ATELIER GRATUIT
   ============================================ */
.section-caravane { padding: 90px 1.5rem; background: var(--bg-light); }

.caravane-header {
  text-align: center; margin-bottom: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.caravane-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--deep-blue); }
.caravane-lead { font-size: 1rem; color: var(--slate); max-width: 620px; line-height: 1.65; margin: 0; }

.caravane-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: center; margin-bottom: 3.5rem; }

/* Video section */
.video-section { display: flex; flex-direction: column; gap: 1.25rem; }
.video-section-label {
  font-size: 0.75rem; font-weight: 900; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0.5rem;
}
.main-video-wrap {
  width: 100%; border-radius: 1.25rem; overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(0,78,137,0.2);
  aspect-ratio: 16/9; background: #000;
}
.main-video-wrap iframe { width: 100%; height: 100%; display: block; border: none; }
.video-thumbs {
  display: flex; gap: 0.75rem; overflow-x: auto;
  padding-bottom: 0.25rem; scrollbar-width: none;
}
.video-thumbs::-webkit-scrollbar { display: none; }
.video-thumb {
  flex: 0 0 180px; border-radius: 0.875rem; overflow: hidden;
  position: relative; cursor: pointer;
  border: 2.5px solid transparent;
  transition: all 0.25s; opacity: 0.65;
}
.video-thumb:hover { opacity: 0.9; transform: translateY(-2px); }
.video-thumb.active { border-color: var(--blue); opacity: 1; }
.video-thumb img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.thumb-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  color: white; font-size: 1.4rem;
  transition: background 0.2s;
}
.video-thumb:hover .thumb-play { background: rgba(0,0,0,0.45); }
.video-thumb.active .thumb-play { background: rgba(29,146,255,0.25); }
.thumb-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.6); color: white;
  font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.6rem;
  font-family: 'Outfit', sans-serif;
}
.caravane-visual-card {
  background: white; border-radius: var(--radius-xl); padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  border-top: 4px solid var(--orange);
}

/* Live event indicator */
.caravane-live-row {
  display: flex; align-items: center; gap: 0.5rem; justify-content: center;
}
.caravane-live-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.caravane-live-text {
  font-size: 0.78rem; font-weight: 800; color: #22c55e;
  text-transform: uppercase; letter-spacing: 0.07em;
}

/* Date card row */
.caravane-event-date {
  display: flex; align-items: center; gap: 1rem;
  text-align: left; width: 100%;
}
.caravane-date-box {
  background: linear-gradient(135deg, var(--orange), #ffb347);
  border-radius: 12px; padding: 0.6rem 0.9rem;
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; min-width: 60px;
}
.caravane-date-month { font-size: 0.6rem; font-weight: 900; color: white; text-transform: uppercase; letter-spacing: 0.09em; }
.caravane-date-day   { font-size: 1.8rem; font-weight: 900; color: white; line-height: 1; }
.caravane-date-info { display: flex; flex-direction: column; gap: 0.25rem; }
.caravane-date-info strong { font-size: 0.88rem; font-weight: 800; color: var(--deep-blue); letter-spacing: -0.01em; }
.caravane-date-info span  { font-size: 0.76rem; color: var(--slate); }

.caravane-badge-row { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.caravane-badge {
  background: var(--bg-light); color: var(--deep-blue); font-size: 0.78rem; font-weight: 700;
  padding: 0.35rem 0.85rem; border-radius: 9999px; border: 1px solid rgba(29,146,255,0.2);
}
.caravane-content { display: flex; flex-direction: column; gap: 1.25rem; }
.caravane-content h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: var(--deep-blue); }
.caravane-content > p { font-size: 0.97rem; color: var(--slate); line-height: 1.7; }
.caravane-list { display: flex; flex-direction: column; gap: 0.6rem; }
.caravane-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--dark); font-weight: 500; }
.caravane-list li i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }

/* ============================================
   TOUR — CITY COMPETITION + EVENT PHOTOS
   ============================================ */

/* Description row */
.tour-desc-row { margin-bottom: 2.5rem; }

/* City competition */
.comp-section { display: flex; flex-direction: column; gap: 1.25rem; }
.comp-header { display: flex; flex-direction: column; gap: 0.3rem; }
.comp-title { font-size: 1rem; font-weight: 900; color: white; }
.comp-sub   { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.city-cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem;
}
.city-comp-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 1rem; padding: 0.9rem 0.75rem;
  cursor: pointer; text-align: center;
  transition: all 0.22s; display: flex; flex-direction: column; gap: 0.4rem;
  position: relative; overflow: hidden;
}
.city-comp-card:hover {
  background: rgba(255,138,0,0.15);
  border-color: rgba(255,138,0,0.5);
  transform: translateY(-3px);
}
.city-comp-card.city-visited {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.4);
}
.city-comp-card.city-rank-1 {
  background: rgba(255,215,0,0.12);
  border-color: rgba(255,215,0,0.5);
}
.ccc-rank {
  position: absolute; top: 0.45rem; right: 0.55rem;
  font-size: 0.7rem; font-weight: 900;
  color: rgba(255,255,255,0.3);
}
.ccc-rank.rank-1 { color: #ffd700; }
.ccc-rank.rank-2 { color: #c0c0c0; }
.ccc-rank.rank-3 { color: #cd7f32; }
.ccc-city { font-size: 0.82rem; font-weight: 800; color: white; }
.ccc-count {
  font-size: 1.35rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--orange), #ffb347);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ccc-count.visited { background: linear-gradient(135deg, #4ade80, #22c55e);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ccc-label { font-size: 0.62rem; color: rgba(255,255,255,0.35); font-weight: 600; }
.ccc-bar-wrap { height: 3px; background: rgba(255,255,255,0.08); border-radius: 9999px; overflow: hidden; margin-top: 2px; }
.ccc-bar { height: 100%; background: var(--orange); border-radius: 9999px; transition: width 0.5s ease; }
.city-comp-card.city-visited .ccc-bar { background: #4ade80; }

.comp-note { font-size: 0.73rem; color: rgba(255,255,255,0.3); margin: 0.5rem 0 0; display: flex; align-items: flex-start; gap: 0.4rem; }
.comp-note i { margin-top: 2px; font-size: 0.68rem; flex-shrink: 0; }

/* Add custom city */
.city-add-wrap { display: flex; gap: 0.5rem; margin: 0.75rem 0 0.25rem; }
.city-add-input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; padding: 0.5rem 0.75rem; color: #fff; font-size: 0.78rem; outline: none; transition: border-color 0.2s; }
.city-add-input::placeholder { color: rgba(255,255,255,0.35); }
.city-add-input:focus { border-color: var(--orange); }
.city-add-btn { background: rgba(255,138,0,0.15); border: 1px solid var(--orange); color: var(--orange); border-radius: 8px; padding: 0.5rem 0.85rem; font-size: 0.78rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.city-add-btn:hover { background: rgba(255,138,0,0.3); }

/* Cyber Weekend registration form */
.cw-register-box {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 1rem; padding: 1.25rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  backdrop-filter: blur(4px);
}
.cw-reg-header { display: flex; flex-direction: column; gap: 0.25rem; }
.cw-reg-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(255,138,0,0.15); border: 1px solid rgba(255,138,0,0.35);
  color: var(--orange); font-size: 0.68rem; font-weight: 800;
  padding: 0.15rem 0.65rem; border-radius: 9999px; align-self: flex-start;
}
.cw-reg-header h4 { font-size: 0.9rem; font-weight: 800; color: #fff; margin: 0; }
.cw-form { display: flex; flex-direction: column; gap: 0.5rem; }
.cw-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.cw-city-wrap { display: flex; flex-direction: column; gap: 0.4rem; }
.cw-inp {
  padding: 0.6rem 0.85rem; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0.65rem; font-size: 0.85rem; outline: none;
  background: rgba(255,255,255,0.08); color: #fff;
  transition: border-color 0.2s; font-family: inherit;
}
.cw-inp::placeholder { color: rgba(255,255,255,0.45); }
.cw-inp:focus { border-color: var(--orange); }
.cw-select { cursor: pointer; }
.cw-select option { background: #002C54; color: #fff; }
.cw-feedback { font-size: 0.82rem; font-weight: 600; min-height: 1.1em; color: #fff; }
@media(max-width:480px) { .cw-row { grid-template-columns: 1fr; } }

/* Tour bottom grid */
.tour-bottom-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: start; margin-bottom: 2.5rem;
}

/* Event photos */
.events-photos-section { display: flex; flex-direction: column; gap: 1rem; }
.events-photos-header {}
.events-photos-title { font-size: 0.8rem; font-weight: 900; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; display: flex; align-items: center; gap: 0.5rem; }

.events-photos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
}
.event-photo-card {
  border-radius: 1rem; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  cursor: pointer; transition: transform 0.25s;
}
.event-photo-card:hover { transform: scale(1.02); }
.ep-1 { background: linear-gradient(135deg, #003d70 0%, #1D92FF 60%, #00D1FF 100%); }
.ep-2 { background: linear-gradient(135deg, #c45e00 0%, #FF8A00 50%, #ffb347 100%); }
.ep-3 { background: linear-gradient(135deg, #002C54 0%, #1D92FF 100%); }
.ep-4 { background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #10b981 100%); }
.ep-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0.75rem;
}
.ep-tag  { font-size: 0.6rem; font-weight: 800; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; }
.ep-desc { font-size: 0.75rem; font-weight: 700; color: white; line-height: 1.3; }

/* ============================================
   BLOG TRENDING
   ============================================ */
.section-blog-trending { padding: 90px 1.5rem; background: white; }

.blog-trending-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.blog-trending-left { display: flex; flex-direction: column; gap: 0.6rem; }
.blog-trending-left h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: var(--deep-blue); }
.blog-trending-left p  { font-size: 1rem; color: var(--slate); margin: 0; }
.blog-trending-cta { flex-shrink: 0; }

/* Featured grid: big card + side column */
.blog-featured-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Big featured card */
.blog-featured-card {
  border-radius: 1.5rem; overflow: hidden; position: relative;
  min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none; color: inherit; cursor: pointer;
  transition: transform 0.25s;
}
.blog-featured-card:hover { transform: scale(1.015); }

/* Blog Featured Slider */
.blog-featured-slider {
  border-radius: 1.5rem; overflow: hidden; position: relative;
  min-height: 360px;
}
.bfs-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.7s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none; color: inherit; cursor: pointer;
  z-index: 0;
}
.bfs-slide.bfs-active { opacity: 1; z-index: 1; }
.bfs-nav {
  position: absolute; bottom: 1rem; right: 1rem;
  z-index: 10;
  display: flex; align-items: center; gap: 0.3rem;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  color: white; font-size: 0.8rem;
}
.bfs-btn {
  background: none; border: none; color: white;
  cursor: pointer; font-size: 1.1rem; font-weight: 700;
  padding: 0.1rem 0.35rem; opacity: 0.75;
  transition: opacity 0.2s; line-height: 1;
}
.bfs-btn:hover { opacity: 1; }
.bfs-count { font-weight: 800; letter-spacing: 0.05em; padding: 0 0.2rem; }
.bf-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.bf-bg-tour {
  background: linear-gradient(135deg, #001835 0%, #003d70 40%, #1D92FF 80%, #00D1FF 100%);
}
.bf-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.bf-bg.bf-img::after {
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.10) 100%);
}
.bf-content {
  position: relative; z-index: 1;
  padding: 2rem; display: flex; flex-direction: column; gap: 0.6rem;
}
.bf-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.07em;
  background: rgba(255,138,0,0.25); color: #ffb347;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  border: 1px solid rgba(255,138,0,0.35); width: fit-content;
}
.bf-content h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 900; color: white; line-height: 1.25; }
.bf-content p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }
.bf-meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 600; margin-top: 0.25rem;
}
.bf-read { margin-left: auto; color: var(--orange); font-weight: 800; font-size: 0.82rem; }

/* Side cards */
.blog-side-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.blog-side-card {
  border-radius: 1.1rem; padding: 1.1rem;
  display: flex; gap: 0.85rem; align-items: flex-start;
  text-decoration: none; color: inherit;
  border: 1.5px solid #f1f5f9;
  transition: all 0.22s; background: white;
  box-shadow: 0 2px 12px rgba(0,78,137,0.06);
}
.blog-side-card:hover { border-color: var(--blue); transform: translateX(4px); box-shadow: 0 8px 24px rgba(0,78,137,0.12); }
.bsc-1 { border-top: 3px solid #5b21b6; }
.bsc-2 { border-top: 3px solid #059669; }
.bsc-3 { border-top: 3px solid var(--blue); }
.bsc-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.bsc-body { display: flex; flex-direction: column; gap: 0.3rem; }
.bsc-tag { font-size: 0.65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.07em; color: var(--blue); }
.bsc-body h4 { font-size: 0.88rem; font-weight: 800; color: var(--deep-blue); line-height: 1.4; margin: 0; }
.bsc-meta { font-size: 0.73rem; color: var(--slate); font-weight: 600; }

/* Horizontal scroll strip */
.blog-strip-scroll {
  display: flex; gap: 0.85rem;
  overflow-x: auto; padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem;
  scrollbar-width: none;
}
.blog-strip-scroll::-webkit-scrollbar { display: none; }

.blog-strip-card {
  flex: 0 0 210px; border-radius: 1.1rem; padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.65rem;
  scroll-snap-align: start; text-decoration: none; color: inherit;
  transition: transform 0.22s;
  border-bottom: 3px solid transparent;
}
.blog-strip-card:hover { transform: translateY(-4px); }
.bstrip-1 { background: linear-gradient(145deg, #eef2ff, #dbeafe); border-color: #818cf8; }
.bstrip-2 { background: linear-gradient(145deg, #fff7ed, #fed7aa); border-color: var(--orange); }
.bstrip-3 { background: linear-gradient(145deg, #e0f2fe, #bae6fd); border-color: var(--blue); }
.bstrip-4 { background: linear-gradient(145deg, #f0fdf4, #bbf7d0); border-color: #22c55e; }
.bstrip-5 { background: linear-gradient(145deg, #fdf4ff, #f3e8ff); border-color: #a855f7; }
.bstrip-6 { background: linear-gradient(145deg, #fff1f2, #fecdd3); border-color: #f43f5e; }
.bstrip-7 { background: linear-gradient(145deg, #fefce8, #fef08a); border-color: #eab308; }

.bstrip-top { display: flex; align-items: center; gap: 0.5rem; }
.bstrip-emoji { font-size: 1.5rem; line-height: 1; }
.bstrip-tag { font-size: 0.62rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate); }
.blog-strip-card h4 { font-size: 0.88rem; font-weight: 800; color: var(--deep-blue); line-height: 1.45; flex: 1; margin: 0; }
.bstrip-meta { font-size: 0.72rem; color: var(--slate); font-weight: 600; display: flex; align-items: center; gap: 0.3rem; }

.blog-strip-hint {
  text-align: center; font-size: 0.78rem; color: var(--slate);
  font-weight: 600; margin-top: 0.75rem; opacity: 0.6;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}

/* ============================================
   HOMEPAGE ARTICLES SCROLL (kept for compat)
   ============================================ */
.section-articles { display: none; /* replaced by blog-trending */ }
.articles-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap;
}
.articles-header h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; color: var(--deep-blue); }
.articles-scroll {
  display: flex; gap: 1.25rem;
  overflow-x: auto; padding-bottom: 1.25rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem;
  scrollbar-width: thin; scrollbar-color: rgba(29,146,255,0.2) transparent;
}
.articles-scroll::-webkit-scrollbar { height: 4px; }
.articles-scroll::-webkit-scrollbar-thumb { background: rgba(29,146,255,0.2); border-radius: 9999px; }
.article-card {
  flex: 0 0 295px; border-radius: var(--radius-xl); background: white;
  box-shadow: var(--shadow-card); overflow: hidden; scroll-snap-align: start;
  transition: all var(--transition); text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-5px); box-shadow: 0 22px 55px -10px rgba(0,78,137,0.22); }
.article-cover {
  height: 175px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.article-cover-emoji { font-size: 3.8rem; filter: drop-shadow(0 4px 14px rgba(0,0,0,0.2)); }
.ac-1 { background: linear-gradient(135deg, #004E89 0%, #1D92FF 100%); }
.ac-2 { background: linear-gradient(135deg, #002C54 0%, #004E89 55%, #00D1FF 100%); }
.ac-3 { background: linear-gradient(135deg, #FF8A00 0%, #004E89 100%); }
.ac-4 { background: linear-gradient(135deg, #001835 0%, #003d70 55%, #1D92FF 100%); }
.ac-5 { background: linear-gradient(135deg, #5b21b6 0%, #1D92FF 100%); }
.ac-6 { background: linear-gradient(135deg, #065f46 0%, #004E89 100%); }
.article-card-body { padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.article-cat { font-size: 0.68rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.07em; color: var(--blue); }
.article-card-body h3 { font-size: 0.95rem; font-weight: 800; color: var(--deep-blue); line-height: 1.45; flex: 1; }
.article-card-meta { font-size: 0.76rem; color: var(--slate); font-weight: 600; margin-top: auto; display: flex; align-items: center; gap: 0.35rem; }
.article-card-meta i { font-size: 0.68rem; }

/* ============================================
   BLOG LISTING PAGE
   ============================================ */
.blog-page { padding: 110px 1.5rem 80px; min-height: 100vh; background: var(--bg-light); }
.blog-page-header {
  text-align: center; margin-bottom: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.blog-page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--deep-blue); }
.blog-page-header p { font-size: 1.05rem; color: var(--slate); max-width: 560px; line-height: 1.65; }
.blog-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.blog-filter {
  padding: 0.45rem 1.1rem; border-radius: 9999px;
  font-size: 0.82rem; font-weight: 700;
  border: 1.5px solid #e2e8f0; background: white; color: var(--slate);
  cursor: pointer; transition: all var(--transition); text-decoration: none;
}
.blog-filter:hover { background: var(--blue); color: white; border-color: var(--blue); }
.blog-filter.active { background: var(--blue); color: white; border-color: var(--blue); }
.blog-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-listing-card {
  background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-card);
  overflow: hidden; transition: all var(--transition); text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.blog-listing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -10px rgba(0,78,137,0.2); }
.blog-listing-cover {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative;
}
.article-type-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(255,255,255,0.2); color: white;
  padding: 0.25rem 0.7rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.3);
}
.blog-listing-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.blog-listing-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--slate); font-weight: 600; }
.blog-listing-body h2 { font-size: 1.02rem; font-weight: 900; color: var(--deep-blue); line-height: 1.4; }
.blog-listing-body p { font-size: 0.85rem; color: var(--slate); line-height: 1.65; flex: 1; }
.blog-listing-read {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 800; color: var(--blue); margin-top: 0.5rem;
  transition: gap var(--transition);
}
.blog-listing-card:hover .blog-listing-read { gap: 0.7rem; }

/* ============================================
   ARTICLE PAGE
   ============================================ */
.article-hero {
  padding: 120px 1.5rem 70px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 1.25rem;
}
.article-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 26px 26px; pointer-events: none;
}
.article-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.55);
  position: relative; z-index: 1;
}
.article-breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.article-breadcrumb a:hover { color: white; }
.article-breadcrumb i { font-size: 0.58rem; }
.article-hero-icon { font-size: 5rem; filter: drop-shadow(0 6px 20px rgba(0,0,0,0.2)); position: relative; z-index: 1; }
.article-hero-meta {
  display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; justify-content: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 600;
  position: relative; z-index: 1;
}
.article-hero-meta span { display: flex; align-items: center; gap: 0.35rem; }
.article-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: white;
  max-width: 820px; line-height: 1.15; position: relative; z-index: 1;
}
.article-hero-intro {
  font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 660px;
  line-height: 1.7; position: relative; z-index: 1; margin: 0;
}
/* Hero color variants */
.ah-blue   { background: linear-gradient(135deg, #004E89 0%, #1D92FF 100%); }
.ah-cyan   { background: linear-gradient(135deg, #002C54 0%, #004E89 55%, #00D1FF 100%); }
.ah-orange { background: linear-gradient(135deg, #c45e00 0%, #FF8A00 45%, #004E89 100%); }
.ah-dark   { background: linear-gradient(135deg, #001835 0%, #003d70 55%, #1D92FF 100%); }
.ah-purple { background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 40%, #1D92FF 100%); }
.ah-green  { background: linear-gradient(135deg, #064e3b 0%, #065f46 45%, #004E89 100%); }

/* Article body */
.article-page { background: white; }
.article-body {
  max-width: 760px; margin: 0 auto; padding: 3.5rem 1.5rem 5rem;
}
.article-body h2 {
  font-size: 1.45rem; font-weight: 900; color: var(--deep-blue);
  margin: 2.75rem 0 1rem; padding-top: 0.5rem;
  border-top: 2px solid var(--bg-light);
}
.article-body h3 { font-size: 1.1rem; font-weight: 800; color: var(--deep-blue); margin: 1.75rem 0 0.65rem; }
.article-body p { font-size: 1rem; color: #374151; line-height: 1.85; margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { font-size: 1rem; color: #374151; line-height: 1.8; margin-bottom: 0.5rem; }
.article-body strong { color: var(--deep-blue); }
.article-pullquote {
  border-left: 4px solid var(--orange); padding: 1rem 1.5rem;
  margin: 2rem 0; background: rgba(255,138,0,0.05); border-radius: 0 12px 12px 0;
}
.article-pullquote p { font-size: 1.1rem; color: var(--deep-blue); font-weight: 700; font-style: italic; margin: 0; line-height: 1.6; }
.article-tip {
  background: rgba(29,146,255,0.06); border: 1px solid rgba(29,146,255,0.2);
  border-radius: 1rem; padding: 1.25rem 1.5rem; margin: 1.5rem 0;
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.article-tip-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.article-tip p { margin: 0; font-size: 0.93rem; color: var(--deep-blue); line-height: 1.65; }
.article-danger-card {
  border-radius: 1.25rem; padding: 1.5rem; margin: 1.5rem 0;
  border: 1px solid rgba(29,146,255,0.15); background: rgba(29,146,255,0.04);
}
.article-danger-card h3 { margin: 0 0 0.65rem; font-size: 1rem; color: var(--deep-blue); display: flex; align-items: center; gap: 0.5rem; }
.article-danger-card p { margin: 0; font-size: 0.93rem; color: #374151; line-height: 1.7; }
.article-danger-tip {
  margin-top: 0.75rem; padding: 0.65rem 1rem;
  background: rgba(255,138,0,0.07); border-radius: 8px;
  font-size: 0.85rem; color: var(--deep-blue); font-weight: 600;
}
.article-cta-box {
  background: linear-gradient(135deg, var(--dark), var(--deep-blue));
  border-radius: var(--radius-xl); padding: 2.5rem; text-align: center; margin-top: 3.5rem;
}
.article-cta-box h3 { color: white; font-size: 1.35rem; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.article-cta-box p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.65; }
.article-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 0; border-top: 1px solid #e2e8f0; margin-top: 1rem; flex-wrap: wrap; gap: 1rem;
}
.article-nav a { font-size: 0.88rem; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 0.4rem; transition: color var(--transition); }
.article-nav a:hover { color: var(--deep-blue); }

/* ============================================
   TOUR MAROC
   ============================================ */
.section-tour {
  padding: 90px 1.5rem;
  background: linear-gradient(160deg, #001835 0%, #002C54 55%, #003d70 100%);
  color: white; position: relative; overflow: hidden;
}
.section-tour::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(29,146,255,0.07) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.section-tour::after {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,138,0,0.07); filter: blur(90px);
  top: -200px; right: -150px; pointer-events: none; z-index: 0;
}
.tour-inner { position: relative; z-index: 1; }

.tour-header {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  margin-bottom: 3.5rem;
}
.tour-header h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: white; font-weight: 900; }
.tour-lead { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 680px; line-height: 1.7; }
.pill-tour { background: rgba(255,138,0,0.15); color: var(--orange); border-color: rgba(255,138,0,0.35); }

/* New subtitle for tour */
.tour-sub-title {
  font-size: 1.15rem; font-weight: 700;
  color: var(--orange); letter-spacing: 0.04em; margin-top: -0.5rem;
}

/* Stats row (horizontal) */
.tour-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-bottom: 3rem;
}

/* Map + content grid */
.tour-map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; margin-bottom: 2.5rem; }

/* --- Morocco SVG Map --- */
.tour-map-wrap { display: flex; flex-direction: column; gap: 1.25rem; }
.map-title-row { display: flex; flex-direction: column; gap: 0.3rem; }
.map-title-text { font-size: 1rem; font-weight: 900; color: white; display: flex; align-items: center; gap: 0.4rem; }
.map-subtitle-text { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.morocco-map-container {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem; padding: 1rem;
  display: flex; justify-content: center;
}
.morocco-svg { width: 100%; max-width: 280px; height: auto; display: block; margin: 0 auto; }

.morocco-land {
  fill: rgba(29,146,255,0.25);
  stroke: rgba(29,146,255,0.6);
  stroke-width: 1.5;
  transition: all 0.3s;
}
.morocco-sahara {
  fill: rgba(255,138,0,0.12);
  stroke: none;
  pointer-events: none;
}
.sahara-line {
  stroke: rgba(255,255,255,0.2);
  stroke-width: 1;
  stroke-dasharray: 4 3;
}
.sahara-label {
  font-size: 11px; fill: rgba(255,255,255,0.25); font-style: italic;
  text-anchor: middle; font-family: 'Outfit', sans-serif;
}

/* City dots */
.city-dot {
  transition: r 0.2s, fill 0.2s;
}
.city-dot.city-upcoming {
  fill: rgba(255,138,0,0.3);
  stroke: var(--orange);
  stroke-width: 2;
}
.city-dot.city-done {
  fill: rgba(34,197,94,0.3);
  stroke: #4ade80;
  stroke-width: 2.5;
}
.city-dot-inner { fill: var(--orange); pointer-events: none; }
.city-dot-inner-done { fill: #4ade80; pointer-events: none; }

.city-pin:hover .city-dot.city-upcoming {
  fill: rgba(255,138,0,0.55);
  r: 13;
}
.city-label {
  font-size: 9.5px; fill: rgba(255,255,255,0.85); font-weight: 700;
  font-family: 'Outfit', sans-serif; pointer-events: none;
  dominant-baseline: middle;
}
.city-label-left { text-anchor: end; }
.city-label-done { fill: #4ade80; }

/* Leaderboard */
.city-leaderboard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.25rem; padding: 1.25rem 1.5rem;
}
.lb-header {
  font-size: 0.8rem; font-weight: 900; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.45rem;
}
.lb-list { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 0.75rem; }
.lb-row {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.8);
}
.lb-rank { width: 22px; text-align: center; font-weight: 900; color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.lb-rank.top1 { color: #ffd700; }
.lb-rank.top2 { color: #c0c0c0; }
.lb-rank.top3 { color: #cd7f32; }
.lb-city-name { flex: 1; }
.lb-votes { font-size: 0.75rem; color: var(--orange); font-weight: 800; }
.lb-bar-wrap { width: 60px; height: 6px; background: rgba(255,255,255,0.1); border-radius: 9999px; overflow: hidden; }
.lb-bar { height: 100%; background: var(--orange); border-radius: 9999px; transition: width 0.4s ease; }
.lb-note { font-size: 0.72rem; color: rgba(255,255,255,0.3); font-style: italic; margin: 0; }

/* Media row (full width) */
.tour-media-row { margin-top: 0.5rem; }
.tour-media-row .tour-media-card { max-width: 600px; }

/* --- City Registration Modal --- */
.city-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,20,50,0.82); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.city-modal-overlay.open { display: flex; }
.city-modal-box {
  background: white; border-radius: 1.5rem; padding: 2.5rem;
  max-width: 480px; width: 100%; position: relative;
  box-shadow: 0 40px 80px -10px rgba(0,0,0,0.5);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity:0; transform: scale(0.9) translateY(20px); } to { opacity:1; transform: none; } }
.city-modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: none; border: none; font-size: 1.1rem;
  cursor: pointer; color: #94a3b8; line-height: 1;
  padding: 0.3rem 0.5rem; border-radius: 6px; transition: background 0.2s;
}
.city-modal-close:hover { background: #f1f5f9; }
.city-modal-flag { font-size: 2.2rem; margin-bottom: 0.5rem; }
.city-modal-title { font-size: 1.35rem; font-weight: 900; color: var(--deep-blue); margin-bottom: 0.5rem; }
.city-modal-title span { color: var(--orange); }
.city-modal-desc { font-size: 0.88rem; color: var(--slate); line-height: 1.6; margin-bottom: 1.5rem; }
.city-reg-form { display: flex; flex-direction: column; gap: 0; }
.city-reg-fields { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1rem; }
.city-reg-fields input {
  width: 100%; padding: 0.85rem 1.1rem;
  border: 1.5px solid #e2e8f0; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--dark);
  outline: none; transition: border-color 0.2s;
}
.city-reg-fields input:focus { border-color: var(--orange); }
.city-reg-fields input::placeholder { color: #94a3b8; }
.city-reg-submit { margin-top: 0; }
.city-reg-feedback { margin-top: 0.75rem; font-size: 0.88rem; font-weight: 600; text-align: center; }
.city-reg-feedback.success { color: #22c55e; }
.city-reg-feedback.error   { color: #ef4444; }

.tour-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3.5rem; align-items: start; }

/* Press card */
.tour-press-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); padding: 1.75rem 2rem; margin-bottom: 1.75rem;
}
.tour-press-label {
  font-size: 0.7rem; font-weight: 900; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.tour-press-card p { font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.85; margin: 0; }
.tour-press-card p strong { color: white; }

/* Cities */
.tour-cities-label {
  font-size: 0.72rem; font-weight: 800; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.tour-cities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.tour-city {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 9999px; border: 1.5px solid;
}
.tour-city.done { background: rgba(34,197,94,0.15); color: #4ade80; border-color: rgba(34,197,94,0.4); }
.tour-city.done i { font-size: 0.7rem; }
.tour-city.upcoming { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.15); }
.tour-city.upcoming i { font-size: 0.65rem; color: var(--orange); opacity: 0.7; }

.tour-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-outline-white {
  background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3);
  font-weight: 700;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: white; }

/* Sidebar */
.tour-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.tour-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.tour-stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem; padding: 1.5rem 1.25rem; text-align: center;
}
.tour-stat-num {
  display: block; font-size: 2.2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--orange) 0%, #ffb347 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.tour-stat-label { display: block; font-size: 0.76rem; color: rgba(255,255,255,0.45); font-weight: 600; margin-top: 5px; }

.tour-media-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.25rem; padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.tour-media-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,138,0,0.2); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.tour-media-card h4 { font-size: 0.95rem; font-weight: 800; color: white; margin-bottom: 0.4rem; }
.tour-media-card p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.55; margin-bottom: 0.75rem; }
.tour-media-links { display: flex; flex-direction: column; gap: 0.4rem; }
.tour-media-links a { font-size: 0.82rem; font-weight: 600; color: var(--cyan); display: flex; align-items: center; gap: 0.4rem; transition: color var(--transition); }
.tour-media-links a:hover { color: var(--orange); }
.tour-media-links a i { font-size: 0.75rem; opacity: 0.7; }

.tour-what-card {
  background: rgba(29,146,255,0.08); border: 1px solid rgba(29,146,255,0.2);
  border-radius: 1.25rem; padding: 1.5rem;
}
.tour-what-card h5 {
  font-size: 0.78rem; font-weight: 800; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem;
}
.tour-what-list { display: flex; flex-direction: column; gap: 0.5rem; }
.tour-what-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.tour-what-list li i { color: var(--blue); font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }

/* ============================================
   BLOG
   ============================================ */
.section-blog { padding: 90px 1.5rem; background: white; }
.blog-header { margin-bottom: 2.5rem; }
.blog-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--deep-blue); margin-bottom: 0.5rem; }
.blog-header p  { font-size: 1rem; color: var(--slate); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.blog-card {
  background: white; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card); border: 1px solid #f1f5f9;
  overflow: hidden; transition: all var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -10px rgba(0,78,137,0.18); }

.blog-card-img {
  height: 160px; position: relative;
  display: flex; align-items: flex-end; padding: 1rem;
}
.blog-img-1 { background: linear-gradient(135deg, #004E89 0%, #1D92FF 100%); }
.blog-img-2 { background: linear-gradient(135deg, #002C54 0%, #004E89 100%); }
.blog-img-3 { background: linear-gradient(135deg, #FF8A00 0%, #004E89 100%); }

.blog-category {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em;
  background: rgba(255,255,255,0.2); color: white;
  padding: 0.3rem 0.75rem; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3);
}
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.76rem; color: var(--slate); font-weight: 600; }
.blog-meta i { margin-right: 0.25rem; }
.blog-card-body h3 { font-size: 1rem; font-weight: 800; color: var(--deep-blue); line-height: 1.4; flex: 1; }
.blog-card-body p { font-size: 0.85rem; color: var(--slate); line-height: 1.65; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 800; color: var(--blue);
  margin-top: auto; transition: gap var(--transition);
}
.blog-read-more:hover { gap: 0.7rem; color: var(--deep-blue); }

.blog-footer-cta { text-align: center; }

/* ============================================
   NEWS / ACTUALITÉS
   ============================================ */
.section-news { padding: 90px 1.5rem; background: var(--bg-light); }
.news-header { margin-bottom: 3rem; }
.news-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--deep-blue); margin-bottom: 0.5rem; }
.news-header p  { font-size: 1rem; color: var(--slate); }

.news-timeline {
  display: flex; flex-direction: column; gap: 0;
  position: relative; padding-left: 2.5rem;
}
/* vertical line */
.news-timeline::before {
  content: ''; position: absolute; left: 0.85rem; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--blue), rgba(29,146,255,0.1));
  border-radius: 9999px;
}
.news-item {
  position: relative; padding: 0 0 2.5rem 2rem;
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.25rem; align-items: start;
}
.news-item:last-child { padding-bottom: 0; }
/* dot on the line */
.news-dot {
  position: absolute; left: -2.45rem; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue); border: 3px solid white;
  box-shadow: 0 0 0 2px var(--blue);
}
.news-item-new .news-dot {
  background: var(--orange);
  box-shadow: 0 0 0 2px var(--orange), 0 0 12px rgba(255,138,0,0.4);
}
.news-date {
  font-size: 0.78rem; font-weight: 800; color: var(--slate);
  padding-top: 4px; white-space: nowrap;
}
.news-body { display: flex; flex-direction: column; gap: 0.5rem; }
.news-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.68rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.25rem 0.7rem; border-radius: 9999px; width: fit-content;
}
.news-tag-launch   { background: rgba(255,138,0,0.12); color: var(--orange); border: 1px solid rgba(255,138,0,0.25); }
.news-tag-event    { background: rgba(29,146,255,0.1);  color: var(--blue);   border: 1px solid rgba(29,146,255,0.2); }
.news-tag-platform { background: rgba(0,78,137,0.1);    color: var(--deep-blue); border: 1px solid rgba(0,78,137,0.2); }
.news-tag-partner  { background: rgba(16,185,129,0.1);  color: #059669; border: 1px solid rgba(16,185,129,0.2); }
.news-tag-founding { background: rgba(139,92,246,0.1);  color: #7c3aed; border: 1px solid rgba(139,92,246,0.2); }
.news-body h4 { font-size: 1rem; font-weight: 800; color: var(--deep-blue); line-height: 1.35; }
.news-body p  { font-size: 0.88rem; color: var(--slate); line-height: 1.65; }

/* ============================================
   CONTACT BANNER
   ============================================ */
.section-contact-banner {
  padding: 80px 1.5rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep-blue) 55%, #0a5c9e 100%);
  color: white; position: relative; overflow: hidden;
}
/* Decorative orbs */
.section-contact-banner::before,
.section-contact-banner::after {
  content: ''; position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(70px);
}
.section-contact-banner::before {
  width: 420px; height: 420px;
  background: rgba(0,209,255,0.2);
  top: -160px; right: -60px;
}
.section-contact-banner::after {
  width: 320px; height: 320px;
  background: rgba(255,138,0,0.18);
  bottom: -120px; left: 4%;
}
.contact-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.contact-banner-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; color: white; margin-bottom: 0.5rem; }
.contact-banner-text p  { font-size: 1rem; color: rgba(255,255,255,0.75); }
.contact-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark); color: white; padding: 60px 1.5rem 30px; border-top: 1px solid rgba(255,138,0,0.3); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 900; font-size: 1rem; color: white; }
.footer-logo img { height: 40px; width: auto; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.footer-links h5 {
  font-size: 0.75rem; font-weight: 800; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem;
}
.footer-links ul  { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a   { font-size: 0.87rem; font-weight: 500; color: rgba(255,255,255,0.5); transition: color var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--orange); }
.footer-links a i { opacity: 0.6; font-size: 0.8rem; }
.social-links { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.88rem; transition: background var(--transition);
}
.social-links a:hover { background: var(--blue); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); gap: 0.5rem; }
.footer-legal { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-legal span { opacity: 0.4; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { padding: 110px 1.5rem 80px; min-height: 100vh; }
.contact-header {
  text-align: center; margin-bottom: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.contact-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; color: var(--deep-blue); }
.contact-header p  { font-size: 1.05rem; color: var(--slate); max-width: 560px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  background: white; border-radius: 1rem; padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card); display: flex; align-items: flex-start; gap: 1rem;
}
.info-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.1rem; flex-shrink: 0;
}
.info-icon-orange { background: rgba(255,138,0,0.1); color: var(--orange); }
.info-card h4 { font-size: 0.95rem; font-weight: 800; color: var(--deep-blue); margin-bottom: 0.3rem; }
.info-card p  { font-size: 0.83rem; color: var(--slate); line-height: 1.55; }
.info-card-call { border: 2px solid rgba(255,138,0,0.2); }
.info-reassurance { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.info-reassurance p { font-size: 0.85rem; color: var(--slate); font-weight: 500; }

.form-card { background: white; border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-card); position: sticky; top: 100px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 700; color: var(--deep-blue); margin-bottom: 0.45rem; }
.required { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1.1rem;
  border: 2px solid #e2e8f0; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 0.93rem; color: var(--dark);
  background: white; outline: none; appearance: none; -webkit-appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(29,146,255,0.1); }
.form-group input::placeholder { color: #a0aec0; }
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234B5563' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer;
}
.captcha-wrap {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-light); padding: 1rem 1.25rem;
  border-radius: 12px; border: 2px solid #e2e8f0;
}
.captcha-question { font-weight: 600; color: var(--dark); font-size: 0.95rem; white-space: nowrap; flex-shrink: 0; }
.captcha-question strong { color: var(--deep-blue); font-size: 1.05rem; }
.captcha-wrap input[type="number"] {
  width: 90px; padding: 0.6rem 0.75rem;
  border: 2px solid #e2e8f0; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 1rem;
  font-weight: 800; text-align: center; outline: none; flex-shrink: 0; background: white;
}
.captcha-wrap input[type="number"]:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,146,255,0.1); }
.form-feedback {
  border-radius: 12px; font-size: 0.9rem; font-weight: 600;
  padding: 0; max-height: 0; overflow: hidden; transition: all 0.3s ease;
}
.form-feedback.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; padding: 1rem 1.25rem; max-height: 100px; margin-bottom: 1rem; }
.form-feedback.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; padding: 1rem 1.25rem; max-height: 100px; margin-bottom: 1rem; }
.intent-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(29,146,255,0.1); color: var(--blue);
  font-weight: 700; font-size: 0.82rem; padding: 0.4rem 1rem;
  border-radius: 9999px; margin-bottom: 1rem;
}
.form-footer-note { font-size: 0.77rem; color: var(--slate); text-align: center; margin-top: 0.75rem; line-height: 1.4; }

/* ============================================
   FOOTER COMPACT (contact page)
   ============================================ */
.footer-compact { padding: 20px 1.5rem; }
.footer-back { color: rgba(255,255,255,0.5); font-weight: 600; transition: color var(--transition); }
.footer-back:hover { color: var(--orange); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .schools-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  /* Stack instead of hide */
  .schools-visual { display: flex; }
  .parents-grid { grid-template-columns: 1fr; gap: 3rem; }
  /* Stack phone mockup, don't hide */
  .phone-mockup-wrap { display: flex; padding: 2rem 0; }
  .caravane-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-card { position: static; }
  .contact-banner-inner { flex-direction: column; text-align: center; }
  .contact-banner-actions { justify-content: center; }
  /* Keep float badges within viewport */
  .float-badge-1 { left: 0; bottom: -10px; }
  .float-badge-2 { right: 0; }
  /* Tour Maroc */
  .tour-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tour-map-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tour-stats-row { grid-template-columns: repeat(2, 1fr); }
  .tour-bottom-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .city-cards-grid { grid-template-columns: repeat(4, 1fr); }
  /* Blog trending */
  .blog-featured-grid { grid-template-columns: 1fr; }
  .blog-featured-card { min-height: 280px; }
  /* Blog listing */
  .blog-listing-grid { grid-template-columns: 1fr 1fr; }
  /* News */
  .news-item { grid-template-columns: 70px 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { padding: 100px 1.5rem 60px; }
  .audience-split { flex-direction: column; max-width: 420px; }
  .phone-mockup-wrap { padding: 1rem 0; }
  .phone-float-1 { left: 0; }
  .phone-float-2 { right: 0; }
  .waitlist-inputs { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-trust { flex-wrap: wrap; justify-content: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  /* Section paddings — réduire sur mobile */
  .section-schools,
  .section-caravane,
  .section-blog-trending,
  .section-news { padding-top: 60px; padding-bottom: 60px; }
  .section-parents { padding-top: 60px; padding-bottom: 60px; }
  .section-tour { padding-top: 60px; padding-bottom: 60px; }
  .section-contact-banner { padding-top: 50px; padding-bottom: 50px; }
  /* Hero newsletter form — better fit on narrow screens */
  .hero-nl-form { padding: 0.2rem 0.2rem 0.2rem 1rem; }
  .hero-nl-btn { padding: 0.55rem 1rem; font-size: 0.82rem; }
  /* Tour Maroc */
  .tour-stats-grid { grid-template-columns: 1fr 1fr; }
  .tour-stats-row { grid-template-columns: repeat(2, 1fr); }
  .tour-bottom-grid { grid-template-columns: 1fr; }
  .city-cards-grid { grid-template-columns: repeat(4, 1fr); }
  .tour-ctas { flex-direction: column; }
  .tour-ctas .btn { width: 100%; }
  .video-thumbs { gap: 0.5rem; }
  .video-thumb { flex: 0 0 140px; }
  /* Blog trending */
  .blog-featured-grid { grid-template-columns: 1fr; }
  .blog-trending-header { flex-direction: column; align-items: flex-start; }
  .blog-strip-card { flex: 0 0 185px; }
  /* Blog listing */
  .blog-listing-grid { grid-template-columns: 1fr; }
  /* News */
  .news-item { grid-template-columns: 60px 1fr; gap: 0.75rem; }
  .news-timeline { padding-left: 2rem; }
  /* Article */
  .article-hero { padding: 110px 1.5rem 50px; }
  /* Audience cards — better sizing */
  .audience-card { padding: 1.75rem 1.25rem; }
  /* Tour stats font size */
  .tour-stat-num { font-size: 1.9rem; }
  /* Blog featured card */
  .blog-featured-card { min-height: 240px; }
  /* Contact banner */
  .contact-banner-inner { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .captcha-wrap { flex-wrap: wrap; }
  .captcha-wrap input[type="number"] { width: 100%; }
  .btn-lg { padding: 1rem 1.8rem; font-size: 0.95rem; }
  .schools-ctas .btn { width: 100%; }
  .contact-banner-actions .btn { width: 100%; max-width: 300px; }
  .stat-box .stat-num { font-size: 2.4rem; }
  /* City competition cards → 2 columns on phones */
  .city-cards-grid { grid-template-columns: repeat(2, 1fr); }
  /* Tour stats → 2 columns already (from 768px), keep sizes readable */
  .tour-stat-num { font-size: 1.7rem; }
  .tour-stat-label { font-size: 0.7rem; }
  /* Schools stats row */
  .stat-box { padding: 1.25rem 0.75rem; }
  /* Section paddings even tighter on phones */
  .section-schools,
  .section-parents,
  .section-caravane,
  .section-blog-trending,
  .section-tour,
  .section-news { padding-top: 50px; padding-bottom: 50px; }
  /* Hero */
  .hero { padding: 90px 1.25rem 50px; }
  .audience-split { gap: 0.75rem; }
  .audience-card { padding: 1.5rem 1rem; }
  .audience-icon { font-size: 2.2rem; }
  /* School inquiry form */
  .school-inquiry-box { padding: 1.25rem; }
  /* Parents section */
  .parents-grid { gap: 2rem; }
  /* Tour press card */
  .tour-press-card { padding: 1.25rem; }
  .tour-ctas .btn { font-size: 0.88rem; }
  /* Caravane visual card */
  .caravane-visual-card { padding: 1.5rem 1.25rem; }
  /* Blog featured */
  .bf-content { padding: 1.5rem; }
  .bf-content h3 { font-size: 1.1rem; }
  /* Footer */
  .footer { padding: 50px 1.5rem 25px; }
  /* Blog side cards */
  .blog-side-card { padding: 0.9rem; gap: 0.65rem; }
  .bsc-body h4 { font-size: 0.83rem; }
}

/* ============================================
   APP SCREENSHOTS — RESPONSIVE
   ============================================ */
/*
  The 3-phone screenshots have fixed pixel widths (~490px total).
  On phones < 560px the container is narrower — we scale down.
  overflow:hidden is applied ONLY on mobile to avoid clipping on desktop
  where overflow:visible is intentional.
*/
@media (max-width: 560px) {
  .app-screenshots-outer {
    overflow: hidden !important; /* clip horizontal overflow on mobile only */
    padding: 1.5rem 0 0 !important; /* remove horizontal padding to gain width */
  }
  .app-screenshots-outer > div {
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -70px; /* compensate for reduced visual height */
  }
}

@media (max-width: 400px) {
  .app-screenshots-outer {
    overflow: hidden !important;
  }
  .app-screenshots-outer > div {
    transform: scale(0.63);
    margin-bottom: -140px;
  }
}

/* ── Language Picker (Globe Dropdown) 2026 ── */
.lang-sw{display:none}
.lang-picker{position:relative;flex-shrink:0}
.lang-trigger{display:flex;align-items:center;gap:6px;padding:6px 11px;background:rgba(255,255,255,.92);border:1px solid rgba(0,44,84,.12);border-radius:10px;cursor:pointer;font-size:.78rem;font-weight:700;color:#002C54;transition:.2s;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);box-shadow:0 1px 4px rgba(0,0,0,.07);white-space:nowrap;font-family:inherit}
.lang-trigger:hover{background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.13);border-color:rgba(0,44,84,.22)}
.lang-trigger svg.lang-chevron{transition:transform .2s}
.lang-picker.open .lang-chevron{transform:rotate(180deg)}
.lang-dropdown{position:absolute;top:calc(100% + 8px);right:0;background:#fff;border:1px solid #e2e8f0;border-radius:14px;box-shadow:0 10px 32px rgba(0,0,0,.14),0 2px 8px rgba(0,0,0,.06);overflow:hidden;min-width:158px;opacity:0;transform:translateY(-6px) scale(.97);pointer-events:none;transition:opacity .18s,transform .18s;z-index:200}
.lang-picker.open .lang-dropdown{opacity:1;transform:translateY(0) scale(1);pointer-events:all}
.lang-option{display:flex;align-items:center;gap:10px;padding:10px 14px;font-size:.84rem;color:#334155;transition:.15s;text-decoration:none;cursor:pointer}
.lang-option:hover{background:#f8fafc}
.lang-option.lopt-active{color:#002C54;font-weight:700;background:#f0f7ff}
.lang-flag{font-size:1.05rem;line-height:1}
.lang-name{flex:1}
.lang-check{color:#002C54;font-size:.75rem;opacity:0;font-weight:900}
.lang-option.lopt-active .lang-check{opacity:1}


/* ── Espace Écoles Button (Navbar) ── */
.btn-schools{background:#F68F36;color:#fff!important;padding:7px 18px;border-radius:20px;font-weight:700;font-size:.82rem;white-space:nowrap;transition:.2s;text-decoration:none!important;border:2px solid transparent}
.btn-schools:hover{background:#e07d28;box-shadow:0 4px 14px rgba(246,143,54,.4);transform:translateY(-1px)}
.btn-schools-mobile{display:block;background:#F68F36;color:#fff!important;padding:10px 18px;border-radius:12px;font-weight:700;text-align:center;text-decoration:none!important;margin-bottom:4px}

/* ══════════════════════════════════════════════════
   B2B HOMEPAGE REDESIGN
══════════════════════════════════════════════════ */

/* Hero B2B */
.hero-b2b-inner{display:grid;grid-template-columns:1.1fr .9fr;gap:3rem;align-items:center}
.hero-b2b-text .hero-title{font-size:2.4rem;line-height:1.2}
.hero-b2b-ctas{display:flex;gap:.85rem;flex-wrap:wrap;margin-top:1.5rem}
.hero-steps{display:flex;align-items:center;gap:.6rem;margin-top:1rem;flex-wrap:wrap}
.hero-step{display:flex;align-items:center;gap:.4rem;font-size:.78rem;color:#64748b;font-weight:600}
.hs-num{width:22px;height:22px;border-radius:50%;background:#FF8A00;color:#fff;font-size:.7rem;font-weight:900;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.hs-arr{color:#cbd5e1;font-size:.8rem}
.hero-b2b-form{background:#fff;border-radius:22px;padding:1.75rem;box-shadow:0 20px 60px rgba(0,44,84,.18)}

/* Social Proof bar */
.section-sp{background:#f8fafc;padding:1.6rem 0;border-top:1px solid #e2e8f0;border-bottom:1px solid #e2e8f0}
.sp-inner{display:flex;align-items:center;gap:2rem;flex-wrap:wrap;justify-content:center}
.sp-lbl{font-size:.75rem;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:.06em;white-space:nowrap}
.sp-logo{display:flex;align-items:center;gap:.55rem;font-size:.85rem;font-weight:700;color:#002C54}
.sp-logo i{color:#1D92FF;font-size:1rem}
.sp-div{width:1px;height:24px;background:#e2e8f0}

/* Benefits */
.section-benefits{padding:5rem 0;background:#fff}
.benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem;margin-top:2.5rem}
.benefit-card{background:#f8fafc;border-radius:18px;padding:1.8rem;border:1.5px solid #e2e8f0;transition:.2s}
.benefit-card:hover{border-color:#1D92FF;background:#f0f7ff;transform:translateY(-3px)}
.benefit-icon{font-size:2rem;margin-bottom:.85rem}
.benefit-title{font-size:1rem;font-weight:800;color:#002C54;margin-bottom:.5rem}
.benefit-text{font-size:.85rem;color:#64748b;line-height:1.7}
.benefit-tag{display:inline-block;background:#FEF0E0;color:#E67E22;font-size:.7rem;font-weight:800;padding:2px 8px;border-radius:8px;margin-bottom:.6rem;text-transform:uppercase}

/* How it works */
.section-how{padding:5rem 0;background:#f0f7ff}
.how-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2.5rem}
.how-step{background:#fff;border-radius:18px;padding:1.8rem;text-align:center;box-shadow:0 4px 20px rgba(0,44,84,.07)}
.how-num{width:46px;height:46px;border-radius:50%;background:#002C54;color:#fff;font-weight:900;font-size:1.1rem;display:flex;align-items:center;justify-content:center;margin:0 auto .9rem}
.how-day{font-size:.72rem;font-weight:700;color:#FF8A00;text-transform:uppercase;margin-bottom:.35rem}
.how-title{font-size:.95rem;font-weight:800;color:#002C54;margin-bottom:.45rem}
.how-text{font-size:.82rem;color:#64748b;line-height:1.6}
.how-connector{display:none}

/* Testimonial */
.section-testimonial{padding:5rem 0;background:linear-gradient(135deg,#002C54 0%,#004E89 100%)}
.testimonial-b2b{max-width:720px;margin:0 auto;text-align:center}
.testimonial-b2b .quote-mark{font-size:4rem;color:rgba(245,166,35,.3);line-height:.5;display:block;margin-bottom:.75rem}
.testimonial-b2b blockquote{font-size:1.15rem;font-style:italic;color:rgba(255,255,255,.92);line-height:1.75;margin-bottom:1.25rem}
.testimonial-b2b cite{color:#F5A623;font-weight:700;font-style:normal;font-size:.9rem}

/* FAQ home */
.section-faq-home{padding:5rem 0;background:#fff}
.faq-home-list{max-width:680px;margin:2.25rem auto 0}
.faq-item{border-bottom:1px solid #e2e8f0}
.faq-item summary{padding:1.1rem 0;font-weight:700;color:#002C54;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;font-size:.93rem}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';font-size:1.25rem;font-weight:900;color:#FF8A00;transition:.2s;flex-shrink:0;margin-right:0}
.faq-item[open] summary::after{content:'−'}
.faq-ans{padding:0 0 1.1rem;font-size:.86rem;color:#64748b;line-height:1.7}

/* Final CTA */
.section-final-cta{padding:5rem 0;background:linear-gradient(135deg,#FF8A00 0%,#e07000 100%)}
.final-cta-inner{text-align:center;max-width:620px;margin:0 auto}
.final-cta-inner h2{font-size:1.9rem;font-weight:900;color:#fff;margin-bottom:.9rem}
.final-cta-inner p{color:rgba(255,255,255,.9);font-size:.95rem;margin-bottom:1.75rem;line-height:1.65}
.btn-cta-giant{background:#fff;color:#FF8A00;font-size:.95rem;font-weight:900;padding:.9rem 2.2rem;border-radius:50px;box-shadow:0 10px 30px rgba(0,0,0,.2);transition:.2s;display:inline-block;text-decoration:none}
.btn-cta-giant:hover{transform:translateY(-2px);box-shadow:0 15px 40px rgba(0,0,0,.25)}

@media(max-width:900px){
  .hero-b2b-inner{grid-template-columns:1fr}
  .benefits-grid,.how-steps{grid-template-columns:1fr}
  .hero-b2b-text .hero-title{font-size:1.9rem}
}

/* ============================================
   VIDEO VSL SECTION
   ============================================ */
.section-video {
  padding: 5rem 1.5rem;
  background: #fff;
}
.video-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.video-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900; color: var(--deep-blue); line-height: 1.2;
}
.video-sub {
  font-size: 1rem; color: var(--slate); font-weight: 500;
}
.video-wrapper {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px -10px rgba(0,78,137,0.18);
  aspect-ratio: 16 / 9;
  position: relative;
}
.video-wrapper iframe {
  width: 100%; height: 100%;
  display: block;
}
.video-placeholder {
  width: 100%; height: 100%;
  position: relative;
  background: linear-gradient(135deg, #002C54 0%, #004E89 60%, #1D92FF 100%);
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.video-placeholder-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.video-play-btn {
  width: 80px; height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
  box-shadow: 0 12px 30px rgba(255,138,0,0.5);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  padding-left: 5px; /* optical center for play icon */
}
.video-play-btn:hover { transform: scale(1.1); box-shadow: 0 18px 40px rgba(255,138,0,0.6); }
.video-placeholder-label {
  color: rgba(255,255,255,0.6);
  font-size: .85rem; font-weight: 600; letter-spacing: .04em;
}
