/* CyberWings — Light, calm theme (readable, low eye strain) */
:root {
  --primary: #DC2626;
  --primary-dark: #B91C1C;
  --primary-light: #EF4444;
  --accent: #0284C7;
  --success: #059669;
  --warning: #D97706;
  --danger: #DC2626;

  --bg: #F8FAFC;
  --bg-2: #F1F5F9;
  --bg-3: #E8EEF4;
  --surface: #FFFFFF;
  --dark: #0F172A;

  --text: #0F172A;
  --text-2: #64748B;

  --gray-900: #0F172A;
  --gray-800: #1E293B;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748B;
  --gray-400: #94A3B8;
  --gray-300: #CBD5E1;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --white: #FFFFFF;

  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
  --glow-red: 0 0 0 2px rgba(220, 38, 38, 0.12), 0 8px 24px rgba(220, 38, 38, 0.12);
  --glow-blue: 0 0 0 2px rgba(2, 132, 199, 0.12), 0 8px 24px rgba(2, 132, 199, 0.1);

  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  background-image:
    radial-gradient(900px 500px at 0% 0%, rgba(2, 132, 199, 0.06), transparent 55%),
    radial-gradient(700px 400px at 100% 20%, rgba(220, 38, 38, 0.04), transparent 50%);
  overflow-x: hidden;
}

a {
  color: var(--gray-700);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--primary); }

img {  height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== Home: shared section headers (slim, consistent) ========== */
.home-block-head {
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}
.home-block-head--center {
  text-align: center;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}
.home-block-head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-2);
  margin-bottom: 0.5rem;
}
.home-eyebrow--accent {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.1em;
}
.home-eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.home-section-title {
  font-size: clamp(1.45rem, 2.75vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin: 0 0 0.5rem;
  line-height: 1.18;
}
.home-section-lead {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
  max-width: 36rem;
}
.home-block-head--center .home-section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

/* Premium defaults */
.section { color: var(--text); }
.section-head h2 { color: var(--text) !important; }
.section-head p { color: var(--text-2) !important; }

/* Buttons */
.btn { transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--glow-red); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: rgba(220, 38, 38, 0.08); border-color: var(--primary-dark); color: var(--primary-dark); box-shadow: none; }
.btn-ghost { background: var(--gray-100); color: var(--gray-700); }
.btn-ghost:hover { background: var(--gray-200); color: var(--dark); }

/* Top Bar — rich gradient, marquee centre */
.top-bar {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 18%, #1e3a5f 50%, #1e293b 82%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  padding: 0.45rem 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.25);
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr minmax(0, auto);
  align-items: center;
  gap: 0.75rem 1rem;
}
.top-bar-left { display: flex; align-items: center; min-width: 0; }
.top-phone {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.8rem;
  transition: color .2s, opacity .2s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.top-phone:hover { color: #fecaca; }
.top-phone i { font-size: 0.75rem; opacity: 0.95; color: rgba(252, 165, 165, 0.95); }
.top-bar-center {
  overflow: hidden;
  min-width: 0;
  text-align: center;
  padding: 0 0.15rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.top-marquee-wrap {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.32rem 0;
  min-height: 1.65rem;
  display: flex;
  align-items: center;
}
/* Smooth CSS marquee (replaces HTML marquee; works on mobile) */
.top-marquee-css {
  overflow: hidden;
  width: 100%;
}
.top-marquee-track {
  display: inline-flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: topMarqueeScroll 48s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .top-marquee-track { animation: none; transform: none; }
}
.top-marquee-chunk {
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(0.72rem, 1.9vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding-right: 1.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
@keyframes topMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}
.top-social {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background .2s, transform .2s, color .2s;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.top-social:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-1px); color: #fff; }

/* Main menu bar — redesigned */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.logo span { -webkit-text-fill-color: initial; color: var(--dark); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}
.nav-menu li { display: inline-block; }
.nav-menu a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav-menu a:hover {
  color: var(--primary);
  background: rgba(79,70,229,.08);
}
.nav-menu .btn { padding: 0.5rem 1.1rem; font-size: 0.9rem; }
.nav-menu .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 2px 12px rgba(79,70,229,.35);
}
.nav-menu .btn-primary:hover { box-shadow: 0 4px 18px rgba(79,70,229,.4); color: #fff; filter: brightness(1.06); }
.nav-menu .btn-ghost {
  background: rgba(15,23,42,.04);
  color: var(--gray-700);
}
.nav-menu .btn-ghost:hover { background: rgba(79,70,229,.1); color: var(--primary); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { color: var(--white); background: var(--primary); }
.btn-ghost { background: var(--gray-100); color: var(--gray-700); }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ========== New header (toggle, logo image, search, sidebar) ========== */
.site-header.header-new {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  backdrop-filter: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.header-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--gray-800);
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.header-toggle:hover { background: var(--gray-100); color: var(--primary); }
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
/* Logo — clear on white header */
.header-logo-wrap {
  padding: 0.25rem 0;
  border-radius: 10px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.header-logo-wrap:hover { opacity: 0.92; }
.header-logo img,
.header-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(240px, 42vw);
  object-fit: contain;
  object-position: left center;
  filter: none;
}
.header-logo .logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.header-logo .logo-text span { -webkit-text-fill-color: initial; color: var(--dark); }
.header-nav { flex: 1; display: flex; justify-content: center; min-width: 0; }
.header-nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.header-nav-list > li { position: relative; }
.header-nav-list a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.header-nav-list a:hover { color: var(--primary); background: rgba(220, 38, 38, 0.08); }

/* Desktop nav dropdowns */
.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border: none;
  background: transparent;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  transition: color .2s, background .2s;
}
.nav-dropdown-btn:hover,
.nav-dropdown:focus-within > .nav-dropdown-btn {
  color: var(--primary);
  background: rgba(220, 38, 38, 0.08);
}
.nav-dropdown-chevron {
  font-size: 0.62rem;
  opacity: 0.8;
  transition: transform .22s ease;
}
.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron {
  transform: rotate(-180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 210px;
  margin: 0;
  padding: 0.45rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, visibility .2s, transform .22s ease;
  z-index: 250;
}
.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown:focus-within > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.05rem;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0;
}
.nav-dropdown-menu a:hover {
  background: rgba(220, 38, 38, 0.07);
  color: var(--primary);
}
.header-nav-cta {
  margin-left: 0.15rem;
  background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%) !important;
  color: #fff !important;
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.22);
}
.header-nav-cta:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #991b1b 100%) !important;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.32);
}
/* Internship — right corner of header + attention flash/shimmer */
.header-internship-corner.header-nav-internship {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  color: #1e40af !important;
  text-decoration: none;
  border: 2px solid rgba(59, 130, 246, 0.55);
  background: linear-gradient(160deg, #f8fafc 0%, #dbeafe 45%, #bfdbfe 100%);
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.22);
  overflow: hidden;
  flex-shrink: 0;
  isolation: isolate;
  animation: internship-attn-pulse 2.4s ease-in-out infinite;
}
.header-internship-corner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.75) 50%,
    transparent 58%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: internship-shine 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.header-internship-corner .header-internship-icon,
.header-internship-corner .header-internship-text {
  position: relative;
  z-index: 1;
}
.header-internship-corner .header-internship-icon i {
  filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.45));
}
.header-internship-corner:hover {
  color: #fff !important;
  border-color: #2563eb;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  animation: none;
}
.header-internship-corner:hover::before { animation: none; opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .header-internship-corner { animation: none; }
  .header-internship-corner::before { animation: none; }
}
@keyframes internship-attn-pulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(37, 99, 235, 0.22); }
  50% { box-shadow: 0 4px 22px rgba(37, 99, 235, 0.42); }
}
@keyframes internship-shine {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
}
.header-guarantee-trigger {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 0.75rem;
  animation: guarantee-wiggle 1.8s ease-in-out infinite;
}
.header-guarantee-trigger img {
  width: auto;
  height: 67px;
  /* object-fit: contain; */
  display: block;
}
.header-guarantee-trigger:hover {
  background: transparent;
  transform: scale(1.08);
}
@keyframes guarantee-wiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-6deg) scale(1.05); }
  50% { transform: rotate(6deg) scale(1.08); }
  75% { transform: rotate(-4deg) scale(1.03); }
}
.guarantee-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 16px;
}
.guarantee-popup-overlay.visible { display: flex; }
.guarantee-popup {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 1.15rem 1.15rem 1rem;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.25);
}
.guarantee-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
}
.guarantee-popup-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0.5rem auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  font-size: 1.35rem;
}
.guarantee-popup h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}
.guarantee-popup p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.55;
}
.header-btn-login, .header-btn-register { font-size: 0.9rem; padding: 0.5rem 1rem; }
.header-btn-register { background: var(--primary); color: #fff; border: 0; }
.header-btn-register:hover { background: var(--primary-dark); color: #fff; }
.header-btn-text { display: inline; }
.header-btn-icon { display: none; }
.header-btn-icon i { font-size: 1.1rem; }
.header-search-wrap { position: relative; }
.header-search-toggle-mob {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background .2s, color .2s;
}
.header-search-toggle-mob:hover { background: rgba(220, 38, 38, 0.1); color: var(--primary); }
.header-search-form {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, width .25s ease;
}
.header-search-form:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12); }
.header-search-input {
  width: 160px;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  border: 0;
  font-size: 0.9rem;
  color: var(--text);
  background: transparent;
  transition: width .25s ease;
}
.header-search-input::placeholder { color: var(--gray-500); }
.header-search-input:focus { outline: none; }
.header-search-btn {
  padding: 0.5rem 0.85rem;
  border: none;
  background: transparent;
  color: var(--gray-500);
  cursor: pointer;
  transition: color .2s;
}
.header-search-btn:hover { color: var(--primary); }

/* Sidebar overlay & panel */
.header-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.header-sidebar-overlay.visible { opacity: 1; visibility: visible; }
.header-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--gray-200);
  z-index: 999;
  box-shadow: 4px 0 32px rgba(15, 23, 42, 0.1);
  transform: translateX(-100%);
  transition: transform .3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.header-sidebar.visible { transform: translateX(0); }
.header-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.header-sidebar-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark);
}
.header-sidebar-logo img,
.header-sidebar-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
}
.header-sidebar-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background .2s, color .2s;
}
.header-sidebar-close:hover { background: var(--gray-200); color: var(--dark); }
.header-sidebar-body { padding: 1.25rem; flex: 1; }
.header-sidebar-section { margin-bottom: 1.5rem; }
.header-sidebar-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.header-sidebar-links { list-style: none; padding: 0; margin: 0; }
.header-sidebar-links li { margin-bottom: 0.25rem; }
.header-sidebar-links a {
  display: block;
  padding: 0.5rem 0;
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color .2s, padding-left .2s;
}
.header-sidebar-links a:hover { color: var(--primary); padding-left: 4px; }
.header-sidebar-contact { list-style: none; padding: 0; margin: 0; }
.header-sidebar-contact li { margin-bottom: 0.5rem; }
.header-sidebar-contact a, .header-sidebar-contact li { font-size: 0.9rem; color: var(--gray-600); }
.header-sidebar-contact a:hover { color: var(--primary); }
.header-sidebar-contact i { width: 20px; margin-right: 0.5rem; color: var(--primary); }

@media (max-width: 768px) {
  .top-bar { padding: 0.4rem 12px; }
  .top-bar-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.4rem 0.5rem;
  }
  .top-bar-left { grid-column: 1; grid-row: 1; min-width: 0; }
  .top-bar-right { grid-column: 2; grid-row: 1; justify-content: flex-end; }
  .top-bar-center {
    grid-column: 1 / -1;
    grid-row: 2;
    order: 0;
    padding: 0;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .top-marquee-wrap {
    padding: 0.38rem 0.5rem;
    min-height: 1.75rem;
  }
  .top-marquee-chunk {
    font-size: 0.8rem;
    padding-right: 1.5rem;
  }
  .top-phone { font-size: 0.75rem; }
}

/* Nav profile (logged in) */
.nav-profile { position: relative; display: flex; align-items: center; }
.nav-profile .profile-trigger {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.5rem 0.25rem 0.25rem;
  border-radius: 999px; border: 1px solid var(--gray-200);
  background: #fff; cursor: pointer; transition: box-shadow .2s;
}
.nav-profile .profile-trigger:hover { box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.nav-profile .profile-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; overflow: hidden;
}
.nav-profile .profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nav-profile .profile-name { font-weight: 500; color: var(--gray-900); font-size: 0.9rem; }
.nav-profile .profile-dropdown {
  position: absolute; top: 100%; right: 0; margin-top: 0.5rem;
  min-width: 200px; background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,.12); border: 1px solid var(--gray-200);
  padding: 0.5rem; display: none; z-index: 1000;
}
.nav-profile.open .profile-dropdown { display: block; }
.nav-profile .profile-dropdown a {
  display: block; padding: 0.6rem 1rem; color: var(--gray-700);
  border-radius: var(--radius); font-size: 0.9rem; transition: background .15s;
}
.nav-profile .profile-dropdown a:hover { background: var(--gray-100); color: var(--primary); }

/* Auth side panel */
.auth-panel-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 1001;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.auth-panel-overlay.visible { opacity: 1; visibility: visible; }
.auth-panel {
  position: fixed; top: 0; right: 0; width: 100%; max-width: 440px; height: 100vh;
  background: #fff; z-index: 1002; box-shadow: -4px 0 24px rgba(0,0,0,.12);
  transform: translateX(100%); transition: transform .3s; overflow-y: auto;
  display: flex; flex-direction: column;
}
.auth-panel.visible { transform: translateX(0); }
.auth-panel .panel-header {
  padding: 1.5rem 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
}
.auth-panel .panel-header h2 { margin: 0; font-size: 1.35rem; color: var(--dark); }
.auth-panel .panel-close {
  width: 40px; height: 40px; border: none; background: var(--gray-100);
  border-radius: var(--radius); cursor: pointer; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.auth-panel .panel-close:hover { background: var(--gray-200); }
.auth-panel .panel-image {
  height: 140px; margin: 1rem 1.5rem 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.auth-panel .panel-body { padding: 1.5rem; flex: 1; }
.auth-panel .auth-links-panel { margin-top: 1rem; text-align: center; font-size: 0.9rem; }

/* Hero */
.hero {
  padding: 4rem 20px 5rem;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #F0FDFA 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(79,70,229,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content h1 {
  color: var(--dark);
  margin-bottom: 1rem;
}
.hero-content h1 .highlight { color: var(--primary); }
.hero-content p {
  font-size: 1.15rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  background: linear-gradient(145deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  box-shadow: var(--shadow-lg);
}

/* ========== Hero New (slim, stacked cards, animated) ========== */
.hero-new {
  padding: clamp(1.5rem, 3vw, 2.5rem) 20px clamp(2rem, 4vw, 3.25rem);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero-new-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 2.5rem;
  align-items: center;
}
.hero-new-tag {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-new-tag i { font-size: 0.85rem; color: var(--accent); }
.hero-new-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.hero-new-num { color: var(--primary); }
.hero-new-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: 480px;
}
.hero-new-cta {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  box-shadow: 0 10px 26px rgba(229,57,53,.22);
  transition: transform .2s, box-shadow .2s;
}
.hero-new-cta:hover { transform: translateY(-2px); box-shadow: var(--glow-red); background: var(--primary-light); color: #fff; }

.hero-new-cards-wrap {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-new-cards {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-width: 320px;
  height: 320px;
  overflow: visible;
}
.hero-card {
  position: absolute;
  left: 0;
  right: 0;
  padding: 1.5rem 1.5rem;
  padding-right: 8rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  transition: transform .3s ease, box-shadow .3s ease, z-index .3s ease;
  z-index: 1;
  min-height: 132px;
  filter: none;
  backdrop-filter: blur(12px);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-card:hover { z-index: 10; box-shadow: 0 22px 70px rgba(0,0,0,.42); filter: none; }
.hero-card-content { min-width: 0; }
/* Image: only visible on active (top) card; hidden on cards behind */
.hero-card-img-wrap {
  position: absolute;
  right: 0.6rem;
  bottom: 0;
  width: 138px;
  height: 198px;
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.hero-card-active .hero-card-img-wrap {
  opacity: 1;
  visibility: visible;
}
.hero-card-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 158px;
  height: 168px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 14px;
  background: transparent;
  font-size: 2rem;
  color: inherit;
  opacity: 1;
  margin: 0 4px;
  box-sizing: border-box;
}
.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 14px;
  border: none;
  box-shadow: none;
  background: transparent;
}
.hero-card-1 {
  background: linear-gradient(135deg, #B71C1C 0%, #C62828 40%, #1B2838 100%);
  color: #fff;
}
.hero-card-2 {
  background: linear-gradient(135deg, #E65100 0%, #EF6C00 40%, #1B2838 100%);
  color: #fff;
}
.hero-card-3 {
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 40%, #1B2838 100%);
  color: #fff;
}
.hero-card-4 {
  background: linear-gradient(135deg, #6A1B9A 0%, #7B1FA2 40%, #1B2838 100%);
  color: #fff;
}
/* Stack positions: active (pos 1) on top/center, others behind below */
.hero-card[data-pos="1"] {
  --scale: 1;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%) scale(var(--scale));
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  outline: 1px solid rgba(229,57,53,.22);
  box-shadow: 0 22px 70px rgba(0,0,0,.45), 0 0 0 2px rgba(229,57,53,.10);
}
.hero-card[data-pos="2"] {
  --scale: 0.94;
  z-index: 3;
  top: 58%;
  transform: translateY(-50%) scale(var(--scale));
}
.hero-card[data-pos="3"] {
  --scale: 0.88;
  z-index: 2;
  top: 66%;
  transform: translateY(-50%) scale(var(--scale));
}
.hero-card[data-pos="4"] {
  --scale: 0.82;
  z-index: 1;
  top: 74%;
  transform: translateY(-50%) scale(var(--scale));
}
.hero-card:hover { z-index: 11 !important; }
/* Glitch shake when hovering over cards area */
@keyframes heroGlitch {
  0%, 100% { transform: translateY(-50%) scale(var(--scale)) translate(0, 0); }
  20% { transform: translateY(-50%) scale(var(--scale)) translate(-2px, 1px); }
  40% { transform: translateY(-50%) scale(var(--scale)) translate(2px, -1px); }
  60% { transform: translateY(-50%) scale(var(--scale)) translate(-1px, 2px); }
  80% { transform: translateY(-50%) scale(var(--scale)) translate(1px, -2px); }
}
.hero-new-cards:hover .hero-card {
  animation: heroGlitch 0.35s ease 1;
}
.hero-card-icon {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  opacity: 0.95;
}
.hero-card-title {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.hero-card-desc {
  font-size: 0.8rem;
  line-height: 1.35;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .25s ease, max-height .25s ease, color .2s ease;
  max-width: 100%;
  color: rgba(255,255,255,.92);
}
.hero-card-active .hero-card-desc,
.hero-card:hover .hero-card-desc {
  opacity: 1;
  max-height: 2.8em;
}
/* On hover: description turns black */
.hero-card:hover .hero-card-desc { color: #111 !important; }
.hero-card-active .hero-card-desc { color: rgba(255,255,255,.92); }
.hero-card-active.hero-card:hover .hero-card-desc { color: #111 !important; }

@media (max-width: 900px) {
  .hero-new {
    padding-top: 0.65rem;
    padding-bottom: 2rem;
  }
  .hero-new-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.15rem;
  }
  .hero-new-desc { margin-left: auto; margin-right: auto; }
  .hero-new-cards-wrap {
    min-height: 248px;
    order: -1;
    justify-content: center;
    margin-top: 0;
  }
  .hero-new-cards { margin: 0 auto; max-width: 400px; min-width: 0; }
}
/* Mobile: keep desktop-like rotating stack; hero–cards gap 25px; image larger, no frame, peeks above card */
@media (max-width: 640px) {
  .hero-new {
    padding: 25px 16px 1.5rem;
  }
  .hero-new-inner {
    gap: 0.85rem;
  }
  .hero-new-cards-wrap {
    min-height: 300px;
    order: -1;
    justify-content: center;
    width: 100%;
    margin-top: 0;
  }
  .hero-new-cards {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 300px;
    overflow: visible;
  }
  .hero-card {
    padding: 0.95rem 1rem;
    padding-right: 6.5rem;
    min-height: 118px;
  }
  .hero-card-title { font-size: 1rem; line-height: 1.25; }
  .hero-card-desc {
    font-size: 0.73rem;
    line-height: 1.34;
    max-height: 3.2em;
  }
  .hero-card-img-wrap {
    width: 104px;
    height: 148px;
    right: 0.4rem;
    bottom: auto;
    top: 50%;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(calc(-50% - 18px));
    z-index: 3;
  }
  .hero-card-active .hero-card-img-wrap {
    opacity: 1;
    visibility: visible;
  }
  .hero-card-img {
    width: 104px;
    height: 142px;
    border-radius: 12px;
    background: transparent;
    margin: 0;
    overflow: visible;
  }
  .hero-card-img img {
    object-fit: cover;
    object-position: center top;
    transform: scale(1);
    border-radius: 12px;
    border: none !important;
    box-shadow: none !important;
    outline: none;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
  }
  .hero-card[data-pos="1"] { top: 49%; }
  .hero-card[data-pos="2"] { top: 57%; --scale: 0.93; }
  .hero-card[data-pos="3"] { top: 65%; --scale: 0.87; }
  .hero-card[data-pos="4"] { top: 73%; --scale: 0.81; }
}

/* ========== Counter section (slim, no border-radius) ========== */
.counter-section {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.55rem 20px;
  margin: 0;
}
.counter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
  text-align: center;
}
.counter-item {
  padding: 0.35rem 0.75rem;
  border-right: 1px solid var(--gray-200);
}
.counter-item:last-child { border-right: 0; }
.counter-num-wrap {
  display: block;
  line-height: 1.2;
}
.counter-num {
  display: inline;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
}
.counter-plus {
  color: #ef4444;
  font-size: 0.85em;
  margin-left: 0.05em;
  font-weight: 800;
}
.counter-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-2);
  margin-top: 0.1rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .counter-section { padding: 0.5rem 16px; }
  .counter-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .counter-item {
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
    padding: 0.4rem 0.5rem;
  }
  .counter-inner .counter-item:nth-child(odd) { border-right: 1px solid var(--gray-200); }
  .counter-inner .counter-item:nth-last-child(-n+2) { border-bottom: 0; }
  .counter-num { font-size: 1.5rem; }
  .counter-label { font-size: 0.7rem; }
}
@media (max-width: 480px) {
  .counter-inner { grid-template-columns: repeat(2, 1fr); }
  .counter-inner .counter-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
  .counter-item { padding: 0.5rem 0.4rem; }
}

/* Section */
.section {
  padding: 3rem 20px;
}
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.25rem;
}
.section-head.home-block-head {
  max-width: none;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}
.section-head.home-block-head--center {
  max-width: 38rem;
}
.section-head h2 { margin-bottom: 0.35rem; color: var(--text); font-weight: 700; letter-spacing: -0.02em; }
.section-head p { color: var(--text-2); font-weight: 400; font-size: 0.95rem; }

/* Featured Courses — full-colour, slim carousel row */
.section-featured-courses.fc-sale-section {
  position: relative;
  padding: clamp(1.35rem, 3vw, 1.85rem) 16px clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 38%, #312e81 72%, #1e1b4b 100%);
}
.fc-sale-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 10% 20%, rgba(59, 130, 246, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(220, 38, 38, 0.22), transparent 45%),
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(99, 102, 241, 0.25), transparent 50%);
  pointer-events: none;
}
.fc-sale-container {
  position: relative;
  z-index: 1;
}
.section-featured-courses.fc-sale-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, #f97316, #dc2626, #a855f7, #2563eb, #06b6d4);
  opacity: 0.95;
}
.section-featured-courses.fc-sale-section .home-eyebrow--accent {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #e0e7ff;
}
.section-featured-courses.fc-sale-section .home-section-title {
  color: #f8fafc;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.section-featured-courses.fc-sale-section .home-section-lead,
.section-featured-courses.fc-sale-section .fc-sale-sub {
  color: rgba(226, 232, 240, 0.92);
}
.fc-sale-head { max-width: none; }
.fc-sale-sub { font-size: 0.95rem; }

/* Featured toolbar: title + view all + carousel arrows */
.fc-sale-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: clamp(0.85rem, 2vw, 1.1rem);
}
.fc-sale-toolbar-text {
  flex: 1 1 220px;
  min-width: 0;
}
.fc-sale-toolbar-title {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  margin: 0.2rem 0 0.25rem;
  letter-spacing: -0.02em;
}
.section-featured-courses.fc-sale-section .fc-sale-toolbar-title {
  color: #f8fafc;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}
.fc-sale-toolbar-lead {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.88);
  max-width: 36rem;
}
.fc-sale-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.fc-sale-btn-toolbar {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.fc-carousel-nav {
  display: inline-flex;
  gap: 0.35rem;
}
.fc-carousel-nav.fc-carousel-nav--hidden {
  display: none;
}
.fc-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.fc-carousel-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}
.fc-carousel-btn:active:not(:disabled) {
  transform: scale(0.96);
}
.fc-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.fc-sale-empty {
  text-align: center;
  margin: 0;
  padding: 1rem 0 0.25rem;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.92rem;
}
.fc-sale-empty-link {
  color: #a5b4fc;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fc-sale-empty-link:hover { color: #e0e7ff; }

.fc-carousel-shell {
  position: relative;
  margin: 10px
  padding: 0 14px;
}
.fc-carousel-shell::before,
.fc-carousel-shell::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 2;
  pointer-events: none;
}
.fc-carousel-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.55), transparent);
}
.fc-carousel-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(15, 23, 42, 0.55), transparent);
}
.fc-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
  padding: 6px 8px 10px;
  outline: none;
}
.fc-carousel:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(165, 180, 252, 0.6);
  border-radius: 12px;
}
.fc-carousel::-webkit-scrollbar {
  height: 6px;
}
.fc-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 99px;
}
.fc-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  width: max-content;
  min-height: 0;
}
.fc-carousel-track .fc-sale-card--carousel {
  flex: 0 0 min(300px, calc(100vw - 56px));
  scroll-snap-align: start;
  max-width: 100%;
}
@media (min-width: 480px) {
  .fc-carousel-track .fc-sale-card--carousel {
    flex: 0 0 min(280px, calc(50vw - 28px));
  }
}
@media (min-width: 768px) {
  .fc-carousel-track .fc-sale-card--carousel {
    flex: 0 0 min(290px, calc(33.333vw - 24px));
  }
}
@media (min-width: 1100px) {
  .fc-carousel-track .fc-sale-card--carousel {
    flex: 0 0 clamp(260px, 24vw, 300px);
  }
}
.fc-sale-card--carousel {
  margin-bottom: 0;
}
.fc-sale-card--carousel:hover {
  transform: translateY(-4px) scale(1.01);
}
.fc-sale-card--carousel .fc-sale-image {
  height: clamp(118px, 16vw, 148px);
}
.fc-sale-card--carousel .fc-sale-body {
  padding: 0.85rem 1rem 0.9rem;
}
.fc-sale-card--carousel .fc-sale-body h3 {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fc-sale-card--carousel .fc-sale-excerpt {
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
}
.fc-sale-card--carousel .fc-sale-meta {
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
}
.fc-sale-card--carousel .fc-sale-price-row {
  padding-top: 0.55rem;
}
.fc-sale-card--carousel .fc-sale-now {
  font-size: 1.12rem;
}
.fc-sale-card--carousel .fc-badge {
  font-size: 0.62rem;
  padding: 0.26rem 0.5rem;
}
.fc-sale-card--carousel .fc-sale-placeholder .fc-sale-ph {
  font-size: 1.75rem;
}
.section-head-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-head-featured h2 {
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.fc-sale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.15rem, 2.2vw, 1.65rem);
}
.fc-sale-card {
  --fc-accent: #2563eb;
  --fc-accent-2: #7c3aed;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f8fafc 100%);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.2);
  transition: transform .3s ease, box-shadow .3s ease, border-color .25s;
}
.fc-sale-card--tint-0 { --fc-accent: #2563eb; --fc-accent-2: #1d4ed8; }
.fc-sale-card--tint-1 { --fc-accent: #dc2626; --fc-accent-2: #b91c1c; }
.fc-sale-card--tint-2 { --fc-accent: #059669; --fc-accent-2: #047857; }
.fc-sale-card--tint-3 { --fc-accent: #7c3aed; --fc-accent-2: #6d28d9; }
.fc-sale-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fc-accent), var(--fc-accent-2));
  z-index: 2;
  border-radius: 18px 18px 0 0;
}
.fc-sale-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.12),
    0 28px 56px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.35);
}
.fc-sale-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fc-sale-image {
  height: clamp(200px, 32vw, 240px);
  position: relative;
  background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
  overflow: hidden;
}
.fc-sale-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 35%, rgba(15, 23, 42, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.fc-sale-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.fc-sale-card:hover .fc-sale-image img { transform: scale(1.08); }
.fc-sale-ph { font-size: 2.5rem; color: rgba(255, 255, 255, 0.9); opacity: 0.95; }
.fc-sale-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  z-index: 0;
}
.fc-sale-placeholder--0 { background: linear-gradient(145deg, #1d4ed8 0%, #312e81 100%); }
.fc-sale-placeholder--1 { background: linear-gradient(145deg, #b91c1c 0%, #7f1d1d 100%); }
.fc-sale-placeholder--2 { background: linear-gradient(145deg, #047857 0%, #134e4a 100%); }
.fc-sale-placeholder--3 { background: linear-gradient(145deg, #6d28d9 0%, #4c1d95 100%); }
.fc-sale-placeholder .fc-sale-ph { font-size: 2.25rem; opacity: 0.95; }
.fc-sale-placeholder span { max-width: 100%; }
.fc-badge {
  position: absolute;
  z-index: 3;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.32rem 0.6rem;
  border-radius: 8px;
}
.fc-badge-hot {
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.45);
}
.fc-badge-hot i { margin-right: 0.2rem; }
.fc-badge-level {
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.97);
  color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.fc-sale-body {
  padding: 1.2rem 1.25rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.fc-sale-body h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.45rem;
  line-height: 1.3;
  transition: color .2s;
}
.fc-sale-card:hover .fc-sale-body h3 { color: var(--fc-accent); }
.fc-sale-excerpt {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 0.75rem;
  flex: 1;
}
.fc-sale-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-bottom: 0.85rem;
}
.fc-sale-instructor, .fc-sale-dur {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.fc-sale-instructor i { color: var(--fc-accent); }
.fc-sale-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--gray-200);
  margin-top: auto;
}
.fc-sale-price { display: flex; align-items: baseline; gap: 0.45rem; flex-wrap: wrap; }
.fc-sale-old {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.fc-sale-now {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--fc-accent);
}
.fc-sale-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fc-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap .2s, color .2s;
}
.fc-sale-card:hover .fc-sale-cta { gap: 0.55rem; color: var(--fc-accent-2); }
.fc-sale-viewall { text-align: center; margin-top: 2rem; }
.fc-sale-btn-all {
  padding: 0.7rem 1.85rem;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: #fff !important;
}
.fc-sale-btn-all:hover {
  background: #fff;
  color: #0f172a !important;
  border-color: #fff;
}
.card-image-featured::before,
.card-image-featured::after { display: none !important; }
@media (max-width: 640px) {
  .fc-sale-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .fc-sale-image { height: 200px; }
  .section-featured-courses.fc-sale-section { padding: 1.15rem 12px 1.35rem; }
  .fc-sale-toolbar { align-items: stretch; }
  .fc-sale-toolbar-actions { width: 100%; justify-content: space-between; }
  .fc-carousel-shell::before,
  .fc-carousel-shell::after { width: 16px; }
  .fc-carousel-track .fc-sale-card--carousel {
    flex: 0 0 min(300px, calc(100vw - 48px));
  }
  .fc-sale-card:hover { transform: translateY(-4px); }
}

/* ========== Why CyberSecWings section ========== */
.why-cybersec-section {
  position: relative;
  padding: clamp(2.75rem, 5vw, 4.25rem) 20px;
  border-top: 1px solid var(--gray-200);
  overflow: hidden;
}
.why-cybersec-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(99, 102, 241, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(220, 38, 38, 0.07), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #eef2ff 100%);
  z-index: 0;
}
.why-cybersec-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}
.why-cybersec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.why-cybersec-label {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.25);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #4338ca;
  margin-bottom: 0.85rem;
  font-weight: 700;
}
.why-cybersec-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}
.why-cybersec-lead,
.why-cybersec-head p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.why-cybersec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .why-cybersec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }
}
@media (min-width: 1100px) {
  .why-cybersec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.why-card {
  position: relative;
  padding: 1.45rem 1.35rem 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  color: var(--text);
  animation: whyFloatIn .65s ease forwards;
  opacity: 0;
  transform: translateY(12px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
}
.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, var(--primary) 0%, #6366f1 100%);
  opacity: 0;
  transition: opacity .25s ease;
}
.why-card:nth-child(1) { animation-delay: 0.0s; }
.why-card:nth-child(2) { animation-delay: 0.05s; }
.why-card:nth-child(3) { animation-delay: 0.1s; }
.why-card:nth-child(4) { animation-delay: 0.14s; }
.why-card:nth-child(5) { animation-delay: 0.18s; }
.why-card:nth-child(6) { animation-delay: 0.22s; }
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: var(--gray-300);
}
.why-card:hover::before { opacity: 1; }

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform .25s ease;
}
.why-card:hover .why-card-icon { transform: scale(1.05); }
.why-card-icon i { font-size: 1.15rem; }

.why-card--accent-1 .why-card-icon {
  background: rgba(37, 99, 235, 0.14);
  color: #2563eb;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}
.why-card--accent-2 .why-card-icon {
  background: rgba(220, 38, 38, 0.14);
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.18);
}
.why-card--accent-3 .why-card-icon {
  background: rgba(5, 150, 105, 0.14);
  color: #059669;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.18);
}
.why-card--accent-4 .why-card-icon {
  background: rgba(124, 58, 237, 0.14);
  color: #7c3aed;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.18);
}
.why-card--accent-5 .why-card-icon {
  background: rgba(217, 119, 6, 0.16);
  color: #d97706;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.18);
}
.why-card--accent-6 .why-card-icon {
  background: rgba(14, 165, 233, 0.14);
  color: #0ea5e9;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.18);
}

.why-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--dark);
  line-height: 1.3;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: 0.8rem;
  line-height: 1.55;
}
.why-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-card ul li {
  font-size: 0.84rem;
  color: var(--text-2);
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}
.why-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #6366f1);
}

@keyframes whyFloatIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .why-cybersec-section { padding: 2.75rem 16px 3rem; }
  .why-cybersec-head { margin-bottom: 1.85rem; }
}
@media (max-width: 640px) {
  .why-cybersec-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card {
    padding: 1.25rem 1.15rem;
    border-radius: 16px;
  }
  .why-card h3 { font-size: 1.02rem; }
}

/* Cards (global fallback) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--gray-200);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray-400);
}
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-body h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.card-body h3 { color: var(--dark); }
.card-body p { color: var(--text-2); font-size: 0.9rem; margin-bottom: 0.75rem; }
.card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-2); }
.card-meta .price { font-weight: 800; color: var(--primary); }

/* Placement Success Stories — premium cards */
.placement-stories-section.placement-section {
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(220, 38, 38, 0.04), transparent 50%),
    linear-gradient(180deg, #fff 0%, #f8fafc 55%, #f1f5f9 100%);
  padding: clamp(2.5rem, 5vw, 3.5rem) 20px;
}
.placement-stories-head .placement-stories-label {
  margin-bottom: 0.5rem;
}
.placement-stories-head h2 { color: var(--dark); }
.placement-stories-grid.placement-id-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}
.placement-cta-wrap { text-align: center; margin-top: clamp(1.5rem, 3vw, 2rem); }
.placement-stories-more {
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-weight: 700;
}
.placement-story-card.placement-id-card {
  position: relative;
  aspect-ratio: 1.62 / 1;
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(155deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(15, 23, 42, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
  border: 1px solid rgba(226, 232, 240, 0.95);
}
.placement-story-card.placement-id-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}
.placement-id-card {
  position: relative;
  aspect-ratio: 1.62 / 1;
  max-width: 340px;
  margin: 0 auto;
  background: linear-gradient(145deg, #ffffff 0%, var(--gray-100) 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--gray-200);
}
.placement-id-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: var(--gray-300);
}
.placement-id-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .12;
  pointer-events: none;
}
.placement-id-card-bg img {
  max-width: 55%;
  max-height: 55%;
  object-fit: contain;
}
.placement-id-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  height: 100%;
}
.placement-id-card-photo {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--surface);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
  background: var(--gray-200);
}
.placement-id-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.placement-id-card-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gray-400);
}
.placement-id-card-body {
  flex: 1;
  min-width: 0;
}
.placement-id-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.2rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.placement-id-designation {
  font-size: 0.85rem;
  color: var(--primary-light);
  margin: 0 0 0.25rem;
  font-weight: 600;
}
.placement-id-company {
  font-size: 0.8rem;
  color: var(--text-2);
  margin: 0 0 0.2rem;
}
.placement-id-package {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.5rem;
}
.placement-id-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.placement-id-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.12);
  transition: background .2s, color .2s, transform .2s;
}
.placement-id-link:hover {
  transform: scale(1.1);
  color: #fff;
}
.placement-id-link-linkedin { background: #0A66C2; }
.placement-id-link-linkedin:hover { background: #004182; }
@media (max-width: 640px) {
  .placement-id-card { max-width: 100%; }
  .placement-id-card-photo { width: 72px; height: 72px; }
  .placement-id-card-inner { padding: 1rem 1.1rem; gap: 0.85rem; }
  .placement-id-name { font-size: 1rem; }
}

/* Placement Process — horizontal + zig-zag (desktop) */
.placement-process-redesign.placement-process-section {
  padding: 3.5rem 20px 4rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid var(--gray-200);
}
.placement-process-head .placement-process-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.placement-process-horizontal {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 0 0;
}
.placement-process-h-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22px;
  height: 3px;
  background: linear-gradient(90deg, #cbd5e1, #2563eb, #cbd5e1);
  border-radius: 2px;
  z-index: 0;
}
.placement-process-h-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  align-items: flex-start;
}
.placement-step-h {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.25rem;
}
.placement-step-h--zig {
  margin-top: 2.25rem;
}
.placement-step-h-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
  border: 3px solid #fff;
  margin-bottom: 0.85rem;
}
.placement-step-h-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1rem 0.85rem;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  transition: transform .2s, box-shadow .2s;
}
.placement-step-h:hover .placement-step-h-card {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
}
.placement-step-h-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 0.5rem;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 1rem;
}
.placement-step-h-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.placement-step-h-card p {
  font-size: 0.8rem;
  color: var(--text-2);
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 992px) {
  .placement-process-h-line { display: none; }
  .placement-process-h-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .placement-step-h--zig { margin-top: 0; }
  .placement-step-h-card { max-width: none; }
}
@media (max-width: 560px) {
  .placement-process-redesign.placement-process-section { padding: 2.5rem 16px; }
  .placement-process-h-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .placement-step-h-badge { margin-bottom: 0.65rem; }
}

/* Career CTA + form — single slim card strip */
.career-strip-section {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  border-top: 1px solid var(--gray-200);
}
.career-strip-shell {
  max-width: 1040px;
  margin: 0 auto;
}
.career-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 22px 50px rgba(15, 23, 42, 0.1);
}
.career-strip-panel {
  padding: clamp(1.5rem, 3.5vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
}
.career-strip-panel--cta {
  background: linear-gradient(150deg, #0f172a 0%, #1e293b 42%, #312e81 92%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
}
.career-strip-panel--cta .home-eyebrow--on-dark {
  margin-bottom: 0.35rem;
}
.career-strip-title {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: #fff;
}
.career-strip-desc {
  font-size: 0.92rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.1rem;
  max-width: 28rem;
}
.career-strip-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  background: #fff;
  color: #1e293b !important;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.career-strip-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  background: #f8fafc;
  color: var(--primary) !important;
}
.career-strip-panel--form {
  background: #fff;
  scroll-margin-top: 88px;
}
.career-strip-form-heading {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin: 0 0 0.4rem;
  line-height: 1.25;
}
.career-strip-form-lead {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 1.1rem;
}
.career-strip-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.career-strip-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.career-strip-field {
  display: block;
  margin: 0;
}
.career-strip-input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: #f8fafc;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.career-strip-input::placeholder {
  color: var(--gray-400);
}
.career-strip-input:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.career-strip-submit {
  width: 100%;
  padding: 0.7rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
}
.career-strip-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.45;
}
@media (max-width: 768px) {
  .career-strip-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .career-strip-panel--cta {
    align-items: center;
    text-align: center;
  }
  .career-strip-desc { margin-left: auto; margin-right: auto; }
  .career-strip-fields {
    grid-template-columns: 1fr;
  }
}

/* Testimonials (legacy card) */
.testimonial-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.testimonial-card .stars { color: #F59E0B; margin-bottom: 0.5rem; }
.testimonial-card .author { font-weight: 600; color: var(--gray-700); margin-top: 1rem; }

/* ========== Student Reviews section ========== */
.reviews-section {
  background:
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(99, 102, 241, 0.06), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f8fafc 100%);
  border-top: 1px solid var(--gray-200);
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
  overflow: hidden;
}
.reviews-inner { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.reviews-section-head {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}
.reviews-section-lead {
  font-size: 0.9rem;
}
.reviews-title {
  text-align: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
  letter-spacing: inherit;
}
.reviews-rows { display: flex; flex-direction: column; gap: 0.75rem; }
.reviews-row {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.reviews-track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  padding: 0.35rem 20px;
}
.reviews-row-right .reviews-track { animation: reviews-marquee-right 48s linear infinite; }
.reviews-row-left .reviews-track { animation: reviews-marquee-left 54s linear infinite; }
.reviews-row:hover .reviews-track { animation-play-state: paused; }
@keyframes reviews-marquee-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes reviews-marquee-left {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.reviews-card {
  flex-shrink: 0;
  width: min(300px, 85vw);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(8px);
}
.reviews-card-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e7ff, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 1rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.reviews-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews-card-body { min-width: 0; flex: 1; }
.reviews-card-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}
.reviews-card-course {
  display: block;
  font-size: 0.8rem;
  color: var(--text-2);
  margin-bottom: 0.4rem;
}
.reviews-card-text {
  font-size: 0.82rem;
  line-height: 1.48;
  color: var(--gray-700);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews-cta-wrap { text-align: center; margin: clamp(1.1rem, 2.5vw, 1.5rem) 0 0; }
.btn-reviews {
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  font-weight: 700;
  border-color: var(--gray-300);
  color: var(--dark);
}
.btn-reviews:hover { background: var(--gray-100); color: var(--primary); border-color: var(--primary); }

@media (max-width: 768px) {
  .reviews-card { width: min(272px, 88vw); padding: 0.85rem 0.95rem; }
  .reviews-rows { gap: 0.6rem; }
}

/* Partners / Logos */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.partners-grid img {
  max-height: 48px;
  width: auto;
  filter: grayscale(100%);
  opacity: .7;
  transition: filter .2s, opacity .2s;
}
.partners-grid img:hover { filter: none; opacity: 1; }

/* Companies That Trust Us — v2 */
.partners-section-v2.partners-section {
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(37, 99, 235, 0.05), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  padding: clamp(2.5rem, 5vw, 3.25rem) 20px;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
}
.partners-inner { max-width: 1200px; margin: 0 auto; }
.partners-head-v2 {
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
}
.partners-head-text { flex: 1; min-width: 220px; text-align: left; }
.partners-head-v2 .partners-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2563eb;
  margin-bottom: 0.45rem;
}
.partners-head-v2 .partners-title {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0 0 0.4rem;
  letter-spacing: inherit;
}
.partners-head-v2 .partners-desc {
  font-size: 0.95rem;
  color: var(--text-2);
  margin: 0;
  max-width: 34rem;
  line-height: 1.58;
}
.partners-stats {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.partners-stat {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  min-width: 130px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.partners-stats--chips .partners-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.5rem 0.95rem;
  /*border-radius: 999px;*/
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgb(197 18 18 / 95%);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.partners-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1.2;
}
.partners-stats--chips .partners-stat strong {
  font-size: 1.05rem;
}
.partners-stat span {
  font-size: 0.68rem;
  color: var(--text-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.partners-slider-v2.partners-slider-wrap {
  overflow: hidden;
  margin: 0 -8px;
  padding: 0.65rem 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.partners-slider-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: partners-slide 45s linear infinite;
}
.partners-slider-track:hover { animation-play-state: paused; }
.partners-slider-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  min-width: 128px;
  height: 72px;
}
.partners-slider-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.65rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .2s;
}
.partners-slider-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.22);
}
.partners-slider-link img {
  max-height: 38px;
  max-width: 112px;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: .85;
  transition: filter .2s, opacity .2s;
}
.partners-slider-link:hover img { filter: none; opacity: 1; }
.partners-slider-name {
  font-weight: 600;
  color: var(--gray-600);
  font-size: 0.88rem;
  padding: 0.5rem 0.75rem;
}
.partners-cta-wrap { text-align: center; margin: clamp(1.35rem, 3vw, 1.75rem) 0 0; }
@media (max-width: 640px) {
  .home-block-head--split.partners-head-v2 { flex-direction: column; align-items: center; text-align: center; }
  .partners-head-text { text-align: center; }
  .partners-head-v2 .partners-desc { margin-left: auto; margin-right: auto; }
  .partners-stats,
  .partners-stats--chips { justify-content: center; }
  .partners-section-v2.partners-section { padding: 2.25rem 16px 2.5rem; }
}
.btn-partners {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.btn-partners:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
@keyframes partners-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Form */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gray-700);
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.15);
}
textarea.form-control { min-height: 120px; resize: vertical; }

/* Password field with show/hide toggle */
.input-wrap {
  position: relative;
  display: block;
}
.input-wrap .form-control {
  padding-right: 2.75rem;
}
.input-wrap .password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: color .2s, background .2s;
}
.input-wrap .password-toggle:hover {
  color: var(--primary);
  background: rgba(79,70,229,.08);
}
.input-wrap .password-toggle .icon-eye,
.input-wrap .password-toggle .icon-eye-slash { display: none; }
.input-wrap .password-toggle.show-password .icon-eye-slash { display: inline; }
.input-wrap .password-toggle:not(.show-password) .icon-eye { display: inline; }

.error-msg { color: var(--danger); font-size: 0.875rem; margin-top: 0.25rem; }
.success-msg { color: var(--success); font-size: 0.875rem; margin-top: 0.25rem; }

/* Auth pages (Login / Register) */
.auth-page .page-header {
  padding: 2rem 20px 1.5rem;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}
.auth-page .auth-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0,0,0,.04);
}
.auth-page .auth-card h2 {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  color: var(--dark);
}
.auth-page .auth-divider {
  text-align: center;
  margin: 1.5rem 0;
  color: var(--gray-500);
  font-size: 0.9rem;
}
.auth-page .auth-links {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.auth-page .auth-links a { font-weight: 500; }

/* Auth split form messages */
.auth-split-form .error-msg:not(.field-error),
.auth-split-form .success-msg { padding: 0.75rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; display: block; }
.auth-split-form > .error-msg { background: rgba(239,68,68,.1); color: var(--danger); }
.auth-split-form > .success-msg { background: rgba(16,185,129,.1); color: var(--success); }
.auth-split .auth-card { background: #fff; border-radius: var(--radius-lg); box-shadow: 0 10px 40px rgba(0,0,0,.08); padding: 2rem; margin-bottom: 1.5rem; border: 1px solid rgba(0,0,0,.04); }
.auth-split .auth-card h2 { margin: 0 0 1.25rem; font-size: 1.25rem; color: var(--dark); }

/* Auth split layout (image left, form right) — full advanced */
.auth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 140px);
  background: var(--gray-100);
}
.auth-split .auth-split-image {
  background: linear-gradient(145deg, #4338CA 0%, #4F46E5 40%, #6366F1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.auth-split .auth-split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.8;
}
.auth-split .auth-split-image .inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 320px;
}
.auth-split .auth-split-image .visual {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: rgba(255,255,255,.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
}
.auth-split .auth-split-image .visual i { font-size: 3rem; }
.auth-split .auth-split-image h2 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.auth-split .auth-split-image p {
  opacity: 0.92;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255,255,255,.95);
}
.auth-split .auth-split-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3rem;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}
.auth-split .auth-split-form h1 {
  margin-bottom: 0.35rem;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.auth-split .auth-split-form .subtitle {
  color: var(--gray-600);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}
.auth-split .auth-split-form .form-group label {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Login: single card with Password + OTP */
.auth-card-unified {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
}
.auth-form-primary { margin-bottom: 0; }
.auth-card-unified .auth-divider {
  margin: 1.5rem 0;
  text-align: center;
  position: relative;
}
.auth-card-unified .auth-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--gray-200);
}
.auth-card-unified .auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  background: #fff;
  color: var(--gray-500);
  font-size: 0.875rem;
  font-weight: 500;
}
.auth-otp-block {
  padding-top: 0.25rem;
}
.auth-otp-block .form-group { margin-bottom: 1rem; }
.auth-otp-block .btn-outline {
  border-color: var(--gray-300);
  color: var(--gray-700);
}
.auth-otp-block .btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(79,70,229,.06);
}
.auth-otp-back { margin-top: 0.75rem; text-align: center; }
.auth-otp-back a { font-size: 0.9rem; color: var(--gray-600); }
.auth-otp-back a:hover { color: var(--primary); }

.btn-block { width: 100%; display: block; text-align: center; }
.btn-lg { padding: 0.85rem 1.5rem; font-size: 1rem; font-weight: 600; }

.auth-links .dot { color: var(--gray-400); margin: 0 0.35rem; font-size: 0.75rem; }
.auth-links a { color: var(--gray-700); font-weight: 500; }
.auth-links a:hover { color: var(--primary); }

@media (max-width: 900px) {
  .auth-split { grid-template-columns: 1fr; background: #fff; }
  .auth-split .auth-split-image { min-height: 200px; padding: 2rem; }
  .auth-split .auth-split-image .visual { width: 90px; height: 90px; font-size: 2.5rem; }
  .auth-split .auth-split-image .visual i { font-size: 2.25rem; }
  .auth-split .auth-split-image h2 { font-size: 1.5rem; }
  .auth-split .auth-split-form { padding: 2rem 1.5rem; }
  .auth-card-unified { padding: 1.75rem; }
}

/* Validation */
.form-control.is-invalid { border-color: var(--danger); }
.form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.2); }
.field-error { color: var(--danger); font-size: 0.8rem; margin-top: 0.25rem; }
.form-group.has-error .form-control { border-color: var(--danger); }

/* Footer — light, calm */
.site-footer {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--bg-2) 100%);
  color: var(--gray-700);
  padding: 0;
  margin-top: 4rem;
  position: relative;
  border-top: 1px solid var(--gray-200);
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.35), rgba(2, 132, 199, 0.3), transparent);
  opacity: 1;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 24px 3rem;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.footer-logo-wrap {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}
.footer-logo-img {
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.site-footer .footer-brand .footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity .2s;
}
.site-footer .footer-brand .footer-logo:hover { opacity: .9; }
.site-footer .footer-brand .footer-logo span { -webkit-text-fill-color: initial; color: var(--dark); }
.footer-tagline {
  margin-top: 1rem;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-brand-badge {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-2);
  padding: 0.4rem 0.85rem;
  background: var(--surface);
  border-radius: 999px;
  border: 1px solid var(--gray-200);
}
.footer-brand-badge i { color: var(--primary); }
.site-footer .footer-heading {
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: 0.65rem; }
.site-footer .footer-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color .2s, padding-left .2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer .footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact a i,
.footer-phone i {
  opacity: .8;
  font-size: 0.85em;
  min-width: 1.1em;
}
.footer-phone { color: var(--gray-700); font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-trust-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.footer-trust-card {
  background: var(--surface);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}
.footer-trust-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer-trust-meta strong {
  display: block;
  font-size: 0.72rem;
  line-height: 1.2;
  color: var(--dark);
}
.footer-trust-meta span {
  display: block;
  margin-top: 2px;
  font-size: 0.64rem;
  line-height: 1.2;
  color: var(--gray-500);
}
.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 1rem 12px;
  font-size: 0.875rem;
  color: var(--text-2);
  background: var(--surface);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.5;
}
.footer-bottom-inner--single-row {
  flex-direction: row;
  flex-wrap: nowrap;
  min-width: min-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom-link {
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.footer-bottom-link:hover { color: var(--primary); }
.footer-bottom-sep {
  color: var(--gray-400);
  user-select: none;
  font-weight: 400;
}
.footer-copy { font-weight: 600; color: var(--gray-700); white-space: nowrap; }
.footer-credits {
  color: var(--gray-500);
  white-space: nowrap;
}
.footer-dev { color: var(--gray-500); white-space: nowrap; }
.footer-dev a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.footer-dev a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 2.75rem 20px 2.5rem; }
  .footer-bottom-inner--single-row {
    font-size: 0.7rem;
    gap: 0.2rem 0.35rem;
    padding: 0 4px;
  }
  .header-internship-corner .header-internship-text { display: none; }
  .header-internship-corner {
    padding: 0.45rem 0.5rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .footer-tagline { max-width: none; margin-left: auto; margin-right: auto; }
  .footer-brand-badge { margin-left: auto; margin-right: auto; }
  .site-footer .footer-links a { justify-content: center; }
  .site-footer .footer-links a:hover { padding-left: 0; }
}

/* Page title */
.page-header {
  padding: 2.5rem 20px;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  text-align: center;
}
.page-header h1 { margin-bottom: 0.5rem; }
.page-header p { color: var(--gray-600); }

/* Home: calmer scroll */
.site-main--home {
  scroll-behavior: smooth;
}

/* Curriculum page — hero + accordion */
.curriculum-page-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #334155 100%);
  text-align: center;
  padding: 2.75rem 20px 3rem;
  position: relative;
  overflow: hidden;
}
.curriculum-page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(229, 57, 53, 0.18), transparent 55%);
  pointer-events: none;
}
.curriculum-page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.curriculum-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.65rem;
}
.curriculum-page-kicker i { color: #fca5a5; }
.curriculum-page-header h1 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.curriculum-page-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}
.curriculum-section {
  padding-top: 2.25rem;
  padding-bottom: 3rem;
}
.curriculum-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.curriculum-intro {
  max-width: 640px;
  margin: 0 auto 1.85rem;
  text-align: center;
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.55;
}
.curriculum-track-label {
  margin: 1.35rem 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-2);
  text-align: center;
}
.curriculum-track-label span {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: #1d4ed8;
}
.curriculum-acc--start {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 4px 22px rgba(37, 99, 235, 0.08);
}
.curriculum-acc--start .curriculum-acc-num {
  min-width: 2.35rem;
  width: auto;
  padding: 0 0.4rem;
  background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  font-size: 0.88rem;
}
.curriculum-acc-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.curriculum-acc {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.curriculum-acc:hover {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.09);
}
.curriculum-acc summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--dark);
  user-select: none;
}
.curriculum-acc summary::-webkit-details-marker { display: none; }
.curriculum-acc summary::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--primary);
  margin-left: auto;
  order: 3;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.curriculum-acc-num {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--primary) 0%, #b71c1c 100%);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.35);
}
.curriculum-acc-title {
  flex: 1;
  text-align: left;
  line-height: 1.35;
}
.curriculum-acc[open] summary::before { transform: rotate(-180deg); }
.curriculum-acc[open] summary {
  background: linear-gradient(90deg, rgba(229, 57, 53, 0.08) 0%, transparent 60%);
  border-bottom: 1px solid var(--gray-200);
}
.curriculum-acc-body {
  padding: 0 1.15rem 1.15rem 1.15rem;
  padding-left: 4.1rem;
}
.curriculum-acc-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.curriculum-acc-body li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-2);
}
.curriculum-acc-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.85;
}
.curriculum-sub {
  font-weight: 600;
  color: var(--dark);
  margin: 0.85rem 0 0.35rem;
  font-size: 0.88rem;
}
.curriculum-sub:first-child { margin-top: 0; }
.curriculum-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
}
.curriculum-cta-btn i { margin-right: 0.35rem; }
.curriculum-cta-secondary {
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--dark) !important;
}
.curriculum-cta-secondary:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
}
@media (max-width: 640px) {
  .curriculum-acc-body { padding-left: 1.1rem; }
  .curriculum-acc summary { padding: 0.9rem 1rem; font-size: 0.92rem; gap: 0.65rem; }
  .curriculum-acc-num { width: 1.85rem; height: 1.85rem; font-size: 0.85rem; }
  .curriculum-page-header { padding: 2rem 16px 2.5rem; }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-500); }

/* Course detail */
.course-detail-hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
.course-detail-hero .thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 16/10;
}
.course-detail-hero .thumb img { width: 100%; height: 100%; object-fit: cover; }
.course-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}
.course-sidebar .price { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.course-sidebar .original { text-decoration: line-through; color: var(--gray-500); font-size: 1rem; }

/* Blog */
.blog-list .card-image { height: 200px; }
.blog-list .card-body h3 { font-size: 1.15rem; }

/* ========== Why Join This Program (home — lead + trust) ========== */
.why-join-section {
  background: #ffffff;
  padding: 3.25rem 20px 3.5rem;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.why-join-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.why-join-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 400px);
  gap: 2.5rem 3rem;
  align-items: start;
}
.why-join-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  margin-bottom: 0.5rem;
}
.why-join-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.why-join-lead {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 560px;
}
.why-join-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.why-join-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.15rem 1.1rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: box-shadow .2s, border-color .2s;
}
.why-join-card:hover {
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.25);
}
.why-join-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.35);
  background: #fff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}
.why-join-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.why-join-card p {
  font-size: 0.86rem;
  color: var(--text-2);
  margin: 0;
  line-height: 1.5;
}
.why-join-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: stretch;
}
.why-join-trust-item {
  flex: 1;
  min-width: 140px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.why-join-trust-stars {
  color: #f59e0b;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.why-join-trust-num {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
}
.why-join-trust-label {
  font-size: 0.72rem;
  color: var(--text-2);
  line-height: 1.3;
  font-weight: 500;
  text-transform: none;
}

.why-join-aside {
  position: sticky;
  top: 88px;
}
.why-join-form-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.why-join-countdown {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  padding: 1.1rem 1.25rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.why-join-countdown-title {
  font-size: 0.8rem;
  color: var(--text-2);
  margin: 0 0 0.75rem;
  text-align: center;
}
.why-join-countdown-title strong {
  color: var(--dark);
  display: block;
  margin-top: 0.25rem;
  font-size: 0.95rem;
}
.why-join-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.why-join-cd-cell {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.45rem 0.25rem;
  text-align: center;
}
.why-join-cd-num {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1d4ed8;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.why-join-cd-unit {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-2);
  margin-top: 0.15rem;
}

.why-join-form {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.why-join-field { display: block; }
.why-join-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}
.why-join-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--gray-200);
  background: transparent;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--dark);
  border-radius: 0;
  transition: border-color .2s;
}
.why-join-input:focus {
  outline: none;
  border-bottom-color: #2563eb;
}
.why-join-input::placeholder { color: var(--gray-400); }
.why-join-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0.25rem;
}
.why-join-phone:focus-within { border-bottom-color: #2563eb; }
.why-join-phone-prefix {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-600);
  flex-shrink: 0;
}
.why-join-input-phone {
  border: none !important;
  padding: 0.2rem 0 !important;
  flex: 1;
}
.why-join-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.why-join-fieldset .why-join-label { margin-bottom: 0.4rem; }
.why-join-radios {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.why-join-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
}
.why-join-radio input {
  accent-color: #2563eb;
  width: 1.05rem;
  height: 1.05rem;
}
.why-join-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.25rem;
}
.why-join-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.45;
  cursor: pointer;
  margin-top: 0.15rem;
}
.why-join-check input {
  margin-top: 0.2rem;
  accent-color: #2563eb;
  flex-shrink: 0;
}
.why-join-check a { color: #2563eb; }
.why-join-form-error {
  font-size: 0.85rem;
  color: var(--danger);
  margin: 0;
}
.why-join-submit {
  width: 100%;
  margin-top: 0.1rem;
  padding: 0.9rem 1.25rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  transition: transform .15s, filter .2s;
}
.why-join-submit:hover { filter: brightness(1.05); transform: translateY(-1px); }
.why-join-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

@media (max-width: 992px) {
  .why-join-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-join-aside {
    position: static;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .why-join-lead { max-width: none; }
}
@media (max-width: 640px) {
  .why-join-section { padding: 2.25rem 16px 2.5rem; }
  .why-join-cards { grid-template-columns: 1fr; }
  .why-join-trust { flex-direction: column; }
  .why-join-trust-item { min-width: 0; }
  .why-join-countdown-grid { gap: 0.35rem; }
  .why-join-cd-num { font-size: 1.05rem; }
}

/* ========== Get in Touch section (bg image + step form + progress bar) ========== */
.getintouch-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 2.75rem 20px;
  overflow: hidden;
}
.getintouch-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80');
  filter: saturate(0.85);
}
.getintouch-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.9) 45%, rgba(241, 245, 249, 0.85) 100%);
}
.getintouch-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}
.getintouch-content {
  color: var(--text);
  max-width: 480px;
}
.getintouch-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.getintouch-highlight {
  color: var(--primary);
  display: block;
  margin-top: 0.25rem;
  font-size: 0.95em;
}
.getintouch-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.5;
}
.getintouch-bullets {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  color: var(--gray-700);
  font-size: 0.9rem;
}
.getintouch-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.getintouch-bullets i {
  color: var(--primary-light);
  font-size: 0.9rem;
}
.getintouch-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.35);
  position: relative;
}
.getintouch-progress-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.getintouch-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-200);
  border-radius: 999px;
  overflow: hidden;
}
.getintouch-progress-fill {
  display: block;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  transition: width .35s ease;
}
.getintouch-step-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.getintouch-form .form-group { margin-bottom: 1.25rem; }
.getintouch-form .form-group-checkbox { margin-bottom: 1rem; }
.getintouch-form .checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--gray-700);
}
.getintouch-form .checkbox-label input { width: 1.1rem; height: 1.1rem; accent-color: var(--primary); }
.phone-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
}
.phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.85rem;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
}
.phone-input-wrap .form-control {
  flex: 1;
  border: 0;
  border-left: 1px solid var(--gray-300);
  border-radius: 0;
}
.getintouch-form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.getintouch-form-actions .btn-prev { flex: 0 0 auto; }
.getintouch-disclaimer {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.4;
}
.getintouch-disclaimer a { color: var(--primary); text-decoration: underline; }
.getintouch-success {
  text-align: center;
  padding: 2rem 1rem;
}
.getintouch-success-icon {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 0.75rem;
}
.getintouch-success h3 { margin-bottom: 0.5rem; color: var(--dark); }
.getintouch-success p { color: var(--gray-500); }

/* ========== Lead capture popup (5s auto) ========== */
.lead-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.lead-popup-overlay.lead-popup-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lead-popup {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: min(92vh, 720px);
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #eff6ff 0%, #ffffff 45%, #f0f9ff 100%);
  box-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}
.lead-popup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(59, 130, 246, 0.15), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(220, 38, 38, 0.08), transparent 50%);
  pointer-events: none;
}
.lead-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--gray-700);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.lead-popup-close:hover { background: rgba(220, 38, 38, 0.12); color: var(--primary); }
.lead-popup-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 420px;
}
.lead-popup-col--msg {
  padding: 2rem 1.75rem 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-popup-msg-inner { max-width: 340px; }
.lead-popup-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lead-popup-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--gray-800);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.lead-popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  padding: 0.2rem 0.55rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.92em;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
  vertical-align: baseline;
}
.lead-popup-headline-mid { font-weight: 700; color: var(--gray-700); }
.lead-popup-desc {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 1rem;
}
.lead-popup-points {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.lead-popup-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.lead-popup-points i { color: var(--success); font-size: 0.85rem; }

.lead-popup-col--form {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  border-left: 1px solid rgba(226, 232, 240, 0.9);
}
.lead-popup-form-visual {
  position: relative;
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: center;
}
.lead-popup-form-gradient {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100px;
  background: linear-gradient(180deg, #2563eb 0%, #3b82f6 40%, #eff6ff 100%);
  border-radius: 0 0 50% 50% / 0 0 28px 28px;
}
.lead-popup-avatar {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.lead-popup-form {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  overflow-y: auto;
}
.lead-popup-field { display: block; }
.lead-popup-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}
.lead-popup-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--gray-200);
  background: transparent;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--dark);
  border-radius: 0;
  transition: border-color .2s;
}
.lead-popup-input::placeholder { color: var(--gray-400); }
.lead-popup-input:focus {
  outline: none;
  border-bottom-color: var(--primary);
}
.lead-popup-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.25rem;
}
.lead-popup-error {
  font-size: 0.85rem;
  color: var(--danger);
  margin: 0;
}
.lead-popup-submit {
  margin-top: 0.35rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.35);
  transition: transform .15s, box-shadow .2s, filter .2s;
}
.lead-popup-submit:hover { filter: brightness(1.06); transform: translateY(-1px); }
.lead-popup-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

@media (max-width: 768px) {
  .lead-popup-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: min(90vh, 640px);
    overflow-y: auto;
  }
  .lead-popup-col--msg {
    padding: 1.5rem 1.25rem 1rem;
    order: 1;
  }
  .lead-popup-col--form {
    border-radius: 0 0 20px 20px;
    border-left: none;
    order: 2;
  }
  .lead-popup-msg-inner { max-width: none; text-align: center; }
  .lead-popup-headline { text-align: center; }
  .lead-popup-points { display: inline-block; text-align: left; }
  .lead-popup-form-visual { padding-top: 1.25rem; }
}
@media (max-width: 480px) {
  .lead-popup { border-radius: 16px; max-height: 95vh; }
  .lead-popup-close { top: 8px; right: 8px; }
}

/* Enquiry success popup */
.enquiry-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.enquiry-popup-overlay.enquiry-popup-visible {
  opacity: 1;
  visibility: visible;
}
.enquiry-popup {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.3);
  transform: scale(0.95);
  transition: transform .25s;
}
.enquiry-popup-overlay.enquiry-popup-visible .enquiry-popup { transform: scale(1); }
.enquiry-popup-icon {
  font-size: 3.5rem;
  color: var(--success);
  margin-bottom: 1rem;
}
.enquiry-popup h3 { margin-bottom: 0.5rem; color: var(--dark); font-size: 1.35rem; }
.enquiry-popup p { color: var(--gray-500); margin-bottom: 1.25rem; }
.enquiry-popup-close { width: 100%; }

/* Float WhatsApp button */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}
.float-whatsapp:hover { color: #fff; transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.6); }

/* Mobile bottom quick contact bar */
.mobile-quick-contact { display: none; }
.mqc-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 14px rgba(0,0,0,.16);
}
.mqc-btn i { font-size: 0.9rem; }
.mqc-call { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.mqc-email { background: linear-gradient(135deg, #374151, #1f2937); }
.mqc-whatsapp { background: linear-gradient(135deg, #16a34a, #15803d); }

@media (max-width: 900px) {
  .getintouch-inner { grid-template-columns: 1fr; text-align: center; }
  .getintouch-content { max-width: 100%; margin: 0 auto; }
  .getintouch-form-card { max-width: 440px; margin: 0 auto; }
  .getintouch-section { min-height: auto; padding: 2.5rem 16px; }
}
@media (max-width: 480px) {
  .getintouch-form-card { padding: 1.25rem 1rem; }
  .getintouch-progress-wrap { flex-wrap: wrap; }
  .getintouch-form-actions { flex-direction: column; }
  .getintouch-form-actions .btn { width: 100%; }
  .float-whatsapp { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 1.5rem; }
}

/* Legacy mobile quick contact removed — use .sticky-contact-rail */

/* Enquiry form section (legacy / other pages) */
.enquiry-section {
  background: var(--gray-100);
  padding: 3rem 20px;
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 2rem auto;
}

/* Responsive */
/* Mobile: hide top bar */
@media (max-width: 768px) {
  .top-bar { display: none !important; }
}
@media (max-width: 992px) {
  .header-nav { display: none; }
  .header-search-input { width: 120px; }
}
@media (max-width: 768px) {
  .header-inner { padding: 0.5rem 14px; gap: 0.4rem; flex-wrap: nowrap; align-items: center; }
  .header-logo-wrap { padding: 0.3rem 0.5rem; }
  .header-logo img,
  .header-logo-img { height: 34px; max-width: min(200px, 52vw); }
  .header-logo .logo-text { font-size: 1.15rem; }
  .header-actions { gap: 0.4rem; margin-left: auto; flex-shrink: 0; }
  .header-guarantee-trigger { margin-left: 0.3rem; width: 46px; height: 46px; }
  .header-guarantee-trigger img { width: auto; height: 48px; }
  .header-btn-text { display: none !important; }
  .header-btn-icon { display: inline-flex !important; align-items: center; justify-content: center; }
  .header-btn-login, .header-btn-register { padding: 0.45rem; min-width: 44px; min-height: 44px; border-radius: 10px; }
  .header-search-toggle-mob { display: flex; }
  .header-search-form {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    width: 0;
    min-width: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: width .25s ease, opacity .2s, visibility .2s;
    z-index: 50;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  }
  .header-search-wrap.expanded .header-search-form {
    width: 260px;
    min-width: 260px;
    opacity: 1;
    visibility: visible;
  }
  .header-search-wrap.expanded .header-search-toggle-mob { background: rgba(220, 38, 38, 0.12); color: var(--primary); }
  .header-search-input { width: 100% !important; min-width: 0; padding: 0.6rem 0.75rem; }
  .header-sidebar { max-width: 100%; }
  .footer-trust-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .header-search-wrap.expanded .header-search-form { width: calc(100vw - 28px); min-width: 0; right: 0; left: auto; }
  .header-search-input { padding: 0.55rem 0.75rem; font-size: 0.9rem; }
  .header-search-btn { padding: 0.45rem 0.6rem; }
  .footer-trust-row { grid-template-columns: 1fr; }
  .footer-trust-card { flex-direction: row; text-align: left; justify-content: flex-start; gap: 0.55rem; }
  .footer-trust-card img { width: 34px; height: 34px; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.active { display: flex; }
  .mobile-toggle { display: block; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { height: 240px; }
  .course-detail-hero { grid-template-columns: 1fr; }
  .course-sidebar { position: static; }
}

/* Legal / internship content pages */
.container-narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.legal-card {
  background: var(--surface);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.legal-card h2 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: var(--dark); }
.legal-card p, .legal-card li { line-height: 1.65; color: var(--text-2); }
.internship-list { margin: 1rem 0 0; padding-left: 0; list-style: none; }
.internship-list li { margin-bottom: 0.65rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.internship-list i { color: var(--success); margin-top: 0.2rem; }
.internship-cta-text { margin: 1.25rem 0 1rem; }

/* Homepage reviews — simple grid (no marquee) */
.reviews-section--simple {
  padding: clamp(2.5rem, 5vw, 3.5rem) 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-top: 1px solid var(--gray-200);
}
.reviews-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.15rem;
  margin-top: 0.5rem;
}
.reviews-card-simple {
  background: var(--surface);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.reviews-card-simple:hover {
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}
.reviews-card-simple-top {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.reviews-card-simple-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  flex-shrink: 0;
}
.reviews-card-simple-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews-card-simple-name { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.reviews-card-simple-course { font-size: 0.8rem; color: var(--text-2); margin-top: 0.15rem; }
.reviews-card-simple-stars { color: #f59e0b; font-size: 0.75rem; letter-spacing: 0.05em; margin-top: 0.25rem; }
.reviews-card-simple-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray-600);
}
.reviews-empty-hint { text-align: center; color: var(--gray-500); padding: 1rem 0; }

/* Sticky side contact rail (Call / WhatsApp / Email) — left edge, middle */
.sticky-contact-rail {
  position: fixed;
  left: 0;
  right: auto;
  top: 85%;
  transform: translateY(-50%);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(180deg, #1e3a8a 0%, #1d4ed8 100%);
  border-radius: 0 14px 14px 0;
  padding: 0.25rem 0;
  box-shadow: 4px 8px 28px rgba(30, 58, 138, 0.4);
}
.sticky-contact-rail .scr-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}
.sticky-contact-rail .scr-item + .scr-item { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.sticky-contact-rail .scr-item:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.sticky-contact-rail .scr-wa { font-size: 1.35rem; }
.scr-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .sticky-contact-rail {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    border-radius: 14px 14px 0 0;
    padding: 0.45rem 10px;
    gap: 0.35rem;
    box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.18);
  }
  .sticky-contact-rail .scr-item {
    flex: 1;
    max-width: 140px;
    height: 48px;
    border-radius: 999px;
  }
  .sticky-contact-rail .scr-item + .scr-item { border-top: 0; }
  body { padding-bottom: 68px; }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeIn .4s ease-out; }
