/* ============================================================
   NETWORKERS GURU — style.css
   Version: 1.0 | Shared stylesheet for all pages
   Design System: NG-Design-System.md
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS / CSS VARIABLES
   ============================================================ */
:root {
  /* --- PRIMARY PALETTE --- */
  --ng-navy:           #01244A;
  --ng-crimson:        #a40000;

  /* --- NAVY SCALE --- */
  --ng-navy-900:       #010f1e;
  --ng-navy-800:       #01244A;
  --ng-navy-700:       #023264;
  --ng-navy-600:       #034080;
  --ng-navy-500:       #0455A8;
  --ng-navy-400:       #2a72c4;
  --ng-navy-300:       #5a97d6;
  --ng-navy-200:       #a3c4e8;
  --ng-navy-100:       #d4e4f3;
  --ng-navy-50:        #edf4fb;

  /* --- CRIMSON SCALE --- */
  --ng-crimson-900:    #3d0000;
  --ng-crimson-800:    #5a0000;
  --ng-crimson-700:    #7a0000;
  --ng-crimson-600:    #a40000;
  --ng-crimson-500:    #c80000;
  --ng-crimson-400:    #e81a1a;
  --ng-crimson-300:    #f05252;
  --ng-crimson-200:    #f8a3a3;
  --ng-crimson-100:    #fcd8d8;
  --ng-crimson-50:     #fff0f0;

  /* --- NEUTRALS --- */
  --ng-white:          #ffffff;
  --ng-off-white:      #f7f8fc;
  --ng-gray-50:        #f1f3f8;
  --ng-gray-100:       #e2e6ef;
  --ng-gray-200:       #c6cdd9;
  --ng-gray-300:       #a0aab9;
  --ng-gray-400:       #7a8699;
  --ng-gray-500:       #5a6478;
  --ng-gray-600:       #404958;
  --ng-gray-700:       #2d3440;
  --ng-gray-800:       #1e2430;
  --ng-gray-900:       #0f1420;

  /* --- ACCENT GOLD --- */
  --ng-gold:           #C9A84C;
  --ng-gold-light:     #F0D890;
  --ng-gold-dark:      #8B6914;

  /* --- SEMANTIC --- */
  --ng-success:        #0d7a4e;
  --ng-success-bg:     #e6f7f0;
  --ng-warning:        #b85c00;
  --ng-warning-bg:     #fef3e2;
  --ng-error:          #a40000;
  --ng-error-bg:       #fff0f0;

  /* --- GRADIENTS --- */
  --ng-gradient-hero:    linear-gradient(135deg, #01244A 0%, #023264 60%, #034080 100%);
  --ng-gradient-crimson: linear-gradient(135deg, #7a0000 0%, #a40000 100%);
  --ng-gradient-light:   linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
  --ng-gradient-overlay: linear-gradient(to top, rgba(1,15,30,0.92) 0%, rgba(1,36,74,0.65) 50%, rgba(1,36,74,0.25) 100%);
  --ng-gradient-overlay-left: linear-gradient(to right, rgba(1,15,30,0.95) 0%, rgba(1,36,74,0.7) 50%, rgba(1,36,74,0.0) 100%);
  --ng-gradient-card:    linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(237,244,251,0.95) 100%);

  /* --- TYPOGRAPHY --- */
  --font-display:  "Roboto Slab", serif;
  --font-body:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:     'JetBrains Mono', 'Courier New', monospace;

  /* --- TYPE SCALE --- */
  --text-display-xl:  clamp(2.8rem, 6vw, 5rem);
  --text-display-lg:  clamp(2.2rem, 4.5vw, 3.75rem);
  --text-display-md:  clamp(1.75rem, 3.5vw, 2.75rem);
  --text-display-sm:  clamp(1.4rem, 2.5vw, 2rem);
  --text-xl:          1.25rem;
  --text-lg:          1.125rem;
  --text-base:        1rem;
  --text-sm:          0.875rem;
  --text-xs:          0.75rem;
  --text-mono:        0.9rem;

  /* --- SPACING --- */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;

  /* --- LAYOUT --- */
  --container-max:    1280px;
  --container-wide:   1440px;
  --container-narrow: 800px;
  --container-pad:    clamp(1rem, 4vw, 2.5rem);
  --section-py:       clamp(4rem, 8vw, 7rem);

  /* --- RADIUS --- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  36px;
  --radius-pill: 9999px;

  /* --- SHADOWS --- */
  --shadow-sm:     0 1px 3px rgba(1,36,74,0.08), 0 1px 2px rgba(1,36,74,0.04);
  --shadow-md:     0 4px 12px rgba(1,36,74,0.10), 0 2px 4px rgba(1,36,74,0.06);
  --shadow-lg:     0 10px 30px rgba(1,36,74,0.13), 0 4px 12px rgba(1,36,74,0.08);
  --shadow-xl:     0 20px 50px rgba(1,36,74,0.16), 0 8px 20px rgba(1,36,74,0.10);
  --shadow-card:   0 2px 20px rgba(1,36,74,0.08);
  --shadow-hover:  0 8px 32px rgba(1,36,74,0.18);
  --shadow-crimson:0 8px 24px rgba(164,0,0,0.28);

  /* --- TRANSITIONS --- */
  --transition-fast:   0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* --- ZINDEX --- */
  --z-base:       1;
  --z-dropdown:   100;
  --z-sticky:     200;
  --z-overlay:    300;
  --z-modal:      400;
  --z-toast:      500;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ng-gray-700);
  background-color: var(--ng-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
}

/* --- Skip to content --- */
.ng-skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--ng-crimson);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition-fast);
}
.ng-skip-link:focus { top: 1rem; }

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.ng-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.ng-container-wide {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.ng-container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.ng-section {
  padding-block: var(--section-py);
}

.ng-section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ng-section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-display-md);
  font-weight: 700;
  color: var(--ng-navy);
  line-height: 1.2;
  margin-top: 0.5rem;
}

.ng-section-header p {
  font-size: var(--text-lg);
  color: var(--ng-gray-500);
  max-width: 600px;
  margin-inline: auto;
  margin-top: 0.75rem;
  line-height: 1.7;
}

.ng-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ng-crimson);
  padding: 0.3rem 0.9rem;
  background: var(--ng-crimson-50);
  border-radius: var(--radius-pill);
  border: 1px solid var(--ng-crimson-100);
}

.ng-label--gold {
  color: var(--ng-gold-dark);
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}

.ng-label--navy {
  color: var(--ng-navy-400);
  background: var(--ng-navy-50);
  border-color: var(--ng-navy-100);
}

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3, h4, h5, h6 {
  font-family: var(--font-body);
  line-height: 1.35;
  font-weight: 600;
  color: var(--ng-navy);
}

h1 { font-size: var(--text-display-xl); font-weight: 700; color: var(--ng-navy); }
h2 { font-size: var(--text-display-md); font-weight: 700; color: var(--ng-navy); }
h3 { font-size: var(--text-display-sm); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p { line-height: 1.7; color: var(--ng-gray-600); }

.ng-lead {
  font-size: var(--text-xl);
  line-height: 1.7;
  color: var(--ng-gray-600);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.ng-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.ng-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.ng-btn:hover svg { transform: translateX(3px); }

.ng-btn-primary {
  background: var(--ng-crimson);
  color: #fff;
  box-shadow: var(--shadow-crimson);
}
.ng-btn-primary:hover {
  background: var(--ng-crimson-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(164,0,0,0.38);
}
.ng-btn-primary:active { transform: translateY(0); }

.ng-btn-secondary {
  background: transparent;
  color: var(--ng-navy);
  border-color: var(--ng-navy);
}
.ng-btn-secondary:hover {
  background: var(--ng-navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.ng-btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ng-btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}

.ng-btn-ghost-navy {
  background: transparent;
  color: var(--ng-navy);
  border-color: rgba(1,36,74,0.3);
}
.ng-btn-ghost-navy:hover {
  background: var(--ng-navy-50);
  border-color: var(--ng-navy);
  transform: translateY(-2px);
}

.ng-btn-gold {
  background: var(--ng-gold);
  color: var(--ng-navy-900);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.ng-btn-gold:hover {
  background: var(--ng-gold-light);
  transform: translateY(-2px);
}

.ng-btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}

.ng-btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.0625rem;
}

/* White button for dark backgrounds */
.ng-btn-white {
  background: #fff;
  color: var(--ng-navy);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.ng-btn-white:hover {
  background: var(--ng-navy-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================================
   6. TOP BAR (HP-01)
   ============================================================ */
.ng-topbar {
  background: var(--ng-navy-900);
  color: rgba(255,255,255,0.75);
  font-size: 0.8125rem;
  font-weight: 400;
  padding-block: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: calc(var(--z-sticky) + 10);
  position: relative;
}

.ng-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.ng-topbar-left,
.ng-topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.ng-topbar a,
.ng-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.ng-topbar a:hover { color: #fff; }

.ng-topbar svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.7;
}

.ng-topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.ng-topbar-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.85rem;
  background: var(--ng-crimson);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(164,0,0,0.3);
}
.ng-topbar-demo:hover {
  background: var(--ng-crimson-700);
  color: #fff;
}

/* ============================================================
   7. NAVIGATION (HP-02)
   ============================================================ */
.ng-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  width: 100%;
}

.ng-nav {
  background: var(--ng-navy);
  padding-block: 0;
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.ng-nav.scrolled {
  box-shadow: 0 4px 24px rgba(1,15,30,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ng-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-6);
}

/* Logo */
.ng-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  gap: 0.75rem;
}

.ng-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--ng-crimson);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(164,0,0,0.35);
}

.ng-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ng-logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.ng-logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav Links */
.ng-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.ng-nav-links > li {
  position: relative;
}

.ng-nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.ng-nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: var(--radius-pill);
  transition: width var(--transition-base);
}

.ng-nav-links > li > a:hover,
.ng-nav-links > li > a.active {
  color: #fff;
}

.ng-nav-links > li > a:hover::after,
.ng-nav-links > li > a.active::after {
  width: calc(100% - 1.7rem);
}

.ng-nav-links > li > a svg {
  width: 13px;
  height: 13px;
  opacity: 0.6;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.ng-nav-links > li:hover > a svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown */
.ng-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-base);
  border: 1px solid var(--ng-gray-100);
  z-index: var(--z-dropdown);
}

.ng-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border: 1px solid var(--ng-gray-100);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
}

.ng-nav-links > li:hover .ng-dropdown,
.ng-nav-links > li:focus-within .ng-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.ng-dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.625rem 0.875rem;
  color: var(--ng-gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.ng-dropdown li a:hover {
  background: var(--ng-navy-50);
  color: var(--ng-navy);
  padding-left: 1.1rem;
}

.ng-dropdown li a svg {
  width: 15px;
  height: 15px;
  color: var(--ng-crimson);
  flex-shrink: 0;
}

/* Mega dropdown category label */
.ng-dropdown-label {
  padding: 0.5rem 0.875rem 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ng-gray-400);
}

.ng-dropdown-divider {
  height: 1px;
  background: var(--ng-gray-100);
  margin: 0.375rem 0.5rem;
}

/* Nav Actions */
.ng-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Hamburger */
.ng-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--transition-fast);
  cursor: pointer;
}

.ng-burger:hover { background: rgba(255,255,255,0.14); }

.ng-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  transform-origin: center;
}

.ng-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ng-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ng-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.ng-mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ng-navy-900);
  z-index: calc(var(--z-sticky) + 5);
  display: flex;
  flex-direction: column;
  padding: 6rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.ng-mobile-nav.open { transform: translateX(0); }

.ng-mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.ng-mobile-nav-links > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.ng-mobile-nav-links > li > a:hover { color: #fff; }

.ng-mobile-submenu {
  padding: 0.5rem 0 0.5rem 1rem;
  display: none;
}

.ng-mobile-submenu.open { display: flex; flex-direction: column; gap: 0.25rem; }

.ng-mobile-submenu a {
  display: block;
  padding: 0.6rem 0.75rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.ng-mobile-submenu a:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.ng-mobile-nav-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Mobile close button */
.ng-mobile-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: white;
  z-index: calc(var(--z-sticky) + 6);
}

/* ============================================================
   8. HERO CAROUSEL (HP-03)
   ============================================================ */
.ng-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  max-height: 520px;
  overflow: hidden;
  background: var(--ng-navy-900);
}

.ng-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
}

.ng-hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ng-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.0s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.ng-hero-slide.active {
  opacity: 1;
  pointer-events: all;
}

/* Slide Background Image */
.ng-hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  will-change: transform;
}

.ng-hero-slide.active .ng-hero-slide-bg {
  transform: scale(1.0);
}

/* Gradient Overlays */
.ng-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: var(--ng-gradient-overlay-left);
  z-index: 1;
}

.ng-hero-slide-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,10,20,0.75) 0%, transparent 55%);
  z-index: 1;
}

/* Slide Content */
.ng-hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.ng-hero-content-inner {
  max-width: 700px;
  padding-left: clamp(1.5rem, 5vw, 5rem);
}

.ng-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ng-gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.2s ease, transform 0.6s 0.2s ease;
}

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

.ng-hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--ng-gold);
  border-radius: var(--radius-pill);
}

.ng-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-display-lg);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s 0.35s ease, transform 0.6s 0.35s ease;
}

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

.ng-hero-title span {
  color: var(--ng-gold);
  position: relative;
}

.ng-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.5s ease, transform 0.6s 0.5s ease;
}

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

.ng-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.65s ease, transform 0.6s 0.65s ease;
}

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

.ng-hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s 0.8s ease, transform 0.6s 0.8s ease;
}

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

.ng-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.ng-hero-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--ng-gold);
}

.ng-hero-trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

/* Carousel Controls */
.ng-hero-controls {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ng-hero-dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ng-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.ng-hero-dot.active {
  width: 28px;
  background: var(--ng-crimson);
}

.ng-hero-dot:hover:not(.active) {
  background: rgba(255,255,255,0.6);
}

/* Prev / Next Arrows */
.ng-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ng-hero-arrow:hover {
  background: var(--ng-crimson);
  border-color: var(--ng-crimson);
  transform: translateY(-50%) scale(1.08);
}

.ng-hero-arrow svg { width: 22px; height: 22px; }

.ng-hero-prev { left: clamp(1rem, 3vw, 2.5rem); }
.ng-hero-next { right: clamp(1rem, 3vw, 2.5rem); }

/* Progress bar */
.ng-hero-progress {
  width: 100%;
  max-width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.ng-hero-progress-bar {
  height: 100%;
  background: var(--ng-crimson);
  width: 0%;
  border-radius: var(--radius-pill);
  transition: width linear;
}

/* Badge overlay on hero */
.ng-hero-badge {
  position: absolute;
  top: clamp(6rem, 12vw, 9rem);
  right: clamp(1rem, 5vw, 5rem);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  z-index: 10;
  max-width: 220px;
  animation: ng-float 4s ease-in-out infinite;
}

@keyframes ng-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.ng-hero-badge-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ng-gold);
  line-height: 1;
}

.ng-hero-badge-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* ============================================================
   9. TRUST STRIP / STATS BAR (HP-04)
   ============================================================ */
.ng-trust-strip {
  background: var(--ng-navy);
  padding-block: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.ng-trust-strip-inner {
  display: flex;
  align-items: stretch;
}

.ng-trust-stat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem 1rem;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition-fast);
  cursor: default;
}

.ng-trust-stat:last-child { border-right: none; }

.ng-trust-stat:hover { background: rgba(255,255,255,0.04); }

.ng-trust-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(164,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(164,0,0,0.3);
}

.ng-trust-stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--ng-crimson-300);
}

.ng-trust-stat-text { flex: 1; min-width: 0; }

.ng-trust-stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ng-trust-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 0.2rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Counter animation */
.ng-count { transition: none; }

/* ============================================================
   10. SCROLL REVEAL ANIMATIONS — v2
   Supports: data-delay="Nms" on any element for custom delay.
   All transitions use a spring-like cubic-bezier.
   Hero elements get ng-hero-animate class — fires on page load.
   ============================================================ */

/* All reveal types share these custom properties */
[class*="ng-reveal"] {
  --reveal-duration: 0.75s;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-delay: 0ms;
}

@media (prefers-reduced-motion: no-preference) {

  /* ── Base: fade up ── */
  .ng-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
      opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
      transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
    will-change: opacity, transform;
  }
  .ng-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Slide from left ── */
  .ng-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition:
      opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
      transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
    will-change: opacity, transform;
  }
  .ng-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
  }

  /* ── Slide from right ── */
  .ng-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition:
      opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
      transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
    will-change: opacity, transform;
  }
  .ng-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
  }

  /* ── Scale up ── */
  .ng-reveal-scale {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    transition:
      opacity 0.65s var(--reveal-ease) var(--reveal-delay),
      transform 0.65s var(--reveal-ease) var(--reveal-delay);
    will-change: opacity, transform;
  }
  .ng-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  /* ── Fade only ── */
  .ng-reveal-fade {
    opacity: 0;
    transition: opacity 0.8s ease var(--reveal-delay);
    will-change: opacity;
  }
  .ng-reveal-fade.revealed { opacity: 1; }

  /* ── Stagger container — children reveal sequentially ──
     Add data-stagger="80" to control ms between children.
     Default: 90ms gap. */
  .ng-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.65s var(--reveal-ease),
      transform 0.65s var(--reveal-ease);
    will-change: opacity, transform;
  }
  .ng-stagger.revealed > * { opacity: 1; transform: translateY(0); }

  /* Delay steps — set by JS via inline style --reveal-delay per child */
  .ng-stagger.revealed > *:nth-child(1)  { transition-delay: calc(var(--stagger-base, 0ms) + 0ms); }
  .ng-stagger.revealed > *:nth-child(2)  { transition-delay: calc(var(--stagger-base, 0ms) + 75ms); }
  .ng-stagger.revealed > *:nth-child(3)  { transition-delay: calc(var(--stagger-base, 0ms) + 150ms); }
  .ng-stagger.revealed > *:nth-child(4)  { transition-delay: calc(var(--stagger-base, 0ms) + 225ms); }
  .ng-stagger.revealed > *:nth-child(5)  { transition-delay: calc(var(--stagger-base, 0ms) + 300ms); }
  .ng-stagger.revealed > *:nth-child(6)  { transition-delay: calc(var(--stagger-base, 0ms) + 375ms); }
  .ng-stagger.revealed > *:nth-child(7)  { transition-delay: calc(var(--stagger-base, 0ms) + 450ms); }
  .ng-stagger.revealed > *:nth-child(8)  { transition-delay: calc(var(--stagger-base, 0ms) + 525ms); }
  .ng-stagger.revealed > *:nth-child(9)  { transition-delay: calc(var(--stagger-base, 0ms) + 600ms); }
  .ng-stagger.revealed > *:nth-child(10) { transition-delay: calc(var(--stagger-base, 0ms) + 675ms); }
  .ng-stagger.revealed > *:nth-child(11) { transition-delay: calc(var(--stagger-base, 0ms) + 750ms); }
  .ng-stagger.revealed > *:nth-child(12) { transition-delay: calc(var(--stagger-base, 0ms) + 825ms); }

  /* Legacy alias so existing .ng-stagger-children still works */
  .ng-stagger-children > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--reveal-ease), transform 0.6s var(--reveal-ease);
  }
  .ng-stagger-children.revealed > *:nth-child(1)  { opacity:1; transform:translateY(0); transition-delay:0ms; }
  .ng-stagger-children.revealed > *:nth-child(2)  { opacity:1; transform:translateY(0); transition-delay:90ms; }
  .ng-stagger-children.revealed > *:nth-child(3)  { opacity:1; transform:translateY(0); transition-delay:180ms; }
  .ng-stagger-children.revealed > *:nth-child(4)  { opacity:1; transform:translateY(0); transition-delay:270ms; }
  .ng-stagger-children.revealed > *:nth-child(5)  { opacity:1; transform:translateY(0); transition-delay:360ms; }
  .ng-stagger-children.revealed > *:nth-child(6)  { opacity:1; transform:translateY(0); transition-delay:450ms; }

  /* ────────────────────────────────────────
     HERO PAGE-LOAD ANIMATIONS
     These fire immediately on page load,
     not on scroll. Staggered by data-order.
  ──────────────────────────────────────── */

  /* Everything inside the hero that should animate waits by default */
  .ng-hero-slide.active .ng-hero-label,
  .ng-hero-slide.active .ng-hero-title,
  .ng-hero-slide.active .ng-hero-subtitle,
  .ng-hero-slide.active .ng-slide-certs,
  .ng-hero-slide.active .ng-hero-actions,
  .ng-hero-slide.active .ng-hero-trust {
    /* already handled per-element in existing hero CSS via opacity+transform */
  }

  /* Nav + topbar load-in */
  .ng-header {
    animation: ng-header-in 0.6s cubic-bezier(0.22,1,0.36,1) both;
  }
  @keyframes ng-header-in {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .ng-announcement {
    animation: ng-header-in 0.5s cubic-bezier(0.22,1,0.36,1) 0.05s both;
  }
  .ng-topbar {
    animation: ng-header-in 0.5s cubic-bezier(0.22,1,0.36,1) 0.1s both;
  }
}


/* ============================================================
   11. FORMS — SHARED STYLES
   ============================================================ */
.ng-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--ng-gray-100);
}

.ng-form-card-header {
  background: var(--ng-navy);
  padding: 1.5rem 1.75rem;
  position: relative;
  overflow: hidden;
}

.ng-form-card-header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(164,0,0,0.2);
}

.ng-form-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.ng-form-card-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
  position: relative;
  z-index: 1;
}

.ng-form-body {
  padding: 1.75rem;
}

.ng-field {
  margin-bottom: 1rem;
}

.ng-field label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--ng-gray-700);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.ng-field input,
.ng-field select,
.ng-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--ng-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ng-gray-800);
  background: var(--ng-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.ng-field input::placeholder,
.ng-field textarea::placeholder {
  color: var(--ng-gray-300);
}

.ng-field input:focus,
.ng-field select:focus,
.ng-field textarea:focus {
  border-color: var(--ng-navy-400);
  box-shadow: 0 0 0 3px rgba(4,85,168,0.12);
}

.ng-field input.error,
.ng-field select.error {
  border-color: var(--ng-crimson);
  box-shadow: 0 0 0 3px rgba(164,0,0,0.10);
}

.ng-field-error {
  display: block;
  font-size: 0.78rem;
  color: var(--ng-crimson);
  margin-top: -1.0rem;
  margin-left: 20px;
  min-height: 1em;
  font-weight: 500;
}

.ng-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ng-field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.ng-field-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--ng-navy);
  cursor: pointer;
}

.ng-field-checkbox label {
  font-size: 0.8125rem;
  color: var(--ng-gray-500);
  line-height: 1.5;
  cursor: pointer;
}

.ng-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  color: var(--ng-gray-400);
  margin-top: 0.75rem;
  text-align: center;
}

.ng-form-note svg { width: 12px; height: 12px; color: var(--ng-success); }

/* Select custom arrow */
.ng-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

/* Form success state */
.ng-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.75rem;
  text-align: center;
  gap: 1rem;
}

.ng-form-success.visible { display: flex; }

.ng-form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ng-success-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ng-form-success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--ng-success);
}

.ng-form-success h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ng-navy);
}

.ng-form-success p {
  font-size: 0.9rem;
  color: var(--ng-gray-500);
}

/* ============================================================
   12. WHATSAPP FLOATING BUTTON
   ============================================================ */
.ng-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: var(--z-toast);
  text-decoration: none;
  transition: all var(--transition-spring);
  animation: ng-pulse-wa 3s ease-in-out infinite;
}

.ng-wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.ng-wa-float svg { width: 28px; height: 28px; }

@keyframes ng-pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* ============================================================
   13. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .ng-nav-links { gap: 0; }
  .ng-nav-links > li > a { padding: 0.5rem 0.65rem; font-size: 0.8125rem; }
  .ng-hero-badge { display: none; }
}

/* Large Mobile / Small Tablet */
@media (max-width: 768px) {
  .ng-topbar { display: none; }

  .ng-nav-links { display: none; }
  .ng-burger { display: flex; }
  .ng-nav-actions .ng-btn { display: none; }
  .ng-nav-actions .ng-btn-primary { display: inline-flex; }

  .ng-hero {
    height: 70vh;
    min-height: 480px;
    max-height: 620px;
  }

  .ng-hero-content-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
  }

  .ng-hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .ng-hero-subtitle { font-size: 0.95rem; }
  .ng-hero-actions { gap: 0.75rem; }
  .ng-hero-actions .ng-btn { padding: 0.75rem 1.5rem; font-size: 0.875rem; }

  .ng-hero-prev,
  .ng-hero-next { display: none; }

  .ng-trust-strip-inner {
    flex-wrap: wrap;
  }

  .ng-trust-stat {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .ng-trust-stat:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.07);
  }

  .ng-field-row { grid-template-columns: 1fr; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .ng-hero { height: 85vh; }
  .ng-hero-title { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .ng-hero-actions { flex-direction: column; }
  .ng-hero-actions .ng-btn { width: 100%; justify-content: center; }
  .ng-trust-stat { flex: 1 1 100%; border-right: none; }
  .ng-trust-stat:nth-child(odd) { border-right: none; }
}

/* ============================================================
   14. UTILITY CLASSES
   ============================================================ */
.w-full { width: 100%; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.hidden { display: none !important; }

/* ============================================================
   15. PRINT
   ============================================================ */
@media print {
  .ng-topbar,
  .ng-header,
  .ng-hero-controls,
  .ng-hero-arrow,
  .ng-wa-float,
  .ng-burger,
  .ng-mobile-nav { display: none !important; }
}


  /* Announcement */
  .ng-announcement {
    background: var(--ng-navy-900);
    color: rgba(255,255,255,0.78);
    text-align: center; padding: 0.5rem 2.5rem;
    font-size: 0.8rem; position: relative; z-index: 202;
  }
  .ng-announcement a { color: var(--ng-gold); font-weight: 600; border-bottom: 1px solid rgba(201,168,76,0.4); }
  .ng-announcement a:hover { border-color: var(--ng-gold); }
  .ng-announcement-close {
    position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08); border: none; color: rgba(255,255,255,0.5);
    width: 20px; height: 20px; border-radius: 50%; cursor: pointer; font-size: 13px;
    display: flex; align-items: center; justify-content: center; transition: all 0.15s;
  }
  .ng-announcement-close:hover { background: rgba(255,255,255,0.18); color: #fff; }

  /* Top bar — white version */
  .ng-topbar {
    background: #fff;
    border-bottom: 1px solid #f0f2f5;
    padding-block: 0.45rem;
  }
  .ng-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
  .ng-topbar-left, .ng-topbar-right { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
  .ng-topbar a, .ng-topbar-item {
    display: inline-flex; align-items: center; gap: 0.35rem;
    color: var(--ng-gray-500); font-size: 0.78rem; font-weight: 500;
    text-decoration: none; white-space: nowrap; transition: color 0.15s;
  }
  .ng-topbar a:hover { color: var(--ng-navy); }
  .ng-topbar svg { width: 12px; height: 12px; flex-shrink: 0; }
  .ng-topbar-divider { width: 1px; height: 12px; background: var(--ng-gray-100); flex-shrink: 0; }
  .ng-topbar-demo {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.3rem 0.9rem; background: var(--ng-crimson); color: #fff !important;
    border-radius: 99px; font-size: 0.75rem; font-weight: 600; text-decoration: none;
    transition: all 0.2s; box-shadow: 0 2px 8px rgba(164,0,0,0.22);
  }
  .ng-topbar-demo:hover { background: var(--ng-crimson-700); transform: translateY(-1px); }
  .ng-topbar-demo svg { width: 11px; height: 11px; }

  /* ---- NAV: white, clean ---- */
  .ng-header { position: sticky; top: 0; z-index: 200; width: 100%; }
  .ng-nav {
    background: #fff;
    border-bottom: 1px solid #eef0f4;
    box-shadow: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .ng-nav.scrolled {
    box-shadow: 0 2px 28px rgba(1,36,74,0.07);
    border-bottom-color: transparent;
  }
  .ng-nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; gap: 1.5rem;
  }

  /* Logo */
  .ng-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
  .ng-logo img { height: 40px; width: auto; object-fit: contain; display: block; }

  /* Nav links row + sliding indicator */
  .ng-nav-links {
    display: flex; align-items: center; list-style: none;
    flex: 1; justify-content: center; position: relative;
  }
  /* The magnetic sliding bar */
  .ng-nav-indicator {
    position: absolute;
    bottom: -1px;
    left: 0; width: 0;
    height: 2px;
    background: var(--ng-crimson);
    border-radius: 99px;
    transition: left 0.26s cubic-bezier(0.4,0,0.2,1),
                width 0.26s cubic-bezier(0.4,0,0.2,1),
                opacity 0.18s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
  }
  .ng-nav-links:hover .ng-nav-indicator,
  .ng-nav-links:focus-within .ng-nav-indicator { opacity: 1; }

  .ng-nav-links > li { position: relative; }
  .ng-nav-links > li > a {
    display: flex; align-items: center; gap: 0.22rem;
    padding: 0 0.65rem; height: 68px;
    color: var(--ng-gray-700); font-size: 1rem; font-weight: 500;
    text-decoration: none; white-space: nowrap; transition: color 0.18s;
  }
  .ng-nav-links > li > a:hover { color: var(--ng-navy); }
  .ng-nav-links > li > a.active { color: var(--ng-navy); font-weight: 600; }

  /* Static underline for current page */
  .ng-nav-links > li > a.active::after {
    content: ''; position: absolute;
    bottom: -1px;
    height: 2px; background: var(--ng-navy); border-radius: 99px;
  }
  .ng-nav-links > li > a svg {
    width: 15px; height: 15px; color: var(--ng-gray-300);
    transition: transform 0.22s ease, color 0.18s; flex-shrink: 0;
  }
  .ng-nav-links > li:hover > a svg { transform: rotate(180deg); color: var(--ng-crimson); }

  /* Dropdown */
  .ng-dropdown {
    position: absolute; top: calc(100% + 2px); left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff; border-radius: 14px;
    box-shadow: 0 12px 40px rgba(1,36,74,0.12), 0 2px 8px rgba(1,36,74,0.05);
    min-width: 260px; padding: 0.5rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    border: 1px solid #eef0f4; z-index: 100;
  }
  .ng-nav-links > li:hover .ng-dropdown,
  .ng-nav-links > li:focus-within .ng-dropdown {
    opacity: 1; visibility: visible; pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }
  .ng-dropdown li a {
    display: flex; align-items: center; gap: 0.65rem;
    padding: 0.6rem 0.85rem; color: var(--ng-gray-600);
    font-size: 0.875rem; font-weight: 500; border-radius: 9px;
    text-decoration: none; transition: all 0.14s;
  }
  .ng-dropdown li a:hover { background: var(--ng-navy-50); color: var(--ng-navy); padding-left: 1.05rem; }
  .ng-dropdown li a svg { width: 15px; height: 15px; color: var(--ng-crimson); flex-shrink: 0; }
  .ng-dropdown-label {
    padding: 0.5rem 0.85rem 0.2rem; font-size: 0.67rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--ng-gray-300);
  }
  .ng-dropdown-divider { height: 1px; background: #eef0f4; margin: 0.35rem 0.5rem; }

  /* Nav actions */
  .ng-nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

  /* Hamburger (light bg version) */
  .ng-burger {
    display: none; flex-direction: column; justify-content: center; align-items: center;
    width: 38px; height: 38px; gap: 5px; border-radius: 9px;
    background: var(--ng-gray-50); border: 1px solid #eef0f4;
    transition: background 0.15s; cursor: pointer;
  }
  .ng-burger:hover { background: var(--ng-gray-100); }
  .ng-burger span {
    display: block; width: 20px; height: 1.5px;
    background: var(--ng-navy); border-radius: 99px;
    transition: all 0.28s ease; transform-origin: center;
  }
  .ng-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .ng-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .ng-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile nav — white */
  .ng-mobile-nav {
    position: fixed; inset: 0; background: #fff; z-index: 250;
    display: flex; flex-direction: column; padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto; box-shadow: -8px 0 40px rgba(1,36,74,0.1);
  }
  .ng-mobile-nav.open { transform: translateX(0); }
  .ng-mobile-close {
    position: fixed; top: 1.1rem; right: 1.1rem; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--ng-gray-50); border: 1px solid #eef0f4; border-radius: 9px;
    color: var(--ng-navy); cursor: pointer; z-index: 260; transition: background 0.15s;
  }
  .ng-mobile-close:hover { background: var(--ng-gray-100); }
  .ng-mobile-nav-links { list-style: none; display: flex; flex-direction: column; flex: 1; }
  .ng-mobile-nav-links > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0; color: var(--ng-gray-700); font-size: 1.05rem; font-weight: 500;
    border-bottom: 1px solid var(--ng-gray-100); text-decoration: none; transition: color 0.15s;
  }
  .ng-mobile-nav-links > li > a:hover { color: var(--ng-navy); }
  .ng-mobile-submenu { padding: 0.3rem 0 0.3rem 0.5rem; display: none; }
  .ng-mobile-submenu.open { display: flex; flex-direction: column; gap: 0; }
  .ng-mobile-submenu a {
    display: block; padding: 0.55rem 0.75rem; color: var(--ng-gray-500);
    font-size: 0.875rem; border-radius: 8px; text-decoration: none; transition: all 0.13s;
  }
  .ng-mobile-submenu a:hover { color: var(--ng-navy); background: var(--ng-navy-50); }
  .ng-mobile-nav-footer { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

    @media (max-width: 1060px) {
    .ng-nav-links > li > a { padding: 0 0.7rem; font-size: 0.8125rem; }
  }
  @media (max-width: 820px) {
    .ng-topbar { display: none; }
    .ng-nav-links { display: none; }
    .ng-burger { display: flex; }
    .ng-nav-actions .ng-btn-ghost-navy { display: none; }
  }
/* ================================================================
     HP-08 — DARK STATS SECTION
  ================================================================ */
  .ng-stats-dark {
    position: relative;
    background: var(--ng-navy);
    overflow: hidden;
    padding: clamp(4rem,8vw,6rem) 0;
  }
  .ng-stats-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    opacity: 0.35;
  }
  .ng-stats-inner { position: relative; z-index: 1; }

  .ng-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .ng-stats-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
  }
  .ng-stats-item:last-child { border-right: none; }

  .ng-stats-num {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.045em;
    color: #fff;
    margin-bottom: 0.6rem;
  }
  .ng-stats-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
  }
  .ng-stats-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
  }

  .ng-label--navy {
    color: var(--ng-navy-300);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
  }

  @media (max-width: 768px) {
    .ng-stats-grid { grid-template-columns: repeat(2,1fr); }
    .ng-stats-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .ng-stats-item:nth-child(2n) { border-right: none; }
    .ng-stats-item:nth-child(3), .ng-stats-item:nth-child(4) { border-bottom: none; }
  }

    /* ================================================================
     HP-12 — FOOTER
  ================================================================ */
  .ng-footer {
    background: var(--ng-navy-400);
    padding-top: clamp(3rem,6vw,5rem);
  }

.footer-shimmer-top {
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #a40000 25%,
    #C9A84C 50%,
    #a40000 75%,
    transparent
  );
  animation: ng-shimmer-line 4s ease-in-out infinite;
}

@keyframes ng-shimmer-line {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1;   }
}
  .ng-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: clamp(2rem,4vw,3.5rem);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .ng-footer-logo { display: inline-block; margin-bottom: 1rem; }

  .ng-footer-about {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .ng-footer-social {
    display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  }
  .ng-footer-social-link {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .ng-footer-social-link:hover {
    background: var(--ng-crimson); color: #fff;
    border-color: var(--ng-crimson);
    transform: translateY(-2px);
  }
  .ng-footer-social-link svg { width: 16px; height: 16px; }
  .ng-footer-social-link[data-network="youtube"] { color: #ff0000; border-color: rgba(255,0,0,0.24); background: rgba(255,0,0,0.08); }
  .ng-footer-social-link[data-network="linkedin"] { color: #0a66c2; border-color: rgba(10,102,194,0.24); background: rgba(10,102,194,0.08); }
  .ng-footer-social-link[data-network="facebook"] { color: #1877f2; border-color: rgba(24,119,242,0.24); background: rgba(24,119,242,0.08); }
  .ng-footer-social-link[data-network="instagram"] { color: #e4405f; border-color: rgba(228,64,95,0.24); background: rgba(228,64,95,0.08); }
  .ng-footer-social-link[data-network="whatsapp"] { color: #25d366; border-color: rgba(37,211,102,0.24); background: rgba(37,211,102,0.08); }
  .ng-footer-social-link[data-network]:hover { color:#fff; }
  .ng-footer-social-link[data-network="youtube"]:hover { background:#ff0000; border-color:#ff0000; }
  .ng-footer-social-link[data-network="linkedin"]:hover { background:#0a66c2; border-color:#0a66c2; }
  .ng-footer-social-link[data-network="facebook"]:hover { background:#1877f2; border-color:#1877f2; }
  .ng-footer-social-link[data-network="instagram"]:hover { background:#e4405f; border-color:#e4405f; }
  .ng-footer-social-link[data-network="whatsapp"]:hover { background:#25d366; border-color:#25d366; }

  .ng-footer-col-title {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.1rem; font-family: var(--font-body);
  }

  .ng-footer-links {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.1rem;
  }
  .ng-footer-links li a {
    display: flex; align-items: center; gap: 0.35rem;
    font-size: 0.84rem; color: rgba(255,255,255,0.9);
    text-decoration: none; padding: 0.28rem 0;
    transition: color 0.15s, padding-left 0.2s;
  }
  .ng-footer-links li a:hover { color: rgba(255,255,255,1); padding-left: 4px; }
  .ng-footer-links li a svg { width: 12px; height: 12px; opacity: 0.5; flex-shrink: 0; }

  .ng-footer-contact {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.75rem;
  }
  .ng-footer-contact li {
    display: flex; align-items: flex-start; gap: 0.65rem;
    font-size: 0.84rem; color: rgba(255,255,255,0.9);
    line-height: 1.5;
  }
  .ng-footer-contact li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
  .ng-footer-contact li strong { color: rgba(255,255,255,0.9); }
  .ng-footer-contact li a {
    color: rgba(255,255,255,0.9); text-decoration: none;
    transition: color 0.15s;
  }
  .ng-footer-contact li a:hover { color: #fff; }

  .ng-footer-bottom {
    padding: 1.25rem 0;
  }
  .ng-footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 0.75rem;
  }
  .ng-footer-copy {
    font-size: 0.8rem; color: rgba(255,255,255,0.68); margin: 0;
  }
  .ng-footer-legal {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.78rem;
  }
  .ng-footer-legal a {
    color: rgba(255,255,255,0.68); text-decoration: none;
    transition: color 0.15s;
  }
  .ng-footer-legal a:hover { color: rgba(255,255,255,0.8); }
  .ng-footer-legal span { color: rgba(255,255,255,0.9); }

  @media (max-width: 900px) {
    .ng-footer-grid { grid-template-columns: 1fr 1fr; }
    .ng-footer-col--brand { grid-column: span 2; }
  }
  @media (max-width: 540px) {
    .ng-footer-grid { grid-template-columns: 1fr; }
    .ng-footer-col--brand { grid-column: span 1; }
    .ng-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  }


    /* ================================================================
     HP-11 — CTA SECTION
  ================================================================ */
  .ng-cta-section {
    background: var(--ng-navy-50);
    position: relative;
    overflow: hidden;
    padding: clamp(4rem,8vw,6rem) 0;
  }
  /* Dot pattern background */
  .ng-cta-bg-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(1,36,74,0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
  }
  .ng-cta-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(2.5rem,5vw,5rem);
    align-items: start;
  }
  .ng-cta-copy { padding-top: 0.5rem; }

  .ng-cta-form-wrap { position: sticky; top: 100px; }
  .ng-cta-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--ng-gray-100);
    overflow: hidden;
    padding: 1.75rem;
  }
  .ng-cta-form-title {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--ng-crimson);
    margin-bottom: 1rem; font-family: var(--font-mono);
  }

  @media (max-width: 860px) {
    .ng-cta-inner { grid-template-columns: 1fr; }
    .ng-cta-form-wrap { position: static; }
  }

  /* ── CTA section ── */
.cta-dot-bg {
  background-image: radial-gradient(circle, rgba(1,36,74,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.cta-shimmer::after {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, transparent, #a40000 30%, #a40000 70%, transparent);
}
.form-input:focus { outline: none; border-color: #a40000; box-shadow: 0 0 0 3px rgba(164,0,0,0.09); }



/* ══════════════════════════════════════
   CTA — light white bg
══════════════════════════════════════ */
.cp-cta-section {
  background: #fff;
  position: relative; overflow: hidden;
  padding: clamp(4rem,8vw,6rem) 0;
  border-top: 1px solid var(--ng-gray-100);
}

/* Radial blob A — navy tint, top right */
.cp-cta-blob-a {
  position: absolute; right: -120px; top: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(1,36,74,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Radial blob B — crimson tint, bottom left */
.cp-cta-blob-b {
  position: absolute; left: -80px; bottom: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(164,0,0,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Dot grid — navy dots on white */
.cp-cta-dots-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(1,36,74,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Keep shimmer at top */
.cp-cta-shimmer {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #a40000 30%, #C9A84C 50%, #a40000 70%, transparent);
}

/* Layout */
.cp-cta-container {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(1rem,4vw,2.5rem);
  display: grid; grid-template-columns: 1fr 400px;
  gap: 4rem; align-items: center;
}
@media (max-width: 960px) {
  .cp-cta-container { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Text — all flip to dark */
.cp-cta-h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem,3.2vw,2.75rem);
  color: var(--ng-navy);                  /* was #fff */
  line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 0.9rem;
}
.cp-cta-h2 em { color: var(--ng-crimson); font-style: normal; } /* was gold */

.cp-cta-sub {
  font-family: var(--font-body); font-size: 1rem;
  color: var(--ng-gray-500);              /* was rgba(211,228,248,0.78) */
  line-height: 1.65; margin-bottom: 2rem;
}

/* Stats */
.cp-cta-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.cp-stat-num {
  font-family: 'DM Sans', sans-serif; font-size: 2rem;
  font-weight: 800; color: var(--ng-navy); /* was #fff */
  letter-spacing: -0.04em; line-height: 1;
}
.cp-stat-lbl {
  font-family: var(--font-body); font-size: 0.73rem;
  color: var(--ng-gray-400);              /* was rgba(255,255,255,0.48) */
  margin-top: 0.2rem;
}

/* Bullet list */
.cp-cta-bullets { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.cp-cta-bullet {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.84rem;
  color: var(--ng-gray-600);              /* was rgba(211,228,248,0.72) */
}
.cp-cta-bullet i { width: 15px; height: 15px; color: var(--ng-success); flex-shrink: 0; } /* was gold */

/* Form card — elevated shadow on white bg */
.cp-form-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--ng-gray-100);
  box-shadow: 0 8px 40px rgba(1,36,74,0.12), 0 2px 8px rgba(1,36,74,0.06);
  overflow: hidden;
}

/* Form header — keep navy gradient */
.cp-form-head {
  background: linear-gradient(135deg, #01244A 0%, #023264 100%);
  padding: 1.35rem 1.5rem; position: relative; overflow: hidden;
}
.cp-form-head::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #a40000 30%, #C9A84C 50%, #a40000 70%, transparent);
}
.cp-form-head-title { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: #fff; }
.cp-form-head-sub { font-family: var(--font-body); font-size: 0.77rem; color: rgba(255,255,255,0.52); margin-top: 0.2rem; }
.cp-form-body { padding: 1.5rem; }




.ng-video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
}

.ng-video-thumb-img {
  display: block;
  width: 100%;
}
.ng-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 15, 30, 0.35);
}

.ng-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(164, 0, 0, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.ng-play-btn:hover {
  transform: scale(1.1);
  background: var(--ng-crimson);
}
  .tsl2-wrap {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e6ef;
  }

  /* ── Tab bar ── */
  .tsl2-tabs {
    display: flex;
    background: #01244A;
    padding: 1.25rem 1.5rem;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
  }
  .tsl2-tabs-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-right: 4px;
    flex-shrink: 0;
    font-family: 'JetBrains Mono', monospace;
  }
  .tsl2-tab {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 9999px;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all .18s;
    letter-spacing: 0.01em;
  }
  .tsl2-tab:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
  .tsl2-tab.active { background: #fff; color: #01244A; border-color: #fff; }
  .tsl2-tab[data-c="ccie"].active { background: #C9A84C; color: #01244A; border-color: #C9A84C; }

  /* ── Panel ── */
  .tsl2-panel { display: none; padding: 0; }
  .tsl2-panel.active { display: block; }

  /* ── Track ── */
  .tsl2-track { display: flex; flex-direction: column; }

  /* ── Step ── */
  .tsl2-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #e2e6ef;
    transition: background .15s;
  }
  .tsl2-step:last-child { border-bottom: none; }
  .tsl2-step:hover { background: #fafbff; }
  .tsl2-step.open { background: #fafbff; }

  /* spine line */
  .tsl2-step:not(:last-child) .tsl2-node-col::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 72px;
    bottom: 0;
    width: 2px;
    background: #e2e6ef;
    z-index: 0;
  }

  /* left node col */
  .tsl2-node-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    position: relative;
  }

  /* node circle */
  .tsl2-node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    z-index: 1;
    position: relative;
    flex-shrink: 0;
    transition: transform .2s, box-shadow .2s;
  }
  .tsl2-step:hover .tsl2-node { transform: scale(1.1); }
  .tsl2-step.open .tsl2-node { transform: scale(1.1); box-shadow: 0 0 0 5px rgba(255,255,255,1), 0 0 0 7px var(--nc,#ccc); }

  /* right content col */
  .tsl2-content-col {
    padding: 18px 1.5rem 18px 1.5rem;
  }

  /* header row */
  .tsl2-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 36px;
  }
  .tsl2-step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--nc, #aaa);
    background: color-mix(in srgb, var(--nc, #aaa) 10%, transparent);
    padding: 2px 8px;
    border-radius: 9999px;
    flex-shrink: 0;
  }
  .tsl2-title {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #01244A;
    line-height: 1.2;
    flex: 1;
  }
  .tsl2-sub {
    font-size: 12px;
    color: #7a8699;
    margin-top: 2px;
    font-family: 'DM Sans', system-ui, sans-serif;
  }
  .tsl2-chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f3f8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s, background .2s;
    margin-left: auto;
  }
  .tsl2-chevron svg { width: 12px; height: 12px; stroke: #7a8699; transition: stroke .2s; }
  .tsl2-step.open .tsl2-chevron { background: #01244A; transform: rotate(90deg); }
  .tsl2-step.open .tsl2-chevron svg { stroke: #fff; }

  /* ── Expanded body ── */
  .tsl2-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .38s cubic-bezier(0.4,0,0.2,1), opacity .28s;
  }
  .tsl2-step.open .tsl2-body { max-height: 260px; opacity: 1; }

  .tsl2-card {
    margin: 0 0 1.25rem 0;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e2e6ef;
    border-left: 4px solid var(--nc, #ccc);
    padding: 1.1rem 1.25rem;
    box-shadow: 0 4px 16px rgba(1,36,74,.06);
  }

  /* salary */
  .tsl2-salary-wrap {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    margin-bottom: .6rem;
  }
  .tsl2-salary {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #01244A;
    letter-spacing: -0.05em;
    line-height: 1;
  }
  .tsl2-salary-unit {
    font-size: 13px;
    color: #7a8699;
    font-weight: 600;
  }
  .tsl2-card.entry .tsl2-salary { color: #a0aab9; font-size: 1.5rem; }
  .tsl2-card.entry .tsl2-uplift { display: none; }
  .tsl2-card.entry .tsl2-bar-wrap { opacity: 0.3; }

  /* uplift badge */
  .tsl2-uplift {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    color: #0d7a4e;
    background: #e6f7f0;
    padding: 4px 10px;
    border-radius: 9999px;
    margin-bottom: .75rem;
    letter-spacing: 0.01em;
    font-family: 'DM Sans', system-ui, sans-serif;
  }
  .tsl2-uplift svg { width: 12px; height: 12px; flex-shrink: 0; }

  /* bar */
  .tsl2-bar-wrap {
    background: #e2e6ef;
    border-radius: 9999px;
    height: 6px;
    overflow: hidden;
    margin-bottom: .75rem;
    position: relative;
  }
  .tsl2-bar {
    height: 100%;
    border-radius: 9999px;
    background: var(--nc, #01244A);
    width: 0;
    transition: width 1.1s cubic-bezier(0.22,1,0.36,1) .05s;
    position: relative;
  }
  .tsl2-step.open .tsl2-bar { width: var(--bw, 40%); }
  /* shimmer on bar */
  .tsl2-bar::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 20px; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.5));
    border-radius: 9999px;
  }

  /* roles */
  .tsl2-roles { display: flex; flex-wrap: wrap; gap: 5px; }
  .tsl2-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    background: color-mix(in srgb, var(--nc, #01244A) 8%, #fff);
    color: color-mix(in srgb, var(--nc, #01244A) 80%, #000);
    border: 1px solid color-mix(in srgb, var(--nc, #01244A) 15%, transparent);
    font-family: 'DM Sans', system-ui, sans-serif;
  }
  .tsl2-card.entry .tsl2-pill { background: #f1f3f8; color: #7a8699; border-color: #e2e6ef; }

  @media (max-width: 480px) {
    .tsl2-node { width: 42px; height: 42px; font-size: .9rem; }
    .tsl2-step { grid-template-columns: 58px 1fr; }
    .tsl2-salary { font-size: 1.5rem; }
    .tsl2-tabs { padding: 1rem; gap: 6px; }
  }
