/* ============ TOKENS ============ */
:root {
  /* Brand palette (from Glorious Mindmine colour guide) */
  --navy: #102a43;
  --navy-2: #0b2038;
  --blue: #1769e0;
  --blue-light: #4e8fef;
  --orange: #f97316;
  --orange-2: #fb8b3d;
  --success: #16a34a;

  --bg: #f8fafc;
  --bg-alt: #eef2f7;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --border: rgba(16, 42, 67, 0.14);
  --border-soft: rgba(16, 42, 67, 0.08);

  /* aliases so the rest of the stylesheet maps onto the new palette */
  --indigo: var(--navy);
  --cyan: var(--blue);
  --violet: var(--blue-light);
  --emerald: var(--success);

  --text: #172033;
  --text-muted: #52606d;
  --text-dim: #8492a6;

  --nav-bg: #e0e0e0;
  --nav-text: #000000;
  --nav-text-dim: rgba(37, 37, 37, 0.68);

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --grad-primary: linear-gradient(120deg, var(--blue), var(--navy));
  --grad-cta: linear-gradient(120deg, var(--orange), var(--orange-2));
  --grad-violet: linear-gradient(120deg, var(--blue-light), var(--blue));
  --grad-emerald: linear-gradient(120deg, var(--success), #22c55e);

  --ease: cubic-bezier(0.22, 0.9, 0.32, 1);
  --topbar-h: 0px;
  --nav-h: 76px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.mono {
  font-family: var(--font-mono);
}

::selection {
  background: var(--indigo);
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  min-width: 0;
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--cyan);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(249, 115, 22, 0.5);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

svg.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-left.in {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-right.in {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  color: var(--nav-text);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.4s;
}
.nav.scrolled {
  box-shadow: 0 12px 30px -18px rgba(9, 20, 38, 0.55);
}
.nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo .mark {
  height: 38px;
  width: auto;
  max-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo .mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item {
  position: relative;
}
.nav-item > button,
a.nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--nav-text-dim);
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-item > button:hover,
a.nav-item:hover,
.nav-item.open > button {
  color: var(--nav-text);
}
.nav-item svg.chev {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}
.nav-item.open svg.chev {
  transform: rotate(180deg);
}

.mega {
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h) + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(680px, 92vw);
  max-height: calc(100vh - var(--topbar-h) - var(--nav-h) - 30px);
  overflow-y: auto;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 30px 60px -20px rgba(9, 20, 38, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease),
    visibility 0.28s;
  z-index: 1050;
}
.nav-item.open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.mega-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 640px) {
  .mega-grid.cols-3,
  .mega-grid {
    grid-template-columns: 1fr;
  }
}
.mega-card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.mega-card:hover {
  background: var(--surface-2);
  border-color: var(--border);
  transform: translateY(-2px);
}
.mega-card .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 105, 224, 0.12);
  color: var(--blue);
}
.mega-card h4 {
  font-size: 0.94rem;
  font-weight: 600;
}
.mega-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(238, 242, 250, 0.25);
}
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--nav-text);
  position: relative;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--nav-text);
}
.burger span::before {
  top: -6px;
}
.burger span::after {
  top: 6px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-cta .btn {
    display: none;
  }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 1002;
  background: var(--bg-alt);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  padding: 100px 28px 40px;
  overflow-y: auto;
}
.drawer.open {
  transform: translateX(0);
}
.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer h5 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  margin: 26px 0 12px;
}
.drawer a.item {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 1.05rem;
}
.drawer .btn {
  width: 100%;
  margin-top: 24px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: calc(var(--topbar-h) + var(--nav-h));
  min-height: 100vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 20% 20%,
      rgba(23, 105, 224, 0.12),
      transparent 60%
    ),
    radial-gradient(
      ellipse 55% 45% at 85% 75%,
      rgba(249, 115, 22, 0.08),
      transparent 60%
    ),
    var(--bg);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--border-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.hero-swiper {
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.hero-slide {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0 60px;
  min-height: calc(100vh - var(--topbar-h) - var(--nav-h));
}
@media (max-width: 980px) {
  .hero-slide {
    grid-template-columns: 1fr;
    padding: 24px 0 40px;
  }
}
.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
}
.hero-copy h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  margin-bottom: 20px;
  overflow: hidden;
}
.hero-copy h1 .line {
  display: block;
  overflow: hidden;
}
.hero-copy h1 .line span {
  display: inline-block;
  transform: translateY(80px);
}
.hero-copy p.lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.hero-stack .chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.hero-stack .chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 460px;
}
@media (max-width: 980px) {
  .hero-visual {
    height: 360px;
  }
}
.hv-panel {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 40px 80px -30px rgba(16, 42, 67, 0.25);
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hv-panel .glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
  top: -60px;
  right: -60px;
}
.hv-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  min-width: 0;
}
.hv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateX(24px);
  min-width: 0;
}
.hv-row .l {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  min-width: 0;
  overflow: hidden;
}
.hv-row .l .t {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hv-row .ic {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 105, 224, 0.12);
  color: var(--blue);
}
.hv-row .tag {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}
.hv-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}
.hv-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
}
.hv-num small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  font-weight: 400;
}

.hero-pag {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.hero-pag button {
  width: 46px;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.hero-pag button .fill {
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-pag button.active .fill {
  transform: scaleX(1);
  transition: transform 6s linear;
}

/* ============ SECTION HEADERS ============ */
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.02rem;
}
.section-pad {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .section-pad {
    padding: 80px 0;
  }
}

/* ============ SERVICES: COURSES (pinned watermark) ============ */
.courses-pin-outer {
  position: relative;
  height: 420vh;
}
.courses-pin-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
}
.courses-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.courses-watermark span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: min(20vw, 260px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(16, 42, 67, 0.1);
  letter-spacing: -0.02em;
}
.courses-intro {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  max-width: 560px;
  z-index: 1;
  padding: 0 20px;
}
.courses-card-stage {
  position: relative;
  width: min(440px, 88vw);
  height: 480px;
  z-index: 2;
}
.course-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 30px 70px -25px rgba(16, 42, 67, 0.3);
  padding: 34px;
  display: flex;
  flex-direction: column;
  will-change: transform, opacity;
}
.course-card .cc-ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 105, 224, 0.1);
  color: var(--blue);
}
.course-card:nth-child(4n + 2) .cc-ic {
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
}
.course-card:nth-child(4n + 3) .cc-ic {
  background: rgba(16, 42, 67, 0.08);
  color: var(--navy);
}
.course-card:nth-child(4n + 4) .cc-ic {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
}
.course-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.course-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: auto;
}
.course-card .cc-meta {
  display: flex;
  gap: 18px;
  margin: 22px 0;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-dim);
}
.course-card .cc-meta b {
  color: var(--text);
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
}
.course-card .cc-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.course-card .cc-foot .btn {
  width: 100%;
}
.course-card .price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
}
.course-card .lines {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  opacity: 0.6;
}

.courses-progress {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.courses-progress i {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--border);
}
.courses-progress i.active {
  background: var(--blue);
}
@media (max-width: 560px) {
  .courses-intro {
    top: 7%;
  }
  .courses-intro p {
    display: none;
  }
  .courses-card-stage {
    height: 520px;
  }
  .course-card {
    padding: 26px;
  }
}

/* ============ SERVICES: EXECUTIVE STACKED CARDS ============ */
.stack-section {
  position: relative;
}
.stack-head {
  text-align: left;
}
.stack-list {
  position: relative;
}
.stack-card {
  position: sticky;
  border-radius: 26px;
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 52px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 24px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5);
}
.stack-card .wm-icon {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 280px;
  height: 280px;
  opacity: 0.1;
}
@media (max-width: 640px) {
  .stack-card {
    padding: 32px 24px;
    min-height: auto;
  }
  .stack-card .wm-icon {
    width: 180px;
    height: 180px;
  }
}
.stack-card .sc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.stack-card .sc-idx {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.stack-card h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  max-width: 16ch;
  margin: 26px 0 14px;
  position: relative;
  z-index: 1;
}
.stack-card p {
  color: var(--text-muted);
  max-width: 52ch;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.stack-card .sc-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
}
.stack-card .sc-meta div span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.stack-card .sc-meta div b {
  font-size: 1.05rem;
  font-family: var(--font-display);
}
.stack-card .sc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 16px;
}
.stack-card .price-tag {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.stack-card.card-0 {
  background: linear-gradient(150deg, #1b3a5c, var(--navy-2));
}
.stack-card.card-1 {
  background: linear-gradient(150deg, var(--blue), var(--navy));
}
.stack-card.card-2 {
  background: linear-gradient(150deg, var(--navy), #081729);
}
.stack-card.flagship {
  border-color: var(--orange);
  box-shadow:
    0 0 0 4px rgba(249, 115, 22, 0.14),
    0 40px 80px -30px rgba(9, 20, 38, 0.6);
}
.stack-card,
.stack-card h3,
.stack-card p,
.stack-card .sc-idx,
.stack-card .sc-meta span,
.stack-card .sc-meta b,
.stack-card .price-tag {
  color: #fff;
}
.stack-card p {
  color: rgba(255, 255, 255, 0.78);
}
.stack-card .sc-idx,
.stack-card .sc-meta span {
  color: rgba(255, 255, 255, 0.55);
}
.stack-card .flagship-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  margin-left: 10px;
}
.stack-card .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.stack-card .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

/* ============ SERVICES: CORPORATE ZIGZAG ============ */
.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border-soft);
}
.zigzag-item > * {
  min-width: 0;
}
.zigzag-item:last-child {
  border-bottom: none;
}
.zigzag-item:nth-child(even) .zz-visual {
  order: 2;
}
@media (max-width: 860px) {
  .zigzag-item {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0;
  }
  .zigzag-item:nth-child(even) .zz-visual {
    order: 0;
  }
}

.zz-visual {
  aspect-ratio: 4/3;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zz-visual .zz-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 7rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(16, 42, 67, 0.15);
}
.zz-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0.06;
}
.zz-copy .eyebrow {
  margin-bottom: 14px;
}
.zz-copy h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 14px;
}
.zz-copy p {
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 48ch;
}
.zz-copy ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.zz-copy ul li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
  align-items: flex-start;
}
.zz-copy ul li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--success);
  margin-top: 2px;
}

/* ============ VIDEO ALBUM ============ */
.album-swiper {
  padding: 20px 10px 60px;
  overflow: visible !important;
}
.album-slide {
  width: 280px;
}
.vinyl {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
  cursor: pointer;
  background: conic-gradient(from 90deg, #1a1f3d, #0c0e1a, #1a1f3d);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
}
.vinyl:hover {
  transform: scale(1.04) rotate(6deg);
}
.vinyl .grooves {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.vinyl .grooves:nth-child(2) {
  inset: 16%;
}
.vinyl .grooves:nth-child(3) {
  inset: 24%;
}
.vinyl .thumb {
  width: 56%;
  height: 56%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 3px solid #0b0e1a;
}
.vinyl .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vinyl .play {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0a0a12;
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-caption {
  text-align: center;
  margin-top: 18px;
}
.album-caption h4 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.album-caption p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 5, 11, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-inner {
  width: min(920px, 92vw);
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.lightbox-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}

/* ============ TESTIMONIALS ============ */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.trust-chip b {
  color: var(--text);
  font-family: var(--font-display);
}
.testi-grid {
  columns: 3 320px;
  column-gap: 22px;
}
@media (max-width: 860px) {
  .testi-grid {
    columns: 2 260px;
  }
}
@media (max-width: 560px) {
  .testi-grid {
    columns: 1;
  }
}
.testi-card {
  break-inside: avoid;
  margin-bottom: 22px;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.testi-card .stars {
  display: flex;
  gap: 3px;
  color: #f5b93e;
  margin-bottom: 14px;
}
.testi-card .stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: none;
}
.testi-card p.quote {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 20px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-person .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-person .name {
  font-size: 0.88rem;
  font-weight: 600;
}
.testi-person .role {
  font-size: 0.76rem;
  color: var(--text-dim);
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 500;
  font-family: var(--font-display);
}
.faq-q .plus {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--text-muted);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-q .plus::before {
  width: 10px;
  height: 1.4px;
}
.faq-q .plus::after {
  width: 1.4px;
  height: 10px;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .plus::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}
.faq-item.open .plus {
  border-color: var(--blue);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p {
  padding: 0 4px 26px;
  color: var(--text-muted);
  max-width: 68ch;
  font-size: 0.95rem;
}

/* ============ CTA BAND ============ */
.cta-band {
  position: relative;
  margin: 0 32px;
  border-radius: 32px;
  overflow: hidden;
  padding: 90px 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border: 1px solid var(--border);
}
@media (max-width: 640px) {
  .cta-band {
    margin: 0 16px;
    padding: 60px 24px;
  }
}
.cta-band .glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(120px);
  opacity: 0.35;
  top: -140px;
  left: -100px;
}
.cta-band .glow.b {
  background: var(--orange);
  top: auto;
  bottom: -160px;
  left: auto;
  right: -100px;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  max-width: 18ch;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  color: #fff;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 50ch;
  margin: 0 auto 34px;
  position: relative;
  z-index: 1;
}
.cta-band .btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.cta-band .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

/* ============ FOOTER ============ */
footer {
  padding: 90px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}
.footer-top > * {
  min-width: 0;
}
@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 18px 0 22px;
  max-width: 34ch;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.footer-social a:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-bottom .legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Section label chips reused */
.chip-navy {
  background: rgba(16, 42, 67, 0.1);
  color: var(--navy);
}
.chip-blue {
  background: rgba(23, 105, 224, 0.12);
  color: var(--blue);
}
.chip-orange {
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
}
.chip-success {
  background: rgba(22, 163, 74, 0.12);
  color: var(--success);
}
/* ============ PROGRAM DETAIL PAGES ============ */
.prog-hero {
  padding: calc(var(--nav-h) + 56px) 0 64px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.prog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 85% 0%,
    rgba(23, 105, 224, 0.1),
    transparent 60%
  );
}
.prog-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.prog-breadcrumb a:hover {
  color: var(--blue);
}
.prog-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .prog-hero-grid {
    grid-template-columns: 1fr;
  }
}
.prog-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.prog-hero .tagline {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 28px;
}
.prog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.prog-meta-row .chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  background: var(--surface);
}
.prog-meta-row .chip b {
  font-family: var(--font-display);
}
.prog-hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 30px 70px -30px rgba(16, 42, 67, 0.3);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.prog-hero-card .price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.prog-hero-card .price-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.prog-hero-card .btn {
  width: 100%;
  margin-bottom: 12px;
}
.prog-hero-card .mini-list {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prog-hero-card .mini-list div {
  display: flex;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
  align-items: flex-start;
}
.prog-hero-card .mini-list svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--success);
  margin-top: 2px;
}

.prog-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-soft);
}
.prog-section h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 26px;
}
.prog-target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.prog-target-grid div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  font-size: 0.92rem;
}
.prog-target-grid svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--blue);
  margin-top: 1px;
}

.prog-transform {
  padding: 44px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  text-align: center;
}
.prog-transform p {
  font-size: 1.2rem;
  font-family: var(--font-display);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.45;
}

.prog-modules {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.prog-module {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}
.prog-module-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
}
.prog-module-head .num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--blue);
  margin-right: 14px;
}
.prog-module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.prog-module.open .prog-module-body {
  max-height: 600px;
}
.prog-module-body ul {
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prog-module-body li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  align-items: flex-start;
}
.prog-module-body li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--success);
  margin-top: 3px;
}
.prog-module-head .plus {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
}
.prog-module-head .plus::before,
.prog-module-head .plus::after {
  content: "";
  position: absolute;
  background: var(--text-muted);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.prog-module-head .plus::before {
  width: 9px;
  height: 1.4px;
}
.prog-module-head .plus::after {
  width: 1.4px;
  height: 9px;
  transition: transform 0.3s var(--ease);
}
.prog-module.open .prog-module-head .plus::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}
.prog-module.open .prog-module-head .plus {
  border-color: var(--blue);
}

.prog-deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.prog-deliverables div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
}
.prog-deliverables svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--blue);
  margin-top: 2px;
}

.prog-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.prog-related a {
  display: block;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.prog-related a:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
}
.prog-related h4 {
  font-size: 0.96rem;
  margin-bottom: 6px;
}
.prog-related p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============ CONSULTATION FORM ============ */
.consult-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .consult-wrap {
    grid-template-columns: 1fr;
  }
}
.consult-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 30px 70px -30px rgba(16, 42, 67, 0.25);
}
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 224, 0.12);
}
.form-row textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}
.form-submit {
  width: 100%;
  margin-top: 6px;
}
.form-msg {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.86rem;
  display: none;
}
.form-msg.show {
  display: block;
}
.form-msg.success {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
  border: 1px solid rgba(22, 163, 74, 0.25);
}
.form-msg.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.consult-side h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 16px;
}
.consult-side p {
  color: var(--text-muted);
  margin-bottom: 26px;
  max-width: 48ch;
}
.consult-side .mini-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.consult-side .mini-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.consult-side .mini-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--success);
  margin-top: 2px;
}
.consult-side .mini-list b {
  display: block;
  font-size: 0.94rem;
  margin-bottom: 2px;
}
.consult-side .mini-list span {
  font-size: 0.84rem;
  color: var(--text-dim);
}
