/* ==========================================================================
   MIDDLEMAN — SITE STYLES
   Component layer on top of colors_and_type.css (design-system tokens).
   Everything tweakable is routed through --mm-* custom properties so the
   Tweaks panel can re-skin the page live.
   ========================================================================== */

:root {
  /* --- Tweakable knobs (defaults) --- */
  --mm-accent:       var(--primary-500);   /* indigo */
  --mm-accent-700:   var(--primary-800);
  --mm-accent-soft:  var(--primary-50);
  --mm-accent-tint:  var(--primary-25);
  --mm-accent-rgb:   76 108 226;

  --heading-font:    var(--font-display);  /* Montserrat */

  --card-radius:     14px;
  --card-border:     1px solid var(--gray-200);
  --card-shadow:     var(--shadow-sm);
  --card-shadow-hover: var(--shadow-md);

  --section-pad:     104px;

  /* derived constants */
  --mint:            var(--tertiary-400);
  --mint-700:        var(--tertiary-700);
  --navy:            var(--secondary-500);
  --navy-deep:       var(--deep-navy);
  --ink:             var(--gray-900);
  --muted:           var(--gray-500);
  --line:            var(--gray-200);
  --wrap:            1180px;
}

/* Accent presets (applied via body class from Tweaks) */
body.accent-mint {
  --mm-accent: var(--tertiary-600);
  --mm-accent-700: var(--tertiary-800);
  --mm-accent-soft: var(--tertiary-50);
  --mm-accent-tint: var(--tertiary-25);
  --mm-accent-rgb: 47 178 162;
}
body.accent-violet {
  --mm-accent: #7a5ae0;
  --mm-accent-700: #5b3fc4;
  --mm-accent-soft: #efeafe;
  --mm-accent-tint: #f7f4ff;
  --mm-accent-rgb: 122 90 224;
}

/* Card style presets */
body.cards-bordered {
  --card-border: 1px solid var(--gray-300);
  --card-shadow: none;
  --card-shadow-hover: var(--shadow-sm);
  --card-radius: 12px;
}
body.cards-elevated {
  --card-border: 1px solid transparent;
  --card-shadow: var(--shadow-md);
  --card-shadow-hover: var(--shadow-lg);
  --card-radius: 18px;
}

/* Density presets */
body.density-compact  { --section-pad: 72px; }
body.density-comfy    { --section-pad: 136px; }

/* ==========================================================================
   BASE
   ========================================================================== */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
svg, video, canvas, iframe { max-width: 100%; }
input, textarea, select, button { max-width: 100%; font: inherit; }
/* Grid/flex children otherwise keep their intrinsic width and can push the
   whole page beyond the viewport (long headings, URLs, pricing labels…). */
.wrap > *, [class*="grid"] > *, [class*="-grid"] > *,
.section-head > *, .nav-menu > *, .footer-top > * { min-width: 0; }
h1, h2, h3, h4, h5, p, li, a { overflow-wrap: break-word; }
table { max-width: 100%; }
h1, h2, h3, h4, h5 { font-family: var(--heading-font); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; }
section { padding: var(--section-pad) 0; }

/* ==========================================================================
   SHARED PRIMITIVES
   ========================================================================== */
.eyebrow {
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mm-accent);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow.on-dark { color: var(--mint); }
.eyebrow .tick { width: 18px; height: 1px; background: currentColor; opacity: .5; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-title {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  max-width: 16ch;
  text-wrap: balance;
}
.section-title.on-dark { color: #fff; }
.section-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 38ch;
}
.section-sub.on-dark { color: #fff; }

/* Buttons */
.btn {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--mm-accent); color: #fff; }
.btn-primary:hover { background: var(--mm-accent-700); transform: translateY(-1px); box-shadow: 0 8px 22px rgb(var(--mm-accent-rgb) / .28); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--gray-300); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--secondary-700); transform: translateY(-1px); }
.btn-on-dark { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.2); }
.btn-on-dark:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.btn-lg { font-size: 15px; padding: 16px 30px; }

/* Chips */
.chip {
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 6px 13px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chip-accent { background: var(--mm-accent-soft); color: var(--mm-accent-700); }
.chip-mint   { background: var(--tertiary-50); color: var(--tertiary-800); }

/* Cards */
.card {
  background: #fff;
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

/* Icon tile */
.itile {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--mm-accent-soft);
  color: var(--mm-accent);
}
.itile svg { width: 22px; height: 22px; }
.itile.mint { background: var(--tertiary-50); color: var(--tertiary-700); }
.itile.dark { background: rgba(255,255,255,0.1); color: var(--mint); border: 1px solid rgba(255,255,255,0.16); }

/* Language switcher (dropdown) */
.lang-switch { position: relative; display: inline-flex; }
.lang-trigger { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--gray-200); background: #fff; cursor: pointer; font-family: var(--heading-font); font-size: 12px; font-weight: 700; color: var(--navy); padding: 7px 10px; border-radius: 8px; transition: all .15s ease; }
.lang-trigger:hover { border-color: var(--gray-300); background: var(--gray-100); }
.lang-trigger .lang-current { display: inline-flex; align-items: center; gap: 6px; }
.lang-caret { color: var(--gray-500); transition: transform .18s ease; }
.lang-switch.open .lang-caret { transform: rotate(180deg); }
.lang-menu { position: absolute; top: calc(100% + 6px); right: 0; min-width: 148px; background: #fff; border: 1px solid var(--gray-200); border-radius: 10px; box-shadow: var(--shadow-lg); padding: 5px; display: none; flex-direction: column; gap: 2px; z-index: 240; }
.lang-switch.open .lang-menu { display: flex; }
.lang-menu button { display: inline-flex; align-items: center; gap: 9px; border: none; background: transparent; cursor: pointer; font-family: var(--heading-font); font-size: 13px; font-weight: 600; color: var(--gray-600); padding: 9px 10px; border-radius: 7px; text-align: left; transition: all .12s ease; }
.lang-menu button:hover { background: var(--gray-100); color: var(--navy); }
.lang-menu button.active { color: var(--navy); font-weight: 700; background: var(--mm-accent-tint); }
.lang-switch .flag { width: 19px; height: 13px; border-radius: 2px; display: block; box-shadow: 0 0 0 1px rgba(16,24,40,0.08); overflow: hidden; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 66px;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  transition: box-shadow .25s ease;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(16,24,40,0.06); }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark { width: 22px; flex-shrink: 0; }
.brand .word {
  font-family: var(--heading-font);
  font-size: 20px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--navy);
}
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--heading-font);
  font-size: 13.5px; font-weight: 600; color: var(--gray-700);
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--mm-accent); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-login { font-family: var(--heading-font); font-size: 13.5px; font-weight: 600; color: var(--navy); padding: 9px 14px; }
.nav-login:hover { color: var(--mm-accent); }

/* Mobile nav (menu wrapper + hamburger) — built by site.js */
.nav-menu { display: contents; }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid var(--gray-200); border-radius: 10px; background: #fff; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; flex-shrink: 0; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 78% 30%, rgba(53,206,186,0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 12% 75%, rgba(76,108,226,0.22), transparent 60%),
    linear-gradient(165deg, #0b1437 0%, #0a1b2e 55%, #0a2230 100%);
  color: #fff;
  overflow: hidden;
  padding-top: 66px;
}
.hero-grid-tex {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { max-width: var(--wrap); margin: 0 auto; padding: 116px 40px 104px; position: relative; z-index: 2; }
.hero-top {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--heading-font); font-size: 11.5px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: #fff;
  padding-bottom: 56px;
}
.hero-top .accent { color: var(--mint); }
.hero h1 {
  font-size: clamp(46px, 6.6vw, 90px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 36px;
  max-width: 28ch;
}
.hero h1 .mint { color: var(--mint); }
.hero h1 .indigo { color: var(--primary-200); }
.hero-sub {
  font-size: 19px; line-height: 1.62; color: #fff;
  max-width: 50ch; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 68px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.hero-stat {
  display: flex; align-items: center; gap: 12px;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: 0; padding-right: 0; }
.hero-stat .itile { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.hero-stat .t { font-family: var(--heading-font); font-size: 14px; font-weight: 700; color: #fff; }
.hero-stat .s { font-size: 12.5px; color: #fff; line-height: 1.35; }

/* Light hero variant */
body.hero-light .hero {
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(53,206,186,0.14), transparent 60%),
    radial-gradient(ellipse 50% 50% at 8% 80%, rgba(76,108,226,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fa 100%);
  color: var(--ink);
}
body.hero-light .hero h1 { color: var(--navy); }
body.hero-light .hero h1 .indigo { color: var(--mm-accent); }
body.hero-light .hero h1 .mint { color: var(--tertiary-600); }
body.hero-light .hero-sub { color: var(--gray-600); }
body.hero-light .hero-top { color: var(--gray-400); border-color: var(--gray-200); }
body.hero-light .hero-top .accent { color: var(--tertiary-700); }
body.hero-light .hero-grid-tex { display: none; }
body.hero-light .hero-stats { border-color: var(--gray-200); }
body.hero-light .hero-stat { border-color: var(--gray-200); }
body.hero-light .hero-stat .t { color: var(--navy); }
body.hero-light .hero-stat .s { color: var(--gray-500); }
body.hero-light .hero-stat .itile { background: var(--mm-accent-soft); color: var(--mm-accent); border: 0; }

/* ==========================================================================
   TICKER
   ========================================================================== */
.ticker { background: var(--bg-app); border-bottom: 1px solid var(--gray-200); overflow: hidden; height: 46px; display: flex; align-items: center; }
.ticker-inner { display: flex; white-space: nowrap; animation: tick 28s linear infinite; }
.ticker-item {
  font-family: var(--heading-font); font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gray-400);
  padding: 0 30px; display: flex; align-items: center; gap: 30px;
}
.ticker-item::after { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--mm-accent); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   PAIN SECTION
   ========================================================================== */
.pain { background: var(--bg-app); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain-card { overflow: hidden; display: flex; flex-direction: column; }
.pain-card-top { padding: 34px 30px; min-height: 196px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.pain-card-top .lead { font-family: var(--heading-font); font-size: 30px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 12px; }
.pain-card-top p { font-size: 13.5px; line-height: 1.55; }
.pain-card-list { padding: 26px 30px; display: flex; flex-direction: column; gap: 18px; }
.pain-li { display: flex; gap: 12px; align-items: flex-start; }
.pain-li .dot { width: 7px; height: 7px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.pain-li .h { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.pain-li .d { font-size: 13px; line-height: 1.55; color: var(--muted); }
.pain-banner {
  margin-top: 24px;
  background: var(--navy);
  border-radius: var(--card-radius);
  padding: 28px 34px;
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
}
.pain-banner p { font-family: var(--heading-font); font-size: 17px; font-weight: 700; color: #fff; max-width: 58ch; line-height: 1.4; }
.pain-banner p em { font-style: normal; color: var(--mint); }

/* ==========================================================================
   VALUE SECTION
   ========================================================================== */
.value { background: #fff; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.vcard { padding: 36px 34px; position: relative; overflow: hidden; }
.vcard:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.vcard-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.vcard-metric { font-family: var(--heading-font); font-size: 40px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.vcard-tag { font-family: var(--heading-font); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.vcard h3 { font-size: 21px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.vcard p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin-bottom: 22px; }
.vcard-chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* ==========================================================================
   MODULES SECTION (dark)
   ========================================================================== */
.modules { background: var(--bg-app); color: var(--ink); }
.mod-list { display: flex; flex-direction: column; gap: 16px; }
.mod {
  display: grid; grid-template-columns: 340px 1fr;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.mod:hover { border-color: rgba(var(--mm-accent-rgb), .55); box-shadow: var(--shadow-md); }
.mod-left { padding: 36px 32px; border-right: 1px solid var(--gray-200); display: flex; flex-direction: column; }
.mod-label { font-family: var(--heading-font); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.mod-title { font-size: 27px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; color: var(--navy); }
.mod-title em { font-style: normal; color: var(--mint-700); }
.mod-tagline { font-size: 14px; line-height: 1.6; color: var(--gray-600); margin-bottom: auto; }
.mod-metric { margin-top: 26px; }
.mod-metric .n { font-family: var(--heading-font); font-size: 30px; font-weight: 900; letter-spacing: -0.02em; color: var(--navy); }
.mod-metric .n span { color: var(--mint-700); }
.mod-metric .l { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.mod-right { padding: 34px 32px; display: flex; flex-direction: column; gap: 24px; }
.mod-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.mod-feat { display: flex; gap: 13px; align-items: flex-start; }
.mod-feat .itile { width: 34px; height: 34px; border-radius: 9px; }
.mod-feat .itile svg { width: 17px; height: 17px; }
.mod-feat h5 { font-family: var(--heading-font); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.mod-feat p { font-size: 12.5px; line-height: 1.5; color: var(--gray-600); }
.mod-foot { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--gray-200); }
.mod-foot .chip { background: var(--gray-100); color: var(--gray-600); }
.mod-foot .btn { margin-left: auto; }
.mod-chip-link { margin-left: auto; }

/* network sub-banner inside modules */
.net-banner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: linear-gradient(150deg, #16294f 0%, #102142 100%);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; margin-top: 28px;
  box-shadow: var(--shadow-md);
}
.net-copy { padding: 38px 34px; background: rgba(255,255,255,0.03); }
.net-copy h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; color: #fff; }
.net-copy h3 em { font-style: normal; color: var(--mint); }
.net-copy p { font-size: 14.5px; line-height: 1.62; color: #fff; }
.net-points { padding: 32px 34px; display: flex; flex-direction: column; gap: 18px; background: rgba(76,108,226,0.08); }
.net-point { display: flex; gap: 14px; align-items: flex-start; }
.net-point .itile.dark { width: 38px; height: 38px; }
.net-point .h { font-family: var(--heading-font); font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.net-point .d { font-size: 13px; line-height: 1.5; color: #fff; }

/* ==========================================================================
   FORMATIONS TEASER (on home)
   ========================================================================== */
.formations-teaser { background: linear-gradient(135deg, var(--mm-accent-tint) 0%, var(--tertiary-25) 100%); }
.ft-grid { display: grid; grid-template-columns: 1fr 1fr; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); }
.ft-copy { background: #fff; padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.ft-copy h2 { font-size: clamp(26px, 2.8vw, 36px); font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 16px; }
.ft-copy p { font-size: 15px; line-height: 1.65; color: var(--muted); margin-bottom: 26px; }
.ft-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.ft-cards { background: linear-gradient(150deg, #0b1b2e, #0a2730); padding: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: center; }
.ft-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 13px; padding: 22px 18px; }
.ft-card .itile.dark { margin-bottom: 14px; }
.ft-card .t { font-family: var(--heading-font); font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 5px; }
.ft-card .d { font-size: 12px; line-height: 1.45; color: #fff; }

/* ==========================================================================
   ADN / FOUNDERS
   ========================================================================== */
.adn { background: var(--bg-app); }
.adn-grid { display: grid; grid-template-columns: 1.25fr 0.92fr; gap: 26px; align-items: stretch; }
.adn-copy h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.12; margin-bottom: 22px; }
.adn-copy p { font-size: 15px; line-height: 1.72; color: var(--gray-600); margin-bottom: 15px; }
.adn-copy p:last-child { margin-bottom: 0; }
.adn-copy strong { color: var(--mm-accent); font-weight: 700; }
.adn-copy strong.mint { color: var(--tertiary-700); }
.adn-copy .kicker { font-family: var(--heading-font); font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.5; }
.adn-founders { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-height: 0; }
.founder { overflow: hidden; display: flex; flex-direction: column; min-height: 0; }
.founder-photo { flex: 1; min-height: 0; overflow: hidden; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; filter: grayscale(100%); transition: filter .3s ease; }
.founder:hover .founder-photo img { filter: grayscale(0%); }
.founder-meta { padding: 16px 18px; }
.founder-meta .n { font-family: var(--heading-font); font-size: 15.5px; font-weight: 800; color: var(--navy); }
.founder-meta .r { font-family: var(--heading-font); font-size: 12px; font-weight: 700; color: var(--mm-accent); margin: 3px 0 6px; }
.founder-meta .x { font-size: 11.5px; color: var(--muted); line-height: 1.4; min-height: 2.8em; }
.adn-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 32px; }
.adn-stat { padding: 26px 24px; }
.adn-stat .n { font-family: var(--heading-font); font-size: 36px; font-weight: 900; letter-spacing: -0.03em; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.adn-stat .n span { color: var(--mm-accent); }
.adn-stat .l { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.adn-stat .d { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing { background: #fff; padding-bottom: 56px; }
.ptabs { display: inline-flex; gap: 4px; background: var(--gray-100); border-radius: 11px; padding: 4px; margin-bottom: 14px; }
.ptab {
  font-family: var(--heading-font); font-size: 13.5px; font-weight: 700;
  padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer;
  background: transparent; color: var(--gray-500); transition: all .18s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.ptab svg { width: 16px; height: 16px; }
.ptab.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-xs); }
.pane { display: none; }
.pane.active { display: block; }

.cv-hero {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 0;
  background: var(--navy); border-radius: 18px; overflow: hidden; margin-bottom: 22px;
}
.cv-hero-main { padding: 44px 42px; }
.cv-hero-main .lab { display: inline-flex; align-items: center; gap: 8px; font-family: var(--heading-font); font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--mint); background: rgba(53,206,186,0.12); border: 1px solid rgba(53,206,186,0.28); padding: 7px 13px 7px 11px; border-radius: var(--radius-full); margin-bottom: 18px; }
.cv-hero-main .lab::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 3px rgba(53,206,186,0.22); flex-shrink: 0; }
.cv-hero-main .price { font-family: var(--heading-font); font-size: 72px; font-weight: 900; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.cv-hero-main .price sup { font-size: 32px; vertical-align: top; color: var(--mint); margin-right: 4px; top: 0.35em; position: relative; }
.cv-hero-main .unit { font-size: 14px; color: #fff; margin: 10px 0 24px; }
.cv-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.cv-badge { font-family: var(--heading-font); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-full); background: rgba(255,255,255,0.07); color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.cv-badge.green { background: rgba(53,206,186,0.12); color: var(--mint); }
.cv-hero-side { padding: 44px 40px; background: rgba(255,255,255,0.03); border-left: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 16px; }
.cv-hero-side .small { font-family: var(--heading-font); font-size: 13px; font-weight: 600; color: #fff; }

.addons-label { font-family: var(--heading-font); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 8px 0 14px; }
.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.addon { padding: 24px 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.addon .l strong { font-family: var(--heading-font); font-size: 16px; font-weight: 800; color: var(--navy); display: block; margin-bottom: 6px; }
.addon .l p { font-size: 13px; line-height: 1.5; color: var(--muted); }
.addon .p { font-family: var(--heading-font); font-size: 26px; font-weight: 900; color: var(--mm-accent); letter-spacing: -0.02em; white-space: nowrap; }
.addon .p span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ROI calculator */
.roi { background: var(--bg-app); border: 1px solid var(--gray-200); border-radius: 18px; padding: 36px 38px; }
.roi-title { font-family: var(--heading-font); font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.roi-sliders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 36px; margin-bottom: 30px; }
.roi-slider label { font-family: var(--heading-font); font-size: 13px; font-weight: 600; color: var(--gray-700); display: flex; justify-content: space-between; margin-bottom: 10px; }
.roi-slider label b { color: var(--mm-accent); font-weight: 800; }
.roi-slider input[type=range] { width: 100%; -webkit-appearance: none; appearance: none; height: 5px; border-radius: 3px; background: var(--gray-300); outline: none; }
.roi-slider input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--mm-accent); cursor: pointer; border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.roi-slider input[type=range]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--mm-accent); cursor: pointer; border: 3px solid #fff; }
.roi-result { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.roi-stat { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 22px 20px; }
.roi-stat .n { font-family: var(--heading-font); font-size: 27px; font-weight: 900; color: var(--navy); letter-spacing: -0.02em; }
.roi-stat .n.accent { color: var(--tertiary-700); }
.roi-stat .l { font-size: 12px; color: var(--muted); margin-top: 5px; line-height: 1.4; }

/* coop plans */
.coop-billing { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.bill-toggle { display: flex; gap: 3px; background: var(--gray-100); border-radius: 9px; padding: 3px; }
.bill-toggle button { font-family: var(--heading-font); font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: 7px; border: none; cursor: pointer; background: transparent; color: var(--gray-500); transition: all .15s; }
.bill-toggle button.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-xs); }
.bill-save { background: var(--tertiary-50); border: 1px solid var(--tertiary-200); color: var(--tertiary-800); font-family: var(--heading-font); font-size: 12px; font-weight: 700; padding: 5px 13px; border-radius: var(--radius-full); }
.coop-plans { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: stretch; }
.plan { padding: 26px 22px; display: flex; flex-direction: column; position: relative; }
.plan.featured { border-color: var(--mm-accent); box-shadow: 0 10px 30px rgb(var(--mm-accent-rgb) / .12); }
.plan-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--mm-accent); color: #fff; font-family: var(--heading-font); font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em; padding: 4px 12px; border-radius: var(--radius-full); white-space: nowrap; }
.plan-tier { font-family: var(--heading-font); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.plan-name { font-family: var(--heading-font); font-size: 18px; font-weight: 800; color: var(--navy); margin: 4px 0 16px; }
.plan-price { font-family: var(--heading-font); font-size: 34px; font-weight: 900; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.plan-unit { font-size: 12px; color: var(--muted); margin: 6px 0 16px; min-height: 16px; }
.plan-roi { background: var(--tertiary-25); border: 1px solid var(--tertiary-100); color: var(--tertiary-800); font-size: 11px; line-height: 1.4; padding: 8px 10px; border-radius: 8px; margin-bottom: 16px; }
.plan-roi strong { font-weight: 800; }
.plan-feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.plan-feats li { font-size: 12.5px; color: var(--gray-600); display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; }
.plan-feats li svg { width: 14px; height: 14px; color: var(--mm-accent); flex-shrink: 0; margin-top: 2px; }
.plan-feats li.hl { color: var(--tertiary-800); font-weight: 600; }
.plan-feats li.hl svg { color: var(--tertiary-600); }
.coop-notes { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 22px; font-size: 13px; color: var(--gray-600); }
.coop-notes span { display: inline-flex; align-items: center; gap: 8px; }
.coop-notes svg { width: 16px; height: 16px; color: var(--tertiary-600); }

/* ==========================================================================
   CLIENTS MARQUEE
   ========================================================================== */
.clients { background: #fff; padding-top: 88px; padding-bottom: 24px; }
.clients-marquee { border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); overflow: hidden; margin-top: 44px; }
.clients-track { display: flex; animation: tick 36s linear infinite; }
.clients-track-inner { display: flex; flex-shrink: 0; }
.client-cell { padding: 46px 66px; display: flex; align-items: center; }
.client-cell span { font-family: var(--heading-font); font-size: 32px; font-weight: 800; letter-spacing: -0.015em; color: var(--gray-400); }
.clients .section-title { font-size: clamp(36px, 4vw, 56px); }
.clients .eyebrow { font-size: 13px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--bg-app); }
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-left h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.faq-left p { font-size: 16px; color: var(--muted); line-height: 1.6; margin-bottom: 26px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; }
.faq-q { padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; font-family: var(--heading-font); font-size: 15.5px; font-weight: 700; color: var(--navy); }
.faq-plus { width: 22px; height: 22px; flex-shrink: 0; position: relative; transition: transform .25s ease; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: var(--mm-accent); border-radius: 2px; }
.faq-plus::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.faq-plus::after { width: 2px; height: 14px; top: 4px; left: 10px; transition: transform .25s ease; }
.faq-item.open .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 24px; }
.faq-a p { font-size: 14px; line-height: 1.65; color: var(--gray-600); }
.faq-item.open .faq-a { max-height: 320px; padding: 0 24px 24px; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta { background: linear-gradient(135deg, #0b1437 0%, #0a2230 100%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta .glow { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(53,206,186,0.14), transparent 60%); pointer-events: none; }
.cta-inner { max-width: 760px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
.cta h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px; }
.cta h2 em { font-style: normal; color: var(--mint); }
.cta p { font-size: 18px; color: #fff; line-height: 1.6; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 28px; font-family: var(--heading-font); font-size: 13px; font-weight: 600; color: #fff; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy-deep); color: #fff; padding: 72px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-brand .word { font-family: var(--heading-font); font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.footer-desc { font-size: 14px; line-height: 1.65; max-width: 36ch; }
.footer-col h4 { font-family: var(--heading-font); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: #fff; transition: color .15s; }
.footer-links a:hover { color: var(--mint); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #fff; }
.footer-social { display: inline-flex; align-items: center; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .18s ease; }
.footer-social a:hover { background: var(--mm-accent); border-color: var(--mm-accent); color: #fff; transform: translateY(-1px); }
.footer-social a svg { width: 18px; height: 18px; }

/* ==========================================================================
   MODAL (formation download form)
   ========================================================================== */
.modal-overlay { position: fixed; inset: 0; z-index: 500; background: rgba(10,20,46,0.55); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity .2s ease; }
.modal-overlay.open { display: flex; opacity: 1; }
.modal { position: relative; background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto; transform: translateY(12px); transition: transform .25s cubic-bezier(.4,0,.2,1); }
.modal-overlay.open .modal { transform: none; }
.modal-head { padding: 30px 34px 0; }
.modal-head .eyebrow { color: var(--tertiary-700); margin-bottom: 10px; }
.modal-head h3 { font-family: var(--heading-font); font-size: 23px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1.2; }
.modal-head p { font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.5; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border: none; background: var(--gray-100); border-radius: 9px; cursor: pointer; color: var(--gray-600); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.modal-close:hover { background: var(--gray-200); }
.modal-close svg { width: 18px; height: 18px; }
.modal-body { padding: 24px 34px 34px; position: relative; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--heading-font); font-size: 12.5px; font-weight: 600; color: var(--darkblue); }
.field label .req { color: var(--mm-accent); }
.field input, .field textarea { font-family: var(--font-sans); font-size: 14px; color: var(--ink); padding: 11px 13px; border: 1px solid var(--inputgray); border-radius: var(--radius-lg); background: #fff; transition: border-color .15s, box-shadow .15s; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary-500); box-shadow: 0 0 0 3px var(--primary-50); }
.field input::placeholder, .field textarea::placeholder { color: var(--placeholdergray); }
.modal .btn { width: 100%; justify-content: center; margin-top: 22px; }
.who-field { margin-bottom: 16px; }
.who-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.who-opt { position: relative; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 14px; border: 1px solid var(--inputgray); border-radius: var(--radius-lg); cursor: pointer; font-family: var(--heading-font); font-size: 13.5px; font-weight: 600; color: var(--gray-600); transition: all .15s ease; }
.who-opt input { position: absolute; opacity: 0; pointer-events: none; }
.who-opt:hover { border-color: var(--primary-300); }
.who-opt:has(input:checked) { border-color: var(--primary-500); background: var(--primary-50); color: var(--navy); box-shadow: 0 0 0 3px var(--primary-50); }
.modal-success { text-align: center; padding: 20px 0; display: none; }
.modal-success.show { display: block; }

/* HubSpot form inside the training pre-registration modal */
#hubspot-training-form .hs-form-field { margin-bottom: 16px; }
#hubspot-training-form .hs-form-field > label { display: block; margin-bottom: 7px; font-family: var(--heading-font); font-size: 12px; font-weight: 700; color: var(--gray-700); }
#hubspot-training-form .input { margin: 0; }
#hubspot-training-form .hs-input:not([type="checkbox"]):not([type="radio"]) { width: 100% !important; padding: 11px 14px; border: 1px solid var(--inputgray); border-radius: 8px; background: #fff; color: var(--ink); font-family: var(--font-sans); font-size: 14px; }
#hubspot-training-form textarea.hs-input { min-height: 92px; resize: vertical; }
#hubspot-training-form .hs-input:focus { outline: none; border-color: var(--mm-accent); box-shadow: 0 0 0 3px var(--mm-accent-soft); }
#hubspot-training-form .hs-button { width: 100%; margin-top: 8px; padding: 13px 20px; border: 0; border-radius: var(--radius-md); background: var(--mm-accent); color: #fff; cursor: pointer; font-family: var(--heading-font); font-size: 14px; font-weight: 700; }
#hubspot-training-form .hs-button:hover { background: var(--mm-accent-700); }
#hubspot-training-form .hs-error-msgs { list-style: none; padding: 0; margin: 6px 0 0; }
#hubspot-training-form .hs-error-msg { font-size: 12px; color: var(--error-600, #b42318); }
#hubspot-training-form .legal-consent-container { margin-top: 12px; font-size: 11.5px; line-height: 1.5; color: var(--muted); }
#hubspot-training-form .legal-consent-container p { font-size: inherit; color: inherit; }
#hubspot-training-form .legal-consent-container .inputs-list { list-style: none; margin: 8px 0; padding: 0; }
#hubspot-training-form .legal-consent-container label { display: flex; align-items: flex-start; gap: 8px; }
.modal-success .ic { width: 58px; height: 58px; border-radius: 50%; background: var(--tertiary-50); color: var(--tertiary-700); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.modal-success .ic svg { width: 28px; height: 28px; }
.modal-success h4 { font-family: var(--heading-font); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.modal-success p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.prog-foot .btn-dl { background: #fff; color: var(--tertiary-700); border: 1px solid var(--tertiary-200); }
.prog-foot .btn-dl:hover { border-color: var(--tertiary-500); background: var(--tertiary-25); }
.prog.dark .prog-foot .btn-dl { background: rgba(53,206,186,0.12); color: var(--mint); border-color: rgba(53,206,186,0.3); }
.prog-foot .prog-actions { display: flex; gap: 8px; flex-wrap: wrap; }
@media (max-width: 440px) { .form-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-hero { background: var(--bg-app); padding-top: calc(66px + var(--section-pad)); }
.blog-hero .eyebrow { color: var(--mm-accent); }
.blog-hero h1 { font-size: clamp(36px, 4.4vw, 58px); font-weight: 900; color: var(--navy); letter-spacing: -0.035em; line-height: 1.04; max-width: 18ch; margin-bottom: 18px; }
.blog-hero p { font-size: 18px; color: var(--muted); line-height: 1.6; max-width: 52ch; }
.blog-section { background: #fff; }
.blog-feature { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; border-radius: 18px; overflow: hidden; margin-bottom: 48px; box-shadow: var(--card-shadow); border: var(--card-border); }
.blog-feature .bf-media { background: linear-gradient(150deg, #0b1437, #0a2230); min-height: 320px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 36px; }
.blog-feature .bf-media .badge { font-family: var(--heading-font); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint); }
.blog-feature .bf-media .glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 70% 30%, rgba(53,206,186,0.18), transparent 60%), radial-gradient(ellipse 50% 50% at 20% 80%, rgba(76,108,226,0.2), transparent 60%); }
.blog-feature .bf-copy { padding: 44px 42px; display: flex; flex-direction: column; justify-content: center; }
.blog-feature .bf-copy .cat { font-family: var(--heading-font); font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mm-accent); margin-bottom: 14px; }
.blog-feature .bf-copy h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; color: var(--navy); line-height: 1.14; margin-bottom: 14px; letter-spacing: -0.02em; }
.blog-feature .bf-copy p { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 22px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--gray-500); margin-bottom: 22px; }
.blog-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-400); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { display: flex; flex-direction: column; overflow: hidden; cursor: pointer; }
.blog-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.blog-card .bc-media { height: 180px; position: relative; overflow: hidden; }
.blog-card .bc-media .glow { position: absolute; inset: 0; }
.blog-card .bc-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card .cat { font-family: var(--heading-font); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.blog-card h3 { font-size: 19px; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 10px; letter-spacing: -0.01em; }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.blog-card .bc-foot { display: flex; align-items: center; gap: 12px; font-size: 12.5px; color: var(--gray-500); }
.blog-readmore { display: inline-flex; align-items: center; gap: 7px; font-family: var(--heading-font); font-size: 13.5px; font-weight: 700; color: var(--mm-accent); }
.blog-readmore svg { width: 15px; height: 15px; }

/* Article page */
.article-hero { background: var(--bg-app); padding-top: calc(66px + 64px); padding-bottom: 56px; }
.article-wrap { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.article-back { display: inline-flex; align-items: center; gap: 7px; font-family: var(--heading-font); font-size: 13.5px; font-weight: 600; color: var(--mm-accent); margin-bottom: 26px; }
.article-back svg { width: 15px; height: 15px; transform: rotate(180deg); }
.article-hero .cat { font-family: var(--heading-font); font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mm-accent); margin-bottom: 16px; }
.article-hero h1 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 900; color: var(--navy); letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 20px; }
.article-hero .lede { font-size: 19px; color: var(--gray-600); line-height: 1.6; }
.article-body { background: #fff; padding: 56px 0 var(--section-pad); }
.article-body h2 { font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin: 40px 0 16px; line-height: 1.2; }
.article-body h2:first-child { margin-top: 0; }
.article-body p { font-size: 16.5px; line-height: 1.75; color: var(--gray-700); margin-bottom: 18px; }
.article-body ul { margin: 0 0 20px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.article-body ul li { font-size: 16px; line-height: 1.65; color: var(--gray-700); display: flex; gap: 12px; align-items: flex-start; }
.article-body ul li svg { width: 18px; height: 18px; color: var(--tertiary-600); flex-shrink: 0; margin-top: 3px; }
.article-body strong { color: var(--navy); font-weight: 700; }
.article-callout { background: var(--mm-accent-tint); border-left: 3px solid var(--mm-accent); border-radius: 10px; padding: 22px 26px; margin: 28px 0; }
.article-callout p { font-size: 16px; color: var(--navy); font-weight: 500; margin: 0; line-height: 1.6; }
.article-cta { background: var(--bg-app); border: var(--card-border); border-radius: 16px; padding: 36px; margin-top: 44px; text-align: center; }
.article-cta h3 { font-family: var(--heading-font); font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.article-cta p { font-size: 15px; color: var(--muted); margin-bottom: 22px; }
@media (max-width: 920px) { .blog-feature { grid-template-columns: 1fr; } .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  /* Progressive enhancement: content stays visible when JavaScript is disabled
     or fails to load. site.js opts each observed element into the animation. */
  .reveal.reveal-enabled { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
  .reveal.reveal-enabled.in { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .coop-plans { grid-template-columns: repeat(2, 1fr); }
  .adn-grid { grid-template-columns: 1fr; }
  .adn-founders { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    padding: 10px 22px 22px;
    max-height: calc(100vh - 66px); overflow-y: auto;
  }
  .nav.open .nav-menu { display: flex; }
  .nav-menu .nav-links { display: flex; flex-direction: column; gap: 0; }
  .nav-menu .nav-links li { border-bottom: 1px solid var(--gray-100); }
  .nav-menu .nav-links a { display: block; padding: 15px 2px; font-size: 16px; }
  .nav-menu .nav-right { display: flex; flex-direction: column; align-items: stretch; gap: 11px; margin-top: 18px; }
  .nav-menu .nav-right .btn { justify-content: center; width: 100%; }
  .nav-menu .nav-login { padding: 12px 2px; font-size: 16px; }
  .nav-menu .lang-switch { align-self: flex-start; }
  .pain-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .mod { grid-template-columns: 1fr; }
  .mod-left { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .net-banner { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .cv-hero { grid-template-columns: 1fr; }
  .roi-sliders, .roi-result { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .adn-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 22px 0; }
  .hero-stat:nth-child(2) { border-right: 0; padding-right: 0; }
  .hero-stat:nth-child(3) { padding-left: 0; }
  .hero h1 { font-size: clamp(42px, 8vw, 64px) !important; }
  .section-head { align-items: flex-start; gap: 24px; margin-bottom: 42px; }
  .section-title, .section-sub { max-width: 100%; }
  .pain-banner { align-items: flex-start; }
}
@media (max-width: 560px) {
  :root { --section-pad: 72px; }
  .nav { padding: 0 18px; }
  .wrap { padding: 0 22px; }
  .hero-inner { padding: 72px 22px 64px; }
  .hero h1 { font-size: clamp(36px, 11vw, 48px) !important; line-height: 1.02; }
  .hero-sub, .section-sub { font-size: 16px; }
  .hero-actions, .cta-btns { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-btns .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .pain-banner { flex-direction: column; }
  .pain-banner .btn { width: 100%; justify-content: center; }
  .mod-feats { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .coop-plans { grid-template-columns: 1fr; }
  .roi-result { grid-template-columns: 1fr 1fr; }
  .adn-stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 18px 0; }
  .hero-stat { padding: 0 !important; border-right: 0 !important; }
  .ft-copy, .ft-cards, .adn-copy, .cv-hero-main, .cv-hero-side { padding: 28px 22px; }
  .cta-inner, .article-wrap { padding-left: 22px; padding-right: 22px; }
  .cta h2 { font-size: clamp(30px, 9vw, 42px); }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 14px; }
  .modal-overlay { padding: 12px; }
  .modal { max-height: calc(100dvh - 24px); border-radius: 14px; }
  .modal-head, .modal-body { padding-left: 20px; padding-right: 20px; }
  .form-grid, .who-toggle { grid-template-columns: 1fr; }
  .roi-sliders, .roi-result { grid-template-columns: 1fr; }
  .cv-hero-main .price { font-size: clamp(48px, 17vw, 64px); }
  .article-body pre, .article-body table { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 360px) {
  .nav { padding-inline: 14px; }
  .brand { gap: 7px; }
  .brand .word { font-size: 18px; }
  .wrap { padding-inline: 16px; }
  .hero-inner { padding-left: 16px; padding-right: 16px; }
  .btn { padding-left: 18px; padding-right: 18px; white-space: normal; text-align: center; }
}

@media (min-width: 1600px) {
  :root { --wrap: 1280px; }
  .hero-inner { padding-top: 132px; padding-bottom: 120px; }
}

/* ==========================================================================
   FORMATIONS PAGE
   ========================================================================== */
.fhero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; padding-top: 66px; background: var(--bg-app); }
.fhero-photo { position: absolute; right: 0; top: 0; bottom: 0; width: 56%; }
.fhero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.fhero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--bg-app) 0%, var(--bg-app) 4%, rgba(244,248,250,0.85) 26%, rgba(244,248,250,0.15) 58%, transparent 78%); }
.fhero-inner { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; padding: 80px 40px; width: 100%; }
.fhero-content { max-width: 560px; }
.fhero-badge { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--tertiary-300); color: var(--tertiary-700); background: #fff; font-family: var(--heading-font); font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 15px; border-radius: var(--radius-full); margin-bottom: 26px; }
.fhero h1 { font-size: clamp(38px, 4.6vw, 62px); font-weight: 900; color: var(--navy); letter-spacing: -0.035em; line-height: 1.0; margin-bottom: 18px; }
.fhero h1 .mint { color: var(--tertiary-600); }
.fhero .rule { width: 48px; height: 3px; background: var(--tertiary-500); border-radius: 2px; margin-bottom: 22px; }
.fhero-sub { font-size: 18px; color: var(--gray-600); line-height: 1.6; max-width: 46ch; margin-bottom: 30px; }
.fhero-points { display: flex; flex-direction: column; gap: 13px; margin-bottom: 34px; }
.fhero-point { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--ink); font-weight: 500; }
.fhero-point .itile { width: 36px; height: 36px; border-radius: 9px; }
.fhero-point .itile svg { width: 18px; height: 18px; }

/* diff */
.diff { background: #fff; }
.diff-head { text-align: center; margin-bottom: 52px; }
.diff-head h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 12px; }
.diff-head p { font-size: 16px; color: var(--muted); max-width: 56ch; margin: 0 auto; line-height: 1.6; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.diff-card { padding: 34px 30px; }
.diff-card .itile { margin-bottom: 20px; }
.diff-card h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.diff-card p { font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.diff-card p .hl { color: var(--navy); font-weight: 600; }

/* programmes */
.programmes { background: var(--bg-app); }
.tnav { display: inline-flex; gap: 4px; background: var(--gray-100); border-radius: 11px; padding: 4px; margin-bottom: 30px; }
.tnav button { font-family: var(--heading-font); font-size: 13.5px; font-weight: 700; padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer; background: transparent; color: var(--gray-500); transition: all .18s ease; display: inline-flex; align-items: center; gap: 8px; }
.tnav button svg { width: 16px; height: 16px; }
.tnav button.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-xs); }
.tcontent { display: none; }
.tcontent.active { display: block; }
.tnote { border-radius: 11px; padding: 14px 20px; margin-bottom: 28px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.tnote svg { width: 18px; height: 18px; flex-shrink: 0; }
.tnote.indigo { background: var(--mm-accent-tint); border: 1px solid var(--mm-accent-soft); color: var(--mm-accent-700); }
.tnote.mint { background: var(--tertiary-25); border: 1px solid var(--tertiary-100); color: var(--tertiary-800); }
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.prog-grid.two { grid-template-columns: 1fr 1fr; }
.prog { display: flex; flex-direction: column; overflow: hidden; }
.prog-body { padding: 26px 26px 0; flex: 1; }
.prog-level { font-family: var(--heading-font); font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; display: flex; align-items: center; gap: 7px; margin-bottom: 13px; color: var(--muted); }
.prog-level .d { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.prog h3 { font-size: 19px; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 11px; }
.prog .lede { font-size: 14px; line-height: 1.6; color: var(--muted); margin-bottom: 16px; }
.prog-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.prog-tags span { font-family: var(--heading-font); font-size: 11px; font-weight: 600; background: var(--bg-app); border: 1px solid var(--gray-200); color: var(--gray-600); padding: 5px 11px; border-radius: 6px; }
.prog-deliv { border-top: 1px solid var(--gray-200); padding-top: 16px; }
.prog-deliv .lab { font-family: var(--heading-font); font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 10px; }
.prog-deliv ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.prog-deliv li { font-size: 13px; color: var(--gray-700); display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; }
.prog-deliv li svg { width: 15px; height: 15px; color: var(--tertiary-600); flex-shrink: 0; margin-top: 1px; }
.prog-foot { padding: 20px 26px; margin-top: 20px; background: var(--bg-app); border-top: 1px solid var(--gray-200); }
.price-lab { font-family: var(--heading-font); font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.price-tiers { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 16px; }
.tier { padding-right: 14px; }
.tier + .tier { padding-left: 14px; border-left: 1px solid var(--gray-200); }
.tier .tl { display: block; font-size: 11.5px; color: var(--muted); margin-bottom: 4px; }
.tier .tp { font-family: var(--heading-font); font-size: 23px; font-weight: 900; color: var(--navy); letter-spacing: -0.02em; line-height: 1; white-space: nowrap; }
.prog-foot .btn { width: 100%; justify-content: center; }
.prog-price .p { font-family: var(--heading-font); font-size: 19px; font-weight: 900; color: var(--mm-accent); line-height: 1; }
.prog-price .u { font-size: 11px; color: var(--muted); margin-top: 3px; }
.prog-price .intra { font-size: 11px; color: var(--muted); }
.prog.dark { background: linear-gradient(160deg, #1a2147, #103a3a); border-color: transparent; }
.prog.dark h3, .prog.dark .prog-price .p { color: #fff; }
.prog.dark .lede { color: #fff; }
.prog.dark .prog-level { color: var(--mint); }
.prog.dark .prog-tags span { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); color: #fff; }
.prog.dark .prog-deliv { border-color: rgba(255,255,255,0.12); }
.prog.dark .prog-deliv .lab { color: #fff; }
.prog.dark .prog-deliv li { color: #fff; }
.prog.dark .prog-foot { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.prog.dark .prog-price .p { color: var(--mint); }
.prog.dark .prog-price .u, .prog.dark .prog-price .intra { color: #fff; }
.prog.dark .price-lab { color: #fff; }
.prog.dark .tier .tl { color: #fff; }
.prog.dark .tier .tp { color: #fff; }
.prog.dark .tier + .tier { border-color: rgba(255,255,255,0.14); }

/* programmes — participants info bar */
.prog-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 56px; margin-bottom: 30px; padding: 22px 26px; background: var(--bg-app); border: 1px solid var(--gray-200); border-radius: 14px; }
.prog-info-item { display: flex; gap: 13px; align-items: flex-start; }
.prog-info-item .itile { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; }
.prog-info-item .itile svg { width: 19px; height: 19px; }
.prog-info-item .h { font-family: var(--heading-font); font-size: 13.5px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 3px; }
.prog-info-item .d { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ==========================================================================
   PACKS
   ========================================================================== */
.packs { background: #fff; padding-top: 24px; }
.packs-head { margin-bottom: 36px; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.packs-head .eyebrow { color: var(--tertiary-700); }
.packs-head h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.12; }
.packs-head p { font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 40ch; }
.packs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 0 auto 18px; max-width: 740px; }
.pack { display: flex; flex-direction: column; overflow: hidden; }
.pack-body { padding: 26px 24px 0; flex: 1; }
.pack-name { font-family: var(--heading-font); font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 6px; }
.pack-combo { font-size: 13px; color: var(--mm-accent); font-weight: 600; margin-bottom: 20px; line-height: 1.4; min-height: 37px; }
.pack-feats { list-style: none; margin: 0 0 4px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pack-feats li { font-size: 13.5px; color: var(--gray-700); display: flex; gap: 9px; align-items: flex-start; line-height: 1.4; }
.pack-feats li svg { width: 15px; height: 15px; color: var(--tertiary-600); flex-shrink: 0; margin-top: 2px; }
.pack-foot { padding: 20px 24px; margin-top: 22px; background: var(--bg-app); border-top: 1px solid var(--gray-200); }
.pack-foot .price-tiers { margin-bottom: 8px; }
.pack-foot .tier .tp { font-size: 19px; color: var(--mm-accent); }
.pack-old { font-size: 11.5px; color: var(--gray-400); text-decoration: line-through; margin-bottom: 14px; }
.pack-foot .btn { width: 100%; justify-content: center; }

.pack-premium { position: relative; display: grid; grid-template-columns: 1.5fr 1fr; gap: 0; background: linear-gradient(150deg, #0b1437 0%, #0a2230 100%); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.pack-premium .pp-badge { position: absolute; top: 20px; left: 36px; background: #f6c552; color: #1a1300; font-family: var(--heading-font); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius-full); }
.pp-left { padding: 56px 40px 40px; }
.pp-left .pack-name { color: #fff; font-size: 24px; margin-bottom: 6px; }
.pp-left .pack-combo { color: var(--mint); }
.pp-left .pack-feats li { color: #fff; font-size: 14px; }
.pp-left .pack-feats li svg { color: var(--mint); }
.pp-feats-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.pp-right { padding: 40px; background: rgba(255,255,255,0.04); border-left: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.pp-right .pp-lab { font-family: var(--heading-font); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.pp-right .pp-price { font-family: var(--heading-font); font-size: 46px; font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.pp-right .pp-unit { font-size: 13px; color: #fff; margin: 10px 0 24px; }
.pp-right .btn { width: 100%; justify-content: center; }

/* tools */
.tools { background: #fff; }
.tools-head { text-align: center; margin-bottom: 52px; }
.tools-head h2 { font-size: clamp(26px, 3.2vw, 44px); font-weight: 800; color: var(--navy); line-height: 1.12; margin-bottom: 14px; }
.tools-head p { font-size: 16px; color: var(--muted); max-width: 60ch; margin: 0 auto; line-height: 1.6; }
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.tool-card { padding: 28px 24px; }
.tool-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.tool-card-head .name { font-family: var(--heading-font); font-size: 15px; font-weight: 800; color: var(--navy); }
.tool-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.tool-list .it { font-size: 14px; color: var(--gray-700); display: flex; align-items: center; gap: 10px; }
.tool-list .it svg { width: 15px; height: 15px; color: var(--tertiary-600); flex-shrink: 0; }

.practitioner { display: grid; grid-template-columns: 1fr; gap: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); }
.practitioner .copy { background: var(--navy); color: #fff; padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.practitioner .copy h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.practitioner .copy p { font-size: 15px; line-height: 1.65; color: #fff; }
.practitioner .opco { background: linear-gradient(150deg, var(--mm-accent-tint), var(--tertiary-25)); padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.practitioner .opco .itile.mint { width: 52px; height: 52px; border-radius: 13px; margin-bottom: 18px; }
.practitioner .opco h4 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.practitioner .opco p { font-size: 14.5px; line-height: 1.6; color: var(--gray-600); }
.practitioner .copy p { max-width: 66ch; }

/* OPCO band (between programmes & packs) */
.opco-band { background: #fff; padding: 96px 0 16px; }
.opco-card { display: grid; grid-template-columns: 1.55fr 1fr; gap: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); background: linear-gradient(150deg, var(--mm-accent-tint), var(--tertiary-25)); border: 1px solid var(--gray-200); }
.opco-main { padding: 44px 46px; display: flex; gap: 22px; align-items: flex-start; }
.opco-main .itile.mint { width: 52px; height: 52px; border-radius: 13px; flex-shrink: 0; }
.opco-main h2 { font-size: clamp(22px, 2.4vw, 31px); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1.14; margin-bottom: 12px; }
.opco-main p { font-size: 14.5px; line-height: 1.62; color: var(--gray-600); max-width: 54ch; }
.opco-aside { padding: 40px 44px; background: var(--navy); display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.opco-stat .n { font-family: var(--heading-font); font-size: 54px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; color: #fff; }
.opco-stat .n span { color: var(--mint); }
.opco-stat .l { font-size: 13px; color: #fff; margin-top: 8px; line-height: 1.4; }
.opco-aside .btn { width: 100%; justify-content: center; }
@media (max-width: 820px) { .opco-card { grid-template-columns: 1fr; } .opco-main { flex-direction: column; gap: 16px; } }

@media (max-width: 920px) {
  .fhero-photo { width: 100%; opacity: 0.18; }
  .fhero-photo::after { background: linear-gradient(to right, var(--bg-app), rgba(244,248,250,0.6)); }
  .diff-grid { grid-template-columns: 1fr; }
  .prog-grid, .prog-grid.two { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .practitioner { grid-template-columns: 1fr; }
  .prog-info { grid-template-columns: 1fr 1fr; }
  .packs-grid { grid-template-columns: 1fr 1fr; }
  .pack-premium { grid-template-columns: 1fr; }
  .pp-right { border-left: 0; border-top: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 560px) {
  .tools-grid { grid-template-columns: 1fr; }
  .prog-info { grid-template-columns: 1fr; }
  .packs-grid { grid-template-columns: 1fr; }
  .pp-feats-2 { grid-template-columns: 1fr; }
  .opco-main { align-items: center; text-align: center; padding: 36px 26px; }
  .opco-main .eyebrow { justify-content: center; }
  .opco-aside { align-items: center; text-align: center; padding: 36px 26px; }
  .opco-aside .btn { max-width: 320px; }
}

/* ==========================================================================
   TRAINERS (Nos formateurs IA)
   ========================================================================== */
.trainers { background: var(--bg-app); }
.trainers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trainer { padding: 26px 26px 24px; display: flex; flex-direction: column; }
.trainer:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.trainer-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.trainer-photo { width: 78px; height: 78px; border-radius: 16px; overflow: hidden; flex-shrink: 0; }
.trainer-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter .3s ease; }
.trainer:hover .trainer-photo img { filter: grayscale(0%); }
.trainer-id .n { font-family: var(--heading-font); font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; line-height: 1.1; }
.trainer-id .r { font-family: var(--heading-font); font-size: 12.5px; font-weight: 700; color: var(--mm-accent); margin-top: 5px; line-height: 1.3; }
.trainer-id .r.mint { color: var(--tertiary-700); }
.trainer-desc { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin-bottom: 18px; flex: 1; }
.trainer-desc strong { color: var(--navy); font-weight: 700; }
.trainer-tags { display: flex; flex-wrap: wrap; gap: 7px; padding-top: 16px; border-top: 1px solid var(--gray-200); }
.trainer-fmt { padding-top: 16px; border-top: 1px solid var(--gray-200); }
.trainer-fmt .tf-lab { font-family: var(--heading-font); font-size: 12px; font-weight: 700; color: var(--mm-accent); margin-bottom: 11px; }
.trainer-fmt .tf-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.trainer-fmt .tf-tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--heading-font); font-size: 11.5px; font-weight: 600; color: var(--navy); background: var(--bg-app); border: 1px solid var(--gray-200); padding: 6px 11px 6px 9px; border-radius: var(--radius-full); }
.trainer-fmt .tf-tag svg { width: 14px; height: 14px; color: var(--mm-accent); flex-shrink: 0; }
.trainer-tags span { font-family: var(--heading-font); font-size: 11px; font-weight: 700; letter-spacing: 0.02em; color: var(--gray-600); background: var(--bg-app); border: 1px solid var(--gray-200); padding: 5px 11px; border-radius: var(--radius-full); }
.trainers-foot { display: flex; align-items: center; gap: 14px; margin-top: 28px; background: var(--navy); border-radius: 14px; padding: 20px 28px; }
.trainers-foot .itile.dark { width: 42px; height: 42px; border-radius: 11px; }
.trainers-foot .t { font-family: var(--heading-font); font-size: 15px; font-weight: 800; color: #fff; }
.trainers-foot .t span { color: var(--mint); }
.trainers-foot .d { font-size: 13.5px; color: #fff; }
@media (max-width: 920px) { .trainers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .trainers-grid { grid-template-columns: 1fr; } .trainers-foot { flex-direction: column; align-items: flex-start; } }

/* ==========================================================================
   V2 — NAV DROPDOWN + ACTIVE STATE
   ========================================================================== */
.nav-links a.nav-active { color: var(--mm-accent); }
.faq-list.faq-list-full { max-width: 880px; margin: 0 auto; }
.nav-dd { position: relative; }
.nav-dd .nav-dd-top { display: inline-flex; align-items: center; gap: 5px; }
.nav-dd-caret { opacity: .55; transition: transform .18s ease; }
.nav-dd:hover .nav-dd-caret, .nav-dd:focus-within .nav-dd-caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateY(10px);
  min-width: 216px; background: #fff;
  border: 1px solid var(--gray-200); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 7px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden;
  transition: opacity .16s ease, transform .16s ease; z-index: 250;
}
.nav-dd-menu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu {
  opacity: 1; visibility: visible; transform: translateY(4px);
}
.nav-dd-menu a {
  font-family: var(--heading-font); font-size: 13.5px; font-weight: 600;
  color: var(--gray-700); padding: 9px 12px; border-radius: 8px;
  transition: background .14s ease, color .14s ease; white-space: nowrap;
}
.nav-dd-menu a:hover { background: var(--gray-100); color: var(--mm-accent); }

/* ==========================================================================
   V2 — PALETTE DISCIPLINE: blue + light-blue + light-green, no dark greens
   ========================================================================== */
/* light-green icon tiles: light-green fill, navy glyph (matches logo) */
.itile.mint { background: var(--tertiary-100); color: var(--secondary-600); }
/* chips & soft surfaces keep light-green tint, navy text */
.chip-mint { background: var(--tertiary-50); color: var(--secondary-700); }
.bill-save { background: var(--tertiary-50); border-color: var(--tertiary-200); color: var(--secondary-700); }
.plan-roi { background: var(--tertiary-25); border-color: var(--tertiary-100); color: var(--secondary-700); }
.plan-feats li.hl { color: var(--secondary-700); }
.plan-feats li.hl svg { color: var(--mm-accent); }
.coop-notes svg { color: var(--mm-accent); }
.roi-stat .n.accent { color: var(--mm-accent); }
.adn-copy strong.mint { color: var(--mm-accent); }
.modal-head .eyebrow { color: var(--mm-accent); }
.modal-success .ic { background: var(--tertiary-50); color: var(--mm-accent); }
/* modules: blue accents instead of dark teal */
.modules .mod-title em { color: var(--mm-accent); }
.modules .mod-metric .n span { color: var(--mm-accent); }
/* Formations page harmonised to the same 3 colours */
.fhero-badge { border-color: var(--mm-accent-soft); color: var(--mm-accent); }
.fhero h1 .mint { color: var(--mm-accent); }
.fhero .rule { background: var(--mint); }
.tnote.mint { background: var(--tertiary-25); border-color: var(--tertiary-100); color: var(--secondary-700); }
.packs-head .eyebrow { color: var(--mm-accent); }
.prog-foot .btn-dl { color: var(--mm-accent); border-color: var(--mm-accent-soft); }
.prog-foot .btn-dl:hover { border-color: var(--mm-accent); background: var(--mm-accent-tint); }
.trainer-id .r.mint { color: var(--mm-accent); }

/* ==========================================================================
   V2 — NAV DROPDOWN ON MOBILE (inline, expanded)
   ========================================================================== */
@media (max-width: 920px) {
  .nav-menu .nav-dd-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    padding: 0 0 6px 14px; min-width: 0;
  }
  .nav-menu .nav-dd-caret { display: none; }
  .nav-menu .nav-dd-menu a {
    display: block; padding: 12px 2px; font-size: 15px; font-weight: 600;
    border-bottom: 1px solid var(--gray-100); color: var(--gray-600);
  }
  .nav-menu .nav-dd .nav-dd-top { justify-content: flex-start; }
}
