@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --red: #ff2d2d;
  --red-dim: rgba(255,45,45,0.18);
  --red-glow: rgba(255,45,45,0.35);
  --purple: #a855f7;
  --purple-dim: rgba(168,85,247,0.15);
  --cyan: #22d3ee;
  --cyan-dim: rgba(34,211,238,0.12);
  --bg: #050505;
  --surface: #0d0d0d;
  --surface2: #141414;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,45,45,0.5);
  --text: #f0f0f0;
  --text-muted: rgba(240,240,240,0.5);
  --text-dim: rgba(240,240,240,0.7);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,45,45,0.35); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,45,45,0.65); }
* { scrollbar-width: thin; scrollbar-color: rgba(255,45,45,0.35) transparent; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
}

/* Hero breaks out of the container constraint — full viewport width */
.hero .container,
.hero-swiper .container {
  max-width: 1600px;
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
}

/* ── ACCENT & UTILITY ── */
.accent-text {
  background: linear-gradient(135deg, var(--red) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 32px rgba(255,45,45,0.12), 0 8px 40px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #c0392b 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,45,45,0.35);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(255,45,45,0.55);
  transform: translateY(-1px);
  color: #fff;
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-dim);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--text-dim);
}
.btn-ghost:hover { color: var(--red); }

.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 15px 32px; font-size: 0.95rem; }
.btn-block { width: 100%; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* footer logo slightly smaller */
.site-footer .logo-img {
  height: 60px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--purple));
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: 0.2s; }

.nav-menu-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

/* ── MOBILE DRAWER ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(8,8,12,0.98);
  backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
.nav-drawer.open { right: 0; }

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.nav-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.nav-close:hover { background: var(--red-dim); color: var(--red); border-color: rgba(255,45,45,0.3); }

.nav-menu-list {
  list-style: none;
  padding: 12px 0;
  flex: 1;
  overflow-y: auto;
}

.nav-drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.925rem;
  font-weight: 500;
  transition: all 0.18s;
  position: relative;
  border-left: 3px solid transparent;
}
.nav-drawer-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-left-color: rgba(255,45,45,0.4);
}
.nav-drawer-link.active {
  color: #fff;
  font-weight: 700;
  background: rgba(255,45,45,0.08);
  border-left-color: var(--red);
}

.nav-drawer-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}
.nav-drawer-link:hover .nav-drawer-icon,
.nav-drawer-link.active .nav-drawer-icon {
  background: var(--red-dim);
  color: var(--red);
  border-color: rgba(255,45,45,0.25);
}

.nav-drawer-active-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-left: auto;
  flex-shrink: 0;
}

.nav-drawer-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.nav-drawer-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.hero-swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Full-bleed slide */
.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Dark overlay so text is always readable */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.15) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%),
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(220,38,38,0.18) 0%, transparent 60%);
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(255,45,45,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(168,85,247,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(34,211,238,0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 100%);
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(255,45,45,0.12);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(168,85,247,0.1);
  bottom: -80px; right: -80px;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: rgba(34,211,238,0.07);
  top: 40%; left: 40%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 760px;
  padding: 40px 0;
}

.hero-text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 18px 0 16px;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,45,45,0.1);
  color: #ff8080;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,45,45,0.3);
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-image {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(255,45,45,0.15), 0 20px 60px rgba(0,0,0,0.5);
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-placeholder {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.hero-placeholder span.hero-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero visual card */
.hero-visual-card {
  position: relative;
}
.hero-visual-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, rgba(255,45,45,0.4), rgba(168,85,247,0.3), rgba(34,211,238,0.2));
  z-index: -1;
  animation: borderGlow 4s ease-in-out infinite;
}
@keyframes borderGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── COURSES RIBBON MARQUEE ── */
.courses-ribbon {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 80px;
  position: relative;
  z-index: 10;
}

/* Fade edges */
.courses-ribbon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--surface) 0%,
    transparent 180px,
    transparent calc(100% - 60px),
    var(--surface) 100%);
  pointer-events: none;
  z-index: 2;
}

.ribbon-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  z-index: 3;
  position: relative;
}

/* Triangle arrow */


.ribbon-track-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.ribbon-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 6s linear infinite;
  will-change: transform;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}


.ribbon-track-wrap:hover .ribbon-track {
  animation-play-state: running;
}

.ribbon-item {
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 80px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s;
}

.ribbon-item:hover {
  background: rgba(255,255,255,0.04);
}

.ribbon-thumb {
  height: 80px;
  width: auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface2);
  display: flex;
  align-items: center;
}

.ribbon-thumb img {
  width: auto;
  height: 60px;
  max-width: none;
  object-fit: contain;
  display: block;
  padding: 4px;
  transition: transform 0.3s;
}

.ribbon-item:hover .ribbon-thumb img {
  transform: scale(1.08);
}

@media (max-width: 640px) {
  .courses-ribbon { height: 64px; }

  .ribbon-label {
    padding: 0 16px;
    font-size: 0.65rem;
  }

  /* .ribbon-label::after {
    border-top-width: 32px;
    border-bottom-width: 32px;
    border-left-width: 11px;
  } */

  .ribbon-item {
    padding: 0 24px;
    height: 64px;
  }

  .ribbon-thumb { height: 64px; width: auto; }
  .ribbon-thumb img { height: 64px; max-width: none; }
}

/* ── SECTIONS ── */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin: 10px 0;
  letter-spacing: -0.03em;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.section-tag::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,45,45,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(168,85,247,0.1) 0%, transparent 50%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,45,45,0.4), rgba(168,85,247,0.4), transparent);
}
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  position: relative;
  letter-spacing: -0.03em;
  margin-top: 12px;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 12px;
  position: relative;
}

/* ── STATS ── */
.stats-section { padding: 80px 0; }

.stats-swiper {
  padding-bottom: 40px !important;
}

@media (min-width: 768px) {
  .stats-swiper { padding-bottom: 0 !important; }
  .stats-pagination { display: none !important; }
}

.stat-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stats-pagination {
  text-align: center;
  margin-top: 16px;
}
.stats-pagination .swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.5;
}
.stats-pagination .swiper-pagination-bullet-active {
  background: var(--red);
  opacity: 1;
}

/* ── COURSES ── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.course-card { overflow: hidden; }

.course-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.course-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.course-card:hover .course-thumb img { transform: scale(1.06); }

.course-placeholder {
  height: 100%;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.course-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dim), var(--purple-dim));
}
.course-placeholder span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  position: relative;
}

.course-duration {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.course-body { padding: 24px; }
.course-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.course-body h3 a:hover { color: var(--red); }
.course-body p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.link-arrow {
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: 8px; }

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tag {
  padding: 4px 10px;
  background: rgba(255,45,45,0.1);
  border: 1px solid rgba(255,45,45,0.2);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  color: #ff8080;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── PLACEMENT ── */
.placement-section {
  position: relative;
  overflow: hidden;
}
.placement-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(255,45,45,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 90% 50%, rgba(168,85,247,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.placement-wrapper {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,45,45,0.2);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.placement-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--purple), var(--cyan), var(--red));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* Top row: heading left, stats right */
.placement-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 52px 52px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.placement-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin: 10px 0 14px;
  letter-spacing: -0.03em;
}
.placement-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px;
}

.placement-stats-grid {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.placement-stats-grid .placement-stat {
  border-right: 1px solid var(--border);
}
.placement-stats-grid .placement-stat:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .placement-stats-grid {
    display: none;
  }
}

.placement-stat {
  padding: 28px 36px;
  text-align: center;
  width: 100%;
}
.placement-stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--red) 0%, #ff8080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.placement-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}
.placement-stat-divider { display: none; }
.placement-stats-pagination {
  text-align: center;
}
.placement-stats-pagination .swiper-pagination-bullet { background: var(--text-muted); opacity: .5; }
.placement-stats-pagination .swiper-pagination-bullet-active { background: var(--red); opacity: 1; }

/* Features row */
.placement-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.placement-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.placement-feature::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.placement-feature:hover::before { transform: scaleX(1); }
.placement-feature:last-child { border-right: none; }
.placement-feature:hover { background: rgba(255,45,45,0.04); }
.placement-feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--red-dim);
  border: 1px solid rgba(255,45,45,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.placement-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.placement-feature p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Logos row */
.placement-logos-wrap {
  padding: 32px 52px;
  background: rgba(255,255,255,0.01);
}
.placement-logos-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.placement-logos-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.placement-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.placement-logo {
  padding: 10px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s;
  color: var(--text-dim);
}
.placement-logo:hover {
  border-color: rgba(255,45,45,0.4);
  background: var(--red-dim);
  color: var(--text);
  transform: translateY(-2px);
}
.placement-logo img { max-height: 30px; }

/* ── TESTIMONIALS ── */
.testimonials-swiper { padding-bottom: 52px; }

.testimonial-card {
  padding: 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  font-family: 'Space Grotesk', sans-serif;
  color: rgba(255,45,45,0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testimonial-rating .star {
  color: var(--red);
  font-size: 0.85rem;
}

.testimonial-card > p {
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.925rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-author img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,45,45,0.3);
}
.testimonial-author strong { font-size: 0.9rem; font-weight: 700; }
.testimonial-author span {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── GALLERY ── */
.gallery-swiper {
  padding-bottom: 40px !important;
}

.gallery-swiper .swiper-slide {
  height: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.85));
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-overlay span { font-size: 0.8rem; font-weight: 600; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-pagination {
  text-align: center;
}
.gallery-pagination .swiper-pagination-bullet { background: var(--text-muted); opacity: .5; }
.gallery-pagination .swiper-pagination-bullet-active { background: var(--red); opacity: 1; }

/* ── FAQ ── */
.faq-section { position: relative; }
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(168,85,247,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 80%, rgba(255,45,45,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.faq-list { 
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:hover {
  border-color: rgba(255,45,45,0.2);
}
.faq-item.active {
  border-color: rgba(255,45,45,0.4);
  box-shadow: 0 0 24px rgba(255,45,45,0.08);
  background: rgba(255,45,45,0.03);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.975rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 16px;
  line-height: 1.4;
}
.faq-question:hover { color: #fff; }

.faq-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-dim);
  border: 1px solid rgba(255,45,45,0.25);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer p {
  padding: 0 24px 20px 24px;
  color: var(--text-dim);
  font-size: 0.925rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
  margin: 0;
}
.faq-answer.open { max-height: 400px; }

.faq-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--red);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.25s, color 0.25s;
  border: 1px solid rgba(255,45,45,0.3);
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--red-dim);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ── CTA ── */
.cta-section .cta-card {
  text-align: center;
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
  border-color: rgba(255,45,45,0.2);
}
.cta-section .cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,45,45,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(168,85,247,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section .cta-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}
.cta-section .cta-card p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
}

.contact-form-wrap { padding: 36px; }
.contact-form-wrap h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Contact Info Card — Gen Z redesign */
.info-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--purple), var(--cyan));
}
.info-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  transition: all 0.25s;
}
.contact-info-icon.phone { background: rgba(255,45,45,0.1); border-color: rgba(255,45,45,0.25); }
.contact-info-icon.email { background: rgba(168,85,247,0.1); border-color: rgba(168,85,247,0.25); }
.contact-info-icon.address { background: rgba(34,211,238,0.1); border-color: rgba(34,211,238,0.25); }

.contact-info-text { flex: 1; }
.contact-info-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.contact-hours {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.contact-hours h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.875rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-dim); }
.hours-time { color: var(--text); font-weight: 600; }
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hours-badge.open { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.hours-badge.closed { background: rgba(255,45,45,0.1); color: #ff8080; border: 1px solid rgba(255,45,45,0.2); }

.map-card {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-card iframe { display: block; width: 100%; border: none; }

/* ── FORM ── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.925rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,45,45,0.04);
  box-shadow: 0 0 0 3px rgba(255,45,45,0.12);
}
.form-group select option { background: var(--surface2); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.875rem;
  font-weight: 500;
}
.alert-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}
.alert-error {
  background: rgba(255,45,45,0.1);
  border: 1px solid rgba(255,45,45,0.3);
  color: #ff8080;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-content { padding: 36px; }
.about-content .lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dim);
}

.about-card {
  padding: 24px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--purple));
  border-radius: 0 2px 2px 0;
}
.about-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 12px;
}
.about-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  padding-left: 12px;
}

/* About extra sections */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.value-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.team-card {
  padding: 28px 20px;
  text-align: center;
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dim), var(--purple-dim));
  border: 2px solid rgba(255,45,45,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}
.team-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.team-card span { color: var(--text-muted); font-size: 0.8rem; }

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.about-process-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--purple), transparent);
}

.process-step {
  padding: 28px 20px;
  text-align: center;
  position: relative;
}
.process-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #c0392b);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(255,45,45,0.35);
  position: relative;
  z-index: 1;
}
.process-step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.process-step p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.55; }

/* ── COURSES PAGE EXTRAS ── */
.courses-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-dim);
}

.courses-cta-strip {
  margin-top: 60px;
  padding: 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,45,45,0.08) 0%, rgba(168,85,247,0.06) 100%);
  border: 1px solid rgba(255,45,45,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.courses-cta-strip h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.courses-cta-strip p { color: var(--text-muted); font-size: 0.9rem; }

/* ── COURSE CATEGORY TABS ── */
.courses-section { padding-top: 56px; }

.course-tabs-wrap {
  margin-bottom: 48px;
  position: relative;
}

.course-tabs {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0;
  -ms-overflow-style: none;
}
.course-tabs::-webkit-scrollbar { display: none; }

.course-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px 13px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
}
.course-tab:hover {
  color: var(--text);
}
.course-tab.active {
  color: var(--text);
  border-bottom-color: var(--red);
}
.course-tab.active::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,45,45,0.7);
}

.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.course-tab.active .tab-count,
.course-tab:hover .tab-count {
  background: var(--red-dim);
  border-color: rgba(255,45,45,0.3);
  color: #ff8080;
}

.course-tabs-line {
  height: 1px;
  background: var(--border);
  margin-top: 0;
}

/* Tab panels */
.tab-panel {
  display: none;
  animation: tabFadeIn 0.3s ease;
}
.tab-panel.active { display: block; }

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Course category badge on card */
.course-cat-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(168,85,247,0.25);
  border: 1px solid rgba(168,85,247,0.4);
  backdrop-filter: blur(8px);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  color: #c084fc;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Empty state */
.courses-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 64px 0;
  font-size: 0.95rem;
}

/* ── NAVBAR DROPDOWN ── */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dd-chevron {
  font-size: 0.6rem;
  margin-left: 4px;
  transition: transform 0.22s ease;
  vertical-align: middle;
}
.nav-dropdown-wrap.open .nav-dd-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1100;
}
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* little arrow */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: rgba(18,18,24,0.97);
  border-top: 1px solid rgba(255,255,255,0.09);
  border-left: 1px solid rgba(255,255,255,0.09);
  rotate: 45deg;
  border-radius: 2px;
}

.nav-dropdown-inner {
  background: rgba(18,18,24,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,45,45,0.06);
  overflow: hidden;
}

.nav-dd-all {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.15s;
  color: var(--text);
}
.nav-dd-all:hover { background: rgba(255,45,45,0.08); }

.nav-dd-all-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red-dim), rgba(168,85,247,0.15));
  border: 1px solid rgba(255,45,45,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.nav-dd-all strong { display: block; font-size: 0.85rem; font-weight: 700; }
.nav-dd-all small  { display: block; font-size: 0.72rem; color: var(--text-muted); }

.nav-dd-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 8px 4px;
}

.nav-dd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: background 0.15s, color 0.15s;
}
.nav-dd-item:hover { background: rgba(255,255,255,0.04); color: var(--text); }

.nav-dd-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,45,45,0.5);
  flex-shrink: 0;
  transition: background 0.15s;
}
.nav-dd-item:hover .nav-dd-dot { background: var(--red); }

/* ── MOBILE DRAWER ACCORDION (Courses) ── */
.nav-drawer-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.925rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.18s;
}
.nav-drawer-accordion-btn:hover,
.nav-drawer-accordion.open .nav-drawer-accordion-btn {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-left-color: rgba(255,45,45,0.4);
}
.nav-drawer-accordion.open .nav-drawer-accordion-btn {
  border-left-color: var(--red);
  background: rgba(255,45,45,0.08);
}

.nav-drawer-chevron {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}
.nav-drawer-accordion.open .nav-drawer-chevron { transform: rotate(180deg); }

.nav-drawer-sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.2);
  border-left: 3px solid rgba(255,45,45,0.2);
  margin-left: 0;
}
.nav-drawer-accordion.open .nav-drawer-sub { max-height: 400px; }

.nav-drawer-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 30px;
  color: var(--text-muted);
  font-size: 0.87rem;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.nav-drawer-sub-link:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.nav-drawer-sub-link i { width: 14px; color: rgba(255,45,45,0.5); font-size: 0.75rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.footer-top {
  padding: 72px 0 56px;
  position: relative;
}
.footer-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,45,45,0.5), rgba(168,85,247,0.4), transparent);
}

/* Subtle background glow */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,45,45,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo { display: inline-flex; margin-bottom: 14px; }
.footer-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 10px;
}
.footer-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-social-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-dim);
  transform: translateY(-2px);
}

/* Columns */
.footer-col { display: flex; flex-direction: column; }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a::before {
  content: '›';
  color: var(--red);
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s;
}
.footer-links li a:hover { color: var(--text); padding-left: 4px; }
.footer-links li a:hover::before { opacity: 1; }

/* Contact list */
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}
.footer-contact-icon { font-size: 0.95rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-list li a,
.footer-contact-list li span { color: var(--text-muted); line-height: 1.5; transition: color 0.2s; }
.footer-contact-list li a:hover { color: var(--red); }

/* CTA column */
.footer-cta-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer-cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.footer-cert-icon { font-size: 1.3rem; flex-shrink: 0; }
.footer-cert-badge strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); }
.footer-cert-badge span { font-size: 0.75rem; color: var(--text-muted); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  background: rgba(0,0,0,0.3);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--red); }

/* ── WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* ── MISC ── */
.verify-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px;
}

.certificate-result {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cert-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-pill);
  color: #4ade80;
  font-weight: 700;
  font-size: 0.95rem;
}
.cert-check {
  width: 24px; height: 24px;
  background: #22c55e;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.certificate-preview {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.certificate-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.cert-download-btn { width: 100%; justify-content: center; }

.course-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

.course-detail-main {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.course-detail-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.course-detail-content {
  padding: 28px;
}
.course-detail-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.course-detail-content .content-body {
  color: var(--text-dim);
  font-size: 0.925rem;
  line-height: 1.8;
}

/* Sidebar */
.course-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 80px;
}

.sidebar-card {
  padding: 22px;
}
.sidebar-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-dim);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.detail-list li:last-child { border-bottom: none; padding-bottom: 0; }
.detail-list li strong {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.sidebar-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}.sidebar-card { padding: 22px; margin-bottom: 14px; }
.sidebar-card h3 { margin-bottom: 12px; color: var(--red); font-size: 1rem; }
.detail-list li { margin-bottom: 8px; color: var(--text-muted); font-size: 0.875rem; }

.text-center { text-align: center; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

.back-link { color: var(--text-muted); display: inline-block; margin-bottom: 14px; font-size: 0.875rem; }
.back-link:hover { color: var(--red); }

.error-page .error-code {
  font-size: 6rem;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, var(--red), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-weight: 700;
}

/* ── SWIPER ── */
.swiper-pagination-bullet { background: rgba(255,255,255,0.3) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--red) !important; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-process-grid::before { display: none; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .hero-content,
  .contact-grid,
  .course-detail-grid,
  .about-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .course-detail-sidebar { position: static; }
  .placement-top { grid-template-columns: 1fr; gap: 28px; }
  .placement-stats { width: 100%; justify-content: center; }
  .placement-features { grid-template-columns: 1fr; }
  .placement-feature { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .placement-feature:last-child { border-bottom: none; }
  .placement-top, .placement-logos-wrap { padding: 28px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .courses-cta-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu-desktop { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .faq-list { grid-template-columns: 1fr; }
  /* Tabs: collapse to scrollable row on mobile */
  .course-tab { padding: 9px 14px 12px; font-size: 0.8rem; }
  .tab-count { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── COURSE GALLERY ── */
.course-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.course-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--surface);
}
.course-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.course-gallery-item:hover img { transform: scale(1.06); }

.course-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.85));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}
.course-gallery-item:hover .course-gallery-overlay { opacity: 1; }

.course-gallery-zoom {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.course-gallery-overlay p {
  width: 100%;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  text-align: left;
  margin: 0;
  line-height: 1.4;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-caption {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  text-align: center;
  max-width: 600px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  font-family: inherit;
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,45,45,0.3); border-color: var(--red); }

.lightbox-close {
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  font-size: 1rem;
}
.lightbox-prev {
  left: 20px; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  font-size: 1.6rem;
}
.lightbox-next {
  right: 20px; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .course-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ── ACCREDITATIONS ── */
.accreditations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.accreditation-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.accreditation-card:hover {
  border-color: rgba(255,45,45,0.35);
  transform: translateY(-3px);
}

.accreditation-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}

.accreditation-body { flex: 1; }
.accreditation-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.accreditation-issuer {
  display: block;
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 2px;
}
.accreditation-year {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  margin-bottom: 8px;
}
.accreditation-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
