/* ==========================================================================
   DIJITALI MATHS — Modern Design System & Stylesheet
   "Every learner can do maths. Sometimes they just need the right way in."
   Palette: Electric Blue (#2563eb), Deep Royal (#1e3a8a), Cyber Cyan (#06b6d4), 
            Amber Gold (#f59e0b), Emerald (#10b981), Slate/Glass aesthetics.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,400&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  /* Blue Spectrum */
  --primary-950: #06112d;
  --primary-900: #0c1e4a;
  --primary-850: #132b69;
  --primary-800: #1e3a8a;
  --primary-700: #1d4ed8;
  --primary-600: #2563eb;
  --primary-500: #3b82f6;
  --primary-400: #60a5fa;
  --primary-300: #93c5fd;
  --primary-200: #bfdbfe;
  --primary-100: #dbeafe;
  --primary-50: #eff6ff;

  /* Accent Colors */
  --accent-cyan: #06b6d4;
  --accent-cyan-light: #67e8f9;
  --accent-amber: #f59e0b;
  --accent-amber-light: #fde68a;
  --accent-emerald: #10b981;
  --accent-coral: #f43f5e;
  --accent-purple: #8b5cf6;

  /* Neutrals */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Semantic */
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-inverse: #ffffff;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-card: rgba(226, 232, 240, 0.8);

  /* Shadows & Glows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 18px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 32px -4px rgba(15, 23, 42, 0.1), 0 6px 12px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 24px 48px -8px rgba(30, 58, 138, 0.16);
  --glow-blue: 0 0 25px rgba(37, 99, 235, 0.35);
  --glow-cyan: 0 0 20px rgba(6, 182, 212, 0.35);
  --glow-amber: 0 0 20px rgba(245, 158, 11, 0.35);

  /* Border Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Layout */
  --container-max: 1240px;
  --nav-height: 80px;
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-700);
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   BADGES & PILLS
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-blue {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary-600);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.12);
  color: #0891b2;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-pill-glow {
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.45);
}

.btn-accent {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
  font-weight: 800;
}

.btn-accent:hover {
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.45);
}

.btn-glow {
  background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.btn-glow:hover {
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(6, 182, 212, 0.55);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-900);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-600);
  border: 2px solid var(--primary-600);
}

.btn-outline-primary:hover {
  background: var(--primary-600);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   TOP NOTIFICATION / ANNOUNCEMENT BAR
   ========================================================================== */
.topbar {
  background: var(--primary-950);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.55rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.8);
}

.topbar-info i {
  color: var(--accent-cyan);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-socials {
  display: flex;
  gap: 0.75rem;
}

.topbar-socials a {
  color: rgba(255, 255, 255, 0.7);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  transition: all var(--transition-fast);
}

.topbar-socials a:hover {
  background: var(--primary-600);
  color: var(--white);
  transform: translateY(-1px);
}

/* ==========================================================================
   STICKY NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-symbol {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #081329;
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
  flex-shrink: 0;
}

.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand:hover .brand-symbol {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
}

.brand-text h1 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-900);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.brand-text h1 span {
  color: var(--primary-600);
}

.brand-text p {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

/* Nav Menu */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link {
  color: var(--slate-700);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.nav-link.active {
  color: var(--primary-600);
  background: var(--primary-50);
  font-weight: 700;
}

.nav-cta {
  margin-left: 0.5rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--slate-800);
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: var(--primary-50);
  color: var(--primary-600);
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transition: right var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--slate-200);
}

.drawer-close {
  background: var(--slate-100);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--slate-700);
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--slate-800);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-links a:hover, .drawer-links a.active {
  background: var(--primary-50);
  color: var(--primary-600);
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
.hero-home {
  position: relative;
  background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 45%, #1e3a8a 100%);
  color: var(--white);
  padding: 1.8rem 0 3.5rem;
  overflow: hidden;
}

/* Background floating math shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.25;
}

.shape {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  color: var(--accent-cyan-light);
  user-select: none;
  animation: floatMath 8s ease-in-out infinite alternate;
}

.shape-1 { top: 12%; left: 8%; font-size: 3.5rem; animation-delay: 0s; }
.shape-2 { top: 75%; left: 14%; font-size: 2.8rem; animation-delay: 2s; color: var(--accent-amber); }
.shape-3 { top: 20%; right: 10%; font-size: 4rem; animation-delay: 1.5s; }
.shape-4 { top: 80%; right: 18%; font-size: 3rem; animation-delay: 3s; color: var(--accent-emerald); }
.shape-5 { top: 48%; left: 45%; font-size: 2.2rem; animation-delay: 2.5s; }

@keyframes floatMath {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(12deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: var(--radius-full);
  color: var(--accent-cyan-light);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #67e8f9 0%, #60a5fa 50%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.6rem;
  line-height: 1.55;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

/* Transformation Flow Pill */
.hero-transform-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  max-width: 600px;
}

.hero-transform-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-cyan-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-transform-steps {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.transform-step {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.transform-step.final {
  background: linear-gradient(135deg, var(--accent-amber), #d97706);
  color: #0f172a;
  border-color: var(--accent-amber);
}

.transform-arrow {
  color: var(--accent-cyan);
  font-size: 0.85rem;
}

/* Hero Right Interactive / Dancing Image Card */
.hero-visual-wrapper {
  position: relative;
}

/* Math signs stream passing slowly behind the dancing image */
.math-signs-stream {
  position: absolute;
  inset: -45px -55px -45px -55px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.stream-sign {
  position: absolute;
  font-family: 'JetBrains Mono', 'Outfit', monospace;
  font-weight: 900;
  user-select: none;
  opacity: 0;
  animation: passSlowly linear infinite;
  filter: drop-shadow(0 0 12px currentColor);
}

@keyframes passSlowly {
  0% {
    transform: translate(-30px, 60px) rotate(-25deg) scale(0.75);
    opacity: 0;
  }
  15% {
    opacity: 0.85;
  }
  85% {
    opacity: 0.85;
  }
  100% {
    transform: translate(45px, -80px) rotate(35deg) scale(1.2);
    opacity: 0;
  }
}

.stream-sign.sign-1 { top: 5%; left: -25px; font-size: 2.8rem; color: #67e8f9; animation-duration: 13s; animation-delay: 0s; }
.stream-sign.sign-2 { top: 28%; left: -45px; font-size: 3rem; color: #fde68a; animation-duration: 16s; animation-delay: 2.2s; }
.stream-sign.sign-3 { top: 58%; left: -30px; font-size: 2.6rem; color: #6ee7b7; animation-duration: 14s; animation-delay: 5s; }
.stream-sign.sign-4 { top: 86%; left: -10px; font-size: 3.4rem; color: #93c5fd; animation-duration: 17s; animation-delay: 1.2s; }
.stream-sign.sign-5 { top: 2%; right: -25px; font-size: 3.2rem; color: #fda4af; animation-duration: 15s; animation-delay: 3.5s; }
.stream-sign.sign-6 { top: 24%; right: -50px; font-size: 2.9rem; color: #c084fc; animation-duration: 18s; animation-delay: 6.8s; }
.stream-sign.sign-7 { top: 54%; right: -35px; font-size: 3.6rem; color: #38bdf8; animation-duration: 16s; animation-delay: 0.8s; }
.stream-sign.sign-8 { top: 82%; right: -40px; font-size: 2.8rem; color: #facc15; animation-duration: 14s; animation-delay: 4.6s; }
.stream-sign.sign-9 { top: 12%; left: 38%; font-size: 3.2rem; color: rgba(147, 197, 253, 0.7); animation-duration: 19s; animation-delay: 8s; }
.stream-sign.sign-10 { top: 72%; left: 30%; font-size: 2.4rem; color: rgba(110, 231, 183, 0.7); animation-duration: 13s; animation-delay: 9.5s; }
.stream-sign.sign-11 { top: 42%; right: 10%; font-size: 2.6rem; color: #f472b6; animation-duration: 17s; animation-delay: 4s; }
.stream-sign.sign-12 { top: -20px; left: 15%; font-size: 2.2rem; color: #a78bfa; animation-duration: 12s; animation-delay: 10s; }
.stream-sign.sign-13 { top: 92%; left: 45%; font-size: 2.9rem; color: #34d399; animation-duration: 15s; animation-delay: 11.5s; }
.stream-sign.sign-14 { top: 40%; left: -10px; font-size: 2.5rem; color: #fb923c; animation-duration: 16s; animation-delay: 7.2s; }
.stream-sign.sign-15 { top: 68%; right: -5px; font-size: 2.5rem; color: #67e8f9; animation-duration: 14s; animation-delay: 13s; }

/* The Joyful Dancing Hero Image Card */
.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 20px 50px rgba(37, 99, 235, 0.45);
  border: 2.5px solid rgba(255, 255, 255, 0.25);
  z-index: 2;
  transform-origin: center bottom;
  animation: heroDance 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.dancing-aura {
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-xl) + 8px);
  background: radial-gradient(circle, rgba(6, 182, 212, 0.45), rgba(59, 130, 246, 0.35), rgba(245, 158, 11, 0.25), transparent 75%);
  filter: blur(16px);
  z-index: -1;
  opacity: 0.8;
  animation: auraPulse 3.5s ease-in-out infinite alternate;
}

@keyframes auraPulse {
  0% { opacity: 0.45; transform: scale(0.97); }
  100% { opacity: 0.95; transform: scale(1.05); }
}

@keyframes heroDance {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  16% {
    transform: translateY(-15px) rotate(-3.5deg) scale(1.025);
  }
  32% {
    transform: translateY(-4px) rotate(2.8deg) scale(1.015);
  }
  48% {
    transform: translateY(-18px) rotate(-2.5deg) scale(1.035);
  }
  64% {
    transform: translateY(-6px) rotate(3.8deg) scale(1.02);
  }
  80% {
    transform: translateY(-12px) rotate(-2deg) scale(1.01);
  }
  92% {
    transform: translateY(-3px) rotate(1.2deg) scale(1.005);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

.hero-image-card img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius-xl) - 2px);
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

/* ── Hero Slideshow ── */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 2px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(60px) scale(0.97);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.hero-slide.slide-out {
  opacity: 0;
  transform: translateX(-60px) scale(0.97);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}

.hero-slide.active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Dot indicators */
.slideshow-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.slide-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
  flex-shrink: 0;
}

.slide-dot.active {
  background: #fff;
  width: 26px;
  border-radius: 5px;
  transform: scaleY(1.1);
}

/* Prev / Next arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hero-image-card:hover .slide-arrow {
  opacity: 1;
}

.slide-arrow:hover {
  background: rgba(0,0,0,0.6);
  transform: translateY(-50%) scale(1.1);
}

.slide-prev { left: 12px; }
.slide-next { right: 12px; }

/* ── End Hero Slideshow ── */

/* Floating interactive mini-widget */
.hero-floating-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  color: var(--slate-900);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--white);
  max-width: 260px;
  z-index: 3;
  animation: bounceSoft 4s ease-in-out infinite alternate;
}

@keyframes bounceSoft {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero-floating-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-600), var(--accent-cyan));
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.floating-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
  color: var(--slate-900);
}

.floating-text p {
  font-size: 0.78rem;
  color: var(--slate-500);
  font-weight: 600;
  margin: 0;
}

/* Secondary Page Hero */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 50%, #1e3a8a 100%);
  color: var(--white);
  padding: 4.5rem 0 3.8rem;
  overflow: hidden;
  text-align: center;
}

.page-hero-content {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--white);
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
}

.breadcrumb a {
  color: var(--accent-cyan-light);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-soft {
  background-color: var(--slate-50);
}

.section-blue {
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
  color: var(--white);
}

.section-blue h2, .section-blue h3, .section-blue h4 {
  color: var(--white);
}

.section-blue p {
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.5rem;
}

.section-kicker {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-600);
  margin-bottom: 0.6rem;
}

.section-blue .section-kicker {
  color: var(--accent-cyan-light);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--slate-900);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   3-STEP RHYTHM & CORE APPROACH
   ========================================================================== */
.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.rhythm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rhythm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-cyan));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.rhythm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-200);
}

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

.rhythm-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary-200);
  line-height: 1;
  margin-bottom: 1rem;
}

.rhythm-card.step-2 .rhythm-step-num { color: #fde68a; }
.rhythm-card.step-3 .rhythm-step-num { color: #a7f3d0; }

.rhythm-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.rhythm-icon.blue { background: var(--primary-50); color: var(--primary-600); }
.rhythm-icon.amber { background: #fffbeb; color: #d97706; }
.rhythm-icon.emerald { background: #ecfdf5; color: #059669; }

.rhythm-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.rhythm-card p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   DIFFERENT DOORS PILLARS (Approach Grid)
   ========================================================================== */
.doors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.door-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.door-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-400);
  box-shadow: var(--shadow-md);
}

.door-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  color: var(--primary-600);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.door-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.door-info p {
  font-size: 0.88rem;
  color: var(--slate-600);
  margin: 0;
}

/* ==========================================================================
   IMPACT STATS BANNER
   ========================================================================== */
.impact-banner {
  background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 60%, #1e3a8a 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 1rem;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, #67e8f9 0%, #ffffff 50%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.stat-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   PROGRAMMES / OFFERINGS CARDS
   ========================================================================== */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.programme-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.programme-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-300);
}

.programme-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.programme-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.programme-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.programme-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.programme-body p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex: 1;
}

.programme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.programme-tag {
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   INTERACTIVE MATHS MINI-LAB / CHALLENGE WIDGET
   ========================================================================== */
.math-challenge-box {
  background: linear-gradient(145deg, #0c1c38, #050b18);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-xl), 0 0 35px rgba(6, 182, 212, 0.25);
  border: 1.5px solid rgba(6, 182, 212, 0.3);
  position: relative;
  overflow: hidden;
}

.math-challenge-box::before {
  content: '∑ ∫ π √ ∞ %';
  position: absolute;
  top: -15px;
  right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.5rem;
  pointer-events: none;
}

.math-challenge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.challenge-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.challenge-counter-badge {
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: var(--accent-cyan-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.challenge-category-badge {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fde68a;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.challenge-streak-badge {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-left: auto;
}

.challenge-controls {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.challenge-question-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}

.challenge-question-card .math-equation {
  display: block;
  background: rgba(0, 0, 0, 0.35);
  border-left: 4px solid var(--accent-cyan);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  margin: 0.8rem 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.15rem;
  color: #67e8f9;
  letter-spacing: 0.02em;
}

.challenge-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.challenge-opt-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.challenge-opt-btn:hover:not(:disabled) {
  background: rgba(37, 99, 235, 0.35);
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.challenge-opt-btn:disabled {
  cursor: default;
  opacity: 0.7;
}

.challenge-opt-btn.correct {
  background: rgba(16, 185, 129, 0.35) !important;
  border-color: var(--accent-emerald) !important;
  color: #6ee7b7 !important;
  opacity: 1 !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.challenge-opt-btn.wrong {
  background: rgba(244, 63, 94, 0.35) !important;
  border-color: var(--accent-coral) !important;
  color: #fda4af !important;
  opacity: 0.85 !important;
}

.challenge-feedback {
  min-height: 52px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  opacity: 0;
  transition: all var(--transition-fast);
}

.challenge-feedback.show {
  opacity: 1;
}

/* ==========================================================================
   MEET THE FOUNDER SECTION
   ========================================================================== */
.founder-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.founder-media {
  height: 100%;
  min-height: 460px;
  position: relative;
}

.founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-content {
  padding: 3rem 2.8rem;
}

.founder-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 700;
  color: var(--primary-900);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.4rem;
  border-left: 4px solid var(--primary-600);
}

.founder-bio {
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.founder-credentials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--slate-200);
  flex-wrap: wrap;
}

.founder-details h4 {
  font-size: 1.15rem;
  color: var(--slate-900);
  margin-bottom: 0.15rem;
}

.founder-details p {
  font-size: 0.85rem;
  color: var(--primary-600);
  font-weight: 700;
  margin: 0;
}

/* ==========================================================================
   VALUES GRID
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  text-align: center;
}

.value-box:hover {
  transform: translateY(-6px);
  border-color: var(--primary-400);
  box-shadow: var(--shadow-lg);
}

.value-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 1.2rem;
  background: var(--primary-50);
  color: var(--primary-600);
  transition: transform var(--transition-bounce);
}

.value-box:hover .value-icon-circle {
  transform: scale(1.15) rotate(6deg);
}

.value-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.value-box p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   GALLERY / EVENTS FILTER & CARDS
   ========================================================================== */
.filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: var(--primary-50);
  color: var(--primary-600);
  border-color: var(--primary-200);
}

.filter-btn.active {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}

.gallery-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.gallery-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.gallery-item:hover .gallery-media img {
  transform: scale(1.08);
}

.gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.gallery-caption {
  padding: 1.2rem 1.4rem;
  background: var(--white);
}

.gallery-caption h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--slate-900);
}

.gallery-caption p {
  font-size: 0.85rem;
  color: var(--slate-500);
  font-weight: 500;
  margin: 0;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-300);
}

.event-top {
  padding: 1.5rem 1.5rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.event-date-badge {
  background: var(--primary-50);
  color: var(--primary-700);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
  text-align: center;
  line-height: 1.1;
}

.event-date-badge .day {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  display: block;
}

.event-date-badge .month {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-body {
  padding: 1.2rem 1.5rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-bottom: 1rem;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.event-meta i {
  color: var(--primary-600);
  width: 16px;
}

.event-body p {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 1.4rem;
  flex: 1;
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--slate-200);
  background: var(--slate-50);
  font-size: 0.95rem;
  color: var(--slate-900);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

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

/* Skill Chip Checkboxes */
.skill-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.chip-checkbox {
  position: relative;
}

.chip-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.chip-checkbox input:checked + .chip-label {
  background: var(--primary-50);
  border-color: var(--primary-600);
  color: var(--primary-700);
  font-weight: 700;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
}

.modal-box {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.96);
  transition: all var(--transition-smooth);
}

.modal-wrapper.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--slate-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  color: var(--slate-700);
}

.modal-close:hover {
  background: var(--slate-200);
}

/* ==========================================================================
   TESTIMONIALS & CAROUSEL
   ========================================================================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--slate-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-600), var(--accent-cyan));
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin: 0;
}

/* ==========================================================================
   ACCORDION (FAQs)
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  color: var(--primary-600);
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
  padding: 0 1.5rem;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.2rem;
}

/* ==========================================================================
   FOOTER & NEWSLETTER
   ========================================================================== */
.site-footer {
  background: var(--primary-950);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-cyan-light);
  transform: translateX(3px);
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.footer-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.9rem;
}

.footer-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--slate-900);
  color: var(--white);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-left: 4px solid var(--accent-cyan);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .founder-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .rhythm-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav-menu, .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .impact-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-home {
    padding: 3rem 0 4rem;
  }
  .hero-floating-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON (Fixed Bottom-Right)
   ========================================================================== */
.wa-float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #25D366 0%, #059669 100%);
  color: #ffffff !important;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5), 0 4px 14px rgba(0,0,0,0.2);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  white-space: nowrap;
  animation: waFloatPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.wa-float-btn i {
  font-size: 1.5rem;
  animation: waPulse 2s infinite ease-in-out;
}

.wa-float-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.7), 0 0 24px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #34d399 0%, #047857 100%);
  color: #fff !important;
}

.wa-float-btn .wa-online-dot {
  width: 9px;
  height: 9px;
  background-color: #a7f3d0;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #fff;
  animation: waBlink 1.5s infinite alternate;
  flex-shrink: 0;
}

@keyframes waFloatPop {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes waBlink {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

@media (max-width: 768px) {
  .wa-float-btn {
    bottom: 20px;
    right: 18px;
    padding: 0;
    width: 54px;
    height: 54px;
    justify-content: center;
    border-radius: 50%;
  }
  .wa-float-btn .wa-text,
  .wa-float-btn .wa-online-dot {
    display: none;
  }
}

/* ==========================================================================
   HOMEPAGE GALLERY GRID
   ========================================================================== */
.gallery-section {
  background: linear-gradient(180deg, #0a0f1e 0%, #060d1a 100%);
  overflow: hidden;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}

.gallery-masonry .gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #0d1b2e;
}

.gallery-masonry .gal-item.tall { grid-row: span 2; }
.gallery-masonry .gal-item.wide { grid-column: span 2; }

.gallery-masonry .gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.88);
}

.gallery-masonry .gal-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.gallery-masonry .gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,13,26,0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-masonry .gal-item:hover::after {
  opacity: 1;
}

.gal-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.gal-item:hover .gal-item-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-view-more {
  text-align: center;
  margin-top: 2.2rem;
}

@media (max-width: 900px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-masonry .gal-item.wide { grid-column: span 1; }
}

@media (max-width: 600px) {
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }
}

/* ==========================================================================
   PARTNERS MARQUEE STRIP
   ========================================================================== */
.partners-strip {
  background: rgba(255,255,255,0.035);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 2.2rem 0;
  overflow: hidden;
}

.partners-strip-header {
  text-align: center;
  margin-bottom: 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
}

.partners-marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.partners-marquee-track:hover {
  animation-play-state: paused;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 56px;
  min-width: 120px;
  filter: grayscale(1) brightness(0.75);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo-item:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.08);
}

.partner-logo-item img {
  max-height: 52px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-item .partner-text-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  padding: 0.4rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
}

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

@media (max-width: 768px) {
  .partner-logo-item {
    min-width: 90px;
    height: 44px;
  }
  .partner-logo-item img {
    max-height: 40px;
    max-width: 100px;
  }
}

/* ==========================================================================
   WHY DIJITALI SECTION
   ========================================================================== */
.why-dijitali-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  padding: 5rem 0;
}

.why-dijitali-hero {
  max-width: 860px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.why-dijitali-hero .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.why-dijitali-lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-700);
  margin-bottom: 1.2rem;
  font-family: 'Outfit', sans-serif;
}

.why-dijitali-body {
  font-size: 1.05rem;
  color: var(--slate-700);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.why-dijitali-conclusion {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(6,182,212,0.1));
  border: 1.5px solid rgba(37,99,235,0.25);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.6rem;
  font-weight: 800;
  color: var(--primary-800);
  font-size: 1.05rem;
}

.why-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.why-pillar-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.8rem;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.why-pillar-card.pillar-understandable::before { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.why-pillar-card.pillar-engaging::before { background: linear-gradient(90deg, #f59e0b, #fde68a); }
.why-pillar-card.pillar-meaningful::before { background: linear-gradient(90deg, #06b6d4, #67e8f9); }
.why-pillar-card.pillar-explainable::before { background: linear-gradient(90deg, #8b5cf6, #c4b5fd); }
.why-pillar-card.pillar-confidence::before { background: linear-gradient(90deg, #10b981, #6ee7b7); }

.why-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-300);
}

.why-pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  display: block;
}

.why-pillar-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.why-pillar-card p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   VIDEO TESTIMONIAL & LEARNER SPOTLIGHT
   ========================================================================== */
.testimonial-featured-box {
  background: linear-gradient(135deg, var(--primary-950) 0%, #1e3a8a 100%);
  border-radius: var(--radius-xl);
  color: white;
  padding: 3rem;
  margin-top: 3.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.15);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.testimonial-video-player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
  background: #000;
  border: 2px solid rgba(255,255,255,0.2);
}

.testimonial-video-player video {
  width: 100%;
  height: auto;
  max-height: 340px;
  display: block;
  object-fit: cover;
}

.testimonial-featured-content .badge {
  margin-bottom: 1rem;
}

.testimonial-featured-quote {
  font-size: 1.2rem;
  line-height: 1.65;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.8rem;
}

.testimonial-learner-profile {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-learner-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--accent-cyan);
  box-shadow: 0 4px 14px rgba(6,182,212,0.4);
}

.testimonial-learner-info h4 {
  color: white;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.testimonial-learner-info p {
  color: var(--accent-cyan-light);
  font-size: 0.88rem;
  margin: 0;
}

@media (max-width: 860px) {
  .testimonial-featured-box {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

/* ==========================================================================
   TEAM & STAFF SECTION
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-300);
}

.team-photo-wrap {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7ff, #e2e8f0);
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-smooth);
}

.team-card:hover .team-photo-wrap img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.6rem 1.2rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.4rem;
}

.team-role {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: 0.6rem;
  font-family: 'Outfit', sans-serif;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}

/* Strategic Partners Grid in Team/Staff page */
.staff-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.staff-partner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.staff-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.staff-partner-card img {
  height: 60px;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.staff-partner-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.staff-partner-card p {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}