/* ========================================
   DCT Security / goDeep: v5 Blue Theme (#255CA2 shades)
   ======================================== */

/* --- Logo images --- */
.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.footer__logo-img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 6px;
}

/* goDeep logo: on light bg the gray text shows naturally, no filter needed */
.godeep-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.godeep-logo-wrap img {
  height: 28px;
  width: auto;
  display: block;
}

/* --- Splash Image Backgrounds --- */
.splash-bg {
  position: relative;
  overflow: hidden;
}
.splash-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.splash-bg > * { position: relative; z-index: 1; }
.splash-1::before { background-image: url('../assets/splash/1.png'); }
.splash-2::before { background-image: url('../assets/splash/2.png'); }
.splash-3::before { background-image: url('../assets/splash/3.png'); }
.splash-4::before { background-image: url('../assets/splash/4.png'); }
.splash-5::before { background-image: url('../assets/splash/5.png'); }
.splash-6::before { background-image: url('../assets/splash/6.png'); }
.splash-7::before { background-image: url('../assets/splash/7.png'); }
.splash-8::before { background-image: url('../assets/splash/8.png'); }
.splash-9::before { background-image: url('../assets/splash/9.png'); }
.splash-hero::before { opacity: 0.30; }

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

:root {
  --bg:           #eef3fa;
  --bg-card:      #f8fbff;
  --bg-glass:     rgba(248, 251, 255, 0.90);
  --accent:       #255ca2;
  --accent-2:     #4a83ce;
  --accent-glow:  rgba(37, 92, 162, 0.10);
  --text:         #161616;
  --text-muted:   #4a5568;
  --border:       rgba(37, 92, 162, 0.22);
  --border-hover: rgba(37, 92, 162, 0.45);
  --radius:       14px;
  --radius-lg:    24px;
  --shadow:       0 8px 40px rgba(22,22,22,0.10);
  --shadow-glow:  0 0 40px rgba(37, 92, 162, 0.15);
  --font-head:    'Verdana', Tahoma, Geneva, sans-serif;
  --font-body:    'Verdana', Tahoma, Geneva, sans-serif;
  --nav-h:        72px;
  --transition:   0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }

/* --- Gradient text utility --- */
.grad-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* Transparent over a dark hero (video/aquarium): white links.
   Opt-in via .nav--on-dark, added only on pages whose hero is actually
   dark; every other page keeps the normal dark-on-light nav text so it
   stays readable against the site's light default background. */
.nav--on-dark:not(.scrolled) .nav__links a { color: rgba(255,255,255,0.75); }
.nav--on-dark:not(.scrolled) .nav__links a:hover { color: #fff; }
.nav--on-dark:not(.scrolled) .nav__links a.active { color: #fff; }
.nav--on-dark:not(.scrolled) .nav__hamburger span { background: #fff; }

/* Solid white once scrolled past hero */
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(37, 92, 162, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--accent); }
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

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

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--accent); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 92, 162, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 92, 162, 0.38);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost:hover { gap: 14px; }

.btn--lg { padding: 16px 40px; font-size: 1rem; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(150deg, #e8f1fb 0%, #f0f4f8 45%, #f3eeff 100%);
}

@media (max-width: 680px) {
  /* Vertically-centered hero content that's taller than a short mobile
     viewport was being clipped by overflow:hidden, hiding the second
     action button. Let the hero grow to fit its content instead. */
  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 48px) 0 48px;
    overflow-y: visible;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Subtle grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 92, 162, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 92, 162, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* Soft colour blobs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: float 8s ease-in-out infinite;
}

.hero__glow--1 {
  width: 600px; height: 600px;
  background: rgba(37, 92, 162, 0.18);
  top: -200px; right: -100px;
}

.hero__glow--2 {
  width: 500px; height: 500px;
  background: rgba(74, 131, 206, 0.14);
  bottom: -150px; left: -100px;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: calc(var(--nav-h) + 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero__text { max-width: 580px; }

/* -------- Hero slides: auto-rotating headline/CTA carousel ---------------- */
.hero__slides {
  position: relative;
  min-height: 340px;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(48px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.hero__dots {
  display: flex;
  gap: 10px;
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 2;
}

.hero__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.hero__dots button.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  width: 28px;
  border-radius: 6px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero__heading {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero__stat-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero video panel */
.hero__visual {
  position: relative;
}

.hero__video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.hero__video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 244, 248, 0.12);
  cursor: pointer;
  transition: background var(--transition);
}

.hero__video-overlay:hover { background: rgba(240, 244, 248, 0.04); }

.hero__play-btn {
  width: 72px; height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 40px rgba(37, 92, 162, 0.40);
}

.hero__play-btn svg {
  width: 28px; height: 28px;
  fill: #fff;
  margin-left: 4px;
}

.hero__video-overlay:hover .hero__play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(37, 92, 162, 0.55);
}

.hero__video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative floating card */
.hero__floating-card {
  position: absolute;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  animation: floatCard 6s ease-in-out infinite;
}

.hero__floating-card--1 {
  bottom: -20px;
  left: -30px;
  animation-delay: 0s;
}

.hero__floating-card--2 {
  top: -20px;
  right: -20px;
  animation-delay: -3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__card-icon {
  width: 40px; height: 40px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero__card-label { font-size: 0.72rem; color: var(--text-muted); }
.hero__card-value { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--text); }

/* ===========================
   VIDEO BACKGROUND HERO
   =========================== */
.hero__bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.03);
  z-index: 0;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 22, 45,0.92) 0%,
    rgba(8, 22, 45,0.86) 30%,
    rgba(8, 22, 45,0.38) 60%,
    transparent 85%
  );
  z-index: 1;
}

/* Left-aligned layout for video hero */
.hero--video {
  background: #0a1424; /* fallback if video fails to load */
}

.hero--video .hero__content {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
  max-width: 1200px;
  text-align: left;
}

.hero--video .hero__text {
  max-width: 540px;
  text-align: left;
}

.hero--video .hero__actions { justify-content: flex-start; }

.hero--video .hero__stats {
  justify-content: flex-start;
  border-top-color: rgba(255, 255, 255, 0.15);
}

/* Text overrides: white on dark video */
.hero--video .hero__heading  { color: #ffffff; }
.hero--video .hero__sub      { color: rgba(255, 255, 255, 0.78); }
.hero--video .hero__stat-label { color: rgba(255, 255, 255, 0.60); }

.hero--video .hero__badge {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}
.hero--video .hero__badge-dot { background: var(--accent); }

/* Outline button variant for dark/video bg */
.btn--video-outline {
  background: rgba(0, 0, 0, 0.30);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn--video-outline:hover {
  border-color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
}

/* ===========================
   TRUSTED / LOGOS BAR
   =========================== */
.trust-bar {
  padding: 40px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar__label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.trust-bar__featured {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.trust-bar__featured img {
  height: 128px;
  width: auto;
  object-fit: contain;
}

.trust-bar__sub {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.trust-bar__carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.trust-bar__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: trust-bar-scroll 42s linear infinite;
}

.trust-bar__track:hover { animation-play-state: paused; }

@keyframes trust-bar-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trust-bar__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 67px;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}

.trust-bar__logo:hover { opacity: 1; transform: translateY(-2px); }

.trust-bar__logo img {
  max-height: 100%;
  max-width: 168px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* A few partner marks are white-on-transparent and need a dark chip to read */
.trust-bar__logo--dark {
  background: #0f1d33;
  border-radius: 8px;
  padding: 12px 22px;
  height: auto;
}
.trust-bar__logo--dark img { max-height: 31px; }

/* ===========================
   PROBLEM SECTION
   =========================== */
.problems {
  text-align: center;
}

.problems__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.problems__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 64px;
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  text-align: left;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity var(--transition);
}

.problem-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow); }
.problem-card:hover::before { opacity: 1; }

.problem-card__icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.problem-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.problem-card__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   APPROACH / HOW IT WORKS
   =========================== */
.approach { background: #e8f1fb; }

.approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach__media {
  position: relative;
}

.approach__video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.approach__video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.approach__text .label { margin-bottom: 16px; display: block; }

.approach__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.approach__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.approach__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.approach__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.approach__step-num {
  width: 40px; height: 40px;
  background: rgba(37, 92, 162, 0.12);
  border: 1px solid var(--border-hover);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
}

.approach__step-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.approach__step-body {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===========================
   MODULES / TRAINING CARDS
   =========================== */
.modules__heading-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.modules__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.modules__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.modules__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.module-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow), 0 0 30px rgba(37, 92, 162, 0.08);
}

.module-card__thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #dce8f5, #e8deff);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-card__thumb-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.module-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.module-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.module-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.module-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.module-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.module-card__link {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.module-card:hover .module-card__link { gap: 8px; }

/* ===========================
   GODEEP WORLD FEATURE
   =========================== */
.godeep-world {
  background: linear-gradient(135deg, #ffffff, #f0f4f8);
  position: relative;
  overflow: hidden;
}

.godeep-world::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(74, 131, 206, 0.06), transparent 70%);
  pointer-events: none;
}

.godeep-world__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.godeep-world__content .label { margin-bottom: 16px; display: block; }

.godeep-world__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.godeep-world__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.godeep-world__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.godeep-world__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.godeep-world__feature-icon {
  width: 32px; height: 32px;
  background: var(--accent-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.godeep-world__feature-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.godeep-world__feature-text strong {
  color: var(--text);
  font-weight: 600;
}

/* Characters panel */
.godeep-world__characters {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow);
}

.godeep-world__char-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.character-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.character-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.character-item:hover {
  border-color: var(--border-hover);
  background: var(--accent-glow);
  box-shadow: 0 4px 16px rgba(0,93,166,0.06);
}

.character-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.character-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
}

.character-role {
  font-size: 0.78rem;
  color: var(--accent);
  margin-top: 2px;
}

/* ===========================
   TESTIMONIALS / SOCIAL PROOF
   =========================== */
.testimonials { background: #e8f1fb; }

.testimonials--video {
  position: relative;
  overflow: hidden;
}

.testimonials__bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.testimonials__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 241, 251, 0.90);
  z-index: 1;
}

.testimonials--video .container {
  position: relative;
  z-index: 2;
}

.testimonials__heading-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonials__carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.testimonials__track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
}

.testimonials__track:hover { animation-play-state: paused; }

@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonials__track .testimonial-card {
  flex: 0 0 auto;
  width: 340px;
}

.testimonial-card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* Faint greyscale training-programme still behind the card content */
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-card[data-course="ai-literacy"]::before { background-image: url('../assets/images/AI-Title.png'); }
.testimonial-card[data-course="gdpr"]::before { background-image: url('../assets/images/DPP-Title.png'); }
.testimonial-card[data-course="security-essentials"]::before { background-image: url('../assets/images/MSB-Title.png'); }
.testimonial-card[data-course="godeep-stories"]::before { background-image: url('../assets/images/GDS-Title.png'); }

.testimonial-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 4px 0 22px;
  box-shadow: 0 2px 8px rgba(22,22,22,0.05);
  width: fit-content;
  max-width: 100%;
}

/* Speech-bubble tail, bordered to match the bubble outline */
.testimonial-card__quote::before,
.testimonial-card__quote::after {
  content: '';
  position: absolute;
  left: 28px;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
}

.testimonial-card__quote::before {
  bottom: -12px;
  border-top: 12px solid var(--border);
}

.testimonial-card__quote::after {
  bottom: -10.5px;
  border-top: 11px solid #fff;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card__title {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px;
  background: linear-gradient(135deg, #e8f1fb, #f3eeff);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(37, 92, 162, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-section__heading {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #0f1d33;
  border-top: none;
  padding: 72px 24px 40px;
  color: rgba(255,255,255,0.85);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
  margin-top: 16px;
}

.footer__social {
  display: flex;
  gap: 14px;
}

.footer__social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.14);
}

.footer__social-link svg {
  width: 16px; height: 16px;
  fill: currentColor;
}

.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a, .footer__links li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__links a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer__reg {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  background: linear-gradient(150deg, #e8f1fb 0%, #f0f4f8 50%, #f3eeff 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(37, 92, 162, 0.06), transparent 70%);
  pointer-events: none;
}

/* Hero with the partners photo backdrop, same tinted-overlay approach as
   .partners-section--photo / .contact-section--photo. */
.page-hero.page-hero--partners {
  background:
    linear-gradient(150deg, rgba(232, 241, 251, 0.82) 0%, rgba(240, 244, 248, 0.74) 50%, rgba(243, 238, 255, 0.82) 100%),
    url('../assets/images/partnersbg.png') center 30% / cover no-repeat;
}

/* -------- Contact hero + form, merged into one photo backdrop ------------- */
.contact-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
}

.contact-hero__intro {
  text-align: center;
  margin-bottom: 64px;
}

.contact-hero__intro .label { margin-bottom: 16px; display: block; }

.contact-section--photo {
  position: relative;
  overflow: hidden;
}

.contact-section--photo::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('../assets/images/contactusbg.jpg') center 25% / cover no-repeat;
  pointer-events: none;
}

.contact-section--photo > .container {
  position: relative;
  z-index: 1;
}

/* -------- Partners access section, photo backdrop ------------------------ */
.partners-section--photo {
  position: relative;
  overflow: hidden;
}

.partners-section--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(150deg, rgba(232, 241, 251, 0.88) 0%, rgba(240, 244, 248, 0.82) 50%, rgba(243, 238, 255, 0.88) 100%),
    url('../assets/images/partnersbg.png') center 35% / cover no-repeat;
  pointer-events: none;
}

.partners-section--photo > .container {
  position: relative;
  z-index: 1;
}

.page-hero .label { margin-bottom: 16px; display: block; }

.page-hero__heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}

.page-hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* -------- Page hero with an aquarium background (fish swim behind the text) */
.page-hero--aquarium {
  overflow: hidden;
  background: #0a3355; /* fallback while the aquarium gradient paints in */
}

.page-hero--aquarium .container {
  position: relative;
  z-index: 2;
}

.page-hero__panel {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(8, 22, 40, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}

.page-hero__panel .label { color: var(--accent-2); }
.page-hero__panel .page-hero__heading { color: #ffffff; }
.page-hero__panel .page-hero__sub { color: rgba(255, 255, 255, 0.82); }

/* Mission statement */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission__quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.mission__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.mission__body p + p { margin-top: 16px; }

/* Values grid */
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.value-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow); }

.value-card__icon { font-size: 2.2rem; margin-bottom: 18px; }

.value-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-card__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Locations */
.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,22,45,0.10) 0%, rgba(8,22,45,0.55) 60%, rgba(8,22,45,0.85) 100%);
  z-index: 0;
}

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

.location-card__city,
.location-card__detail,
.location-card__credit { position: relative; z-index: 1; }

.location-card__city {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 8px;
}

.location-card__detail {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.location-card__credit {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
}
.location-card__credit a { color: rgba(255,255,255,0.65); text-decoration: underline; }

/* ===========================
   TRAINING PAGE
   =========================== */
.training-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  position: relative;
  background: linear-gradient(150deg, #e8f1fb 0%, #f0f4f8 50%, #f3eeff 100%);
}

.training-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(74, 131, 206, 0.05), transparent 70%);
  pointer-events: none;
}

/* Training hero with video background */
.training-hero--video {
  overflow: hidden;
  background: #0a1424; /* fallback if video fails to load */
}
.training-hero--video::before { content: none; }

/* Big module feature */
.module-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.module-feature:hover { border-color: var(--border-hover); box-shadow: var(--shadow); }

.module-feature.reverse { direction: rtl; }
.module-feature.reverse > * { direction: ltr; }

.module-feature__video {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.module-feature__video iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.module-feature__label { margin-bottom: 14px; display: block; }

.module-feature__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.module-feature__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.module-feature__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.module-feature__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.module-feature__list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--accent-glow);
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23255ca2' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.contact-info__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail__icon {
  width: 44px; height: 44px;
  background: var(--accent-glow);
  border: 1px solid var(--border-hover);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-detail__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

/* Form */
.contact-form {
  background: rgba(248, 251, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control::placeholder { color: var(--text-muted); opacity: 0.6; }

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 92, 162, 0.10);
}

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

select.form-control {
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}

select.form-control option {
  background: var(--bg-card);
  color: var(--text);
}

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

/* ===========================
   BLOG PAGE
   =========================== */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.blog-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow); }

.blog-card__thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #dce8f5, #e8deff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.blog-card__category {
  color: var(--accent);
  font-weight: 600;
}

.blog-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.blog-card__read-more {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.blog-card:hover .blog-card__read-more { gap: 10px; }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ===========================
   UTILITY
   =========================== */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.mt-auto { margin-top: auto; }

/* Separator */
.sep {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* Section heading utility */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head .label { margin-bottom: 14px; display: block; }

.section-head__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.section-head__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; gap: 60px; }
  .hero__text { max-width: 100%; }
  .hero__visual { display: none; }
  .approach__inner { grid-template-columns: 1fr; }
  .godeep-world__inner { grid-template-columns: 1fr; }
  .mission { grid-template-columns: 1fr; gap: 40px; }
  .module-feature { grid-template-columns: 1fr; padding: 36px; }
  .module-feature.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .locations__grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__stats { flex-wrap: wrap; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .module-feature { padding: 24px; }
  .phishing-feature__panel { padding: 28px; max-width: 100%; }
  .page-hero__panel { padding: 28px; max-width: 100%; }
}

/* ===========================
   BROCHURE CAROUSEL
   =========================== */
.brochures {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(37, 92, 162, 0.07), transparent 70%),
    var(--bg);
  overflow: hidden;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 0 16px;
}

.carousel__track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 32px 8px 44px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  cursor: grab;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}
.carousel__track.is-dragging .carousel__card { pointer-events: none; }

.carousel__track.is-wheeling {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel__track:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.carousel__card {
  flex: 0 0 auto;
  width: min(320px, 72vw);
  scroll-snap-align: center;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 6px 28px rgba(22,22,22,0.12);
  overflow: hidden;
  transform: scale(0.94);
  opacity: 0.75;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.45s ease,
              box-shadow 0.45s ease,
              border-color 0.45s ease;
}

.carousel__card.is-active {
  transform: scale(1);
  opacity: 1;
  border-color: var(--border-hover);
  box-shadow: 0 18px 48px rgba(22,22,22,0.20), 0 0 0 3px rgba(37, 92, 162, 0.18);
}

.carousel__card:hover {
  transform: scale(1) translateY(-6px);
  opacity: 1;
  box-shadow: 0 22px 56px rgba(22,22,22,0.24), var(--shadow-glow);
}

.carousel__card a { display: block; }

.carousel__card img {
  width: 100%;
  aspect-ratio: 910 / 1287;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid var(--accent);
}

.carousel__card-info {
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, var(--bg-card), #e6eff9);
}

.carousel__card-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.carousel__card-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.carousel__card-cta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.carousel__arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-hover);
  background: var(--bg-card);
  color: var(--accent);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
  box-shadow: 0 4px 16px rgba(22,22,22,0.10);
}

.carousel__arrow:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.carousel__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(37, 92, 162, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.carousel__dots button.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  width: 28px;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .carousel { gap: 6px; padding: 0 8px; }
  .carousel__arrow { width: 38px; height: 38px; font-size: 1rem; }
  .carousel__track { gap: 20px; padding: 20px 4px 32px; }
}

/* -------- Phishing Exposure feature: aquarium as full-section background */
.phishing-feature {
	position: relative;
	overflow: hidden;
	min-height: clamp(480px, 62vw, 640px);
	display: flex;
	align-items: center;
	padding: 60px 0;
	background: #0a3355; /* fallback while the aquarium gradient paints in */
}

@media (max-width: 640px) {
	.phishing-feature { min-height: auto; padding: 56px 0; }
	.phishing-feature__panel { padding: 32px; }
}

.phishing-feature__inner {
	position: relative;
	z-index: 2;
}

.phishing-feature__panel {
	max-width: 560px;
	background: rgba(8, 22, 40, 0.55);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-lg);
	padding: 44px;
	box-shadow: var(--shadow);
}

/* -------- Aquarium: the phishing mascot swims around -------------------- */
.aquarium {
	position: relative;
	width: 100%;
	max-width: 620px;
	height: 180px;
	margin: 12px auto;
	overflow: hidden;
	border-radius: 18px;
	background: linear-gradient(180deg, #0a3355 0%, #12507e 50%, #1a74ad 100%);
	box-shadow: inset 0 0 60px rgba(0,0,0,0.35);
}

/* full-bleed variant: fills its entire parent section as a decorative background */
.aquarium--bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	border-radius: 0;
}

/* horizontal swim across the tank, turning to face travel at each edge */
.swimmer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	will-change: left, transform;
}
/* horizontal travel, per-crossing size (--fish-scale) and tail speed are all
   driven by fishswim.js so every pass differs; this is the static fallback. */

/* gentle bob + tilt, on a separate element so it doesn't fight the flip */
.fish {
	position: relative;
	display: block;
	width: 220px;
	aspect-ratio: 1672 / 941;
	--fish-scale: 1;   /* set per crossing by fishswim.js (depth / distance) */
	--fish-hue: 0deg;  /* set per fish by fishswim.js (random colour) */
	filter: hue-rotate(var(--fish-hue, 0deg)) drop-shadow(0 6px 10px rgba(0,0,0,0.35));
	animation: bob-y 3.2s ease-in-out infinite;
	will-change: transform;
}
/* wrapper that fishswim.js spins around the fish's front when it is reeled up */
.aquarium .swimmer .rotor { width: max-content; }

/* two pre-split PNGs of the same fish on one canvas: body still, tail hinged */
.fish .layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.fish .tail {
	transform-origin: 72.9% 50%;   /* measured peduncle pinch */
	animation: wag 1s ease-in-out infinite;
}
@keyframes wag {
	0%, 100% { transform: rotate(4.5deg); }
	50%      { transform: rotate(-4.5deg); }
}
@keyframes bob-y {
	0%, 100% { transform: translateY(6px)  rotate(-3deg) scale(var(--fish-scale, 1)); }
	50%      { transform: translateY(-6px) rotate(3deg)  scale(var(--fish-scale, 1)); }
}

/* rising bubbles */
.bubble {
	position: absolute;
	bottom: -24px;
	border-radius: 50%;
	background: rgba(255,255,255,0.30);
	box-shadow: inset 0 0 4px rgba(255,255,255,0.6);
	animation: rise 6s linear infinite;
}
.bubble.b1 { left: 12%; width: 8px;  height: 8px;  animation-duration: 5.5s; animation-delay: 0s;   }
.bubble.b2 { left: 30%; width: 14px; height: 14px; animation-duration: 7s;   animation-delay: 1.2s; }
.bubble.b3 { left: 52%; width: 6px;  height: 6px;  animation-duration: 5s;   animation-delay: 2.4s; }
.bubble.b4 { left: 71%; width: 12px; height: 12px; animation-duration: 6.5s; animation-delay: 0.6s; }
.bubble.b5 { left: 88%; width: 9px;  height: 9px;  animation-duration: 6s;   animation-delay: 3s;   }
@keyframes rise {
	0%   { transform: translateY(0) scale(1);      opacity: 0;   }
	10%  { opacity: 0.8; }
	90%  { opacity: 0.8; }
	100% { transform: translateY(-200px) scale(1.3); opacity: 0; }
}

/* aquarium extras: seabed + swaying weeds */
.aquarium .floor {
	position: absolute; left: 0; right: 0; bottom: 0; height: 26px;
	background: linear-gradient(180deg, transparent, rgba(0,0,0,0.25));
}
.aquarium .weed {
	position: absolute; bottom: -4px; width: 12px; height: 46px; border-radius: 6px 6px 0 0;
	background: linear-gradient(180deg, #2e9e6b, #1c6f49);
	transform-origin: bottom center; animation: sway 4s ease-in-out infinite; opacity: 0.85;
}
.aquarium .weed.w1 { left: 16%; height: 52px; animation-delay: 0.2s; }
.aquarium .weed.w2 { left: 20%; height: 34px; animation-delay: 1s; opacity: 0.6; }
.aquarium .weed.w3 { right: 14%; height: 44px; animation-delay: 0.6s; }
@keyframes sway { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }

/* baited phishing line + lure note (built and driven by fishswim.js) */
.aquarium .hookpart { position: absolute; top: 0; width: 0; height: 100%; z-index: 400; pointer-events: none; }
.aquarium .hookpart .line {
	position: absolute; top: 0; left: 0; width: 2px; margin-left: -1px;
	background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.45));
}
/* rig carries the hook's distance: its scale (set inline) makes it near or far */
.aquarium .hookpart .rig { position: absolute; left: 0; transform-origin: 50% 0; }
.aquarium .hookpart .barb { position: absolute; left: 0; top: 0; transform: translate(-50%, -1px); }
.aquarium .hookpart .note {
	position: absolute; left: 9px; top: 0;
	background: #fff8e1; color: #5b4a1a; border: 1px solid #e5cf8a; border-radius: 4px;
	padding: 2px 7px; font: 600 11px/1.2 system-ui, "Segoe UI", Arial, sans-serif;
	white-space: nowrap; box-shadow: 0 2px 6px rgba(0,0,0,0.28);
	animation: ripple 4.5s ease-in-out infinite;
}
.aquarium .hookpart .note.left { left: auto; right: 9px; }
/* the lure note drifts slowly, as if carried by the water current */
@keyframes ripple {
	0%, 100% { transform: translateY(-50%) translateX(0)   rotate(-2.5deg); }
	50%      { transform: translateY(-54%) translateX(2px) rotate(2.5deg);  }
}
/* the whole baited line sways in the shifting current, like the weeds do */
.aquarium .hookpart .sway {
	height: 100%; transform-origin: 50% 0;
	animation: linesway 5.5s ease-in-out infinite;
}
@keyframes linesway {
	0%, 100% { transform: rotate(-3.5deg); }
	50%      { transform: rotate(3.5deg);  }
}

/* accessibility: hold still for anyone who prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
	.swimmer, .fish, .bubble, .fish .tail, .aquarium .weed { animation: none; }
	.swimmer { left: 50%; transform: translate(-50%, -50%); }
	.hero__slide { transition: opacity 0.6s ease; transform: none; }
}

/* ===========================
   RISK PROFILE CHARTS (Phishing Exposure Service)
   =========================== */
.risk-charts__intro { max-width: 760px; margin: 0 auto 40px; text-align: center; }

.risk-charts__note {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.risk-score-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto 20px;
}

.risk-score-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.risk-score-card__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.risk-score-card__lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.risk-score-card--med  .risk-score-card__num { color: #b8930b; }
.risk-score-card--high .risk-score-card__num { color: #cc3333; }

.risk-score-formula {
  max-width: 820px;
  margin: 0 auto 40px;
  background: var(--bg);
  border: 1px dashed var(--border-hover);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.risk-score-formula strong { color: var(--text); }

.risk-charts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.risk-chart-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.risk-chart-card__title {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}

.risk-chart-card canvas { max-width: 100%; }

@media (max-width: 860px) {
  .risk-charts__grid { grid-template-columns: 1fr; }
  .risk-score-cards { grid-template-columns: 1fr; }
}

/* ===========================
   PARTNERS
   =========================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

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

.partner-card__logo-wrap {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.partner-card__logo-wrap img {
  max-height: 100%;
  max-width: 220px;
  width: auto;
  object-fit: contain;
}

.partner-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
  text-align: center;
}

.partner-card__tagline {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.partner-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.partner-card__work {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.partner-card__work strong { color: var(--accent); }

.partner-card__link {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

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

/* -------- Partner access tiers (courses / phishing / exposure / package) - */
.access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.access-card {
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.access-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}

.access-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow), var(--shadow-glow);
  position: relative;
}

.access-card__badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.access-card__icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.access-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.access-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.access-card__link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

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

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

/* ===========================
   LEGAL / LONG-FORM CONTENT
   =========================== */
.legal-content { max-width: 820px; margin: 0 auto; }

.legal-content .legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-content ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content strong { color: var(--text); }
.legal-content a { color: var(--accent); text-decoration: underline; }

.legal-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.legal-callout p:last-child { margin-bottom: 0; }

/* ===========================
   BLOG POST
   =========================== */
.blog-post__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}
.blog-post__meta strong { color: #fff; font-weight: 700; }

.blog-post__image-wrap {
  max-width: 820px;
  margin: -32px auto 40px;
  position: relative;
  z-index: 2;
}
.blog-post__image-wrap img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.blog-post__back:hover { color: var(--accent); }

/* ===========================
   TESTIMONIAL COURSE FILTER
   =========================== */
.testimonial-card__course {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.testimonials__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
