/* ================================================================
   IR Akademija – landing styles
   Palette: deep purple #3A2575, rose-pink #D88AAE, near-white #F7F6F4
   (Refresh 2026-05-24 — refactor to IR Unikum priloga paleta; var names
   ohranjeni za minimal diff: --bordo = primary purple, --orange = rose.)
================================================================ */

:root {
  --bordo: #3A2575;
  --bordo-deep: #2A1758;
  --bordo-dark: #1D0F40;
  --orange: #D88AAE;
  --bordo-bg: url("assets/purple-bg.jpg?v=20260524");
  --bordo-bg-square: url("assets/purple-bg-square.jpg?v=20260524");
  --ink: #1A1416;
  --ink-70: #4A4245;
  --ink-50: #7A7478;
  --ink-30: #B5B0B3;
  --bg: #F7F6F4;
  --bg-card: #FFFFFF;
  --line: #E8E4E2;
  --line-soft: #EFEBE8;

  --serif: "Instrument Serif", Georgia, serif;
  --serif-accent: "Instrument Serif", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --max: 1280px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ------------ Shared type ------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordo);
  padding: 8px 14px;
  background: rgba(122, 0, 60, 0.06);
  border: 1px solid rgba(122, 0, 60, 0.15);
  border-radius: 100px;
}
.eyebrow-dark { color: var(--bordo); }
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 22px 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em {
  font-family: var(--serif-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--bordo);
}
.section-title-light { color: #F7F6F4; }
.section-title-light em { color: var(--orange); }
.section-sub {
  font-size: 18px;
  color: var(--ink-70);
  margin: 0;
  line-height: 1.55;
  text-wrap: pretty;
}

/* ------------ Buttons ------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background-color: #2B1F45;
  background-image: var(--bordo-bg-square);
  background-size: cover;
  background-position: center;
  color: #fff;
  border-color: var(--bordo-deep);
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 10px 24px -12px rgba(38, 23, 71, 0.7);
}
.btn-primary:hover {
  background-color: #1D0F40;
  background-image: var(--bordo-bg-square);
  background-size: cover;
  background-position: 30% 50%;
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 14px 28px -12px rgba(38, 23, 71, 0.85);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26,20,22,0.2);
}
.btn-ghost:hover { background: rgba(26,20,22,0.04); border-color: rgba(26,20,22,0.35); }
.btn-ghost-dark {
  background: transparent;
  color: var(--bordo);
  border-color: rgba(122,0,60,0.3);
}
.btn-ghost-dark:hover { background: rgba(122,0,60,0.06); }

/* ======================================================
   HEADER
====================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #2B1F45;
  background-image: var(--bordo-bg);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 40px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-logo img {
  height: 64px;
  width: auto;
}
.site-logo-tag { display: none; }
.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}
.site-nav a:hover { color: #ffffff; }
.site-header .btn { padding: 11px 20px; font-size: 14px; }
.site-header .btn-primary {
  background: #D88AAE;
  color: #1D0F40;
  border-color: #D88AAE;
}
.site-header .btn-primary:hover {
  background: #E8AEC9;
  border-color: #E8AEC9;
  color: #1D0F40;
}

/* ======================================================
   HERO
====================================================== */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero-bg-ornament {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 800px;
  height: 800px;
  opacity: 0.8;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-copy {
  max-width: 640px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 22px 0 20px;
  color: var(--ink);
  text-wrap: balance;
}
.hero-title em {
  font-family: var(--serif-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--bordo);
  position: relative;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: var(--orange);
  opacity: 0.28;
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-size: 20px;
  color: var(--ink-70);
  margin: 0 0 32px;
  max-width: 520px;
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-70);
  opacity: 0;
  transform: translateY(6px);
  animation: fadeUp 0.6s ease forwards;
}
.hero-checks li:nth-child(1) { animation-delay: 0.2s; }
.hero-checks li:nth-child(2) { animation-delay: 0.28s; }
.hero-checks li:nth-child(3) { animation-delay: 0.36s; }
.hero-checks li:nth-child(4) { animation-delay: 0.44s; }
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
.check-ic {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(122,0,60,0.08);
  color: var(--bordo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta > div:not(.meta-sep) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta-num {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  color: var(--bordo);
  font-weight: 500;
}
.meta-lbl {
  font-size: 12px;
  color: var(--ink-50);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.meta-sep {
  width: 1px;
  height: 36px;
  background: var(--line);
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-stage {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@keyframes hvRotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes hvRotateRev {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.hv-rotate-slow { animation: hvRotateSlow 80s linear infinite; }
.hv-rotate-rev { animation: hvRotateRev 60s linear infinite; }
@keyframes hvPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hv-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 8px;
  vertical-align: middle;
  animation: hvPulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 4px rgba(216,138,174,0.18);
}
.hv-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  width: 100%;
}
.hv-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordo);
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.hv-date {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hv-countdown {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 36px;
}
.hv-cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 88px;
}
.hv-cd-num {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  color: var(--bordo);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.hv-cd-cell.hv-cd-sec .hv-cd-num { color: var(--orange); }
.hv-cd-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 12px;
}
.hv-cd-sep {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
  color: rgba(26,20,22,0.18);
  font-weight: 300;
  padding-top: 6px;
}
.hv-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: 0 12px 24px -16px rgba(58,0,28,0.18);
}
.hv-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hv-proof-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.hv-proof-lbl {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-50);
  text-align: center;
  line-height: 1.25;
}
.hv-proof-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}
.hv-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 130px;
  height: 130px;
  z-index: 3;
  border-radius: 50%;
  background-color: #2B1F45;
  background-image: var(--bordo-bg-square);
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: rotate(-6deg);
  box-shadow: 0 20px 40px -20px rgba(122,0,60,0.5);
}
.hv-badge-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
  color: var(--orange);
}
.hv-badge-txt {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-align: center;
  font-weight: 500;
}

/* ======================================================
   TRUST
====================================================== */
.trust {
  padding: 100px 0 80px;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
.trust-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #FAF9F7;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.trust-card.in { opacity: 1; transform: none; }
.trust-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(60px, 6vw, 88px);
  line-height: 1;
  color: var(--bordo);
  margin-bottom: 18px;
}
.trust-lbl {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 500;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}
.trust-sub {
  font-size: 13px;
  color: var(--ink-50);
}

.trust-logos-title {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-50);
  margin-bottom: 28px;
}
.trust-logos-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 48px;
  opacity: 0.65;
}
.logo-placeholder {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--ink-50);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px dashed var(--ink-30);
}

/* Partner marquee — infinite horizontal scroll */
.partner-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.partner-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: partner-scroll 80s linear infinite;
  will-change: transform;
}
.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}
@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partner-logo {
  flex: 0 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo img {
  max-height: 56px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.7;
  transition: filter 0.35s ease, opacity 0.35s ease;
}
.partner-logo:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
}
@media (max-width: 768px) {
  .partner-track { gap: 40px; animation-duration: 60s; }
  .partner-logo { height: 44px; }
  .partner-logo img { max-height: 44px; max-width: 120px; }
}

/* ======================================================
   AUDIENCE
====================================================== */
.audience {
  padding: 140px 0 20px;
  background: var(--bg);
}
.audience-list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.audience-item {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 32px;
  align-items: center;
  padding: 32px 16px;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease, background 0.3s ease;
  cursor: default;
}
.audience-item.in { opacity: 1; transform: none; }
.audience-item:hover {
  background: rgba(255,255,255,0.6);
  padding-left: 24px;
}
.audience-item:hover .audience-arrow { color: var(--bordo); transform: translateX(4px); }
.audience-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 48px;
  color: var(--bordo);
  line-height: 1;
  font-style: italic;
}
.audience-t {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 6px;
}
.audience-d {
  font-size: 15px;
  color: var(--ink-70);
  line-height: 1.55;
  max-width: 560px;
}
.audience-arrow {
  color: var(--ink-30);
  transition: color 0.25s, transform 0.25s;
}

/* ======================================================
   HEXAGON — Kaj je Akademija IR (interactive)
====================================================== */
.hex-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #EBE3F1 100%);
  padding: 100px 0 120px;
}
.hex-section .section-head { margin-bottom: 56px; }

.hex-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hex-wrap.in { opacity: 1; transform: none; }

.hex-stage {
  position: relative;
  width: 640px;
  height: 640px;
  max-width: 100%;
}

.hex-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hex-outline {
  fill: rgba(122, 0, 60, 0.03);
  stroke: rgba(122, 0, 60, 0.25);
  stroke-width: 0.3;
  vector-effect: non-scaling-stroke;
}
.hex-spoke {
  stroke: rgba(122, 0, 60, 0.12);
  stroke-width: 0.2;
  vector-effect: non-scaling-stroke;
  transition: stroke 0.4s ease, stroke-width 0.4s ease;
}
.hex-spoke.active {
  stroke: var(--orange);
  stroke-width: 0.6;
}

/* Center description panel */
.hex-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  text-align: center;
  padding: 24px 20px;
  pointer-events: none;
  animation: hexFadeIn 0.45s ease;
}
@keyframes hexFadeIn {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.hex-center-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.hex-center-t {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15;
  color: var(--bordo);
  margin: 0 0 10px;
  font-weight: 400;
}
.hex-center-d {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0;
}

/* Vertex node buttons */
.hex-node {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px 12px;
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  font-family: var(--sans);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  z-index: 2;
}
.hex-node:hover,
.hex-node.active,
.hex-node:focus-visible {
  outline: none;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0EBF5 100%);
  border-color: var(--orange);
  box-shadow: 0 14px 32px -16px rgba(122, 0, 60, 0.45);
  transform: translate(-50%, -50%) scale(1.06);
}

.hex-node-ic {
  color: var(--bordo);
  display: inline-flex;
  transition: transform 0.4s ease, color 0.3s ease;
}
.hex-node.active .hex-node-ic,
.hex-node:hover .hex-node-ic {
  color: var(--bordo-deep);
  transform: scale(1.1);
}

.hex-node-t {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

.hex-node-body { display: contents; }
.hex-node-d { display: none; }

.hex-node-num {
  position: absolute;
  top: 6px;
  right: 10px;
  font-family: var(--serif);
  font-size: 11px;
  color: var(--ink-50);
  letter-spacing: 0.06em;
}
.hex-node.active .hex-node-num,
.hex-node:hover .hex-node-num { color: var(--orange); }

/* Tablet */
@media (max-width: 900px) {
  .hex-stage { width: 540px; height: 540px; }
  .hex-node { width: 130px; padding: 12px 8px 10px; }
  .hex-node-t { font-size: 12px; }
  .hex-center { width: 260px; }
  .hex-center-t { font-size: 22px; }
}

/* Mobile: ditch the hexagon, stack as accordion-style list */
@media (max-width: 640px) {
  .hex-section { padding: 60px 0 80px; }
  .hex-stage {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hex-bg, .hex-center { display: none; }
  .hex-node {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 16px;
    text-align: left;
  }
  .hex-node-num {
    position: static;
    order: -1;
    color: var(--orange);
    font-size: 13px;
  }
  .hex-node-t {
    flex: 1;
    font-size: 15px;
  }
  .hex-node.active,
  .hex-node:hover,
  .hex-node:focus-visible {
    transform: none !important;
  }
  .hex-node-body {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }
  .hex-node-d {
    display: block;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--ink-70);
    margin-top: 4px;
  }
  .hex-node-num {
    position: static;
    color: var(--orange);
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

/* ======================================================
   DIAMOND (legacy — replaced by Hexagon, kept for safety)
====================================================== */
.diamond-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #EEE9E5 100%);
  padding: 100px 0 120px;
}
.bento-section .section-head { margin-bottom: 56px; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, minmax(180px, auto));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.bento-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.bento-card.in { opacity: 1; transform: none; }
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(246, 148, 73, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.bento-card:hover {
  border-color: rgba(122, 0, 60, 0.25);
  box-shadow: 0 18px 40px -22px rgba(122, 0, 60, 0.35);
  transform: translateY(-4px);
}
.bento-card:hover::before { opacity: 1; }

/* Sizing */
.bento-hero  { grid-column: span 2; grid-row: span 2; padding: 40px 36px 36px; }
.bento-tall  { grid-column: span 1; grid-row: span 2; }
.bento-wide  { grid-column: span 2; grid-row: span 1; }
.bento-small { grid-column: span 1; grid-row: span 1; }

/* Hero card — decorative background */
.bento-hero {
  background:
    linear-gradient(135deg, #F7F4FA 0%, #EBE3F1 100%);
  border-color: rgba(122, 0, 60, 0.18);
}
.bento-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 0, 60, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bento-ic {
  color: var(--bordo);
  margin-bottom: auto;
  display: inline-flex;
  transition: transform 0.4s ease;
}
.bento-card:hover .bento-ic { transform: scale(1.08) rotate(-3deg); }

.bento-ic-bg {
  fill: rgba(246, 148, 73, 0.10);
  transition: fill 0.4s ease;
}
.bento-card:hover .bento-ic-bg { fill: rgba(246, 148, 73, 0.2); }
.bento-ic-stroke { stroke: var(--bordo); }
.bento-ic-fill   { fill: var(--orange); }

.bento-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-50);
  letter-spacing: 0.04em;
  margin-top: 18px;
}
.bento-hero .bento-num { font-size: 16px; }

.bento-t {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  color: var(--bordo);
  margin: 8px 0 10px;
  font-weight: 400;
}
.bento-hero .bento-t { font-size: 40px; }
.bento-small .bento-t { font-size: 22px; }

.bento-d {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0;
}
.bento-hero .bento-d { font-size: 17px; line-height: 1.6; max-width: 420px; }
.bento-small .bento-d { font-size: 14px; }

@media (max-width: 980px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(160px, auto);
    grid-template-rows: none;
  }
  .bento-hero  { grid-column: span 2; grid-row: span 1; }
  .bento-tall  { grid-column: span 1; grid-row: span 1; }
  .bento-wide  { grid-column: span 2; grid-row: span 1; }
  .bento-small { grid-column: span 1; grid-row: span 1; }
  .bento-hero .bento-t { font-size: 30px; }
}

@media (max-width: 600px) {
  .bento-section { padding: 60px 0 80px; }
  .bento-grid { grid-template-columns: 1fr; gap: 14px; }
  .bento-hero, .bento-tall, .bento-wide, .bento-small {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento-card { padding: 24px 22px; }
  .bento-hero .bento-t { font-size: 26px; }
  .bento-t { font-size: 22px; }
}

/* ======================================================
   DIAMOND (legacy — replaced by Bento, kept for safety)
====================================================== */
.diamond-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #EEE9E5 100%);
  /* tall so sticky drives the scroll animation */
  height: 400vh;
}
.diamond-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.diamond-layout {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.diamond-copy { max-width: 500px; }
.diamond-copy .section-title { text-align: left; margin-top: 20px; }
.diamond-copy .section-sub { text-align: left; }

.diamond-progress {
  margin-top: 40px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
}
.diamond-progress-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-50);
  margin-bottom: 10px;
}
.diamond-progress-label strong {
  color: var(--bordo);
  font-weight: 600;
}
.diamond-progress-bar {
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.diamond-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--bordo), var(--orange));
  transition: width 0.1s linear;
}

.diamond-stage {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diamond-wrap {
  position: relative;
  width: 560px;
  height: 560px;
  max-width: 100%;
}
.diamond-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 40px 60px rgba(58, 0, 28, 0.3));
  transition: transform 0.1s linear;
}
.diamond-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.d-label {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  white-space: nowrap;
  transition: transform 0.1s linear, background 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 4px 12px -6px rgba(26,20,22,0.15);
}
.d-label-num {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-50);
}
.d-label-t {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.d-label-active {
  background: var(--bordo);
  border-color: var(--bordo);
  box-shadow: 0 10px 20px -6px rgba(122,0,60,0.45);
}
.d-label-active .d-label-num { color: var(--orange); }
.d-label-active .d-label-t { color: #fff; }

.diamond-detail {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 420px;
  text-align: center;
  padding: 20px 24px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -20px rgba(26,20,22,0.2);
  animation: ddPop 0.5s ease;
}
@keyframes ddPop {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.dd-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 6px;
}
.dd-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--bordo);
  margin-bottom: 6px;
}
.dd-desc {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.5;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-50);
  transition: opacity 0.4s;
  z-index: 3;
  animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ======================================================
   PROGRAM (accordion list)
====================================================== */
.program {
  padding: 140px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.program-list {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.pl-row {
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}
.pl-row.open { background: #FAF9F7; }

.pl-head {
  width: 100%;
  display: grid;
  grid-template-columns: 140px 1fr 320px 28px;
  align-items: center;
  gap: 28px;
  padding: 26px 24px;
  text-align: left;
  transition: padding 0.25s ease;
}
.pl-row.open .pl-head { padding-bottom: 18px; }
.pl-row:not(.open):hover { background: #FAF9F7; }

.pl-num-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pl-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  color: var(--bordo);
  font-weight: 500;
}
.pl-month {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-50);
  font-weight: 500;
}

.pl-title-col { min-width: 0; }
.pl-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 8px;
  text-wrap: balance;
}
.pl-lect-col {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.pl-lect-col:hover {
  border-color: var(--bordo);
  background: rgba(122,0,60,0.04);
  transform: translateX(-2px);
}
.pt-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bordo);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  flex-shrink: 0;
  overflow: hidden;
}
.pt-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.pt-lecturer-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
}
.pt-lecturer-role {
  font-size: 11px;
  color: var(--ink-50);
  font-weight: 400;
  margin-top: 2px;
}

.pl-terms {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.pl-term {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
}
.pl-term-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
}
.pl-term-live .pl-term-tag {
  background: var(--bordo);
  color: #fff;
}
.pl-term-online .pl-term-tag {
  background: var(--orange);
  color: #1A1416;
}
.pl-term-when {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-70);
  letter-spacing: 0.02em;
}

.format-legend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-70);
  font-weight: 600;
}
.fl-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.fl-live .fl-dot { background: var(--bordo); }
.fl-online .fl-dot { background: var(--orange); }

.pl-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-50);
  flex-wrap: wrap;
}
.pl-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pl-meta-item svg { color: var(--bordo); opacity: 0.7; }
.pl-meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-30);
}

.pl-lect-col {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  transition: all 0.2s;
  cursor: pointer;
}
.pl-lect-col:hover {
  border-color: var(--bordo);
  background: rgba(122,0,60,0.04);
}

.pl-chev {
  color: var(--ink-50);
  transition: transform 0.3s ease, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pl-row.open .pl-chev { transform: rotate(180deg); color: var(--bordo); }

.pl-body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pl-row.open .pl-body-wrap { grid-template-rows: 1fr; }
.pl-body {
  overflow: hidden;
}
.pl-row.open .pl-body { padding: 0 24px 28px 192px; }
.pl-body-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.pl-body-terms {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pl-term-card {
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pl-term-card-live { border-left: 4px solid var(--bordo); }
.pl-term-card-online { border-left: 4px solid var(--orange); }
.pl-term-card:hover {
  box-shadow: 0 8px 20px -10px rgba(26,20,22,0.18);
}
.pl-term-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.pl-term-card-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.pl-term-card-live .pl-term-card-tag { background: var(--bordo); color: #fff; }
.pl-term-card-online .pl-term-card-tag { background: var(--orange); color: #1A1416; }
.pl-term-card-loc {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-50);
  font-weight: 500;
}
.pl-term-card-date {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.pl-term-card-time {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--bordo);
  font-weight: 500;
  margin-bottom: 8px;
}
.pl-term-card-loc-detail {
  font-size: 12px;
  color: var(--ink-70);
}
.pl-body-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-50);
  margin-bottom: 14px;
  font-weight: 500;
}
.pl-topics {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
/* When ANY top-level item is a group (nested), switch to single column for readability */
.pl-topics:has(.pl-topic-group) {
  grid-template-columns: 1fr;
  gap: 14px;
}
.pl-topics > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.5;
}
.pl-topic-bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  background: var(--orange);
  border-radius: 50%;
}
.pl-topic-bullet-sub {
  background: rgba(122,0,60,0.45);
  width: 5px;
  height: 5px;
  margin-top: 9px;
}
.pl-topic-group {
  flex-direction: column;
  gap: 8px !important;
  align-items: stretch !important;
}
.pl-topic-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--bordo);
  font-size: 14.5px;
  line-height: 1.4;
}
.pl-topics-nested {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pl-topics-nested li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-70);
  line-height: 1.5;
}
.pl-intro,
.pl-outro {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-60);
  margin: 0 0 18px;
  padding: 14px 18px;
  background: rgba(122,0,60,0.04);
  border-left: 3px solid rgba(122,0,60,0.25);
  border-radius: 0 6px 6px 0;
}
.pl-outro {
  margin: 18px 0 0;
}
.pl-lect-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bordo);
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid rgba(122,0,60,0.25);
  background: #FFFFFF;
  transition: all 0.2s;
}
.pl-lect-cta:hover {
  background: var(--bordo);
  color: #fff;
  border-color: var(--bordo);
}

@media (max-width: 1024px) {
  .pl-head { grid-template-columns: 100px 1fr 28px; gap: 20px; padding: 20px 16px; }
  .pl-lect-col { grid-column: 1 / -1; margin-top: 8px; }
  .pl-row.open .pl-body { padding: 0 16px 24px 136px; }
  .pl-topics { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pl-head { grid-template-columns: 80px 1fr 24px; gap: 14px; }
  .pl-num { font-size: 28px; }
  .pl-title { font-size: 18px; }
  .pl-row.open .pl-body { padding: 0 16px 24px 16px; }
}

/* ======================================================
   LECTURERS
====================================================== */
.lecturers {
  padding: 140px 0;
  background: var(--bg);
}
.lect-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lect-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.lect-row:hover {
  box-shadow: 0 24px 50px -28px rgba(58, 0, 28, 0.25);
  border-color: rgba(122, 0, 60, 0.25);
  transform: translateY(-2px);
}
.lect-row.open {
  border-color: var(--bordo);
  box-shadow: 0 24px 50px -24px rgba(58, 0, 28, 0.3);
}
.lect-row.just-picked {
  animation: lectPickPulse 1.2s ease;
}
@keyframes lectPickPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(246, 148, 73, 0); }
  40% { box-shadow: 0 0 0 8px rgba(246, 148, 73, 0.35); }
}
.lect-row-main {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  cursor: pointer;
  padding: 0;
}
.lect-photo-block {
  position: relative;
  background: linear-gradient(180deg, #EBE3F1 0%, #C9BDD8 100%);
  min-height: 240px;
  overflow: hidden;
}
.lect-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.lect-photo-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-image:
    repeating-linear-gradient(45deg, rgba(122,0,60,0.04) 0 2px, transparent 2px 18px);
}
.lect-photo-ph::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(122,0,60,0.2);
  border-radius: 6px;
  pointer-events: none;
}
.lect-photo-ph-initials {
  font-family: var(--serif);
  font-style: italic;
  font-size: 84px;
  color: rgba(122, 0, 60, 0.4);
  font-weight: 500;
  line-height: 1;
}
.lect-photo-ph-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-50);
  padding: 4px 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 100px;
}
.lect-info {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lect-info-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.lect-name-big {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.lect-role-big {
  font-size: 14px;
  color: var(--bordo);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.lect-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-50);
  font-weight: 500;
  transition: color 0.2s;
}
.lect-row:hover .lect-toggle { color: var(--bordo); }
.lect-toggle-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: transform 0.4s ease, background 0.2s, color 0.2s, border-color 0.2s;
}
.lect-row:hover .lect-toggle-ic {
  background: var(--bordo);
  color: #fff;
  border-color: var(--bordo);
}
.lect-row.open .lect-toggle-ic { transform: rotate(180deg); background: var(--bordo); color: #fff; border-color: var(--bordo); }
.lect-info-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-70);
  margin: 0;
  max-width: 640px;
}
.lect-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lect-info-tag {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(122, 0, 60, 0.06);
  color: var(--bordo);
  border: 1px solid rgba(122, 0, 60, 0.15);
  letter-spacing: 0.03em;
  font-weight: 500;
}
.lect-row-expand {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.lect-row.open .lect-row-expand { grid-template-rows: 1fr; }
.lect-row-expand-inner {
  overflow: hidden;
}
.lect-row.open .lect-row-expand-inner {
  padding: 4px 28px 28px 252px;
  border-top: 1px solid var(--line-soft);
  margin-top: 0;
}
.lect-expand-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bordo);
  font-weight: 600;
  margin: 22px 0 10px;
}
.lect-long-bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-70);
  margin: 0;
  max-width: 720px;
}

@media (max-width: 768px) {
  .lect-row-main { grid-template-columns: 1fr; gap: 0; }
  .lect-photo-block { min-height: 220px; }
  .lect-info { padding: 24px; }
  .lect-info-head { flex-direction: column; gap: 12px; }
  .lect-row.open .lect-row-expand-inner { padding: 4px 24px 24px 24px; }
}

.lect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .lect-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 768px) {
  /* Lecturer cards: HORIZONTAL — info on LEFT, photo on RIGHT, full face visible */
  .lect-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .lect-card { aspect-ratio: auto !important; min-height: 170px; }
  .lect-front { flex-direction: row-reverse; align-items: stretch; }
  .lect-photo {
    position: relative;
    inset: auto;
    flex: 0 0 130px;
    width: 130px;
    height: auto;
    overflow: hidden;
  }
  .lect-photo-img { object-position: center 25%; }
  .lect-front-body {
    flex: 1 1 auto;
    background: #fff;
    padding: 16px 18px;
    border-top: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .lect-name { font-size: 16px; line-height: 1.25; }
  .lect-role { font-size: 12.5px; }
  .lect-flip-hint { font-size: 10.5px; gap: 4px; padding-top: 10px; margin-top: 8px; }
  .lect-back-header .lect-name-back { font-size: 16px; }
  .lect-back-header .lect-role-back { font-size: 12px; }
  .lect-bio { font-size: 12px; line-height: 1.45; }
  .lect-tags { gap: 4px; }
  .lect-tag { font-size: 9.5px; padding: 3px 7px; }
  .lect-back { padding: 14px 16px; }
  .lect-back-foot { font-size: 10px; }
}
@media (max-width: 480px) {
  .lect-card { min-height: 150px; }
  .lect-photo { flex: 0 0 110px; width: 110px; }
  .lect-name { font-size: 15px; }
  .lect-role { font-size: 11.5px; }
  .lect-front-body { padding: 14px 14px; }
}

.lect-grid-deprecated {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.lect-card {
  position: relative;
  aspect-ratio: 4 / 5;
  perspective: 1200px;
  cursor: pointer;
}
.lect-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}
.lect-card.flipped .lect-inner,
.lect-card:hover .lect-inner { transform: rotateY(180deg); }
.lect-card.just-picked .lect-inner { animation: lectHighlight 1s ease; }
@keyframes lectHighlight {
  0%, 100% { box-shadow: 0 0 0 0 rgba(246, 148, 73, 0); }
  50% { box-shadow: 0 0 0 6px rgba(246, 148, 73, 0.4); }
}
.lect-front, .lect-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px -20px rgba(26,20,22,0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.lect-card:hover .lect-front {
  box-shadow: 0 24px 48px -20px rgba(26,20,22,0.18);
}
.lect-front { justify-content: flex-end; }
.lect-back {
  transform: rotateY(180deg);
  background: var(--bordo);
  color: #fff;
  border-color: var(--bordo);
  padding: 28px 24px;
}
.lect-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #EBE3F1 0%, #CDC1D9 100%);
}
.lect-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-image:
    repeating-linear-gradient(45deg, rgba(122,0,60,0.04) 0 2px, transparent 2px 16px);
}
.lect-initials {
  font-family: var(--serif);
  font-style: italic;
  font-size: 72px;
  color: rgba(122,0,60,0.45);
  font-weight: 500;
  line-height: 1;
}
.lect-photo-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-50);
}
.lect-front-body {
  position: relative;
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 30%);
  z-index: 2;
}
.lect-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 4px;
}
.lect-role {
  font-size: 13px;
  color: var(--bordo);
  margin-bottom: 14px;
}
.lect-flip-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-50);
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.lect-back-header { margin-bottom: 14px; }
.lect-name-back { color: #fff; }
.lect-role-back { color: var(--orange); }
.lect-bio {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0 0 18px;
  flex: 1;
}
.lect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.lect-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.15);
}
.lect-back-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ======================================================
   LECTURERS — mobile override (must be after defaults to win cascade)
====================================================== */
@media (max-width: 768px) {
  .lect-card {
    aspect-ratio: auto;
    min-height: 150px;
    transition: min-height 0.5s ease;
  }
  /* When flipped, card grows so back content (bio + tags + footer) fits */
  .lect-card.flipped { min-height: 280px; }
  /* disable hover-flip on touch (avoids confused tap → flip → tap-out behavior) */
  .lect-card:hover .lect-inner { transform: none; }
  .lect-card.flipped .lect-inner { transform: rotateY(180deg); }

  .lect-front {
    flex-direction: row-reverse;
    align-items: stretch;
  }
  .lect-photo {
    position: relative;
    inset: auto;
    flex: 0 0 120px;
    width: 120px;
    height: auto;
    align-self: stretch;
  }
  .lect-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
  }
  .lect-front-body {
    flex: 1 1 auto;
    padding: 14px 16px 12px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .lect-name { font-size: 16px; line-height: 1.2; margin-bottom: 4px; }
  .lect-role { font-size: 12px; margin-bottom: 10px; }
  .lect-flip-hint {
    margin-top: auto;
    padding-top: 10px;
    font-size: 10.5px;
    border-top: 1px solid var(--line-soft);
  }
  .lect-back { padding: 16px 18px 14px; }
  .lect-back-header { margin-bottom: 8px; }
  .lect-name-back { font-size: 15px; }
  .lect-role-back { font-size: 11.5px; }
  .lect-bio { font-size: 13.5px; line-height: 1.5; margin-bottom: 10px; }
  .lect-tags { margin-bottom: 10px; gap: 4px; }
  .lect-tag { font-size: 10px; padding: 2px 7px; }
  .lect-back-foot { padding-top: 8px; font-size: 10px; }
}
@media (max-width: 480px) {
  .lect-card { min-height: 130px; }
  .lect-card.flipped { min-height: 300px; }
  .lect-photo { flex: 0 0 100px; width: 100px; }
  .lect-name { font-size: 15px; }
  .lect-front-body { padding: 12px 14px 10px; }
}

/* ======================================================
   TESTIMONIALS
====================================================== */
.testimonials {
  padding: 140px 0 120px;
  background: var(--bg);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.testimonials .section-head { margin-bottom: 56px; }

.test-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 24px;
  margin-bottom: 64px;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.test-marquee.in { opacity: 1; }
.test-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: test-scroll 90s linear infinite;
  will-change: transform;
}
.test-marquee.paused .test-track { animation-play-state: paused; }
@keyframes test-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.test-card {
  flex: 0 0 460px;
  width: 460px;
  padding: 36px 32px 30px;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 12px 28px -22px rgba(58,0,28,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.test-card:hover {
  transform: translateY(-3px);
  border-color: rgba(122,0,60,0.18);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 22px 40px -22px rgba(58,0,28,0.18);
}
.test-quote-mark {
  line-height: 0;
  color: var(--orange);
}
.test-quote {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
  flex: 1;
}
.test-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.test-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.test-role {
  font-size: 13px;
  color: var(--ink-70);
  margin-top: 2px;
}

.test-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.test-fade-l {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(247,246,244,0) 100%);
}
.test-fade-r {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, rgba(247,246,244,0) 100%);
}

/* ======================================================
   WHY AKADEMIJA
====================================================== */
.why {
  padding: 140px 0;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto 56px;
}
.why-card {
  position: relative;
  padding: 36px 28px 32px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
  isolation: isolate;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(216,138,174,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}
.why-card.in { opacity: 1; transform: none; }
.why-card:hover {
  border-color: rgba(122,0,60,0.35);
  box-shadow: 0 30px 50px -28px rgba(122, 0, 60, 0.28);
  transform: translateY(-4px);
}
.why-card:hover::before { opacity: 1; }

.why-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-30);
  transition: color 0.3s;
}
.why-card:hover .why-num { color: var(--bordo); }

.why-ic {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--bordo);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-card:hover .why-ic { transform: scale(1.08) rotate(-4deg); }

.why-ic-bg {
  fill: rgba(122, 0, 60, 0.06);
  transition: fill 0.4s ease;
}
.why-card:hover .why-ic-bg { fill: rgba(246, 148, 73, 0.18); }
.why-ic-stroke { transition: stroke 0.4s ease; }
.why-ic-fill {
  fill: var(--orange);
  transition: fill 0.4s ease, transform 0.4s ease;
  transform-origin: center;
  transform-box: fill-box;
}
.why-card:hover .why-ic-fill { transform: scale(1.15); }
.why-ic-dot { fill: var(--orange); }

.why-t {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
  text-wrap: balance;
}
.why-d {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-70);
}
.why-arrow {
  position: absolute;
  bottom: 22px;
  right: 24px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: rgba(122,0,60,0.06);
  color: var(--bordo);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease;
}
.why-card:hover .why-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--bordo);
  color: #fff;
}
.why-cta {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.why-cta > span {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  text-wrap: balance;
}

/* ======================================================
   PACKAGE
====================================================== */
.pkg {
  padding: 140px 0;
  background-color: #2B1F45;
  background-image: var(--bordo-bg);
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pkg::before {
  content: "";
  position: absolute;
  top: -250px;
  left: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(216,138,174,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.pkg .eyebrow {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.pkg-list {
  list-style: none;
  margin: 0 auto 56px;
  padding: 0;
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.pkg-list::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(246,148,73,0) 0%,
    rgba(246,148,73,0.45) 12%,
    rgba(246,148,73,0.45) 88%,
    rgba(246,148,73,0) 100%);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pkg-list.in::before { transform: scaleY(1); }

.pkg-bullet {
  display: grid;
  grid-template-columns: 56px 110px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
  position: relative;
}
.pkg-bullet:last-child { border-bottom: none; }
.pkg-list.in > .pkg-bullet {
  animation: pkgBulletIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes pkgBulletIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.pkg-list:not(.in) > .pkg-bullet {
  opacity: 0;
}
.pkg-bullet:hover { background: rgba(255,255,255,0.025); }
.pkg-bullet:hover .pkg-bullet-mark {
  background: var(--orange);
  color: var(--bordo-dark);
  border-color: var(--orange);
  transform: scale(1.08);
}
.pkg-bullet:hover .pkg-bullet-num { color: #E8AEC9; }

.pkg-bullet-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(246,148,73,0.12);
  color: var(--orange);
  border: 1px solid rgba(246,148,73,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 12px;
  align-self: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 0 4px #2B1F45; /* mask the line behind it */
  position: relative;
  z-index: 2;
}
.pkg-bullet-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.01em;
  align-self: center;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.pkg-bullet-num.is-text { font-size: 28px; }
.pkg-bullet-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}
.pkg-bullet-t {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-wrap: balance;
}
.pkg-bullet-novo {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 9px 3px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: rgba(216, 138, 174, 0.22);
  color: #F5C9DA;
  border: 1px solid rgba(216, 138, 174, 0.55);
  border-radius: 100px;
  vertical-align: middle;
  transform: translateY(-3px);
}
.pkg-bullet-d {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  text-wrap: pretty;
}
.pkg-cta {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pkg-cta-btn {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--bordo-dark);
  font-weight: 600;
  padding: 18px 32px;
  font-size: 16px;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4);
}
.pkg-cta-btn:hover { background: #FFA05B; border-color: #FFA05B; transform: translateY(-1px); }
.pkg-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-cta { flex-direction: column; padding: 24px; text-align: center; }
  .pkg-bullet {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px 4px;
  }
  .pkg-bullet-num {
    grid-column: 2;
    font-size: 40px;
    margin-bottom: 6px;
  }
  .pkg-bullet-body { grid-column: 2; }
  .pkg-list::before { left: 22px; }
  .pkg-bullet-mark { width: 28px; height: 28px; margin-left: 8px; }
}

/* ======================================================
   STRATEGIC CALL
====================================================== */
.scall {
  padding: 140px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.scall::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -200px;
  width: 600px;
  height: 600px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(246,148,73,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.scall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
  position: relative;
}
.scall-stack {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.scall-stack .scall-benefit {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scall-stack.in .scall-benefit { opacity: 1; transform: none; }
.scall-cta-solo {
  align-self: center;
  margin-top: 24px;
  padding: 18px 36px;
  font-size: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s, background 0.25s ease;
}
.scall-stack.in .scall-cta-solo { opacity: 1; transform: none; }
@media (max-width: 600px) {
  .scall-stack { gap: 22px; }
  .scall-cta-solo { padding: 16px 28px; font-size: 15px; width: 100%; justify-content: center; }
}
.scall-benefits {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.scall-benefit {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scall-benefits.in .scall-benefit { opacity: 1; transform: none; }
.scall-benefit-ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(122,0,60,0.06);
  border: 1px solid rgba(122,0,60,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--bordo);
  font-style: italic;
}
.scall-benefit-t {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.25;
}
.scall-benefit-d {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.55;
}

.scall-card {
  background: var(--bordo);
  color: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(122, 0, 60, 0.45);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.scall-card.in { opacity: 1; transform: none; }
.scall-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,148,73,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.scall-card-head {
  position: relative;
  margin-bottom: 28px;
}
.scall-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.scall-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(246,148,73,0.6);
  animation: scallDot 2s ease-in-out infinite;
}
@keyframes scallDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(246,148,73,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(246,148,73,0); }
}
.scall-card-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 10px;
  text-wrap: balance;
}
.scall-card-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.scall-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.scall-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
}
.scall-includes .check-ic {
  background: rgba(216,138,174,0.18);
  color: var(--orange);
  border: 1px solid rgba(246,148,73,0.3);
}
.scall-cta {
  width: 100%;
  justify-content: center;
  background: var(--orange);
  border-color: var(--orange);
  color: var(--bordo-dark);
  font-weight: 600;
  padding: 18px;
  font-size: 15px;
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.4);
}
.scall-cta:hover {
  background: #FFA05B;
  border-color: #FFA05B;
  transform: translateY(-1px);
}
.scall-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.scall-guarantee svg { color: var(--orange); }

@media (max-width: 1024px) {
  .scall-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .scall { padding: 100px 0; }
  .scall-card { padding: 28px 24px; }
  .scall-card-title { font-size: 26px; }
}

/* ======================================================
   FAQ
====================================================== */
.faq {
  padding: 140px 0;
  background: var(--bg);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-head { position: sticky; top: 100px; }
.faq-head .section-title {
  text-align: left;
  font-size: clamp(32px, 3.5vw, 44px);
}
.faq-head .section-sub { text-align: left; margin-bottom: 28px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 50px 1fr 32px;
  gap: 16px;
  align-items: center;
  padding: 26px 0;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--bordo); }
.faq-q-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-50);
  letter-spacing: 0.05em;
}
.faq-q-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: inherit;
}
.faq-q-ic {
  color: var(--ink-50);
  transition: transform 0.3s ease, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.open .faq-q-ic { transform: rotate(180deg); color: var(--bordo); }

.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a {
  overflow: hidden;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-70);
  padding-right: 40px;
}
.faq-item.open .faq-a { padding-bottom: 26px; padding-left: 66px; }

/* ======================================================
   CTA / FORM
====================================================== */
.cta {
  padding: 140px 0 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF9F7 100%);
  border-top: 1px solid var(--line);
}
.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  padding-bottom: 0;
}
.cta-left {
  position: relative;
  padding-bottom: 0;
  min-height: 0;
  height: 100%;
}
.cta-right { padding-bottom: 0; }
.cta-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 22px 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.cta-title em { font-family: var(--serif-accent); font-style: italic; font-weight: 500; color: var(--bordo); }

/* Tina cutout — absolute positioned full-height right; text floats above */
.cta-tina-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 55%;
  object-fit: contain;
  object-position: bottom right;
  margin-bottom: -1px;
  z-index: 1;
  pointer-events: none;
}
.cta-left > .eyebrow,
.cta-left > .cta-title {
  position: relative;
  z-index: 2;
}
.cta-left > .cta-title {
  margin-right: 28%; /* title can extend partially over Tina's airspace but stop before her face */
}
.cta-tina-caption {
  position: relative;
  z-index: 2;
  margin: 28px 50% 0 0; /* caption fully on left of Tina */
}
.cta-tina-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-70);
  margin-bottom: 4px;
}
.cta-tina-name {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  color: var(--bordo);
  font-weight: 500;
  margin-bottom: 6px;
}
.cta-tina-role {
  font-size: 14px;
  color: var(--ink-50);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .cta-tina-img {
    position: relative;
    inset: auto;
    height: auto;
    width: 60%;
    max-width: 240px;
    display: block;
    margin: 16px auto 0;
  }
  .cta-left > .cta-title { margin-right: 0; }
  .cta-tina-caption { margin: 16px 0 0; }
  .cta-tina-name { font-size: 22px; }
  .cta-tina-line { font-size: 16px; }
  .cta-tina-role { font-size: 13px; }
  .cta-right { padding-bottom: 0; }
}
.cta-sub {
  font-size: 17px;
  color: var(--ink-70);
  margin: 0 0 36px;
  max-width: 480px;
}

.cta-person {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.cta-avatar {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #EEE9E5 0%, #D4CFCC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: rgba(122,0,60,0.55);
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.cta-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.cta-avatar-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-50);
  letter-spacing: 0.1em;
}
.cta-person-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.cta-person-role {
  font-size: 13px;
  color: var(--bordo);
  margin-bottom: 4px;
}
.cta-person-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}
.cta-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-70);
  transition: color 0.2s;
}
.cta-contact-item:hover { color: var(--bordo); }
.cta-contact-item svg { color: var(--bordo); opacity: 0.7; flex-shrink: 0; }
.cta-sep { margin: 0 8px; color: var(--ink-30); }

.cta-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-70);
}

.cta-form {
  background: #FFFFFF;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -30px rgba(122, 0, 60, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-form-head { margin-bottom: 8px; }
.cta-form-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
}
.cta-form-sub {
  font-size: 14px;
  color: var(--ink-50);
  margin-top: 4px;
}
.cta-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-field > span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-70);
  font-weight: 500;
}
.cta-optional {
  color: var(--ink-30);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.cta-field input,
.cta-field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #FAF9F7;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  resize: vertical;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.cta-field input:focus,
.cta-field textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--bordo);
  box-shadow: 0 0 0 3px rgba(122, 0, 60, 0.08);
}
.cta-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cta-submit {
  margin-top: 8px;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
}
.cta-legal {
  font-size: 12px;
  color: var(--ink-50);
  line-height: 1.5;
  text-align: center;
}
.cta-legal a { color: var(--bordo); text-decoration: underline; }

.cta-sent {
  padding: 48px 36px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  animation: fadeUp 0.6s ease;
}
.cta-sent-ic { margin-bottom: 20px; display: flex; justify-content: center; }
.cta-sent-title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--bordo);
  font-weight: 500;
  margin-bottom: 8px;
}
.cta-sent-sub { color: var(--ink-70); font-size: 15px; }

.cta-footer {
  border-top: 1px solid var(--line);
  background: #FFFFFF;
  padding: 32px 0;
}
.cta-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-footer-logo { height: 54px; width: auto; }
.cta-footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--ink-70);
}
.cta-footer-links a:hover { color: var(--bordo); }
.cta-footer-meta {
  font-size: 12px;
  color: var(--ink-50);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 440px; }
  .diamond-layout { grid-template-columns: 1fr; gap: 40px; }
  .diamond-section { height: 500vh; }
  .diamond-wrap { width: 400px; height: 400px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: static; }
  .cta-layout { grid-template-columns: 1fr; gap: 40px; }
  .pt-head, .pt-row { grid-template-columns: 160px 1fr; }
  .pt-head > span:last-child, .pt-row .pt-lecturer {
    grid-column: 1 / -1;
    margin-top: 8px;
  }
  .trust-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 60px 0 80px; }
  .hero-checks { grid-template-columns: 1fr; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .meta-sep { display: none; }
  .audience-item { grid-template-columns: 60px 1fr; gap: 20px; }
  .audience-arrow { display: none; }
  .audience-num { font-size: 36px; }
  .audience-t { font-size: 20px; }
  .diamond-wrap { width: 320px; height: 320px; }
  .diamond-detail { bottom: 20px; max-width: 280px; padding: 14px 18px; }
  .pt-head, .pt-row { grid-template-columns: 1fr; }
  .pt-term { flex-direction: row; }
  .cta-form { padding: 24px; }
  .cta-row-2 { grid-template-columns: 1fr; }
}


/* ======================================================
   SIGNUP MODAL
====================================================== */
.sm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 22, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: smFadeIn 0.22s ease-out;
}
@keyframes smFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.sm-modal {
  position: relative;
  width: 100%;
  max-width: 920px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 40px 80px -20px rgba(58, 0, 28, 0.45),
    0 20px 40px -20px rgba(26, 20, 22, 0.35);
  animation: smSlideIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes smSlideIn {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.sm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink-70);
  background: rgba(255,255,255,0.85);
  transition: background 0.15s, color 0.15s;
}
.sm-close:hover {
  background: var(--bg);
  color: var(--bordo);
}
.sm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  min-height: 100%;
}
.sm-side {
  background: linear-gradient(155deg, var(--bordo) 0%, var(--bordo-dark) 100%);
  color: #fff;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.sm-side::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,138,174,0.18), transparent 70%);
  pointer-events: none;
}
.sm-eyebrow {
  color: var(--orange) !important;
  position: relative;
  z-index: 1;
}
.sm-eyebrow .eyebrow-dot {
  background: var(--orange);
}
.sm-side-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  position: relative;
  z-index: 1;
}
.sm-side-title em {
  font-style: italic;
  color: var(--orange);
}
.sm-side-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.sm-side-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
}
.sm-side-bullets .check-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(216,138,174,0.18);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sm-side-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.sm-side-foot-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.sm-side-foot-link {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  transition: color 0.15s;
}
.sm-side-foot-link:hover {
  color: var(--orange);
}
.sm-body {
  padding: 56px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sm-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sm-sent {
  text-align: center;
  padding: 40px 20px;
}
.sm-sent-close {
  margin-top: 24px;
}

@media (max-width: 760px) {
  .sm-modal { max-width: 100%; }
  .sm-grid { grid-template-columns: 1fr; }
  .sm-side {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 36px 28px 32px;
    gap: 20px;
  }
  .sm-side-title { font-size: 28px; }
  .sm-side-foot { padding-top: 18px; }
  .sm-body { padding: 32px 28px; }
}


/* ======================================================
   INLINE SECTION CTA (end-of-section signup nudge)
====================================================== */
.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.section-cta-light {
  border-top-color: rgba(255,255,255,0.12);
}
.section-cta-text {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 640px;
  text-wrap: balance;
}
.section-cta-light .section-cta-text {
  color: #fff;
}
.section-cta-text em {
  font-family: var(--serif-accent);
  font-style: italic;
  color: var(--bordo);
}
.section-cta-light .section-cta-text em {
  color: var(--orange);
}
.section-cta .btn {
  margin-top: 4px;
}

@media (max-width: 720px) {
  .section-cta { margin-top: 48px; padding-top: 32px; }
  .section-cta-text { font-size: 22px; }
}

/* ======================================================
   MOBILE COMPREHENSIVE — 768px (intermediate) + 480px (phones)
   Added 2026-05-06 — round 2 mobile fixes
====================================================== */

@media (max-width: 768px) {
  /* Header — hide secondary nav, keep logo + primary CTA */
  .site-nav { display: none; }
  .site-header-inner { gap: 16px; }

  /* Hero — tighten spacing */
  .hero { padding: 90px 0 60px; }
  .hero-inner { gap: 36px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { display: inline-flex; margin: 0 auto; }
  .hero-title em { display: block; }
  .hero-cta-row { justify-content: center; }
  .hero-checks { grid-template-columns: 1fr; gap: 10px; text-align: left; }
  /* Hero meta handled below — keep row layout */
  .hero-cta-row { flex-wrap: wrap; gap: 12px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }

  /* Hero meta — keep 3 items on ONE row at mobile */
  .hero-meta {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
    padding-top: 22px;
  }
  .hero-meta > div:not(.meta-sep) { flex: 1 1 0; min-width: 0; }
  .hero-meta .meta-sep { display: none; }
  .hero-meta .meta-num { font-size: 26px; }
  .hero-meta .meta-lbl { font-size: 10px; letter-spacing: 0.06em; }

  /* Hero visual — REDESIGNED for mobile: linear, clean, no circle decorations */
  .hero-visual {
    order: -1;
    height: auto;
    aspect-ratio: auto;
    max-width: 100%;
    margin: 0;
    padding: 16px 0 8px;
  }
  .hv-stage {
    height: auto;
    aspect-ratio: auto;
    padding: 0;
    background: transparent;
  }
  /* Hide decorative elements on mobile */
  .hv-rings,
  .hv-badge,
  .hv-proof { display: none; }
  /* Reset center positioning — flow naturally */
  .hv-center {
    position: static;
    transform: none;
    padding: 0;
  }
  .hv-eyebrow { font-size: 11px; margin-bottom: 10px; justify-content: center; }
  .hv-date { font-size: 18px; margin-bottom: 16px; }
  .hv-countdown { gap: 4px; margin-bottom: 0; justify-content: center; }
  .hv-cd-cell { min-width: 0; flex: 1; max-width: 80px; }
  .hv-cd-num { font-size: 36px; }
  .hv-cd-sep { font-size: 26px; padding-top: 4px; color: rgba(26,20,22,0.25); }
  .hv-cd-lbl { font-size: 9px; letter-spacing: 0.12em; margin-top: 6px; }

  /* Trust — horizontal compact cards on mobile + logos block ABOVE stats */
  .trust { padding: 70px 0 60px; }
  .trust .container { display: flex; flex-direction: column; }
  .trust-logos { order: -1; margin-bottom: 36px; }
  .trust-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 0; }
  .trust-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    text-align: left;
    padding: 12px 22px;
    column-gap: 20px;
    row-gap: 2px;
  }
  .trust-num {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 44px;
    margin-bottom: 0;
    text-align: left;
  }
  .trust-lbl {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 14px;
    margin: 0;
    text-align: left;
    max-width: none;
    line-height: 1.3;
  }
  .trust-sub {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    font-size: 12px;
    text-align: left;
  }

  /* Audience — more breathing room before next section */
  .audience { padding: 90px 0 70px; }
  .audience-item { grid-template-columns: 60px 1fr; row-gap: 6px; }
  .audience-num { font-size: 36px; }
  .audience-t { font-size: 20px; }
  .audience-d { grid-column: 2; font-size: 14px; }

  /* Section CTA — closer to upper section, override inline 50px margin/padding */
  .section-cta { padding-top: 18px !important; margin-top: 24px !important; }

  /* Diamond — desktop structure, just everything closer/smaller on mobile */
  .diamond-layout { grid-template-columns: 1fr; gap: 16px; align-items: start; padding-top: 20px; }
  .dd-stage { width: 100%; max-width: 360px; margin: 0 auto; }
  .diamond-copy,
  .diamond-copy .section-title,
  .diamond-copy .section-sub { text-align: center; }
  .diamond-progress { margin-left: auto; margin-right: auto; }
  /* Stage: column flex so detail card flows BELOW the hexagon+labels */
  .diamond-stage {
    height: auto !important;
    min-height: 480px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
  }
  .diamond-wrap { width: 320px !important; height: 320px !important; flex: 0 0 auto; }
  /* Labels — compact pills, sitting just outside hexagon vertices */
  .d-label { padding: 4px 9px; gap: 0; }
  .d-label-num { font-size: 8px; }
  .d-label-t { font-size: 10.5px; }
  /* Detail card — at the BOTTOM of section, full-flow (not overlay) */
  .diamond-detail {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
    max-width: 320px;
    padding: 16px 20px;
  }
  .dd-num { font-size: 9px; margin-bottom: 4px; }
  .dd-title { font-size: 19px; margin-bottom: 4px; }
  .dd-desc { font-size: 13px; line-height: 1.5; }

  /* Program */
  .program { padding: 90px 0 60px; }
  .pl-head { grid-template-columns: 70px 1fr 28px; gap: 16px; padding: 18px 16px; }
  .pl-num { font-size: 26px; }
  .pl-title { font-size: 16px; }
  .pl-terms { flex-direction: column; gap: 8px; }
  .pl-lect-col { grid-column: 1 / -1; margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
  .pl-row.open .pl-body { padding: 0 16px 22px 16px; }

  /* Lecturers — flip cards readable on mobile */
  .lecturers { padding: 90px 0 40px; }

  /* Why — tighter section padding + compact cards */
  .why { padding: 60px 0 70px; }
  .why-grid { gap: 12px; }
  .why-card { padding: 18px 18px 16px; }
  .why-ic { width: 40px; height: 40px; margin-bottom: 10px; }
  .why-num { top: 14px; right: 16px; font-size: 10px; }
  .why-t { font-size: 17px; margin-bottom: 6px; }
  .why-d { font-size: 13.5px; line-height: 1.5; }

  /* Package */
  .pkg-bullet { padding: 18px 0; }
  .pkg-num { font-size: 36px; }
  .pkg-bullet-title { font-size: 18px; }

  /* StrategicCall — tighter section padding */
  .scall { padding: 60px 0 50px; }
  .scall-card { padding: 28px 22px; }
  .scall-title { font-size: 26px; }

  /* Testimonials — reduce padding so gap with prev section isn't huge */
  .testimonials { padding: 60px 0 70px; }
  .testimonials .section-head { margin-bottom: 36px; }

  /* FAQ — stack columns */
  .faq { padding: 60px 0 40px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-head { position: static; text-align: center; }
  .faq-head .section-title,
  .faq-head .section-sub { text-align: center; }
  .faq-head .btn { margin-left: auto; margin-right: auto; }
  .faq-q-text { font-size: 16px; }
  .faq-q { padding: 18px 8px; gap: 14px; }

  /* CTA section — tighter top, less gap between bullets and form */
  .cta-section { padding: 50px 0 60px; }
  .cta-layout { grid-template-columns: 1fr; gap: 16px; }
  .cta-left, .cta-right { padding: 24px 22px; }
  .cta-left { padding-bottom: 18px; }
  .cta-row-2 { grid-template-columns: 1fr; gap: 12px; }
  .cta-bullets { margin-bottom: 0; gap: 10px; }

  /* CTA footer */
  .cta-footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .cta-footer-links { flex-wrap: wrap; justify-content: center; gap: 16px 20px; }

  /* Testimonials cards */
  .test-card { flex: 0 0 min(420px, 82vw); width: min(420px, 82vw); padding: 28px 24px; }
  .test-quote { font-size: 14.5px; }

  /* SignupModal */
  .sm-modal { max-height: 92vh; }
  .sm-side { padding: 28px 24px; }
  .sm-body { padding: 28px 24px; }
  .sm-title { font-size: 24px; }

  /* Section titles — slight scale + center eyebrows globally */
  .section-title { line-height: 1.15; }
  .section-sub { font-size: 16px; }
  .section-head { text-align: center; }

  /* All eyebrows centered on mobile (across whole site) */
  .eyebrow {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* Badge hidden on mobile (declared above) */
}

@media (max-width: 480px) {
  /* Container even tighter */
  .container { padding: 0 16px; }

  /* Hero — phones */
  .hero { padding: 70px 0 48px; }
  .hero-title { font-size: 38px; line-height: 1.1; }
  .hero-sub { font-size: 16px; }
  .hero-checks { font-size: 14px; }

  /* Hero meta — even tighter at 480px */
  .hero-meta { gap: 8px; padding-top: 18px; }
  .hero-meta .meta-num { font-size: 22px; }
  .hero-meta .meta-lbl { font-size: 9px; }

  /* Badge hidden on mobile */

  /* Hero countdown — phones: even tighter */
  .hv-cd-num { font-size: 30px; }
  .hv-cd-sep { font-size: 22px; }
  .hv-cd-lbl { font-size: 8px; letter-spacing: 0.1em; }
  .hv-eyebrow { font-size: 10px; }
  .hv-date { font-size: 16px; }

  /* Trust card — even tighter on phones */
  .trust-card { grid-template-columns: 76px 1fr; padding: 10px 18px; column-gap: 14px; }
  .trust-num { font-size: 36px; }
  .trust-lbl { font-size: 13px; }
  .trust-sub { font-size: 11px; }

  /* Audience — single col, stack number above */
  .audience-item { grid-template-columns: 1fr; gap: 4px; padding: 24px 0; }
  .audience-num { font-size: 28px; grid-column: 1; }
  .audience-t { font-size: 18px; line-height: 1.3; }
  .audience-d { grid-column: 1; }

  /* Diamond — smaller stage */
  .diamond-section { padding: 90px 0; }
  .dd-stage { max-width: 280px; }

  /* Program */
  .pl-head { grid-template-columns: 60px 1fr 24px; gap: 12px; padding: 16px 12px; }
  .pl-num { font-size: 22px; }
  .pl-month { font-size: 10px; }
  .pl-title { font-size: 15px; line-height: 1.3; }
  .pl-term-tag { font-size: 10px; }
  .pl-term-when { font-size: 12px; }
  .pl-body-label { font-size: 10px; }
  .pl-topics > li, .pl-topics-nested li { font-size: 13px; }
  .pl-topic-heading { font-size: 13.5px; }
  .pl-intro, .pl-outro { font-size: 12.5px; padding: 12px 14px; }

  /* Why cards — even tighter on phones */
  .why-card { padding: 16px 16px 14px; }
  .why-ic { width: 36px; height: 36px; margin-bottom: 8px; }
  .why-t { font-size: 16px; }
  .why-d { font-size: 13px; }

  /* Package */
  .pkg-section { padding: 90px 0; }
  .pkg-bullet { grid-template-columns: 44px 1fr; gap: 12px; padding: 16px 0; }
  .pkg-num { font-size: 28px; }
  .pkg-bullet-title { font-size: 16px; grid-column: 2; }
  .pkg-bullet-d { grid-column: 2; font-size: 13.5px; }

  /* StrategicCall */
  .scall-card { padding: 24px 18px; }
  .scall-title { font-size: 22px; }
  .scall-step-t { font-size: 15px; }
  .scall-step-d { font-size: 13px; }

  /* FAQ */
  .faq-q-text { font-size: 15px; line-height: 1.35; }
  .faq-q-num { font-size: 11px; }
  .faq-q { padding: 16px 4px; gap: 10px; }
  .faq-a { font-size: 14px; }

  /* CTA */
  .cta-left, .cta-right { padding: 22px 18px; }
  .cta-title { font-size: 26px; }
  .cta-sub { font-size: 14px; }
  .cta-person-name { font-size: 16px; }
  .cta-person-role { font-size: 12.5px; }
  .cta-contact-item { font-size: 13px; }
  .cta-bullets li { font-size: 13.5px; }

  /* Testimonials */
  .test-card { flex: 0 0 min(360px, 88vw); width: min(360px, 88vw); padding: 24px 20px; }
  .test-quote { font-size: 14px; line-height: 1.55; }
  .test-author-name { font-size: 14px; }

  /* Modal */
  .sm-side { padding: 22px 20px; }
  .sm-body { padding: 22px 20px; }
  .sm-title { font-size: 22px; }
  .sm-eyebrow { font-size: 11px; }

  /* Header logo — smaller */
  .site-logo img { height: 44px; }
  .site-header-inner { padding: 10px 0; }

  /* Section titles — clamp already handles, but tighten */
  .eyebrow { font-size: 11px; padding: 6px 12px; }

  /* Buttons full-width on phones */
  .btn { padding: 14px 22px; font-size: 14px; }

  /* Footer logo */
  .cta-footer-logo { height: 30px; }
  .cta-footer-links a { font-size: 13px; }
  .cta-footer-bottom { font-size: 12px; }

  /* Partner marquee already responsive */
}
