/* Hallmark · redesign (single-page: home, scoped body.hm) · genre: editorial
 * macrostructure: Split Studio (prospectus/ledger component voice)
 * theme: studied-brand, locked by group design system — paper #ffffff · ink navy #002F56 · accent #C14048 (budgeted)
 * type: Merriweather roman display / Inter body / IBM Plex Mono meta · nav+footer: preserved structure, restyled
 * enrichment: none (duotone figures) · motion: cut (no marquee, no reveals, no lift) · pre-emit critique: P4 H5 E4 S4 R5 V4
 */
/* International Council - B2B redesign · 2026-05-24
   Reference: EF Corporate Learning + Berlitz Corporate + Preply Business
   Palette: Unicollege group navy #002F56 + accent #C14048
*/

:root {
  --navy: #002F56;
  --navy-soft: #19243d;
  --navy-deep: #001a30;
  --accent: #C14048;
  --accent-hover: #a03238;
  --ink: #0F1E46;
  --muted: #5a6470;
  --line: #d8dde3;
  --bg-tint: #E1E9F2;
  --pale: #f4f7fa;
  --white: #ffffff;
  --eyebrow: #27455C;

  --max: 1240px;
  --gap: 24px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-pill: 100px;
  --shadow-soft: 0 1px 2px rgba(0,47,86,0.06), 0 6px 18px -8px rgba(0,47,86,0.08);
  --shadow-card: 0 2px 4px rgba(0,47,86,0.05), 0 14px 32px -16px rgba(0,47,86,0.12);
  --shadow-hover: 0 6px 14px rgba(0,47,86,0.08), 0 22px 44px -18px rgba(0,47,86,0.18);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Merriweather", Georgia, "Times New Roman", serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --cream: #eef3f8;
  --paper: #f0f4f8;
}

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

/* ─── LIVE-STATUS STRIP (Linear-inspired) ───────────── */
.status-strip {
  position: sticky;
  top: 0;
  z-index: 95;
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.status-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 24px;
  flex-wrap: wrap;
}
.status-strip .live {
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-strip .live::before {
  content: "";
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.55);
  animation: live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.status-strip .strip-items {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.status-strip .strip-items span { display: flex; align-items: center; gap: 8px; }
.status-strip .strip-items .sep { opacity: 0.3; }
.status-strip a {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.status-strip a:hover { border-color: var(--accent); color: #ffd0d3; }
@media (max-width: 760px) {
  .status-strip { font-size: 11px; letter-spacing: 1px; }
  .status-strip .strip-items { gap: 14px; }
  .status-strip .strip-items .sep { display: none; }
}

/* ─── SDA-STYLE STICKY SUB-NAV ──────────────────────── */
.sda-nav {
  position: sticky;
  top: 0;
  z-index: 92;
  background: var(--navy-deep);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sda-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.sda-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
}
.sda-nav-brand svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  stroke-width: 1.5;
  fill: none;
}
.sda-nav-brand .chev {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.6);
  stroke-width: 2;
  fill: none;
  margin-left: 4px;
}
.sda-nav-tabs {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sda-nav-tabs a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.1px;
  transition: color 0.2s ease;
  position: relative;
  padding: 8px 0;
}
.sda-nav-tabs a:hover { color: var(--white); }
.sda-nav-tabs a.is-active::after {
  content: "";
  position: absolute;
  inset: auto 0 -14px 0;
  height: 3px;
  background: var(--accent);
}
.sda-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sda-nav-cta .btn {
  padding: 11px 22px;
  font-size: 13.5px;
}
.sda-nav-cta .icon-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}
.sda-nav-cta .icon-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.sda-nav-cta .icon-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.7; }
/* SDA-style: white outline ghost button on navy sub-nav */
.sda-nav-cta .btn-ghost-white {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid var(--white);
  padding: 11px 22px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  transition: background 0.2s, color 0.2s;
}
.sda-nav-cta .btn-ghost-white:hover { background: var(--white); color: var(--navy) !important; }
/* SDA-style: circular bookmark button */
.sda-bookmark {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
.sda-bookmark:hover { background: var(--white); color: var(--navy); }
@media (max-width: 960px) {
  .sda-nav-tabs { display: none; }
  .sda-nav .container { padding-top: 10px; padding-bottom: 10px; }
  .sda-nav-cta .btn-ghost-white { display: none; }
}

/* ─── HERO EVENT CARD (SDA-style floating) ──────────────── */
.inner-hero .bg { position: relative; }
.hero-event-card {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: min(340px, calc(100% - 64px));
  background: var(--white);
  border-radius: 12px;
  padding: 24px 26px 18px;
  box-shadow: 0 18px 40px rgba(15, 30, 70, 0.18), 0 4px 12px rgba(15, 30, 70, 0.08);
  z-index: 5;
}
.hec-slide { display: none; }
.hec-slide.is-active { display: block; animation: hec-fade 0.4s ease-out; }
@keyframes hec-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.hec-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.hero-event-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.3;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 12px;
}
.hec-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}
.hec-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.hec-cta:hover { background: var(--accent); }
.hec-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.hec-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hec-dot.is-active { background: var(--navy); transform: scale(1.15); }
.hec-dot:hover { background: var(--navy); }
@media (max-width: 900px) {
  .hero-event-card {
    position: static;
    width: 100%;
    margin: 24px 0 0;
  }
  .inner-hero .container { grid-template-columns: 1fr; }
}

/* ─── HERO PLAY BUTTON ──────────────────────────────── */
.hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}
.hero-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--white);
}
.hero-play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--navy);
  margin-left: 6px;
}

/* ─── SCROLL PROGRESS BAR ───────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent) 0%, #e96b73 100%);
  z-index: 200;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(193,64,72,0.5);
}

/* ─── CUSTOM CURSOR DOT (DISABLED) ──────────────────── */
.cursor-dot { display: none !important; }
.cursor-dot-old-disabled {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
  mix-blend-mode: difference;
  opacity: 0;
}
.cursor-dot.is-active { opacity: 1; }
.cursor-dot.is-hover {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border: 1px solid var(--white);
}
@media (pointer: coarse) { .cursor-dot { display: none; } }

/* ─── REVEAL ON SCROLL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.2,0.6,0.2,1), transform 0.85s cubic-bezier(0.2,0.6,0.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* ─── FLOATING MINI-CTA (DISABLED) ──────────────────── */
.float-cta { display: none !important; }
.float-cta-old-disabled {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 28px);
  z-index: 90;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 100px;
  padding: 10px 14px 10px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 36px rgba(0,26,48,0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.2,0.6,0.2,1);
}
.float-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.float-cta .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.float-cta .btn {
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 100px;
}

/* ─── SIDE INDEX (DISABLED) ─────────────────────────── */
.side-index { display: none !important; }
.side-index-old-disabled {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  mix-blend-mode: difference;
  color: rgba(255,255,255,0.65);
}
.side-index a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  transition: color 0.2s, gap 0.25s;
}
.side-index a::before {
  content: "";
  width: 14px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  transition: width 0.25s;
}
.side-index a.is-active { color: var(--white); }
.side-index a.is-active::before { width: 28px; background: var(--accent); }
.side-index a:hover { color: var(--white); gap: 14px; }
.side-index .roman {
  display: inline-block;
  min-width: 22px;
  font-weight: 500;
}
.side-index .word {
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.85;
}
@media (max-width: 1100px) { .side-index { display: none; } }

/* ─── SECTION MARKER (chapter line) ─────────────────── */
.chapter-mark {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  font-weight: 600;
  padding-top: 18px;
  border-top: 3px solid var(--accent);
  width: fit-content;
  padding-right: 24px;
}
.chapter-mark .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--accent);
  font-weight: 700;
}
.chapter-mark .line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.chapter-mark .meta {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 400;
}
.delivery .chapter-mark { color: #ffd0d3; }
.delivery .chapter-mark .meta { color: rgba(255,255,255,0.55); }
.delivery .chapter-mark .num { color: #ffd0d3; }
.campuses .chapter-mark { color: var(--accent); }
.campuses .chapter-mark .num { color: var(--accent); }
.campuses .chapter-mark .meta { color: var(--muted); }
.campuses .chapter-mark .line { background: var(--line); opacity: 1; }
.hero .chapter-mark { color: var(--accent); margin-bottom: 32px; }
.hero .chapter-mark .num { color: var(--accent); }
.hero .chapter-mark .meta { color: var(--muted); }
.hero .chapter-mark .line { background: var(--line); opacity: 1; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--accent); }

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

/* ─── TOP BAR ───────────────────────────────────────── */
.topbar {
  background: var(--navy-deep);
  color: #c8d4e0;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: #c8d4e0; margin-left: 18px; }
.topbar a:hover { color: var(--white); }
.lang { font-weight: 600; opacity: 0.6; }
.lang.is-active { opacity: 1; color: var(--white); }

/* ─── HEADER ────────────────────────────────────────── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { display: block; height: 44px; width: auto; }
.footer .logo img { height: 46px; }
.nav ul { display: flex; gap: 28px; list-style: none; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.nav a:hover { color: var(--accent); }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--white) !important;
  border-color: var(--accent);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 15px 32px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(193,64,72,0.25);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.65,0,0.35,1);
  z-index: -1;
}
.btn-primary:hover { background: var(--accent); border-color: var(--navy); color: var(--white) !important; }
.btn-primary:hover::before { transform: translateY(0); }
.btn.btn-disabled {
  background: #9aa6b3;
  border-color: #9aa6b3;
  color: var(--white) !important;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}
.btn.btn-disabled::before { display: none; }
.btn-ghost {
  background: transparent;
  color: var(--navy) !important;
  border-color: var(--navy);
  padding: 13px 28px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.btn-ghost:hover { background: var(--navy); color: var(--white) !important; }
.header .container > div:last-child { display: flex; align-items: center; gap: 10px; }
.header .container > div:last-child .btn { margin: 0 !important; }
.btn-link { border-radius: 0; padding: 8px 0; }
.btn-light {
  background: var(--white);
  color: var(--navy) !important;
  border-color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy) !important; }

/* ─── HERO ──────────────────────────────────────────── */
/* ─── HERO · CATTOLICA WHITE ────────────────────────── */
.hero {
  background: var(--white);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  max-width: 100%;
  padding: 0;
  min-height: 720px;
}
.hero-text {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.hero-watermark { display: none; }
.hero-image {
  position: relative;
  background: url("../img/campuses/ic-faculty-advising.jpg") center/cover no-repeat;
  min-height: 600px;
  border-radius: 220px 0 0 0;
  overflow: hidden;
  margin: 40px 60px 60px 0;
}
.hero-image .image-tag {
  z-index: 4;
  font-family: var(--font-mono);
  font-weight: 500;
  background: rgba(0,47,86,0.8);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
}
.hero-image .image-tag {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.hero-image .image-tag::before {
  content: "-";
  margin-right: 8px;
  color: var(--accent);
}

.hero .kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  position: relative;
  z-index: 3;
}
.hero .kicker .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.hero .kicker .index {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.5);
  margin-left: auto;
  font-size: 13px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.7px;
  margin-bottom: 28px;
  color: var(--navy);
  position: relative;
  z-index: 3;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  display: inline;
}
.hero h1 .underline { display: inline; }
.hero h1 .underline::after { display: none; }

.hero p.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 400;
  position: relative;
  z-index: 3;
}
.hero p.lede strong { color: var(--navy); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
.hero-cta .btn-link {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy) !important;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--navy);
  transition: border-color 0.2s, color 0.2s;
}
.hero-cta .btn-link:hover { border-color: var(--accent); color: var(--accent) !important; }

/* hero stats strip - bottom of hero, full-bleed */
.hero-stats {
  border-top: 1px solid var(--line);
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 3;
}
.hero-stat {
  padding: 30px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -1.5px;
  font-style: italic;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hero-stat .num .val { font-style: italic; }
.hero-stat .num .suf {
  color: var(--accent);
  font-size: 22px;
  font-style: normal;
  font-family: var(--font-mono);
  letter-spacing: 0;
  font-weight: 500;
}
.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  font-weight: 500;
}

/* ─── CLIENTS · EDITORIAL MARQUEE ───────────────────── */
.logo-wall {
  background: var(--white);
  padding: 110px 0 90px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.logo-wall .intro {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 60px;
  padding: 0 80px;
  margin-bottom: 70px;
}
.logo-wall .intro span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.logo-wall h2 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--navy);
  margin-top: 0;
  line-height: 1.02;
  letter-spacing: -1.2px;
  max-width: 740px;
}
.logo-wall h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.logo-wall .intro-meta {
  border-left: 1px solid var(--line);
  padding-left: 32px;
  padding-bottom: 8px;
}
.logo-wall .intro-meta p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 320px;
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logo-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 60s linear infinite;
  align-items: center;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-cell {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #243f5a;
  letter-spacing: 0.8px;
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
}
.logo-cell::after {
  content: "·";
  margin-left: 80px;
  color: var(--accent);
  font-weight: 400;
}
.logo-cell:last-child::after { content: ""; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-industries {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.logo-industries div {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.logo-industries div strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -0.5px;
}
.see-all-link {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}
.see-all-link a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
}

/* ─── CAMPUSES · WHITE COMPACT ROW ──────────────────── */
.campuses {
  background: var(--white);
  color: var(--ink);
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.campuses .head { margin-bottom: 30px; gap: 50px; align-items: center; }
.campuses .head p { color: var(--muted); border-left-color: var(--line); font-size: 15px; }
.campuses h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.6px;
}
.campuses h2 em { color: var(--accent); }
.campus-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.campus-mini {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.campus-mini:last-child { border-right: none; }
.campus-mini .city-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--navy);
}
.campus-mini .city-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 760px) {
  .campus-row { grid-template-columns: repeat(2, 1fr); }
  .campus-mini { border-bottom: 1px solid var(--line); }
}
.campuses .container { max-width: 1320px; }
.campuses .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.campuses h2 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -1.5px;
}
.campuses h2 em { font-style: italic; color: #ffd0d3; font-weight: 400; }
.campuses .head p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 32px;
}
.campus-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.campus-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.campus-tile.featured { aspect-ratio: 4 / 5.4; }
.campus-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0,26,48,0.92) 100%);
  z-index: 1;
  transition: background 0.4s;
}
.campus-tile:hover::after {
  background: linear-gradient(180deg, rgba(0,26,48,0.15) 0%, rgba(0,26,48,0.95) 90%);
}
.campus-tile .label {
  position: absolute;
  top: 22px;
  left: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.campus-tile .label::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.campus-tile .city {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.campus-tile h3 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--white);
}
.campus-tile.featured h3 { font-size: 52px; }
.campus-tile .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: right;
  line-height: 1.6;
}
.campus-tile .meta b { color: var(--white); font-weight: 600; display: block; }
.campus-tile .arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: all 0.3s;
}
.campus-tile:hover .arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(-45deg) scale(1.05);
}
@media (max-width: 960px) {
  .campus-grid { grid-template-columns: 1fr 1fr; }
  .campuses .head { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── TESTIMONIAL (Berlitz-style) ───────────────────── */
.testimonial {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.4;
  color: var(--navy);
  font-weight: 400;
  font-style: italic;
  position: relative;
  padding-left: 30px;
}
.testimonial blockquote::before {
  content: "\201C";
  font-family: var(--font-serif);
  position: absolute;
  left: 0; top: -18px;
  font-size: 80px;
  color: var(--accent);
  line-height: 1;
}
.testimonial .attr {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
}
.testimonial .attr strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 1.5px;
}
.testimonial .portrait {
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,47,86,0.55) 100%),
    url("https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
  aspect-ratio: 4/5;
  border-radius: 12px 12px 12px 160px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.testimonial .portrait .ph-label {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ─── METHODOLOGY (Berlitz Method-style) ────────────── */
.method {
  background: var(--pale);
  padding: 100px 0;
}
.method-head {
  max-width: 920px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: end;
}
.method-head .eyebrow-dark {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}
.method-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin-bottom: 0;
}
.method-head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.method-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: transparent;
}
.method-step {
  padding: 36px 28px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.method-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.method-step .step-num {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--accent);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.method-step .step-num .word {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-style: normal;
  color: var(--navy);
  font-weight: 700;
  margin-top: 0;
}
.method-step h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.method-step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── COURSE CATALOG · IH MILANO STYLE ──────────────── */
.catalog {
  background: var(--white);
  padding: 70px 0 80px;
}
.catalog .head { max-width: 760px; margin-bottom: 40px; }
.catalog .head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}
.catalog .head p { font-size: 16px; color: var(--muted); line-height: 1.6; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.cat-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.cat-card .cat-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.cat-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.cat-card h3 em { font-style: italic; color: var(--accent); font-weight: 400; }
.cat-card .blurb { font-size: 15px; color: var(--ink); line-height: 1.6; margin-bottom: 16px; }
.cat-card ul.bullets { padding: 0; margin: 0 0 22px; list-style: none; }
.cat-card ul.bullets li {
  position: relative;
  padding: 7px 0 7px 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.cat-card ul.bullets li:first-child { border-top: none; }
.cat-card ul.bullets li::before {
  content: "→";
  position: absolute;
  left: 0; top: 6px;
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
}
.cat-card ul.bullets li strong { color: var(--navy); font-weight: 600; }
.cat-card .cta-row {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cat-card .cta-row .btn-mini {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy) !important;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
  letter-spacing: 0.2px;
}
.cat-card .cta-row .btn-mini:hover { color: var(--accent) !important; border-bottom-color: var(--accent); }
.cat-card .cta-row .pay-pill {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.cat-card .cta-row .pay-pill:hover { background: var(--accent-hover); }

/* Price line above CTA - IH Milano-style direct purchase signal */
.cat-card .price-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 16px;
  margin-bottom: 14px;
  background: var(--paper);
  border-left: 3px solid var(--accent);
  border-radius: 3px;
}
.cat-card .price-line .price {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1;
}
.cat-card .price-line .price-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.1px;
  line-height: 1.45;
}

/* features highlight strip */
.features-strip {
  background: var(--paper);
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feat-item .ft-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.feat-item .ft-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.feat-item .ft-desc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.3px;
  line-height: 1.55;
}

/* FAQ */
.faq { padding: 70px 0 80px; background: var(--white); }
.faq .head { max-width: 720px; margin-bottom: 30px; }
.faq .head h2 { font-family: var(--font-serif); font-size: clamp(26px, 2.6vw, 34px); color: var(--navy); letter-spacing: -0.5px; line-height: 1.1; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { padding-top: 12px; font-size: 15px; line-height: 1.65; color: var(--ink); max-width: 720px; margin-bottom: 0; }

@media (max-width: 760px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .features-strip .container { grid-template-columns: 1fr 1fr; }
}

/* ─── BOOKING WIZARD · COURSE → OPTIONS → PAY ───────── */
.booking { padding: 60px 0 80px; background: var(--white); }
.booking .container { max-width: 860px; }
.booking h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}
.booking .lede { font-size: 16px; color: var(--muted); margin-bottom: 36px; line-height: 1.6; }
.booking .wizard-steps {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  border-top: 3px solid var(--line);
}
.booking .wizard-steps .ws {
  flex: 1;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.booking .wizard-steps .ws:last-child { border-right: none; }
.booking .wizard-steps .ws.is-active {
  color: var(--accent);
  border-top: 3px solid var(--accent);
  margin-top: -3px;
}
.booking .wizard-steps .ws .n {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0;
  margin-right: 6px;
  font-weight: 700;
}

.booking-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 32px 28px;
  margin-bottom: 22px;
}
.booking-panel h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}
.booking-panel .panel-lede {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.booking-panel label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
}
.booking-panel input,
.booking-panel select,
.booking-panel textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  letter-spacing: 0;
  text-transform: none;
}
.booking-panel input:focus,
.booking-panel select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(193,64,72,0.15); }
.booking-panel .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-panel .course-radio { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 8px; }
.booking-panel .course-radio label {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.booking-panel .course-radio label:hover { border-color: var(--navy); }
.booking-panel .course-radio input[type=radio] { width: 18px; height: 18px; margin: 0; }
.booking-panel .course-radio .price-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
}
.booking-panel .course-radio .name { color: var(--navy); font-weight: 700; display: block; margin-bottom: 2px; font-size: 14px; }
.booking-panel .course-radio .desc { color: var(--muted); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3px; text-transform: none; font-weight: 400; }
.booking-panel .course-radio label.is-checked { border-color: var(--accent); background: var(--bg-tint); }

.booking-summary {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 10px;
  padding: 26px 28px;
  margin-bottom: 18px;
}
.booking-summary .sum-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffd0d3;
  margin-bottom: 6px;
  font-weight: 600;
}
.booking-summary .sum-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.booking-summary .sum-row:first-of-type { border-top: none; }
.booking-summary .sum-row .k { color: rgba(255,255,255,0.7); }
.booking-summary .sum-row .v { color: var(--white); font-weight: 600; }
.booking-summary .sum-total {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.25);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.booking-summary .sum-total .k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.booking-summary .sum-total .v {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.booking-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.booking-cta button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
}
.booking-cta button:hover { background: var(--accent-hover); }
.booking-cta button:disabled { background: #aab2bc; cursor: not-allowed; }
.booking-cta .small-note { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }

@media (max-width: 700px) {
  .booking-panel .row-2 { grid-template-columns: 1fr; }
  .booking-panel .course-radio label { grid-template-columns: 24px 1fr; }
  .booking-panel .course-radio .price-tag { grid-column: 2 / 3; }
  .booking .wizard-steps { flex-direction: column; }
  .booking .wizard-steps .ws { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ─── ENROLL PROCESS · MINI STEPS ───────────────────── */
.mini-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border-radius: 10px;
  border: 1px solid var(--line);
  margin: 18px 0 24px;
  overflow: hidden;
}
.mini-process .mp-step {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}
.mini-process .mp-step:last-child { border-right: none; }
.mini-process .mp-step .mp-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.mini-process .mp-step .mp-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.mini-process .mp-step .mp-desc {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 760px) {
  .mini-process { grid-template-columns: repeat(2, 1fr); }
  .mini-process .mp-step:nth-child(2) { border-right: none; }
  .mini-process .mp-step:nth-child(1), .mini-process .mp-step:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* fee row highlight */
.course-row.is-fee {
  background: var(--bg-tint);
  border-color: var(--bg-tint);
}
.course-row.is-fee .name { color: var(--navy); }
.course-row.is-fee .price { color: var(--navy); }

/* ─── COURSE PICKER · PRIVATE ENROLL ────────────────── */
.course-picker { margin-top: 22px; display: grid; grid-template-columns: 1fr; gap: 12px; }
.course-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.course-row:hover { border-color: var(--navy); box-shadow: var(--shadow-soft); }
.course-row .info { display: flex; flex-direction: column; gap: 2px; }
.course-row .name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.2px;
}
.course-row .detail {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.3px;
  color: var(--muted);
}
.course-row .price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.course-row .pay-btn {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 100px;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background 0.2s;
}
.course-row .pay-btn:hover { background: var(--accent-hover); color: var(--white) !important; }
.course-section-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin: 22px 0 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.course-section-title:first-of-type { border-top: none; padding-top: 0; margin-top: 4px; }
@media (max-width: 600px) {
  .course-row { grid-template-columns: 1fr; gap: 8px; }
  .course-row .price { font-size: 20px; }
}

/* ─── ENROLL PAGE · 3 CLEAR PATHS ───────────────────── */
.enroll-page-v2 { padding: 70px 0 80px; background: var(--white); }
.enroll-page-v2 .container { max-width: 880px; }
.enroll-page-v2 .top-h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}
.enroll-page-v2 .top-lede { font-size: 17px; color: var(--muted); margin-bottom: 50px; }
.path-block {
  border-top: 3px solid var(--accent);
  padding: 32px 0 36px;
  border-bottom: 1px solid var(--line);
}
.path-block:last-child { border-bottom: none; }
.path-block .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.path-block h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.path-block p { font-size: 16px; color: var(--muted); line-height: 1.6; margin-bottom: 22px; max-width: 620px; }
.path-block .actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.path-block .actions .note {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.path-block .actions .note strong { color: var(--navy); font-family: var(--font-sans); font-weight: 700; font-size: 14px; }
.path-block .actions .note a { color: var(--navy); border-bottom: 1px solid var(--navy); }

/* simple form */
.simple-form {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px 28px;
  border: 1px solid var(--line);
  margin-top: 8px;
  max-width: 620px;
}
.simple-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.simple-form label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
}
.simple-form input,
.simple-form select,
.simple-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  letter-spacing: 0;
  text-transform: none;
}
.simple-form input:focus,
.simple-form select:focus,
.simple-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193,64,72,0.15);
}
.simple-form textarea { min-height: 80px; resize: vertical; }
.simple-form button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  margin-top: 4px;
}
.simple-form button:hover { background: var(--accent-hover); }
.simple-form .privacy-note { font-size: 12px; color: var(--muted); margin-top: 10px; font-family: var(--font-mono); }
@media (max-width: 600px) {
  .simple-form .row-2 { grid-template-columns: 1fr; }
}

/* ─── ENROLL PAGE · FORM + PAYMENT (LEGACY) ─────────── */
.enroll-page { padding: 60px 0 80px; background: var(--white); }
.enroll-page .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.enroll-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
}
.enroll-page h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.enroll-page .lede { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 32px; }
.enroll-page form { background: var(--paper); border-radius: var(--radius); padding: 32px 32px 28px; border: 1px solid var(--line); }
.enroll-page form h2 { font-family: var(--font-serif); font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.enroll-page form .small { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.enroll-page .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enroll-page label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
}
.enroll-page input,
.enroll-page select,
.enroll-page textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
  letter-spacing: 0;
  text-transform: none;
}
.enroll-page input:focus,
.enroll-page select:focus,
.enroll-page textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193,64,72,0.15);
}
.enroll-page textarea { min-height: 100px; resize: vertical; }
.enroll-page button[type=submit] {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s;
}
.enroll-page button[type=submit]:hover { background: var(--accent-hover); }
.enroll-page .privacy-note { font-size: 12px; color: var(--muted); margin-top: 12px; font-family: var(--font-mono); letter-spacing: 0.3px; line-height: 1.6; }
.enroll-page .privacy-note a { color: var(--navy); border-bottom: 1px solid var(--navy); }

/* Right side · steps + payment */
.enroll-side {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.enroll-side h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffd0d3;
  margin-bottom: 18px;
  font-weight: 600;
  border-top: 3px solid var(--accent);
  padding-top: 16px;
}
.enroll-side ol { padding-left: 0; list-style: none; counter-reset: e; }
.enroll-side ol li {
  counter-increment: e;
  padding: 14px 0 14px 44px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.enroll-side ol li:first-child { border-top: none; }
.enroll-side ol li::before {
  content: "0" counter(e);
  position: absolute;
  left: 0; top: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--accent);
  font-weight: 700;
}
.enroll-side ol li b { color: var(--white); font-weight: 700; display: block; margin-bottom: 4px; font-family: var(--font-sans); font-size: 15px; }
.enroll-side .pay-box {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.enroll-side .pay-box .pay-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffd0d3;
  margin-bottom: 8px;
}
.enroll-side .pay-box p { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.78); margin-bottom: 14px; }
.enroll-side .pay-box .btn { background: var(--white); color: var(--navy) !important; border-color: var(--white); display: flex; align-items: center; justify-content: center; gap: 8px; }
.enroll-side .pay-box .btn:hover { background: var(--accent); color: var(--white) !important; border-color: var(--accent); }

@media (max-width: 760px) {
  .enroll-page .grid { grid-template-columns: 1fr; gap: 30px; }
  .enroll-page .row-2 { grid-template-columns: 1fr; }
}

/* ─── HOW TO ENROLL · STEP PROCESS ──────────────────── */
.enroll {
  background: var(--white);
  padding: 70px 0 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.enroll .head { margin-bottom: 40px; max-width: 720px; }
.enroll .head h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.enroll .head p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.enroll-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 3px solid var(--accent);
  background: var(--paper);
}
.enroll-step {
  padding: 26px 22px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.enroll-step:last-child { border-right: none; }
.enroll-step .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}
.enroll-step h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.enroll-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.enroll-cta {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.enroll-cta .note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--muted);
}
.enroll-cta .note strong { color: var(--navy); font-family: var(--font-sans); font-weight: 600; }
@media (max-width: 760px) {
  .enroll-grid { grid-template-columns: 1fr 1fr; }
  .enroll-step { border-bottom: 1px solid var(--line); }
}

/* ─── INNER PAGE · SDA BOCCONI STRUCTURE ────────────── */

/* Inner hero · SDA Bocconi light split */
.inner-hero {
  background: var(--white);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.inner-hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.inner-hero .bg {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 12px 12px 120px 12px;
  order: 2;
}
.inner-hero .copy { order: 1; }
.inner-hero .chapter-mark {
  color: var(--accent);
  margin-bottom: 22px;
  border-top-color: var(--accent);
}
.inner-hero .chapter-mark .num { color: var(--accent); }
.inner-hero .chapter-mark .meta { color: var(--muted); }
.inner-hero .chapter-mark .line { background: var(--line); opacity: 1; }
.inner-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.7px;
  color: var(--navy);
  margin-bottom: 20px;
  max-width: 560px;
}
.inner-hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.inner-hero p.lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.inner-hero .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.inner-hero .btn-outline-white {
  background: transparent;
  color: var(--navy) !important;
  border: 1.5px solid var(--navy);
}
.inner-hero .btn-outline-white:hover { background: var(--navy); color: var(--white) !important; }
@media (max-width: 760px) {
  .inner-hero .container { grid-template-columns: 1fr; gap: 30px; }
  .inner-hero .bg { order: 2; }
  .inner-hero .copy { order: 1; }
}

/* In-page tab nav */
.page-tabs {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 70;
}
.page-tabs .container {
  display: flex;
  gap: 36px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-tabs .container::-webkit-scrollbar { display: none; }
.page-tabs a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 18px 0;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.page-tabs a:hover { color: var(--navy); }
.page-tabs a.is-active { color: var(--navy); border-bottom-color: var(--accent); }

/* Stats strip horizontal */
.stats-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item .n {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-item .n span { color: var(--accent); font-size: 20px; font-family: var(--font-mono); font-style: normal; }
.stat-item .l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* Split section · alternating */
.split-section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.split-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-section.flip .container { direction: rtl; }
.split-section.flip .container > * { direction: ltr; }
.split-section .visual {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 12px 12px 12px 120px;
  background-color: var(--bg-tint);
  position: relative;
  overflow: hidden;
}
.split-section.flip .visual { border-radius: 12px 12px 120px 12px; }
.split-section .visual .tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 600;
}
.split-section .copy {
  max-width: 520px;
}
.split-section .copy .step {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 3px solid var(--accent);
  width: fit-content;
}
.split-section .copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 18px;
}
.split-section .copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 16px;
}
/* Keyfacts - SDA-style 2-column compact spec grid */
.split-section .copy .keyfacts {
  margin-top: 18px;
  padding: 14px 0 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 88px 1fr;
  column-gap: 16px;
  row-gap: 6px;
  align-items: baseline;
}
.split-section .copy .keyfacts br { display: none; }
.split-section .copy .keyfacts strong {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  padding: 0;
  border: none;
  white-space: nowrap;
}
.split-section .copy .keyfacts strong:first-child { margin-top: 0; }
@media (max-width: 600px) {
  .split-section .copy .keyfacts { grid-template-columns: 1fr; row-gap: 2px; }
  .split-section .copy .keyfacts strong { margin-top: 8px; }
}

/* IH-style subtopic list - concrete bullets of what learners practice */
.ih-subtopics {
  list-style: none;
  padding: 0;
  margin: 14px 0 22px 0;
  display: grid;
  gap: 8px;
}
.ih-subtopics li {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.ih-subtopics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.ih-subtopics li strong {
  color: var(--navy);
  font-weight: 600;
}

/* Cards row "events / news" SDA style */
.cards-row {
  padding: 80px 0;
  background: var(--paper);
}
.cards-row .head { margin-bottom: 40px; }
.cards-row .head h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.cards-row .head .eb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  padding-top: 14px;
  border-top: 3px solid var(--accent);
  width: fit-content;
}
.cards-row .grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sda-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-soft);
}
.sda-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.sda-card .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  padding: 22px 24px 8px;
}
.sda-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  padding: 0 24px;
  line-height: 1.22;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.sda-card .date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  padding: 0 24px 20px;
}
.sda-card .body {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.sda-card .body strong { color: var(--navy); font-weight: 700; }
.sda-card .more {
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sda-card .more::after {
  content: "→";
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 16px;
  transition: transform 0.2s;
}
.sda-card:hover .more::after { transform: translateX(4px); }

/* CTA navy box (bottom of inner page) */
.cta-navy {
  background: var(--navy-deep);
  color: var(--white);
  padding: 80px 0;
}
.cta-navy .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-navy .eb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffd0d3;
  margin-bottom: 16px;
  font-weight: 600;
}
.cta-navy h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--white);
}
.cta-navy h2 em { font-style: italic; color: #ffd0d3; font-weight: 400; }
.cta-navy p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
}
.cta-navy .actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }
.cta-navy .btn-outline-white {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.cta-navy .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

@media (max-width: 760px) {
  .split-section .container { grid-template-columns: 1fr; gap: 30px; }
  .split-section.flip .container { direction: ltr; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cards-row .grid3 { grid-template-columns: 1fr; }
  .cta-navy .container { grid-template-columns: 1fr; gap: 24px; }
  .cta-navy .actions { justify-content: flex-start; }
}

/* ─── INNER PAGE (about/contact/privacy/etc) ────────── */
.page-inner {
  background: var(--white);
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--line);
}
.page-inner .container { max-width: 880px; }
.page-inner .chapter-mark { color: var(--accent); margin-bottom: 28px; }
.page-inner .chapter-mark .num { color: var(--accent); }
.page-inner .chapter-mark .meta { color: var(--muted); }
.page-inner .chapter-mark .line { background: var(--line); opacity: 1; }
.page-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--navy);
  margin-bottom: 24px;
}
.page-inner h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.page-inner .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 56px;
  max-width: 680px;
}
.page-inner h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin-top: 50px;
  margin-bottom: 14px;
}
.page-inner h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 30px;
  margin-bottom: 10px;
}
.page-inner p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 720px;
}
.page-inner ul { padding-left: 22px; margin-bottom: 18px; max-width: 720px; }
.page-inner li { font-size: 16px; line-height: 1.7; color: var(--ink); margin-bottom: 6px; }
.page-inner a { color: var(--navy); border-bottom: 1px solid var(--navy); }
.page-inner a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.page-inner .meta-box {
  background: var(--paper);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.3px;
  color: var(--ink);
  margin: 32px 0;
}
.page-inner .meta-box strong { color: var(--navy); display: block; margin-bottom: 4px; font-family: var(--font-sans); font-size: 14px; }

/* ─── SECTION SHELL ─────────────────────────────────── */
section.block { padding: 90px 0; }
section.block.tinted { background: var(--pale); }
.section-head {
  max-width: 1100px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: end;
}
.section-head .eyebrow-dark {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin-bottom: 0;
}
.section-head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.section-head p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

/* ─── USE CASES · LINEAR STRIPE PATTERN ─────────────── */
.use-stripes {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.use-stripe {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.use-stripe:last-child { border-bottom: 1px solid var(--line); }
.use-stripe:nth-child(even) .stripe-text { order: 2; }
.use-stripe:nth-child(even) .stripe-visual { order: 1; }

.stripe-text .step {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.stripe-text .step::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.stripe-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.stripe-text h3 em { font-style: italic; color: var(--accent); font-weight: 400; }
.stripe-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 480px;
}
.stripe-text .bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.stripe-text .bullets li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.stripe-text .bullets li:last-child { border-bottom: 1px solid var(--line); }
.stripe-text .bullets li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
}

.stripe-visual {
  aspect-ratio: 5 / 4;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  filter: grayscale(0.4) contrast(1.05);
  transition: filter 0.4s;
}
.stripe-visual:hover { filter: grayscale(0) contrast(1.08); }
.stripe-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
}
.stripe-visual .badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(0,26,48,0.85);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 12px;
  backdrop-filter: blur(6px);
}
@media (max-width: 760px) {
  .use-stripe { grid-template-columns: 1fr; gap: 36px; }
  .use-stripe:nth-child(even) .stripe-text { order: 1; }
  .use-stripe:nth-child(even) .stripe-visual { order: 2; }
}

/* ─── USE CASES (legacy grid kept for fallback) ─────── */
/* ─── CARDS · CATTOLICA STYLE (true) ────────────────── */
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: transparent;
}
.use-card {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.use-card .cover {
  aspect-ratio: 4 / 3;
  background-color: var(--bg-tint);
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 12px 140px;
  margin-bottom: 22px;
  isolation: isolate;
  transition: border-radius 0.5s cubic-bezier(0.4,0,0.2,1);
}
.use-card .cover svg { display: none; }
.use-card .cover .eyebrow { display: none !important; }
.use-card .cover .photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
/* SDA Bocconi-style hover: red overlay slides in from bottom */
.use-card .cover::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(193,64,72,0.0) 30%, rgba(193,64,72,0.85) 100%);
  z-index: 2;
  transition: height 0.5s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.use-card .cover::after {
  content: "Scopri →";
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 30px);
  opacity: 0;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 11px 22px;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity 0.4s ease 0.1s, transform 0.5s cubic-bezier(0.4,0,0.2,1) 0.1s;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.use-card:hover .cover { border-radius: 140px 12px 12px 12px; }
.use-card:hover .cover .photo { transform: scale(1.08); }
.use-card:hover .cover::before { height: 100%; }
.use-card:hover .cover::after { opacity: 1; transform: translate(-50%, 0); }
.use-card .body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}
.use-card h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
  text-decoration: underline;
  text-decoration-color: var(--navy);
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.use-card:hover h3 { color: var(--accent); text-decoration-color: var(--accent); }
.use-card p { display: none !important; }
.use-card .arrow-link { display: none; }

/* ─── SISTER BRAND CARD ─────────────────────────────── */
.sister { background: var(--paper); }
.sister-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  background: var(--white);
  border-top: 2px solid var(--navy);
  margin-top: 30px;
}
.sister-text { padding: 50px 48px 56px; border-right: 1px solid var(--line); }
.sister-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.sister-text h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.sister-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
}
.sister-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 36px 32px;
  background: var(--navy-deep);
  color: var(--white) !important;
  position: relative;
  text-decoration: none;
  transition: background 0.3s;
}
.sister-cta:hover { background: var(--accent); }
.sister-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.sister-name {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  font-style: italic;
}
.sister-arrow {
  font-size: 48px;
  align-self: flex-end;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.3s, color 0.3s;
}
.sister-cta:hover .sister-arrow { transform: translateX(8px); color: var(--white); }
@media (max-width: 760px) {
  .sister-card { grid-template-columns: 1fr; }
  .sister-text { border-right: none; border-bottom: 1px solid var(--line); padding: 36px 28px; }
  .sister-cta { padding: 28px; }
}

/* ─── INDIVIDUALS · PRIVATE COURSES (re-activated) ──── */
.individuals { background: var(--paper); }
.ind-price {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--navy);
  background: var(--bg-tint);
  padding: 10px 14px;
  margin-bottom: 22px;
  border-left: 2px solid var(--accent);
  display: inline-block;
}
.ind-price strong { color: var(--accent); font-weight: 700; }
.ind-price em { font-family: var(--font-serif); font-style: italic; font-size: 12px; color: var(--muted); }

.ind-card.ind-featured {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
}
.ind-card.ind-featured .ind-step { color: #ffd0d3; }
.ind-card.ind-featured h3 { color: var(--white); }
.ind-card.ind-featured p { color: rgba(255,255,255,0.78); }
.ind-card.ind-featured p strong { color: var(--white); }
.ind-card.ind-featured .ind-price {
  background: rgba(255,255,255,0.08);
  border-left-color: var(--accent);
  color: var(--white);
}
.ind-card.ind-featured .ind-link {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.5);
}
.ind-card.ind-featured .ind-link:hover {
  color: var(--accent) !important;
  border-color: var(--accent);
}
.badge-hot {
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 1.2px;
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.ind-bullets {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ind-bullets li {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  padding-left: 14px;
  position: relative;
  line-height: 1.55;
}
.ind-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
}
.ind-bullets li strong { color: var(--white); font-weight: 600; }
.ind-bullets-light li { color: var(--ink); }
.ind-bullets-light li strong { color: var(--navy); }
.ind-note {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0;
  color: var(--ink);
  text-align: left;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ind-note strong { color: var(--navy); font-weight: 700; }
.ind-note a {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  white-space: nowrap;
  font-size: 16px;
}
.ind-note a:hover { color: var(--navy); border-bottom-color: var(--navy); }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  background: transparent;
  margin-top: 30px;
}
.ind-card {
  padding: 32px 30px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s;
}
.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0,47,86,0.25);
}
.ind-card.ind-featured:hover {
  box-shadow: 0 6px 14px rgba(0,26,48,0.25), 0 28px 48px -16px rgba(0,26,48,0.4);
}
.ind-card .ind-link {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  border-bottom: none;
}
.ind-card.ind-featured .ind-link { border-top-color: rgba(255,255,255,0.18); }
.ind-step {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ind-step::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}
.ind-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.ind-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
  flex: 1;
}
.ind-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.ind-link:hover { color: var(--accent); border-color: var(--accent); }
.ind-pricing {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ind-pricing span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
}
.ind-pricing strong {
  color: var(--white);
  font-weight: 600;
}
@media (max-width: 760px) {
  .ind-grid { grid-template-columns: 1fr; }
  .ind-card { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ─── PROOF STRIP · COMPACT ─────────────────────────── */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
}
.proof-item {
  padding: 32px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.proof-item .num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  line-height: 0.95;
  letter-spacing: -2.5px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.proof-item .num span {
  font-size: 32px;
  font-family: var(--font-mono);
  font-style: normal;
  color: var(--accent);
  letter-spacing: 0;
}
.proof-item .lab {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}
.proof-item .lab strong {
  color: var(--navy);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
}
@media (max-width: 760px) {
  .proof-strip { grid-template-columns: 1fr; }
  .proof-item { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ─── CASE STUDIES · EDITORIAL ──────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border-top: 2px solid var(--navy);
}
.case-card {
  background: var(--white);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.case-card:last-child { border-right: none; }
.case-card .top {
  background: transparent;
  color: var(--navy);
  padding: 32px 30px 16px;
  border-bottom: 1px solid var(--line);
}
.case-card .sector {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}
.case-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.4px;
}
.case-card .body {
  padding: 28px 30px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-card .body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  flex: 1;
}
.case-card .stat {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  line-height: 0.95;
  letter-spacing: -2px;
}
.case-card .stat span {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}

/* ─── TEST PREP · DEDICATED SECTION ─────────────────── */
.test-prep {
  background: var(--white);
  padding: 100px 0 110px;
  border-bottom: 1px solid var(--line);
}
.test-prep .container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.test-prep .visual {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border-radius: 12px 12px 120px 12px;
  background-image: url("../img/campuses/florence-classroom.jpg");
  position: relative;
  overflow: hidden;
  position: sticky;
  top: 100px;
  max-height: 540px;
}
.test-prep .visual .stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
  font-weight: 600;
}
.test-prep h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.test-prep h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.test-prep .lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 580px;
}
.tests-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.test-tile {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 22px;
  background: var(--cream);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.test-tile:hover {
  background: var(--white);
  border-color: var(--navy);
}
.test-tile .name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1;
  margin-bottom: 8px;
}
.test-tile .for {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.test-tile .desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
.test-prep .pricing {
  background: var(--paper);
  border-left: 4px solid var(--accent);
  padding: 22px 26px;
  border-radius: var(--radius);
  margin-bottom: 30px;
}
.test-prep .pricing .row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.test-prep .pricing .row:last-child { border-bottom: none; }
.test-prep .pricing .row .what { color: var(--ink); font-weight: 500; flex: 1; }
.test-prep .pricing .row .what em { color: var(--muted); font-style: normal; font-size: 12px; font-family: var(--font-mono); }
.test-prep .pricing .row .price {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
  font-size: 17px;
  min-width: 72px;
  text-align: right;
}
.test-prep .pricing .row .row-pay {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white) !important;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.2px;
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.2s;
}
.test-prep .pricing .row .row-pay:hover { background: var(--accent); }
@media (max-width: 600px) {
  .test-prep .pricing .row { flex-wrap: wrap; gap: 8px; }
  .test-prep .pricing .row .what { flex: 1 1 100%; }
  .test-prep .pricing .row .row-pay { margin-left: auto; }
}
.test-prep .schools {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
  padding: 16px 20px;
  background: var(--bg-tint);
  border-radius: var(--radius);
  margin-bottom: 30px;
}
.test-prep .schools strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 760px) {
  .test-prep .container { grid-template-columns: 1fr; gap: 40px; }
  .tests-grid { grid-template-columns: 1fr; }
}

/* ─── WHY US · ANTI-POSITIONS ──────────────────────── */
.why-us {
  background: var(--paper);
  padding: 80px 0 80px;
}
.why-us .head { margin-bottom: 40px; max-width: 760px; }
.why-us h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.7px;
  margin-bottom: 16px;
}
.why-us h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.why-us .head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.why-card .x {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b56a6e;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-card .x::before {
  content: "-";
  font-style: normal;
}
.why-card .x s { text-decoration: line-through; text-decoration-thickness: 1px; }
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.why-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}
.why-card .check {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.why-card .check::before {
  content: "✓ ";
  font-family: var(--font-sans);
  margin-right: 6px;
}
@media (max-width: 760px) { .why-us-grid { grid-template-columns: 1fr; } }

/* ─── PLATFORM · HYBRID LIVE + DIGITAL ──────────────── */
.platform {
  background: var(--white);
  padding: 90px 0 90px;
  border-top: 1px solid var(--line);
}
.platform .grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
  margin-top: 50px;
}
.platform h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.platform h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.platform .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
}
.platform .feat {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.platform .feat li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.platform .feat .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  min-width: 100px;
}
.platform .feat .v {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.platform .feat .v strong { color: var(--navy); font-weight: 600; }

/* ─── EXPLAINER BLOCK · CLEAR AT FIRST GLANCE ───────── */
.explainer {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 34px 30px;
  border: 1px solid var(--line);
}
.explainer-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.3;
}
.explainer-row {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.explainer-row:first-of-type { border-top: none; padding-top: 4px; }
.explainer-number {
  flex: 0 0 90px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -1px;
  white-space: nowrap;
}
.explainer-label {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.explainer-label strong {
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  display: block;
  margin-bottom: 3px;
}
.explainer-foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--muted);
  font-style: italic;
}
@media (max-width: 760px) {
  .explainer-row { grid-template-columns: 70px 1fr; }
  .explainer-number { font-size: 28px; }
}

.big-label {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.mock-wrap { position: relative; }
.mock-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-caption::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--accent);
}

/* mock UI · clean Cattolica */
.mock {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  position: relative;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,47,86,0.12);
}
.mock-bar .dot-r { width: 9px; height: 9px; border-radius: 50%; background: #ec4d4d; }
.mock-bar .dot-y { width: 9px; height: 9px; border-radius: 50%; background: #f1c64d; }
.mock-bar .dot-g { width: 9px; height: 9px; border-radius: 50%; background: #5ec46d; }
.mock-bar .url {
  margin-left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.mock-app {
  background: var(--white);
  border-radius: 4px;
  padding: 20px 4px 4px;
}
.mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.mock-head .title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.mock-head .badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #e6f5ec;
  color: #1d8a47;
  padding: 4px 8px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mock-head .badge::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: #5ec46d;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.mock-stat {
  background: var(--pale);
  padding: 14px 12px;
  border-radius: 4px;
  border-left: 2px solid var(--accent);
}
.mock-stat .num {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.5px;
}
.mock-stat .lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.mock-list { display: flex; flex-direction: column; gap: 10px; }
.mock-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(0,47,86,0.08);
}
.mock-row:first-child { border-top: none; padding-top: 0; }
.mock-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
}
.mock-row .name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.mock-row .name small {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.mock-row .progress {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
}
.mock-bar-fill {
  position: relative;
  width: 60px;
  height: 4px;
  background: rgba(0,47,86,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.mock-bar-fill span {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--accent);
  border-radius: 100px;
}
.mock-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,47,86,0.08);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 760px) {
  .platform .grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── DELIVERY MODES ────────────────────────────────── */
.delivery {
  background: var(--navy);
  color: var(--white);
}
.delivery .section-head h2 { color: var(--white); }
.delivery .section-head h2 em { color: #ffd0d3; }
.delivery .section-head p { color: #c8d4e0; border-color: rgba(255,255,255,0.18); }
.delivery .section-head .eyebrow-dark { color: #ffd0d3; }
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.delivery-item {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.delivery-item .num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
}
.delivery-item h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0 10px;
}
.delivery-item p {
  font-size: 14px;
  color: #c8d4e0;
  line-height: 1.6;
}

/* ─── COMPLIANCE ────────────────────────────────────── */
.compliance {
  background: var(--bg-tint);
  padding: 50px 0;
}
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}
.compliance h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}
.compliance-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.badge {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.badge .b-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}
.badge .b-sub {
  font-size: 12px;
  color: var(--muted);
}

/* ─── FLYWIRE PAY BAND ──────────────────────────────── */
.flywire-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.flywire-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.flywire-row .badge-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.flywire-row h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.flywire-row p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.flywire-row .logos {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.flywire-row .logos strong {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-sans);
  letter-spacing: -0.3px;
}
@media (max-width: 760px) {
  .flywire-row { grid-template-columns: 1fr; gap: 18px; }
}

/* ─── GUARANTEE STRIP ───────────────────────────────── */
.guarantee {
  background: var(--white);
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guarantee-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.guarantee .gtag {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
.guarantee h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-top: 8px;
}
.guarantee p {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin-top: 8px;
}

/* ─── FINAL CTA ─────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
.final-cta p {
  font-size: 18px;
  color: #c8d4e0;
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: #9bb3cc;
  padding: 70px 0 30px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: #9bb3cc; }
.footer a:hover { color: var(--white); }
.footer-contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #9bb3cc;
  line-height: 1.7;
}
.footer-contact strong { color: var(--white); font-weight: 600; }
.footer-contact a { color: #9bb3cc; }
.footer-contact a:hover { color: var(--accent); }
.footer .group-note {
  font-size: 13px;
  color: #7a8ba0;
  line-height: 1.6;
  margin-top: 16px;
}
.footer-bottom {
  border-top: 1px solid #1a3050;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7d92;
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 960px) {
  .hero h1 { font-size: 38px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .use-grid, .case-grid, .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .compliance-grid, .footer-grid, .guarantee-row { grid-template-columns: 1fr; }
  .compliance-badges { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head h2 { font-size: 30px; }
  .final-cta h2 { font-size: 32px; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 30px; }
  .nav { display: none; }
  .use-grid, .case-grid, .delivery-grid, .logo-grid { grid-template-columns: 1fr 1fr; }
  .metric-row { grid-template-columns: 1fr; }
  section.block { padding: 60px 0; }
}

/* ───────── SDA Bocconi-pattern body sections ───────── */

/* Common section head */
.audience-stats .head,
.program-timeline .head,
.faculty-grid .head,
.outcomes-block .head,
.program-faq .head {
  text-align: left;
  margin-bottom: 36px;
  max-width: 760px;
}
.audience-stats .head .eb,
.program-timeline .head .eb,
.faculty-grid .head .eb,
.outcomes-block .head .eb,
.program-faq .head .eb {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.audience-stats .head h2,
.program-timeline .head h2,
.faculty-grid .head h2,
.outcomes-block .head h2,
.program-faq .head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}
.audience-stats .head .lede,
.program-timeline .head .lede,
.faculty-grid .head .lede {
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.6;
}

/* Audience stats - 6 tile grid */
.audience-stats { padding: 80px 0; background: var(--paper); border-top: 1px solid var(--line); }
.stats-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat-tile {
  background: var(--white);
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
}
.stat-tile .n {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.stat-tile .n span {
  font-size: 15px;
  margin-left: 3px;
  color: var(--accent);
}
.stat-tile .l {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
  letter-spacing: 0.2px;
}
.stat-tile .d {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.45;
}

/* Program timeline - vertical with marker */
.program-timeline { padding: 90px 0; background: var(--white); }
.vtimeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  max-width: 880px;
}
.vtimeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--line);
}
.vt-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  margin-bottom: 44px;
  position: relative;
}
.vt-item:last-child { margin-bottom: 0; }
.vt-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--white);
}
.vt-when {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.vt-body h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.4px;
}
.vt-body p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 14px;
}
.vt-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
}
.vt-bullets li {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.vt-bullets li::before {
  content: "→";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 600;
}

/* Faculty cards */
.faculty-grid { padding: 90px 0; background: var(--paper); }
.faculty-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fc-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
  border: 1px solid var(--line);
  transition: box-shadow 0.2s, transform 0.2s;
}
.fc-card:hover { box-shadow: 0 8px 24px rgba(15,30,70,0.10); transform: translateY(-2px); }
.fc-photo {
  background-size: cover;
  background-position: center;
  min-height: 220px;
}
.fc-body { padding: 20px 22px; }
.fc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.fc-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}
.fc-bio {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 14px;
}
.fc-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.2px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.fc-footer {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  margin-top: 28px;
  letter-spacing: 0.3px;
}

/* Outcomes block */
.outcomes-block {
  padding: 90px 0;
  background: var(--navy);
  color: var(--white);
}
.outcomes-block .head h2 { color: var(--white); }
.outcomes-block .head .eb { color: var(--accent); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.oc-item {
  padding: 36px 24px 36px 0;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.oc-item:last-child { border-right: none; }
.oc-n {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.oc-n span {
  font-size: 28px;
  margin-left: 4px;
  color: var(--accent);
}
.oc-l {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  max-width: 240px;
}
.oc-footer {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.oc-footer a { color: var(--white); text-decoration: underline; }

/* FAQ accordion */
.program-faq { padding: 90px 0; background: var(--white); }
.faq-list { max-width: 880px; }
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  letter-spacing: -0.2px;
  list-style: none;
  position: relative;
  padding-right: 40px;
  line-height: 1.4;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 28px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 760px;
}

@media (max-width: 900px) {
  .stats-grid-6 { grid-template-columns: 1fr 1fr; }
  .faculty-cards { grid-template-columns: 1fr; }
  .fc-card { grid-template-columns: 140px 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .oc-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .oc-item:nth-child(2n) { border-right: none; }
  .oc-item:last-child { border-bottom: none; }
  .vt-item { grid-template-columns: 44px 1fr; gap: 18px; }
  .vt-marker { width: 44px; height: 44px; font-size: 13px; }
  .vtimeline::before { left: 21px; }
}
@media (max-width: 600px) {
  .stats-grid-6 { grid-template-columns: 1fr; }
  .fc-card { grid-template-columns: 1fr; }
  .fc-photo { min-height: 200px; }
  .outcomes-grid { grid-template-columns: 1fr; }
}

/* ───── SDA deeper: hero meta strip, accordions, ammissions, pricing, photo strip, contact card ───── */

/* Hero metadata strip below CTAs */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.hero-meta > div {
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--line);
}
.hero-meta dt {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 4px;
}
.hero-meta dd {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 760px) {
  .hero-meta { grid-template-columns: 1fr 1fr; }
}

/* Why-block accordion */
.why-block { padding: 90px 0; background: var(--white); }
.why-block .head { max-width: 760px; margin-bottom: 32px; }
.why-block .head .eb {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.why-block .head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
}
.why-accordion { max-width: 920px; }
.why-accordion details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.why-accordion details:last-child { border-bottom: 1px solid var(--line); }
.why-accordion summary {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  letter-spacing: -0.2px;
  list-style: none;
  line-height: 1.35;
  position: relative;
  padding-right: 40px;
}
.why-accordion summary::-webkit-details-marker { display: none; }
.why-accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 28px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.2s;
}
.why-accordion details[open] summary::after { content: "−"; }
.why-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 1px;
  font-weight: 600;
  flex-shrink: 0;
  padding-top: 3px;
}
.why-body { padding: 14px 0 0 56px; }
.why-body p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
  max-width: 720px;
}

/* Inside-block accordion (same skeleton, different bg) */
.inside-block { padding: 90px 0; background: var(--paper); }
.inside-block .head { max-width: 760px; margin-bottom: 32px; }
.inside-block .head .eb {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.inside-block .head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
}
.inside-accordion { max-width: 920px; }
.inside-accordion details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.inside-accordion details:last-child { border-bottom: 1px solid var(--line); }
.inside-accordion summary {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  letter-spacing: -0.2px;
  list-style: none;
  line-height: 1.4;
  position: relative;
  padding-right: 40px;
}
.inside-accordion summary::-webkit-details-marker { display: none; }
.inside-accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 28px;
  color: var(--accent);
  font-weight: 300;
}
.inside-accordion details[open] summary::after { content: "−"; }
.inside-body p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 760px;
}

/* Faculty quote */
.fc-quote {
  margin: 12px 0;
  padding: 12px 16px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.55;
  background: var(--paper);
}

/* Admissions 2-col */
.admissions-block { padding: 90px 0; background: var(--white); }
.admissions-block .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.ad-copy .eb {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.ad-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0 0 14px;
}
.ad-copy .lede {
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 26px;
}
.ad-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 16px;
}
.ad-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.ad-steps li > span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
}
.ad-steps li div { font-size: 15px; color: var(--ink); line-height: 1.55; padding-top: 3px; }
.ad-steps li div strong { color: var(--navy); font-weight: 600; }
.ad-photo {
  background-size: cover;
  background-position: center;
  min-height: 460px;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .admissions-block .container { grid-template-columns: 1fr; gap: 32px; }
  .ad-photo { min-height: 280px; }
}

/* Pricing 2-col */
.pricing-block { padding: 90px 0; background: var(--paper); }
.pricing-block .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.pb-photo {
  background-size: cover;
  background-position: center;
  min-height: 460px;
  border-radius: 12px;
}
.pb-copy .eb {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.pb-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0 0 14px;
}
.pb-copy .lede {
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 22px;
}
.pb-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 14px;
}
.pb-list li {
  padding: 14px 16px;
  background: var(--white);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.pb-list li strong { color: var(--navy); font-weight: 600; }
.pb-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy) !important;
  border: 1.5px solid var(--navy);
  padding: 12px 22px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white) !important; }
@media (max-width: 900px) {
  .pricing-block .container { grid-template-columns: 1fr; gap: 32px; }
  .pb-photo { min-height: 280px; }
}

/* Experience photo carousel */
.experience-strip { padding: 90px 0; background: var(--white); }
.experience-strip .head { max-width: 760px; margin: 0 auto 36px; padding: 0 24px; }
.experience-strip .head .eb {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.experience-strip .head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
}
.exp-carousel { overflow-x: auto; padding: 0 24px 16px; scroll-snap-type: x mandatory; }
.exp-track { display: flex; gap: 20px; }
.exp-track figure {
  flex: 0 0 380px;
  margin: 0;
  scroll-snap-align: start;
}
.exp-img {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 12px;
}
.exp-track figcaption {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.exp-track figcaption strong { color: var(--navy); font-weight: 600; }

/* Contact card */
.contact-card { padding: 90px 0; background: var(--paper); }
.contact-card .container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(15,30,70,0.06);
  max-width: 980px;
}
.cc-photo {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 320px;
  border-radius: 8px;
}
.cc-copy .eb {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.cc-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}
.cc-copy p {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 18px;
}
.cc-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 14.5px;
}
.cc-contacts a { color: var(--navy); }
.cc-contacts a:hover { color: var(--accent); }
@media (max-width: 760px) {
  .contact-card .container { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .cc-photo { height: 240px; }
}

/* ───── Compact override · all SDA-pattern sections ───── */
.audience-stats { padding: 56px 0 !important; }
.why-block { padding: 60px 0 !important; }
.inside-block { padding: 60px 0 !important; }
.program-timeline { padding: 60px 0 !important; }
.faculty-grid { padding: 60px 0 !important; }
.outcomes-block { padding: 56px 0 !important; }
.admissions-block { padding: 60px 0 !important; }
.pricing-block { padding: 60px 0 !important; }
.experience-strip { padding: 56px 0 !important; }
.contact-card { padding: 56px 0 !important; }
.program-faq { padding: 60px 0 !important; }

/* Compact heads */
.audience-stats .head,
.program-timeline .head,
.faculty-grid .head,
.outcomes-block .head,
.program-faq .head,
.why-block .head,
.inside-block .head,
.experience-strip .head {
  margin-bottom: 22px !important;
}
.audience-stats .head h2,
.program-timeline .head h2,
.faculty-grid .head h2,
.outcomes-block .head h2,
.program-faq .head h2,
.why-block .head h2,
.inside-block .head h2,
.experience-strip .head h2 {
  font-size: clamp(22px, 2.3vw, 28px) !important;
  margin: 0 0 8px !important;
}
.audience-stats .head .eb,
.program-timeline .head .eb,
.faculty-grid .head .eb,
.outcomes-block .head .eb,
.program-faq .head .eb,
.why-block .head .eb,
.inside-block .head .eb,
.experience-strip .head .eb {
  margin-bottom: 8px !important;
  font-size: 11px !important;
}
.audience-stats .head .lede,
.program-timeline .head .lede,
.faculty-grid .head .lede {
  font-size: 14.5px !important;
  margin: 0 !important;
}

/* Stat tile compact */
.stat-tile { padding: 18px 18px !important; }
.stat-tile .n { font-size: 30px !important; margin-bottom: 6px !important; }
.stat-tile .n span { font-size: 15px !important; }
.stat-tile .l { font-size: 12.5px !important; margin-bottom: 3px !important; }
.stat-tile .d { font-size: 11.5px !important; line-height: 1.45 !important; }
.audience-stats .head h2 { font-size: clamp(18px, 1.9vw, 22px) !important; }
.audience-stats { padding: 40px 0 !important; }

/* Vertical timeline compact */
.vt-item { margin-bottom: 28px !important; gap: 20px !important; }
.vtimeline::before { top: 20px !important; bottom: 20px !important; }
.vt-marker { width: 44px !important; height: 44px !important; font-size: 13px !important; box-shadow: 0 0 0 4px var(--white) !important; }
.vt-item { grid-template-columns: 44px 1fr !important; }
.vt-body h3 { font-size: 20px !important; margin: 0 0 6px !important; }
.vt-body p { font-size: 14.5px !important; margin-bottom: 10px !important; line-height: 1.55 !important; }
.vt-bullets li { font-size: 13.5px !important; }
.vt-when { font-size: 11px !important; margin-bottom: 4px !important; }

/* Why & inside accordion compact */
.why-accordion details,
.inside-accordion details { padding: 16px 0 !important; }
.why-accordion summary { font-size: 18px !important; gap: 14px !important; }
.inside-accordion summary { font-size: 17px !important; }
.why-num { font-size: 12px !important; padding-top: 2px !important; }
.why-body { padding: 10px 0 0 46px !important; }
.why-body p,
.inside-body p { font-size: 14.5px !important; margin-top: 10px !important; line-height: 1.55 !important; }

/* Faculty cards compact */
.faculty-cards { gap: 18px !important; }
.fc-card { grid-template-columns: 140px 1fr !important; }
.fc-photo { min-height: 180px !important; }
.fc-body { padding: 16px 18px !important; }
.fc-body h3 { font-size: 19px !important; margin: 0 0 6px !important; }
.fc-bio { font-size: 13px !important; line-height: 1.5 !important; margin-bottom: 8px !important; }
.fc-quote { font-size: 13px !important; padding: 8px 12px !important; margin: 8px 0 !important; }
.fc-meta { font-size: 11px !important; padding-top: 8px !important; }
.fc-footer { margin-top: 18px !important; font-size: 12px !important; }

/* Outcomes compact */
.oc-item { padding: 24px 18px 24px 0 !important; }
.oc-n { font-size: 46px !important; margin-bottom: 8px !important; }
.oc-n span { font-size: 20px !important; }
.oc-l { font-size: 13px !important; line-height: 1.45 !important; max-width: 200px !important; }
.oc-footer { margin-top: 18px !important; font-size: 12px !important; }

/* Admissions compact */
.admissions-block .container { gap: 40px !important; }
.ad-copy h2 { font-size: clamp(22px, 2.4vw, 28px) !important; margin: 0 0 8px !important; }
.ad-copy .lede { font-size: 15px !important; margin-bottom: 18px !important; }
.ad-steps { gap: 12px !important; margin: 0 0 18px !important; }
.ad-steps li { grid-template-columns: 30px 1fr !important; gap: 12px !important; }
.ad-steps li > span { width: 28px !important; height: 28px !important; font-size: 12px !important; }
.ad-steps li div { font-size: 14px !important; line-height: 1.5 !important; }
.ad-photo { min-height: 340px !important; }

/* Pricing compact */
.pricing-block .container { gap: 40px !important; }
.pb-photo { min-height: 340px !important; }
.pb-copy h2 { font-size: clamp(22px, 2.4vw, 28px) !important; margin: 0 0 8px !important; }
.pb-copy .lede { font-size: 15px !important; margin-bottom: 16px !important; }
.pb-list { gap: 10px !important; margin: 0 0 16px !important; }
.pb-list li { padding: 11px 14px !important; font-size: 13.5px !important; line-height: 1.5 !important; }
.pb-note { font-size: 11.5px !important; margin-bottom: 14px !important; }

/* Experience carousel compact */
.exp-track figure { flex: 0 0 320px !important; }
.exp-img { height: 200px !important; margin-bottom: 8px !important; }
.exp-track figcaption { font-size: 13px !important; line-height: 1.45 !important; }

/* Contact card compact */
.contact-card .container { grid-template-columns: 240px 1fr !important; gap: 32px !important; padding: 24px !important; }
.cc-photo { height: 240px !important; }
.cc-copy h2 { font-size: clamp(20px, 2.2vw, 24px) !important; margin: 0 0 10px !important; }
.cc-copy p { font-size: 14.5px !important; margin-bottom: 14px !important; }
.cc-contacts { font-size: 13.5px !important; gap: 4px !important; margin-bottom: 16px !important; }

/* FAQ compact */
.faq-list details { padding: 16px 0 !important; }
.faq-list summary { font-size: 17px !important; }
.faq-list details p { font-size: 14.5px !important; margin-top: 10px !important; line-height: 1.55 !important; }

/* Hero meta strip compact */
.hero-meta { margin: 24px 0 0 !important; }
.hero-meta > div { padding: 10px 14px 10px 0 !important; }
.hero-meta dt { font-size: 11px !important; margin: 0 0 2px !important; }
.hero-meta dd { font-size: 13px !important; }

/* Inner hero overall compact */
.inner-hero p.lede { margin-bottom: 18px !important; }

/* Split-section compact */
.split-section { padding: 56px 0 !important; }
.split-section .copy h2 { font-size: clamp(22px, 2.4vw, 28px) !important; margin: 6px 0 10px !important; }
.split-section .copy p { font-size: 14.5px !important; margin-bottom: 10px !important; line-height: 1.55 !important; }
.ih-subtopics { margin: 10px 0 14px !important; gap: 6px !important; }
.ih-subtopics li { font-size: 14px !important; line-height: 1.5 !important; }

/* Cards row + cta navy compact */
.cards-row { padding: 56px 0 !important; }
.cta-navy { padding: 56px 0 !important; }

/* Faculty banner image - real Unicollege team */
.faculty-banner {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 24px;
}
@media (max-width: 600px) { .faculty-banner { height: 160px; } }

/* Tighter keyfacts override */
.split-section .copy .keyfacts {
  font-size: 12.5px !important;
  margin-top: 14px !important;
  padding: 12px 0 0 !important;
  row-gap: 4px !important;
  grid-template-columns: 80px 1fr !important;
  column-gap: 12px !important;
}
.split-section .copy .keyfacts strong { font-size: 11px !important; letter-spacing: 1.2px !important; }

/* ───── Thin elegant timeline markers (user ref: hollow ring + slim line) ───── */
.vtimeline::before {
  left: 15px !important;
  width: 1.5px !important;
  background: var(--accent) !important;
  top: 14px !important;
  bottom: 14px !important;
}
.vt-item {
  grid-template-columns: 32px 1fr !important;
  gap: 22px !important;
}
.vt-marker {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background: var(--white) !important;
  border: 2px solid var(--accent) !important;
  color: var(--navy) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  box-shadow: 0 0 0 4px var(--white) !important;
}
.vt-marker span { color: var(--accent) !important; }
@media (max-width: 900px) {
  .vt-item { grid-template-columns: 32px 1fr !important; }
  .vtimeline::before { left: 15px !important; }
}

/* Admissions numbered steps - thin ring style to match */
.ad-steps li > span {
  width: 28px !important;
  height: 28px !important;
  border: 1.5px solid var(--accent) !important;
  background: var(--white) !important;
  color: var(--accent) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

/* Faculty monogram avatar - honest placeholder (no mismatched stock faces) */
.fc-monogram {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%) !important;
  position: relative;
}
.fc-monogram::after {
  content: attr(data-initials);
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.fc-monogram::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(193,64,72,0.25) 0%, transparent 55%);
}

/* Inline enrol link inside individuals bullet lists */
.li-pay {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.3px;
  color: var(--white) !important;
  background: var(--accent);
  padding: 2px 10px;
  border-radius: 100px;
  white-space: nowrap;
  vertical-align: middle;
  transition: background 0.2s;
}
.li-pay:hover { background: var(--navy); }

/* ═══════════════════════════════════════════════════════════
   SDA-BOCCONI FULL-BLEED HERO (home) — 2026-06-01
   Full-bleed photo + dark navy gradient + bold sans headline
   + horizontal navy metadata band. Overrides editorial hero.
   ═══════════════════════════════════════════════════════════ */
.hero-sda {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-sda-media {
  position: absolute; inset: 0;
  background: url("../img/campuses/ic-faculty-advising.jpg") center 28%/cover no-repeat;
  transform: scale(1.04);
}
.hero-sda-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,26,48,0.30) 0%,
    rgba(0,26,48,0.45) 45%,
    rgba(0,26,48,0.86) 100%);
}
.hero-sda > .container { position: relative; z-index: 2; }
.hero-sda-inner {
  padding: 150px 0 64px;
  color: var(--white);
  max-width: 920px;
}
.hero-sda-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border-left: 3px solid var(--accent);
  padding-left: 13px;
  margin-bottom: 26px;
}
.hero-sda-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.03;
  letter-spacing: -1.6px;
  color: var(--white);
  max-width: 16ch;
  margin: 0 0 26px;
}
.hero-sda-lede {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 60ch;
  margin: 0 0 38px;
}
.hero-sda-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-sda-meta {
  position: relative;
  z-index: 2;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-sda-meta .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.hero-sda-meta .cell {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid rgba(255,255,255,0.10);
}
.hero-sda-meta .cell:first-child { border-left: none; padding-left: 0; }
.hero-sda-meta .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}
.hero-sda-meta .v {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
}
@media (max-width: 860px) {
  .hero-sda { min-height: 78vh; }
  .hero-sda-inner { padding: 110px 0 48px; }
  .hero-sda-meta .container { grid-template-columns: repeat(2, 1fr); }
  .hero-sda-meta .cell { border-left: none; padding-left: 0; }
}

/* ═══════════════════════════════════════════════════════════
   SDA-BOCCONI VISUAL PASS (site-wide) — 2026-06-01
   Sans-serif headlines, clean section eyebrows (no roman numerals),
   accent highlight words. De-magazines the editorial layout.
   ═══════════════════════════════════════════════════════════ */

/* All headings -> bold sans (SDA uses sans throughout) */
h1, h2, h3, h4 { font-family: var(--font-sans) !important; }
h1, h2 { font-weight: 700 !important; letter-spacing: -0.8px; }
h3 { font-weight: 700 !important; letter-spacing: -0.3px; }

/* Editorial italic-serif accent words -> clean bordeaux highlight */
h1 em, h2 em, h3 em {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
}
/* City names and other serif sub-labels -> sans (SDA) */
.campus-mini .city-name, .city-name { font-family: var(--font-sans) !important; font-weight: 700 !important; letter-spacing: -0.3px; }

/* Section eyebrow: drop roman numerals + connector line, keep the
   ruled accent label (reads like SDA's metadata tags) */
.chapter-mark .num { display: none !important; }
.chapter-mark .line { display: none !important; }
.chapter-mark {
  gap: 14px;
  border-top-width: 2px;
  letter-spacing: 2px;
}

/* A touch more air between blocks (SDA whitespace) */
.block, .platform, .method, .why-us, .test-prep, .campuses,
.logo-wall, .testimonial, .enroll, .compliance { scroll-margin-top: 90px; }

/* ═══════════════════════════════════════════════════════════
   BRIGHT PASS — 2026-06-01 (Pinuccia: niente scuro/tetro)
   Hero chiaro (foto luminosa + testo navy, NO overlay scuro),
   banda metriche chiara, sda-nav bianca. Override finale.
   ═══════════════════════════════════════════════════════════ */

/* ── HERO chiaro ───────────────────────────────────────── */
.hero-sda { background: var(--white); min-height: 74vh; }
.hero-sda-media {
  background-image: url("../img/campuses/ic-reception.jpg");
  background-position: right center;
  transform: none;
}
.hero-sda-overlay {
  background: linear-gradient(95deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.93) 34%,
    rgba(255,255,255,0.60) 54%,
    rgba(255,255,255,0.12) 74%,
    rgba(255,255,255,0) 100%);
}
.hero-sda-inner { color: var(--ink); max-width: 660px; padding: 130px 0 58px; }
.hero-sda-eyebrow { color: var(--accent); border-left-color: var(--accent); }
.hero-sda-title { color: var(--navy); }
.hero-sda-lede { color: #344050; }

/* ── Banda metriche chiara ─────────────────────────────── */
.hero-sda-meta { background: var(--pale); border-top: 1px solid var(--line); }
.hero-sda-meta .cell { border-left: 1px solid var(--line); }
.hero-sda-meta .cell:first-child { border-left: none; }
.hero-sda-meta .k { color: var(--muted); }
.hero-sda-meta .v { color: var(--navy); }

/* ── SDA sub-nav: da navy scura a bianca ───────────────── */
.sda-nav { background: var(--white) !important; border-bottom: 1px solid var(--line); }
.sda-nav-brand { color: var(--navy); }
.sda-nav-brand svg { stroke: var(--navy); }
.sda-nav-brand .chev { stroke: var(--muted); }
.sda-nav-tabs a { color: #3a4654; }
.sda-nav-tabs a:hover { color: var(--navy); }
.sda-nav-cta .icon-btn { border-color: var(--line); color: var(--navy); }
.sda-nav-cta .icon-btn:hover { background: var(--pale); border-color: var(--navy); }
.sda-nav-cta .btn-ghost-white { color: var(--navy) !important; border-color: var(--navy); }
.sda-nav-cta .btn-ghost-white:hover { background: var(--navy); color: var(--white) !important; }
.sda-bookmark { border-color: var(--line); color: var(--navy); }

/* ── HEADER navy + logo bianco (Pinuccia: logo bianco) ─── */
.header { background: var(--navy) !important; border-bottom: 1px solid rgba(255,255,255,0.10); }
.header .nav a { color: rgba(255,255,255,0.85); }
.header .nav a:hover { color: var(--white); }
.header .btn-ghost {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.55);
}
.header .btn-ghost:hover { background: var(--white); color: var(--navy) !important; border-color:var(--white); }

/* Accessibilità: rispetto della preferenza riduzione movimento */
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation-play-state: paused !important; }
  .hec-slide.is-active { animation: none; }
  .float-cta .dot, .status-strip .live::before, [class*="pulse"] { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Accessibilità: focus tastiera visibile + skip link */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 2000; background: var(--navy); color: var(--white); padding: 10px 18px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 600; font-size: 14px; }
.skip-link:focus { left: 0; }

/* ═══════════════════════════════════════════════════════════
   HALLMARK REDESIGN LAYER — 2026-07-24 · scoped to body.hm (home only)
   Editorial "university prospectus": Merriweather roman display,
   hairline-rule ledgers instead of shadow cards, squared buttons,
   accent red budgeted to primary actions. Zero impact on other pages.
   ═══════════════════════════════════════════════════════════ */

/* ── 0 · Foundations ───────────────────────────────────── */
body.hm {
  font-size: 17px;
  line-height: 1.65;
  overflow-x: clip;
}
.hm ::selection { background: var(--navy); color: var(--white); }

/* Display type: back to roman Merriweather (beats the sans !important pass) */
.hm h1, .hm h2, .hm h3 { font-family: var(--font-serif) !important; font-weight: 700 !important; }
.hm h1, .hm h2 { letter-spacing: -0.4px; }
.hm h3 { letter-spacing: -0.2px; }
/* Accent words: roman, weight-carried, budgeted red */
.hm h1 em, .hm h2 em, .hm h3 em {
  font-family: var(--font-serif) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
}

/* Motion cut: no scroll choreography, no lifts */
.hm .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ── 1 · Buttons: pills → squared editorial ────────────── */
.hm .btn { border-radius: 2px; white-space: nowrap; }
.hm .btn-primary {
  box-shadow: none;
  border-radius: 2px;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.hm .btn-primary::before { display: none; }
.hm .btn-primary:hover { background: var(--navy); border-color: var(--navy); }
.hm .big-label { border-radius: 2px; background: transparent; color: var(--eyebrow); padding: 0; font-size: 12px; letter-spacing: 2.5px; margin-bottom: 14px; }
.hm .badge-hot { border-radius: 2px; }
.hm .li-pay, .hm .row-pay { border-radius: 2px !important; }
.hm .li-pay { background: var(--navy); }
.hm .li-pay:hover { background: var(--accent); }

/* ── 2 · Chrome: quiet wire strips ─────────────────────── */
.hm .status-strip { font-size: 12px; letter-spacing: 1.2px; }
.hm .status-strip .live::before { animation: none; box-shadow: none; }
.hm .sda-nav-tabs a.is-active::after { height: 2px; }
.hm .sda-nav-cta .btn { border-radius: 2px; }
.hm .sda-nav-cta .icon-btn { border-radius: 2px; }

/* ── 3 · Hero: gradient wash → hard editorial split ────── */
.hm .hero-sda { min-height: 0; background: var(--white); }
.hm .hero-sda-media {
  inset: 0 0 0 58%;
  background-position: center;
  transform: none;
  filter: saturate(0.72) contrast(1.02);
  border-left: 1px solid var(--line);
}
.hm .hero-sda-overlay { background: none; inset: 0 0 0 58%; background: rgba(0,47,86,0.10); }
.hm .hero-sda > .container { width: 100%; }
.hm .hero-sda-inner { max-width: 620px; padding: 104px 0 80px; }
.hm .hero-sda-eyebrow {
  border-left: none;
  padding-left: 0;
  color: var(--eyebrow);
  font-size: 12px;
  letter-spacing: 2.6px;
  margin-bottom: 30px;
}
.hm .hero-sda-title {
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.6px;
  max-width: 18ch;
  margin-bottom: 28px;
}
.hm .hero-sda-lede { font-size: 17.5px; line-height: 1.68; max-width: 52ch; color: #344050; }
/* Fact band: navy-ruled ledger row */
.hm .hero-sda-meta { background: var(--white); border-top: 2px solid var(--navy); }
.hm .hero-sda-meta .cell { border-left: 1px solid var(--line); padding: 24px 26px 26px; gap: 10px; }
.hm .hero-sda-meta .cell:first-child { border-left: none; padding-left: 0; }
.hm .hero-sda-meta .k { color: var(--muted); font-size: 12px; letter-spacing: 1.8px; }
.hm .hero-sda-meta .v {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 27px;
  letter-spacing: -0.3px;
  color: var(--navy);
}

/* ── 4 · Chapter marks: red block → full navy rule line ── */
.hm .chapter-mark {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding-right: 0;
  padding-top: 14px;
  border-top: 1px solid var(--navy);
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 2.2px;
  margin-bottom: 44px;
}
.hm .chapter-mark .meta { font-size: 12px; letter-spacing: 1.6px; }
.hm .chapter-mark-wall { width: auto; margin: 0 80px 48px; }

/* ── 5 · Clients: marquee → static ledger index ────────── */
.hm .logo-wall { padding: 96px 0 90px; }
.hm .logo-wall .intro { align-items: start; margin-bottom: 56px; }
.hm .logo-wall h2 { line-height: 1.08; letter-spacing: -0.8px; }
.hm .logo-marquee {
  mask-image: none;
  -webkit-mask-image: none;
  overflow: visible;
  padding: 0 80px;
}
.hm .logo-track {
  animation: none !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
  width: auto;
  align-items: stretch;
}
.hm .logo-track .logo-cell:nth-child(n+10) { display: none; }
.hm .logo-cell {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: normal;
  color: #243f5a;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.hm .logo-cell::after { content: none; }
.hm .logo-cell:nth-child(7), .hm .logo-cell:nth-child(8), .hm .logo-cell:nth-child(9) { border-bottom: 1px solid var(--line); }

/* ── 6 · Campuses: quiet name row ──────────────────────── */
.hm .campuses { padding: 76px 0; }
.hm .campuses-title { font-size: clamp(24px, 2.4vw, 32px); color: var(--navy); line-height: 1.2; margin-bottom: 12px; }
.hm .campuses-lede { font-size: 16.5px; color: var(--muted); line-height: 1.6; max-width: 640px; margin-bottom: 36px; }
.hm .campus-mini { padding: 30px 26px 32px; }
.hm .campus-mini:first-child { padding-left: 0; }
.hm .campus-mini .city-name {
  font-family: var(--font-serif) !important;
  font-weight: 700 !important;
  font-size: 29px;
  letter-spacing: -0.3px;
}
.hm .campus-mini .city-meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); }

/* ── 7 · Test prep: flat plates, roman prices ──────────── */
.hm .test-prep .visual { border-radius: 0; filter: saturate(0.78); }
.hm .test-prep .visual .stamp { border-radius: 2px; background: var(--navy); letter-spacing: 2.2px; }
.hm .test-tile { border-radius: 0; background: var(--white); padding: 22px 24px; }
.hm .test-tile:hover { background: var(--white); border-color: var(--navy); }
.hm .test-tile .name { font-size: 24px; }
.hm .test-tile .for { color: var(--eyebrow); font-size: 12px; }
.hm .test-tile .desc { font-size: 14.5px; color: #46505c; }
.hm .test-prep .pricing {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 26px;
}
.hm .test-prep .pricing .row { font-size: 15px; padding: 13px 0; }
.hm .test-prep .pricing .row .price {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
}
.hm .test-prep .pricing .row .what em { font-size: 12.5px; }
.hm .test-prep .schools {
  background: transparent;
  border-radius: 0;
  border-top: 1px solid var(--line);
  padding: 18px 0 0;
  font-size: 12px;
}

/* ── 8 · Why us: cards → hairline columns ──────────────── */
.hm .why-us { padding: 96px 0; }
.hm .why-us .head { max-width: 1100px; margin-bottom: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.hm .why-us h2 { line-height: 1.12; margin-bottom: 0; }
.hm .why-us .head p { border-left: 1px solid var(--line); padding-left: 32px; font-size: 16.5px; }
.hm .why-us-grid {
  gap: 0;
  grid-template-columns: 1.12fr 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hm .why-card {
  background: transparent;
  border: none;
  border-left: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 38px 32px 42px;
}
.hm .why-card:first-child { border-left: none; padding-left: 0; }
.hm .why-card .x {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
}
.hm .why-card h3 { font-size: 21px; line-height: 1.3; }
.hm .why-card p { font-size: 15.5px; color: #46505c; }
.hm .why-card .check { color: var(--navy); font-size: 12px; letter-spacing: 1.6px; }

/* ── 9 · Platform: explainer → navy panel ──────────────── */
.hm .platform .grid { align-items: start; margin-top: 40px; }
.hm .platform .feat .k { color: var(--eyebrow); font-size: 12px; }
.hm .platform .feat .v { font-size: 15.5px; }
.hm .platform-demo-btn { margin-top: 18px; }
.hm .explainer {
  background: var(--navy);
  border: none;
  border-radius: 0;
  padding: 40px 38px 34px;
  color: rgba(255,255,255,0.82);
}
.hm .explainer-title { color: var(--white); font-size: 20px; }
.hm .explainer-row { border-top: 1px solid rgba(255,255,255,0.18); }
.hm .explainer-number {
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 30px;
  letter-spacing: -0.5px;
}
.hm .explainer-label { color: rgba(255,255,255,0.75); font-size: 14.5px; }
.hm .explainer-label strong { color: var(--white); }
.hm .explainer-foot { border-top: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.68); font-style: normal; }

/* ── 10 · Testimonial: plain-spoken serif, no deco quote ─ */
.hm .testimonial blockquote {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 1.45;
  padding-left: 0;
}
.hm .testimonial blockquote::before { content: none; }
.hm .testimonial .portrait { border-radius: 0; }

/* ── 11 · Method: shadow cards → ruled ledger steps ────── */
.hm .method-head { align-items: start; }
.hm .method-head h2 { line-height: 1.12; }
.hm .method-grid { gap: 0 36px; }
.hm .method-step {
  background: transparent;
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 24px 0 0;
  transition: none;
}
.hm .method-step:hover { transform: none; box-shadow: none; }
.hm .method-step .step-num {
  font-style: normal;
  font-weight: 400;
  color: var(--navy);
  font-size: 44px;
  letter-spacing: -1px;
}
.hm .method-step .step-num .word { color: var(--muted); font-size: 12px; letter-spacing: 2.2px; font-weight: 600; }
.hm .method-step h3 { font-size: 19px; line-height: 1.35; }
.hm .method-step p { font-size: 15px; color: #46505c; }

/* ── 12 · Use cases: blobs + red slide → duotone figures ─ */
.hm .use-card .cover { border-radius: 0; margin-bottom: 18px; transition: none; }
.hm .use-card .cover .photo { filter: grayscale(1) contrast(1.05); transition: filter 0.25s ease; }
.hm .use-card .cover::before {
  height: 100%;
  background: rgba(0,47,86,0.22);
  transition: none;
}
.hm .use-card .cover::after { content: none; }
.hm .use-card:hover .cover { border-radius: 0; }
.hm .use-card:hover .cover .photo { transform: none; filter: grayscale(0) contrast(1); }
.hm .use-card h3 {
  font-size: 20px;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

/* ── 13 · Individuals: flat plates, navy labels ────────── */
.hm .ind-card {
  border-radius: 0;
  box-shadow: none;
  padding: 36px 34px;
  transition: border-color 0.2s ease;
}
.hm .ind-card:hover { transform: none; box-shadow: none; border-color: var(--navy); }
.hm .ind-step { color: var(--eyebrow); font-size: 12px; }
.hm .ind-step::before { background: var(--navy); }
.hm .ind-card h3 { font-size: 23px; }
.hm .ind-bullets li { font-size: 12.5px; }
.hm .ind-bullets li::before { color: var(--navy); font-style: normal; font-family: var(--font-mono); }
.hm .ind-price { border-left: none; border: 1px solid var(--line); background: var(--pale); }
.hm .ind-price strong { color: var(--navy); }
.hm .ind-note { border-left: 1px solid var(--line); border-radius: 0; box-shadow: none; }

/* ── 14 · Enroll: red bar → navy-ruled table ───────────── */
.hm .enroll-grid { border-top: 2px solid var(--navy); background: var(--white); }
.hm .enroll-step { padding: 28px 24px 30px; border-right: 1px solid var(--line); }
.hm .enroll-step:first-child { padding-left: 0; }
.hm .enroll-step .num {
  font-style: normal;
  font-weight: 400;
  color: var(--navy);
  font-size: 36px;
}
.hm .enroll-step h3 { font-size: 17px; }
.hm .enroll-step p { font-size: 14.5px; }

/* ── 15 · Proof: italic red numerals → roman navy ledger ─ */
.hm .proof-strip { gap: 0; border-top: 2px solid var(--navy); background: transparent; }
.hm .proof-item {
  background: transparent;
  border: none;
  border-left: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 34px 34px 8px;
}
.hm .proof-item:first-child { border-left: none; padding-left: 0; }
.hm .proof-item .num {
  font-style: normal;
  font-weight: 400;
  color: var(--navy);
  font-size: clamp(54px, 5.4vw, 76px);
  letter-spacing: -1.5px;
}
.hm .proof-item .num span { color: var(--navy); font-size: 30px; }
.hm .proof-item .lab { font-size: 12px; letter-spacing: 1.4px; }
.hm .proof-item .lab strong { font-size: 13px; }

/* ── 16 · Flywire · guarantee · compliance ─────────────── */
.hm .flywire-row .badge-pill { color: var(--eyebrow); font-size: 12px; }
.hm .flywire-row p { font-size: 15px; }
.hm .guarantee { background: var(--pale); }
.hm .guarantee .gtag { font-family: var(--font-mono); color: var(--eyebrow); font-size: 12px; letter-spacing: 2.2px; font-weight: 600; }
.hm .guarantee p { font-size: 15.5px; color: #46505c; }
.hm .compliance { background: var(--white); border-top: 1px solid var(--line); }
.hm .compliance-lede { color: var(--muted); font-size: 15.5px; margin-top: 10px; }
.hm .badge { border-radius: 0; box-shadow: none; transition: border-color 0.2s ease; }
.hm .badge:hover { transform: none; box-shadow: none; border-color: var(--navy); }

/* ── 17 · Final CTA: centred → left editorial panel ────── */
.hm .final-cta {
  background: var(--navy-deep);
  text-align: left;
  padding: 100px 0;
}
.hm .final-cta h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.2;
  max-width: 22ch;
  margin-bottom: 22px;
}
.hm .final-cta h2 em {
  color: var(--white) !important;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}
.hm .final-cta p { margin-left: 0; margin-right: 0; max-width: 58ch; color: rgba(255,255,255,0.85); }
.hm .final-cta .cta-row { justify-content: flex-start; }
.hm .btn-outline-white { border-radius: 2px; }

/* ── 18 · Footer: mono column labels, ruled bottom ─────── */
.hm .footer { padding-top: 76px; }
.hm .footer h4 {
  font-family: var(--font-mono) !important;
  font-weight: 600 !important;
  font-size: 12px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hm .footer a { transition: color 0.15s ease; }
.hm .footer-bottom { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.4px; }

/* ── 19 · Responsive ───────────────────────────────────── */
@media (max-width: 1080px) {
  .hm .hero-sda-media, .hm .hero-sda-overlay { display: none; }
  .hm .hero-sda-inner { max-width: 720px; padding: 84px 0 64px; }
}
@media (max-width: 960px) {
  .hm .logo-track { grid-template-columns: repeat(2, 1fr); }
  .hm .logo-cell:nth-child(7) { border-bottom: none; }
  .hm .logo-marquee, .hm .chapter-mark-wall { padding-left: 32px; padding-right: 32px; margin-left: 0; margin-right: 0; }
  .hm .chapter-mark-wall { margin-bottom: 40px; }
  .hm .method-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 860px) {
  .hm .hero-sda-meta .cell { border-left: none; border-top: 1px solid var(--line); padding-left: 0; }
  .hm .hero-sda-meta .cell:nth-child(-n+2) { border-top: none; }
  .hm .why-us .head { grid-template-columns: 1fr; gap: 20px; }
  .hm .why-us .head p { border-left: none; padding-left: 0; }
}
@media (max-width: 760px) {
  .hm .why-card { border-left: none; border-top: 1px solid var(--line); padding: 30px 0 34px; }
  .hm .why-card:first-child { border-top: none; }
  .hm .campus-row { grid-template-columns: repeat(2, 1fr); }
  .hm .campus-mini { border-bottom: 1px solid var(--line); }
  .hm .proof-item { border-left: none; border-bottom: none; border-top: 1px solid var(--line); padding: 28px 0 8px; }
  .hm .proof-item:first-child { border-top: none; }
  .hm .enroll-step:first-child { padding-left: 24px; }
  .hm .logo-track { grid-template-columns: 1fr; }
  .hm .logo-cell:nth-child(8) { border-bottom: none; }
}
@media (max-width: 560px) {
  .hm .method-grid { grid-template-columns: 1fr; }
  .hm .use-grid { grid-template-columns: 1fr; }
  .hm .hero-sda-title { font-size: clamp(31px, 8.4vw, 38px); overflow-wrap: anywhere; }
  .hm .header .btn, .hm .sda-nav-cta .btn { padding: 10px 14px; font-size: 13px; }
  .hm .chapter-mark { flex-wrap: wrap; row-gap: 6px; }
}

/* Reduced motion: nothing left to reduce beyond global rules */
@media (prefers-reduced-motion: reduce) {
  .hm .use-card .cover .photo { transition: none; }
}
