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

:root {
  --navy:   #1B2A4A;
  --navy2:  #243660;
  --gold:   #C89B3C;
  --gold2:  #E8B84B;
  --bg:     #FFFFFF;
  --bg2:    #F7F8FA;
  --bg3:    #EFF1F5;
  --white:  #FFFFFF;
  --grey1:  rgba(27,42,74,.03);
  --grey2:  rgba(27,42,74,.06);
  --grey3:  rgba(27,42,74,.5);
  --text:   #1B2A4A;
  --text2:  rgba(27,42,74,.65);
  --accent: #1B2A4A;
  --shadow: 0 4px 24px rgba(27,42,74,.06);
  --shadow2: 0 8px 48px rgba(27,42,74,.1);
  --radius: 14px;
  --glow-gold: 0 0 20px rgba(200,155,60,.15);
  --glow-navy: 0 0 20px rgba(27,42,74,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

.handwritten { font-family: 'Caveat', cursive; }

/* =========================================
   PARTICLES CANVAS
========================================= */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* =========================================
   FLOATING GRADIENT ORBS (CSS only)
========================================= */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,155,60,.07) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: orbFloat1 20s ease-in-out infinite;
}

body::after {
  content: '';
  position: fixed;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27,42,74,.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: orbFloat2 25s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-60px, 80px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -60px); }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
========================================= */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}

.js-ready [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   UTILITIES
========================================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.section { padding: 100px 0; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.highlight-mark {
  position: relative;
  display: inline;
}
.highlight-mark::after {
  content: '';
  position: absolute;
  left: -3px; right: -3px;
  bottom: 2px;
  height: 11px;
  background: rgba(200,155,60,.18);
  border-radius: 3px;
  z-index: -1;
}

.gold-underline {
  display: inline-block;
  position: relative;
}
.gold-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -5px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* =========================================
   NAV
========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27,42,74,.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 30px rgba(27,42,74,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,155,60,.1);
  border: 1px solid rgba(200,155,60,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
  box-shadow: 0 0 15px rgba(200,155,60,.25);
}

.nav-logo-icon svg { width: 22px; height: 22px; }

.nav-logo-text { line-height: 1.2; }
.nav-logo-text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.3px;
}
.nav-logo-text span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 16px;
  background: var(--grey2);
  border-radius: 8px;
  padding: 3px;
}

.lang-btn {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text2);
  transition: all .2s ease;
}

.lang-btn.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(27,42,74,.1);
}

.lang-btn:hover:not(.active) {
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  letter-spacing: -.01em;
  transition: color .3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: .02em !important;
  transition: all .3s ease !important;
  box-shadow: 0 4px 15px rgba(200,155,60,.2);
}

.btn-nav::after { display: none !important; }

.btn-nav:hover {
  background: #b8892c !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(200,155,60,.35) !important;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  padding: 15px 30px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .3s ease;
  letter-spacing: -.01em;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,42,74,.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27,42,74,.3);
}

.btn-secondary {
  background: rgba(27,42,74,.04);
  color: var(--navy);
  border: 1px solid rgba(27,42,74,.12);
}
.btn-secondary:hover {
  border-color: rgba(200,155,60,.3);
  background: rgba(200,155,60,.06);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #e8b84b 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,155,60,.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,155,60,.45);
}

.play-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.play-icon svg { width: 11px; height: 11px; margin-left: 2px; }

/* =========================================
   HERO
========================================= */
.hero {
  background: var(--bg);
  padding: 140px 0 80px;
  overflow: hidden;
  position: relative;
}

/* Grid pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,42,74,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,42,74,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

/* Gradient glow */
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 130%;
  background: radial-gradient(ellipse, rgba(200,155,60,.06) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,155,60,.08);
  border: 1px solid rgba(200,155,60,.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.hero h1 em::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--gold);
  margin-left: 3px;
  vertical-align: text-bottom;
  animation: cursorBlink 1s step-end infinite;
  transition: opacity .3s ease;
}

.typing-target.cursor-hidden::after {
  opacity: 0;
  animation: none;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 12px;
}

.hero-sub strong { color: var(--navy); font-weight: 700; }

.hero-desc {
  font-size: 14px;
  color: var(--grey3);
  margin-bottom: 36px;
  max-width: 420px;
  line-height: 1.7;
}

.hero-desc strong { color: var(--text2); }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-programs {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-program-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  background: rgba(27,42,74,.05);
  border: 1px solid rgba(27,42,74,.12);
  transition: all .3s ease;
  letter-spacing: -.01em;
}

.hero-program-btn:hover {
  background: rgba(27,42,74,.1);
  border-color: rgba(27,42,74,.25);
  transform: translateY(-1px);
}

.hero-program-btn.master {
  background: rgba(200,155,60,.08);
  border-color: rgba(200,155,60,.25);
  color: var(--gold);
}

.hero-program-btn.master:hover {
  background: rgba(200,155,60,.15);
  border-color: rgba(200,155,60,.4);
}

.hero-program-btn.dsl {
  background: rgba(76,175,80,.08);
  border-color: rgba(76,175,80,.25);
  color: #2e7d32;
}

.hero-program-btn.dsl:hover {
  background: rgba(76,175,80,.15);
  border-color: rgba(76,175,80,.4);
}

.hero-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.hero-benefit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
}

.hero-benefit .check {
  width: 18px;
  height: 18px;
  background: rgba(200,155,60,.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-benefit .check svg {
  width: 9px; height: 9px;
}

/* Hero image / dashboard */
.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(27,42,74,.1);
  box-shadow: 0 24px 80px rgba(27,42,74,.1), var(--glow-navy);
  transition: all 0.3s ease;
}

.hero-img-wrap:hover {
  border-color: rgba(27,42,74,.18);
  box-shadow: 0 24px 80px rgba(27,42,74,.14), 0 0 40px rgba(200,155,60,.08);
}

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

.hero-img-placeholder {
  width: 100%;
  min-height: 520px;
  background: linear-gradient(145deg, #f7f8fa 0%, #eef0f5 40%, #f7f8fa 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
}

/* Dashboard mock */
.dash-inner { width: 90%; padding: 0; }
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dash-header-title { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(27,42,74,.5); }
.dash-live { font-size: 9px; font-weight: 700; color: #ff5252; background: rgba(255,82,82,.1); padding: 2px 8px; border-radius: 99px; letter-spacing: .06em; }
.dash-map { width: 100%; height: 150px; background: rgba(27,42,74,.06); border-radius: 8px; margin-bottom: 12px; position: relative; border: 1px solid rgba(27,42,74,.1); overflow: hidden; }
.dash-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(27,42,74,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(27,42,74,.06) 1px,transparent 1px); background-size: 20px 20px; }
.dash-dot { position: absolute; border-radius: 50%; }
.dash-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 10px; }
.dash-stat-card { background: rgba(27,42,74,.04); border-radius: 6px; padding: 10px; border: 1px solid rgba(27,42,74,.08); }
.dash-stat-num { font-size: 20px; font-weight: 900; letter-spacing: -.02em; }
.dash-stat-label { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: rgba(27,42,74,.4); margin-top: 2px; }
.dash-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.dash-score-label, .dash-net-label { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: rgba(27,42,74,.4); margin-bottom: 6px; }
.dash-score-wrap { display: flex; align-items: center; gap: 8px; }
.dash-score-ring { width: 40px; height: 40px; border-radius: 50%; border: 3px solid #4caf50; border-right-color: rgba(27,42,74,.1); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: #1B2A4A; }
.dash-score-text { font-size: 10px; color: rgba(27,42,74,.5); line-height: 1.3; }
.dash-score-up { color: #4caf50; font-weight: 700; font-size: 9px; }
.dash-net-list { display: flex; flex-direction: column; gap: 4px; }
.dash-net-item { display: flex; align-items: center; gap: 6px; font-size: 10px; color: rgba(27,42,74,.6); }
.dash-net-dot { width: 6px; height: 6px; border-radius: 50%; }
.dash-chart { background: rgba(27,42,74,.04); border-radius: 6px; padding: 10px; border: 1px solid rgba(27,42,74,.08); }
.dash-chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.dash-chart-title { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: rgba(27,42,74,.35); }
.dash-chart-sub { font-size: 9px; color: rgba(27,42,74,.3); }
.dash-bars { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.dash-bar { flex: 1; border-radius: 2px 2px 0 0; }

/* Incident response board */
.ir-board { width: 80%; text-align: center; }
.ir-board-inner { background: rgba(27,42,74,.06); border-radius: 10px; padding: 22px; border: 1px solid rgba(27,42,74,.1); }
.ir-board-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(27,42,74,.4); margin-bottom: 16px; }
.ir-steps { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.ir-step { display: flex; align-items: center; gap: 10px; }
.ir-step-num { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }
.ir-step-num.active { background: var(--gold); color: white; }
.ir-step-num.inactive { background: rgba(27,42,74,.1); color: rgba(27,42,74,.4); }
.ir-step-label { font-size: 13px; font-weight: 600; }
.ir-step-label.active { color: rgba(27,42,74,.8); }
.ir-step-label.inactive { color: rgba(27,42,74,.4); }

.annotation {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,155,60,.2);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(27,42,74,.08), var(--glow-gold);
  max-width: 200px;
  transform: rotate(-2deg);
}
.dsl-header { margin-top: 60px; }
.dsl-pricing-grid { max-width: 700px; margin: 0 auto; }

.annotation-text {
  font-family: 'Caveat', cursive;
  font-size: 17px;
  color: #1B2A4A;
  line-height: 1.35;
}

/* Floating card */
.floating-card {
  position: absolute;
  top: -18px;
  left: -18px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(27,42,74,.08);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(200,155,60,.2);
  animation: floatCard 6s ease-in-out infinite;
}

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

.floating-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(200,155,60,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.floating-card-sub {
  font-size: 12px;
  color: var(--grey3);
  margin-top: 2px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

/* =========================================
   STATS BAR
========================================= */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid rgba(27,42,74,.06);
  border-bottom: 1px solid rgba(27,42,74,.06);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  border-right: 1px solid rgba(27,42,74,.08);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,155,60,.08);
  border: 1px solid rgba(200,155,60,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(200,155,60,0); }
  50% { box-shadow: 0 0 15px rgba(200,155,60,.12); }
}

.stat-icon svg { width: 24px; height: 24px; }

.stat-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 3px;
}
.stat-suffix {
  font-size: 20px;
  font-weight: 600;
}

.stat-label {
  font-size: 12.5px;
  color: var(--grey3);
  font-weight: 500;
  line-height: 1.4;
}

/* =========================================
   TRUST BAR
========================================= */
.trust-bar {
  background: var(--bg3);
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.trust-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey3);
  margin-bottom: 32px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .45;
  transition: all .3s ease;
}
.trust-logo:hover { opacity: .85; }

.trust-logo-box {
  background: rgba(27,42,74,.03);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(27,42,74,.5);
  letter-spacing: -.02em;
  border: 1px solid rgba(27,42,74,.08);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.trust-logo:hover .trust-logo-box {
  border-color: rgba(200,155,60,.3);
  background: rgba(200,155,60,.05);
  color: var(--navy);
}

/* =========================================
   INDUSTRIES
========================================= */
.industries-section {
  background: var(--bg);
  padding: 64px 0;
  position: relative;
  z-index: 1;
}

.industries-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--grey2);
  border-radius: var(--radius);
  padding: 24px 20px;
  width: 180px;
  text-align: center;
  transition: all .3s ease;
}

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

.industry-icon {
  font-size: 28px;
}

.industry-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* =========================================
   NOT FOR EVERYONE
========================================= */
.not-for-all {
  background: var(--bg);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.not-for-all-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.profile-img-wrap {
  position: relative;
}

.profile-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(27,42,74,.1);
  box-shadow: 0 20px 60px rgba(27,42,74,.1), var(--glow-gold);
  transition: all 0.3s ease;
}

.profile-img:hover {
  border-color: rgba(200,155,60,.3);
  transform: rotate(-1deg);
  box-shadow: 0 25px 70px rgba(27,42,74,.12), 0 0 30px rgba(200,155,60,.1);
}

.profile-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.profile-img:hover .profile-real-img {
  transform: scale(1.03);
}

.sticky-note {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,155,60,.25);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(27,42,74,.08), var(--glow-gold);
  transform: rotate(2.5deg);
  max-width: 170px;
}

.sticky-note p {
  font-family: 'Caveat', cursive;
  font-size: 15px;
  color: rgba(27,42,74,.75);
  line-height: 1.4;
}

.not-for-all-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.underline-gold {
  display: inline-block;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 2px;
}

.not-for-all-desc {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.check-list li:hover {
  color: var(--navy);
}

.check-circle {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.3s ease;
}

.check-list li:hover .check-circle {
  box-shadow: 0 0 10px rgba(200,155,60,.25);
}

.check-circle svg { width: 10px; height: 10px; }

/* =========================================
   WHAT YOU GET
========================================= */
.what-you-get {
  background: var(--bg2);
  position: relative;
  z-index: 1;
}

/* Decorative orb */
.what-you-get::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,155,60,.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.04em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: var(--grey3);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(27,42,74,.06);
  box-shadow: var(--shadow);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,155,60,.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,155,60,.2);
  box-shadow: var(--shadow2), var(--glow-gold);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,42,74,.06);
  border: 1px solid rgba(27,42,74,.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  box-shadow: 0 0 20px rgba(200,155,60,.15);
  background: rgba(200,155,60,.08);
  border-color: rgba(200,155,60,.15);
}

.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--grey3);
  line-height: 1.6;
}

/* =========================================
   PROGRAM STRUCTURE
========================================= */
.program {
  background: var(--bg);
  position: relative;
  z-index: 1;
}

/* Program Toggle Tabs */
.program-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  background: var(--bg2);
  border-radius: 14px;
  padding: 6px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.program-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all .3s ease;
  letter-spacing: -.01em;
}

.program-tab:hover {
  color: var(--navy);
  background: rgba(27,42,74,.04);
}

.program-tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(27,42,74,.1);
}

.program-tab svg {
  flex-shrink: 0;
}

/* Program Info Card */
.program-info {
  margin-bottom: 40px;
}

.program-info-card {
  background: var(--white);
  border: 1px solid rgba(27,42,74,.08);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: var(--shadow);
  transition: all .3s ease;
  animation: fadeInUp .4s ease;
}

.program-info-card.hidden {
  display: none;
}

.program-info-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.specialist-badge {
  background: rgba(27,42,74,.08);
  color: var(--navy);
}

.manager-badge {
  background: rgba(200,155,60,.12);
  color: var(--gold);
}

.program-info-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.03em;
}

.program-info-card p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 16px;
}

.program-info-card p strong {
  color: var(--navy);
}

.program-info-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.program-info-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
}

.program-info-meta svg {
  color: var(--gold);
  stroke: var(--gold);
}

.modules-grid.hidden {
  display: none;
}

/* Master badge */
.master-badge {
  background: linear-gradient(135deg, rgba(27,42,74,.1), rgba(200,155,60,.15));
  color: var(--navy);
}

/* DSL badge */
.dsl-badge {
  background: linear-gradient(135deg, rgba(200,155,60,.15), rgba(76,175,80,.12));
  color: var(--navy);
}

/* Semester Headers */
.semester-header {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 14px;
  padding: 28px 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.semester-header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(200,155,60,.15);
  border-radius: 50%;
}

.semester-2 {
  background: linear-gradient(135deg, #243660 0%, #2d4a7a 100%);
}

.semester-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(200,155,60,.25);
  color: var(--gold2);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.semester-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}

.semester-header p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin: 0;
}

/* Master final project special style */
.module-master-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  border: none;
}

.module-master-final .module-number {
  color: var(--gold2);
}

.module-master-final h3 {
  color: var(--white);
}

.module-master-final .module-desc {
  color: rgba(255,255,255,.65);
}

.module-master-final .module-weeks {
  color: rgba(255,255,255,.5);
}

.module-ects {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(200,155,60,.1);
  padding: 3px 10px;
  border-radius: 6px;
  margin-left: 10px;
  letter-spacing: .02em;
}

.semester-ects {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold2);
  background: rgba(200,155,60,.2);
  padding: 4px 12px;
  border-radius: 6px;
  margin-top: 8px;
  letter-spacing: .05em;
}

.module-master-final .module-ects {
  color: var(--gold2);
  background: rgba(200,155,60,.2);
}

.master-final-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: var(--white) !important;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-card {
  background: var(--white);
  border: 1px solid rgba(27,42,74,.06);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all .3s ease;
  overflow: hidden;
}

/* Different left border colors per module */
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: rgba(27,42,74,.08);
  transition: all .3s ease;
}

.module-card:nth-child(1)::before { background: #1B2A4A; opacity: 0.4; }
.module-card:nth-child(2)::before { background: #C89B3C; opacity: 0.4; }
.module-card:nth-child(3)::before { background: #e74c3c; opacity: 0.4; }
.module-card:nth-child(4)::before { background: #2ecc71; opacity: 0.4; }
.module-card:nth-child(5)::before { background: #9b59b6; opacity: 0.4; }
.module-card:nth-child(6)::before { background: #e67e22; opacity: 0.4; }
.module-card:nth-child(7)::before { background: #3498db; opacity: 0.4; }
.module-card:nth-child(8)::before { background: #1abc9c; opacity: 0.4; }

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27,42,74,.12);
  box-shadow: var(--shadow2);
}

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

.module-card:nth-child(1):hover { box-shadow: var(--shadow2), 0 0 20px rgba(27,42,74,.08); }
.module-card:nth-child(2):hover { box-shadow: var(--shadow2), 0 0 20px rgba(200,155,60,.1); }
.module-card:nth-child(3):hover { box-shadow: var(--shadow2), 0 0 20px rgba(231,76,60,.08); }
.module-card:nth-child(4):hover { box-shadow: var(--shadow2), 0 0 20px rgba(46,204,113,.08); }
.module-card:nth-child(5):hover { box-shadow: var(--shadow2), 0 0 20px rgba(155,89,182,.08); }
.module-card:nth-child(6):hover { box-shadow: var(--shadow2), 0 0 20px rgba(230,126,34,.08); }
.module-card:nth-child(7):hover { box-shadow: var(--shadow2), 0 0 20px rgba(52,152,219,.08); }
.module-card:nth-child(8):hover { box-shadow: var(--shadow2), 0 0 20px rgba(26,188,156,.08); }

.module-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.module-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.module-desc {
  font-size: 12.5px;
  color: var(--grey3);
  line-height: 1.5;
  margin-bottom: 10px;
}

.module-weeks {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey3);
  background: rgba(27,42,74,.04);
  padding: 4px 10px;
  border-radius: 999px;
}

.module-final {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(200,155,60,.06) 0%, rgba(27,42,74,.03) 100%);
  border-color: rgba(200,155,60,.2);
}

.module-final::before {
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--gold), var(--navy)) !important;
  opacity: 1 !important;
}

.module-final:hover {
  border-color: rgba(200,155,60,.35);
  box-shadow: var(--shadow2), var(--glow-gold) !important;
}

.module-final .module-number { color: rgba(200,155,60,.8); }
.module-final h3 { color: var(--navy); }
.module-final .module-weeks {
  background: rgba(27,42,74,.06);
  color: rgba(27,42,74,.5);
}

.module-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.module-final-badge {
  background: linear-gradient(135deg, var(--gold), #e8b84b);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(200,155,60,.25);
}

/* =========================================
   TESTIMONIAL
========================================= */
.testimonial-section {
  background: var(--bg2);
  padding: 90px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Large decorative quote mark */
.testimonial-section::before {
  content: '\201C';
  position: absolute;
  top: 40px;
  left: 5%;
  font-size: 300px;
  font-family: Georgia, serif;
  color: rgba(200,155,60,.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.testimonial-quote {
  background: var(--white);
  border: 1px solid rgba(27,42,74,.06);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.testimonial-quote:hover {
  border-color: rgba(200,155,60,.2);
  box-shadow: var(--glow-gold);
}

.quote-mark {
  font-size: 72px;
  line-height: .8;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  opacity: .5;
}

.quote-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(27,42,74,.8);
  margin-bottom: 28px;
  font-style: italic;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, #e8b84b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.author-role {
  font-size: 12px;
  color: var(--grey3);
  margin-top: 2px;
}

.testimonial-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #f7f8fa, #eef0f5);
  border: 1px solid rgba(27,42,74,.06);
}

.testimonial-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(247,248,250,.8) 0%, rgba(200,155,60,.04) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.t-stat {
  background: var(--white);
  border: 1px solid rgba(27,42,74,.06);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.3s ease;
}

.t-stat:hover {
  border-color: rgba(200,155,60,.2);
  box-shadow: var(--glow-gold);
}

.t-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.t-stat-label {
  font-size: 13px;
  color: var(--grey3);
}

/* =========================================
   CAREER
========================================= */
.career {
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.career-header h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.career-header h2 .hw-highlight {
  position: relative;
  display: inline-block;
}

.career-header h2 .hw-highlight::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: 3px;
  height: 10px;
  background: rgba(200,155,60,.2);
  z-index: -1;
  border-radius: 2px;
  transform: rotate(-.5deg);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.career-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(27,42,74,.06);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all .3s ease;
}

.career-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,155,60,.2);
  box-shadow: var(--shadow2), var(--glow-gold);
}

.career-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(27,42,74,.06);
  border: 1px solid rgba(27,42,74,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.career-card:hover .career-card-icon {
  box-shadow: 0 0 15px rgba(200,155,60,.15);
  background: rgba(200,155,60,.08);
}

.career-card-icon svg { width: 22px; height: 22px; }

.career-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.career-card-salary {
  font-size: 12px;
  color: var(--grey3);
  margin-top: 3px;
}

/* =========================================
   PRICING
========================================= */
.pricing {
  background: var(--bg2);
  position: relative;
  z-index: 1;
}

/* Orb behind pricing */
.pricing::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,155,60,.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(27,42,74,.08);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all .3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow2);
}

.pricing-card.popular {
  border-color: rgba(200,155,60,.4);
  background: linear-gradient(180deg, rgba(200,155,60,.03) 0%, var(--white) 100%);
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 20px 60px rgba(27,42,74,.1), 0 0 40px rgba(200,155,60,.12);
}

.pricing-card.popular:hover {
  transform: scale(1.04) translateY(-12px);
  box-shadow: 0 25px 70px rgba(27,42,74,.12), 0 0 60px rgba(200,155,60,.18);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #e8b84b);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(200,155,60,.3);
}

.pricing-tier {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-period {
  font-size: 13px;
  color: var(--grey3);
  margin-bottom: 28px;
}

.pricing-divider {
  height: 1px;
  background: rgba(27,42,74,.08);
  margin-bottom: 24px;
}

.pricing-card.popular .pricing-divider {
  background: rgba(200,155,60,.2);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text2);
}

.pf-check {
  width: 18px;
  height: 18px;
  background: rgba(200,155,60,.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pf-check svg { width: 8px; height: 8px; }

.pricing-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.pricing-card:not(.popular) .pricing-cta {
  background: rgba(27,42,74,.05);
  color: var(--navy);
  box-shadow: none;
  border: 1px solid rgba(27,42,74,.1);
}

.pricing-card:not(.popular) .pricing-cta:hover {
  background: rgba(200,155,60,.08);
  border-color: rgba(200,155,60,.3);
  box-shadow: var(--glow-gold);
}

.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--grey3);
}

/* =========================================
   FINAL CTA
========================================= */
.final-cta {
  background: linear-gradient(135deg, #1B2A4A 0%, #243660 30%, #1a2744 70%, #1B2A4A 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,155,60,.1) 0%, transparent 60%);
  animation: orbFloat1 15s ease-in-out infinite;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 60%);
  animation: orbFloat2 18s ease-in-out infinite;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.final-cta h2 em {
  font-style: normal;
  color: var(--gold);
}

.final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  margin-bottom: 44px;
  line-height: 1.65;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.form-row {
  display: flex;
  gap: 12px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form .form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(27,42,74,.15);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy);
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form .form-select:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231B2A4A' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
@media (max-width: 600px) {
  .form-row { flex-direction: column; }
}

.form-feedback {
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.form-feedback.hidden { display: none; }
.form-feedback.success { background: rgba(76,175,80,.1); color: #2e7d32; }
.form-feedback.error { background: rgba(255,82,82,.1); color: #c62828; }

.final-tag { color: rgba(200,155,60,.8); }
.final-cta-btn { font-size: 17px; padding: 18px 40px; border-radius: 12px; }

.final-cta-note {
  margin-top: 20px;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: rgba(200,155,60,.7);
}

.final-cta-note::before { content: '\2014 '; }

/* =========================================
   FOOTER
========================================= */
.footer {
  background: #0f1829;
  padding: 60px 0 32px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: all .3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,.25);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 960px) {
  .hero { padding-top: 110px; }
  .hero-grid,
  .not-for-all-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero::after { display: none; }
  .not-for-all-grid { grid-template-columns: 1fr; }
  .not-for-all-grid .profile-img-wrap { max-width: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(27,42,74,.06);
    padding: 16px 0;
  }
  .stat-item:nth-child(2n) { padding-left: 24px; }
  .features-grid,
  .modules-grid,
  .career-grid,
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .module-final-inner { flex-direction: column; align-items: flex-start; }
  .pricing-card.popular { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .testimonial-section::before { font-size: 200px; }
}

@media (max-width: 600px) {
  .features-grid,
  .modules-grid,
  .career-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-benefits { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .program-toggle { flex-direction: column; max-width: 100%; }
  .program-tab { font-size: 13px; padding: 12px 16px; }
  .program-info-card { padding: 22px 20px; }
  .program-info-card h3 { font-size: 20px; }
  .program-info-meta { flex-direction: column; gap: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-section::before { display: none; }

  /* Hamburger visible */
  .hamburger { display: flex; }
  .lang-switch { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    z-index: 998;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 18px;
    color: var(--navy);
  }

  .nav-links a::after { display: none; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27,42,74,.95);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 24px;
  z-index: 9999;
  font-size: 14px;
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { margin: 0; }
.cookie-accept {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #particles { display: none; }
}
