/* ==========================================================================
   MONVERAT — Design System
   class scheme: mvr.<section>.<element> (dot-separated, escaped in CSS)
   art direction: "Structural Grid" — dense utilitarian grid, hairline rules,
   oversized tabular numerals, architectural B&W photography w/ blue duotone
   ========================================================================== */

:root{
  /* shared tokens consumed by cookie-consent.js banner */
  --site-bg:#ffffff;
  --site-surface:#f7f8fa;
  --site-text:#14181c;
  --site-muted:#6b7480;
  --site-accent:#0057ff;

  /* extended palette / system tokens */
  --site-accent2:#d8dce2;
  --font-heading:'Space Grotesk', sans-serif;
  --font-body:'Space Grotesk', sans-serif;
  --container-w:1240px;
  --radius-card:20px;
  --radius-pill:999px;
  --shadow-card:0 4px 24px rgba(0,0,0,.08);
  --sp-section:88px;
  --grid-line:rgba(20,24,28,.06);
}

/* ---------- reset ---------- */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
html,body{max-width:100%;overflow-x:hidden;}
body{
  margin:0;
  font-family:var(--font-body);
  background:var(--site-bg);
  color:var(--site-text);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul,ol{margin:0;padding:0;}
button{font-family:inherit;}
h1,h2,h3,h4{
  font-family:var(--font-heading);
  margin:0 0 .5em;
  letter-spacing:-.01em;
  font-weight:700;
  line-height:1.15;
}
p{margin:0 0 1em;color:inherit;}
:focus-visible{outline:2px solid var(--site-accent);outline-offset:3px;border-radius:2px;}

/* ---------- layout utilities ---------- */
.mvr\.container{
  max-width:var(--container-w);
  margin:0 auto;
  padding:0 clamp(20px,5vw,48px);
  width:100%;
}

.mvr\.section{
  position:relative;
  padding:var(--sp-section) 0;
  background-color:var(--site-bg);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size:100% 64px, 64px 100%;
  background-position:center top;
}
.mvr\.section--surface{background-color:var(--site-surface);}
.mvr\.section--tight{padding:56px 0;}

.mvr\.section\.head{max-width:720px;margin-bottom:56px;}
.mvr\.section\.title{font-size:clamp(28px,4vw,44px);}
.mvr\.section\.lede{color:var(--site-muted);font-size:1.05rem;margin-top:12px;max-width:60ch;}

.mvr\.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:.76rem;text-transform:uppercase;letter-spacing:.14em;
  color:var(--site-accent);font-weight:700;margin-bottom:16px;
}
.mvr\.eyebrow::before{content:"";width:26px;height:1px;background:var(--site-accent);}

/* signature element — oversized tabular numeral on hairline rule */
.mvr\.section\.mark{
  display:flex;align-items:flex-end;gap:24px;margin-bottom:40px;
}
.mvr\.section\.mark-num{
  font-family:var(--font-heading);
  font-size:clamp(48px,8vw,96px);
  font-weight:700;
  font-variant-numeric:tabular-nums;
  color:var(--site-accent);
  line-height:.9;
}
.mvr\.section\.mark-rule{
  flex:1;height:1px;background:var(--site-accent);opacity:.4;margin-bottom:.6em;
}

/* ---------- buttons ---------- */
.mvr\.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:15px 30px;border-radius:var(--radius-pill);
  font-weight:600;font-size:.94rem;border:1px solid transparent;
  cursor:pointer;transition:transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  min-height:48px;
}
.mvr\.btn--primary{background:var(--site-accent);color:#fff;}
.mvr\.btn--primary:hover{background:#0044cc;transform:translateY(-2px);}
.mvr\.btn--ghost{background:transparent;border-color:currentColor;color:inherit;}
.mvr\.btn--ghost:hover{background:rgba(0,0,0,.05);}
.mvr\.btn--light{background:#fff;color:var(--site-text);}
.mvr\.btn--light:hover{background:var(--site-surface);}
.mvr\.btn--block{width:100%;}

/* ==========================================================================
   HEADER — thin top utility bar + large logo/nav bar (art.header_style)
   ========================================================================== */
#site-head-k19{position:sticky;top:0;z-index:100;}

.mvr\.header\.bar{
  background:var(--site-text);color:rgba(255,255,255,.72);
  font-size:.78rem;overflow:hidden;
  max-height:44px;padding:11px 0;
  transition:max-height .3s ease, padding .3s ease, opacity .3s ease;
}
#site-head-k19.is-scrolled .mvr\.header\.bar{max-height:0;padding:0;opacity:0;}
.mvr\.header\.bar-inner{display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap;}
.mvr\.header\.meta{display:flex;gap:26px;flex-wrap:wrap;list-style:none;margin:0;padding:0;}
.mvr\.header\.meta--right{margin-left:auto;}
.mvr\.header\.meta-item{display:inline-flex;align-items:center;gap:8px;color:inherit;}
.mvr\.header\.meta-item i{color:var(--site-accent);font-size:.72rem;}

.mvr\.header\.main{
  background:#fff;border-bottom:1px solid var(--site-accent2);
  transition:box-shadow .3s ease;
}
#site-head-k19.is-scrolled .mvr\.header\.main{box-shadow:0 4px 24px rgba(0,0,0,.06);}
.mvr\.header\.inner{
  display:flex;align-items:center;justify-content:space-between;gap:32px;
  padding:22px 0;transition:padding .3s ease;
}
#site-head-k19.is-scrolled .mvr\.header\.inner{padding:14px 0;}

.mvr\.brand{display:flex;align-items:center;gap:12px;color:var(--site-text);}
.mvr\.brand\.icon-img{width:36px;height:36px;display:block;flex:none;}
.mvr\.brand\.name{font-family:var(--font-heading);font-weight:700;font-size:1.38rem;letter-spacing:-.02em;}

.mvr\.nav{display:none;list-style:none;margin:0;padding:0;}
@media(min-width:960px){.mvr\.nav{display:flex;gap:38px;}}
.mvr\.nav\.item{
  color:var(--site-text);font-weight:600;font-size:.92rem;
  position:relative;padding:6px 0;display:inline-block;
}
.mvr\.nav\.item::after{
  content:"";position:absolute;left:0;bottom:0;width:0;height:2px;
  background:var(--site-accent);transition:width .25s ease;
}
.mvr\.nav\.item:hover::after,
.mvr\.nav\.item.is-active::after{width:100%;}

.mvr\.header\.actions{display:flex;align-items:center;gap:18px;}
.mvr\.header\.actions .mvr\.btn{display:none;}
@media(min-width:960px){.mvr\.header\.actions .mvr\.btn{display:inline-flex;}}

.mvr\.nav\.toggle{
  display:inline-flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;
  width:44px;height:44px;border:1px solid var(--site-accent2);border-radius:10px;
  background:#fff;cursor:pointer;
}
@media(min-width:960px){.mvr\.nav\.toggle{display:none;}}
.mvr\.nav\.toggle span{display:block;width:18px;height:2px;background:var(--site-text);transition:transform .25s ease, opacity .25s ease;}

/* mobile drawer — does not lock page scroll */
.mvr\.drawer\.dim{
  position:fixed;inset:0;background:rgba(10,14,20,.5);
  opacity:0;pointer-events:none;transition:opacity .3s ease;z-index:200;
}
#dim-brr.is-open{opacity:1;pointer-events:auto;}

.mvr\.drawer{
  position:fixed;top:0;right:0;height:100vh;width:min(360px,86vw);
  background:#fff;z-index:201;transform:translateX(100%);
  transition:transform .35s ease;box-shadow:-8px 0 32px rgba(0,0,0,.16);
  overflow-y:auto;
}
.mvr\.drawer.is-open{transform:translateX(0);}
.mvr\.drawer\.panel{padding:28px;display:flex;flex-direction:column;gap:32px;min-height:100%;}
.mvr\.drawer\.close{
  align-self:flex-end;width:40px;height:40px;border-radius:50%;
  border:1px solid var(--site-accent2);background:none;cursor:pointer;
}
.mvr\.drawer\.brand{margin-bottom:0;}
.mvr\.drawer\.nav{display:flex;flex-direction:column;gap:22px;list-style:none;padding:0;margin:0;}
.mvr\.drawer\.nav a{color:var(--site-text);font-weight:600;font-size:1.08rem;}
.mvr\.drawer\.cta{margin-top:auto;}

/* ==========================================================================
   FOOTER — big multi-column, legal entity block (art.footer_style)
   ========================================================================== */
.mvr\.footer{background:var(--site-text);color:rgba(255,255,255,.78);padding-top:88px;}
.mvr\.footer\.top{
  display:grid;grid-template-columns:.85fr 2fr;gap:56px;
  padding-bottom:56px;border-bottom:1px solid rgba(255,255,255,.12);
}
.mvr\.footer\.brand .mvr\.brand{color:#fff;}
.mvr\.footer\.brand .mvr\.brand\.icon-img{filter:invert(1) brightness(1.3);}
.mvr\.footer\.tagline{color:rgba(255,255,255,.6);margin-top:16px;max-width:280px;}
.mvr\.footer\.social{display:flex;gap:12px;margin-top:26px;}
.mvr\.footer\.social a{
  width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.25);
  display:grid;place-items:center;color:#fff;
}
.mvr\.footer\.social a:hover{background:var(--site-accent);border-color:var(--site-accent);}

.mvr\.footer\.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;}
.mvr\.footer\.col h3{color:#fff;font-size:.82rem;text-transform:uppercase;letter-spacing:.1em;margin:0 0 20px;}
.mvr\.footer\.col ul{list-style:none;margin:0;padding:0;display:grid;gap:13px;}
.mvr\.footer\.col a{color:rgba(255,255,255,.7);font-size:.92rem;}
.mvr\.footer\.col a:hover{color:#fff;}
.mvr\.footer\.legal-name{color:#fff;font-weight:700;margin:0 0 12px;font-size:.98rem;}
.mvr\.footer\.address{font-style:normal;color:rgba(255,255,255,.68);font-size:.9rem;line-height:1.7;margin:0 0 12px;}
.mvr\.footer\.legal p{margin:4px 0;font-size:.85rem;color:rgba(255,255,255,.6);}
.mvr\.footer\.legal a{color:rgba(255,255,255,.8);}

.mvr\.footer\.bottom{
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  flex-wrap:wrap;padding:28px 0;
}
.mvr\.footer\.legal-links{list-style:none;display:flex;gap:22px;margin:0;padding:0;flex-wrap:wrap;}
.mvr\.footer\.legal-links a{color:rgba(255,255,255,.6);font-size:.85rem;}
.mvr\.footer\.legal-links a:hover{color:#fff;}
.mvr\.footer\.copy{font-size:.85rem;color:rgba(255,255,255,.6);margin:0;}

/* ==========================================================================
   HERO — index: full-bleed photo, dark scrim, centered, nothing else above fold
   ========================================================================== */
.mvr\.hero{
  position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;
  text-align:center;overflow:hidden;background:var(--site-text);
}
.mvr\.hero\.bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.mvr\.hero\.scrim{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(8,12,18,.55) 0%, rgba(8,12,18,.72) 60%, rgba(8,12,18,.85) 100%);
}
.mvr\.hero\.content{position:relative;z-index:1;color:#fff;max-width:840px;padding:0 24px;}
.mvr\.hero\.eyebrow{
  display:inline-flex;align-items:center;gap:10px;color:#fff;opacity:.85;
  font-size:.78rem;text-transform:uppercase;letter-spacing:.16em;font-weight:700;margin-bottom:20px;
}
.mvr\.hero\.eyebrow::before{content:"";width:26px;height:1px;background:var(--site-accent);}
.mvr\.hero\.title{font-size:clamp(36px,6.4vw,74px);font-weight:700;letter-spacing:-.02em;color:#fff;}
.mvr\.hero\.sub{font-size:clamp(16px,2vw,20px);opacity:.88;margin-top:22px;max-width:60ch;margin-left:auto;margin-right:auto;}
.mvr\.hero\.actions{margin-top:38px;display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}

/* ==========================================================================
   PAGE HERO — content pages (4 variants)
   ========================================================================== */
.mvr\.page-hero{position:relative;padding:132px 0 88px;}
.mvr\.page-hero\.title{font-size:clamp(32px,5vw,58px);}
.mvr\.page-hero\.sub{color:var(--site-muted);margin-top:18px;max-width:60ch;}

/* --side: hero with a side image */
.mvr\.page-hero--side .mvr\.page-hero\.grid{
  display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center;
}
.mvr\.page-hero--side .mvr\.page-hero\.media{
  aspect-ratio:4/5;border-radius:var(--radius-card);overflow:hidden;box-shadow:var(--shadow-card);
}
.mvr\.page-hero--side .mvr\.page-hero\.media img{width:100%;height:100%;object-fit:cover;display:block;}

/* --type: type-only hero on a solid field, oversized headline */
.mvr\.page-hero--type{
  background:var(--site-text);color:#fff;padding:168px 0 120px;background-image:none;
}
.mvr\.page-hero--type .mvr\.page-hero\.title{
  font-size:clamp(42px,8.5vw,104px);color:#fff;max-width:1000px;
}
.mvr\.page-hero--type .mvr\.page-hero\.sub{color:rgba(255,255,255,.7);}

/* --tint: hero over a tinted band */
.mvr\.page-hero--tint{
  background:var(--site-surface);padding:128px 0 88px;border-bottom:1px solid var(--site-accent2);
}

/* --compact: centered compact hero (contact page) */
.mvr\.page-hero--compact{padding:128px 0 64px;text-align:center;}
.mvr\.page-hero--compact .mvr\.page-hero\.title{font-size:clamp(32px,5vw,52px);}
.mvr\.page-hero--compact .mvr\.page-hero\.sub{margin-left:auto;margin-right:auto;}

/* ==========================================================================
   CURRICULUM — numbered learning outcomes
   ========================================================================== */
.mvr\.curriculum\.list{border-top:1px solid var(--site-accent2);}
.mvr\.curriculum\.item{
  display:grid;grid-template-columns:100px 1fr;gap:24px;padding:34px 0;
  border-bottom:1px solid var(--site-accent2);align-items:start;
}
.mvr\.curriculum\.num{
  font-family:var(--font-heading);font-size:clamp(32px,4vw,48px);font-weight:700;
  color:var(--site-accent);font-variant-numeric:tabular-nums;line-height:1;
}
.mvr\.curriculum\.body h3{margin:0 0 8px;font-size:1.15rem;}
.mvr\.curriculum\.body p{color:var(--site-muted);margin:0;}

/* ==========================================================================
   CREDENTIALS — cards pairing credential with what it guarantees
   ========================================================================== */
.mvr\.credentials\.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px;}
.mvr\.credentials\.card{
  background:#fff;border-radius:var(--radius-card);box-shadow:var(--shadow-card);
  padding:34px 32px;border:1px solid var(--site-accent2);
}
.mvr\.credentials\.icon{
  width:48px;height:48px;display:grid;place-items:center;border-radius:12px;
  background:var(--site-surface);color:var(--site-accent);font-size:19px;margin-bottom:22px;
}
.mvr\.credentials\.name{font-weight:700;margin:0 0 10px;font-size:1.05rem;}
.mvr\.credentials\.desc{color:var(--site-muted);font-size:.92rem;margin:0;}
.mvr\.credentials\.guarantee{
  color:var(--site-text);font-size:.88rem;border-top:1px dashed var(--site-accent2);
  padding-top:16px;margin-top:16px;font-weight:600;
}
.mvr\.credentials\.guarantee span{color:var(--site-accent);font-weight:700;}

/* ==========================================================================
   FORMATS — cards with a highlighted 'popular' one
   ========================================================================== */
.mvr\.formats\.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;align-items:stretch;}
.mvr\.formats\.card{
  position:relative;background:#fff;border:1px solid var(--site-accent2);border-radius:var(--radius-card);
  padding:38px 32px;box-shadow:var(--shadow-card);display:flex;flex-direction:column;
}
.mvr\.formats\.card--popular{
  background:var(--site-text);color:#fff;border-color:var(--site-text);
  transform:translateY(-14px);
}
.mvr\.formats\.badge{
  position:absolute;top:-14px;left:32px;background:var(--site-accent);color:#fff;
  font-size:.72rem;text-transform:uppercase;letter-spacing:.09em;font-weight:700;
  padding:7px 16px;border-radius:var(--radius-pill);
}
.mvr\.formats\.name{font-size:1.2rem;margin:8px 0 6px;}
.mvr\.formats\.price{font-size:2rem;font-weight:700;margin:8px 0 4px;}
.mvr\.formats\.price span{font-size:.9rem;font-weight:500;opacity:.65;}
.mvr\.formats\.list{list-style:none;margin:22px 0;display:grid;gap:11px;}
.mvr\.formats\.list li{padding-left:24px;position:relative;font-size:.92rem;}
.mvr\.formats\.list li::before{content:"—";position:absolute;left:0;color:var(--site-accent);}
.mvr\.formats\.card--popular .mvr\.formats\.list li::before{color:#fff;}
.mvr\.formats\.card .mvr\.btn{margin-top:auto;}

/* ==========================================================================
   TESTIMONIALS — 3-up quote cards
   ========================================================================== */
.mvr\.testimonials\.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;}
.mvr\.testimonials\.card{background:var(--site-surface);border-radius:var(--radius-card);padding:38px 34px;}
.mvr\.testimonials\.quote{font-size:1.08rem;line-height:1.65;margin:0 0 26px;font-family:var(--font-heading);font-weight:500;}
.mvr\.testimonials\.quote::before{
  content:"\201C";color:var(--site-accent);font-size:2.6rem;display:block;line-height:1;
  margin-bottom:6px;font-family:var(--font-heading);
}
.mvr\.testimonials\.author{display:flex;align-items:center;gap:12px;}
.mvr\.testimonials\.avatar{width:44px;height:44px;border-radius:50%;overflow:hidden;flex:none;}
.mvr\.testimonials\.avatar img{width:100%;height:100%;object-fit:cover;display:block;}
.mvr\.testimonials\.name{font-weight:700;font-size:.9rem;margin:0;}
.mvr\.testimonials\.role{color:var(--site-muted);font-size:.8rem;margin:0;}

/* ==========================================================================
   BLOG FEED — three-card grid with dates
   ========================================================================== */
.mvr\.blog\.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;}
.mvr\.blog\.card{
  background:#fff;border-radius:var(--radius-card);overflow:hidden;box-shadow:var(--shadow-card);
  border:1px solid var(--site-accent2);display:flex;flex-direction:column;
}
.mvr\.blog\.media{aspect-ratio:16/9;overflow:hidden;}
.mvr\.blog\.media img{
  width:100%;height:100%;object-fit:cover;display:block;
  filter:grayscale(1) contrast(1.05);
  transition:filter .5s ease, transform .6s ease;
}
.mvr\.blog\.card:hover .mvr\.blog\.media img{
  filter:grayscale(.3) sepia(.35) hue-rotate(178deg) saturate(3.4);
  transform:scale(1.05);
}
.mvr\.blog\.body{padding:24px 26px 28px;display:flex;flex-direction:column;gap:10px;flex:1;}
.mvr\.blog\.date{font-size:.75rem;text-transform:uppercase;letter-spacing:.09em;color:var(--site-accent);font-weight:700;}
.mvr\.blog\.title{font-size:1.14rem;margin:0;}
.mvr\.blog\.excerpt{color:var(--site-muted);font-size:.92rem;margin:0;flex:1;}
.mvr\.blog\.link{margin-top:auto;font-weight:700;font-size:.88rem;color:var(--site-accent);}

/* ==========================================================================
   LOCATION — photo beside address & hours
   ========================================================================== */
.mvr\.location\.split{display:grid;grid-template-columns:1.05fr .95fr;gap:52px;align-items:center;}
.mvr\.location\.media{aspect-ratio:4/3;border-radius:var(--radius-card);overflow:hidden;box-shadow:var(--shadow-card);}
.mvr\.location\.media img{width:100%;height:100%;object-fit:cover;display:block;filter:grayscale(.25);}
.mvr\.location\.info h3{margin-top:0;}
.mvr\.location\.address{color:var(--site-muted);margin:16px 0;}
.mvr\.location\.hours{list-style:none;margin:0;display:grid;gap:9px;border-top:1px solid var(--site-accent2);padding-top:18px;}
.mvr\.location\.hours li{display:flex;justify-content:space-between;font-size:.92rem;color:var(--site-muted);}
.mvr\.location\.hours li span:last-child{color:var(--site-text);font-weight:700;}

/* ==========================================================================
   NEWSLETTER — single line: label + field + button
   ========================================================================== */
.mvr\.newsletter\.bar{
  display:flex;align-items:center;gap:24px;flex-wrap:wrap;
  background:var(--site-text);color:#fff;border-radius:var(--radius-card);padding:34px 42px;
}
.mvr\.newsletter\.label{font-weight:700;font-size:1.1rem;flex:none;margin:0;}
.mvr\.newsletter\.form{display:flex;flex:1;min-width:260px;gap:12px;flex-wrap:wrap;}
.mvr\.newsletter\.field{
  flex:1;min-width:200px;padding:14px 22px;border-radius:var(--radius-pill);
  border:1px solid rgba(255,255,255,.28);background:rgba(255,255,255,.08);color:#fff;
}
.mvr\.newsletter\.field::placeholder{color:rgba(255,255,255,.55);}

/* ==========================================================================
   SERVICES — alternating rows
   ========================================================================== */
.mvr\.services\.row{
  display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;
  padding:56px 0;border-bottom:1px solid var(--site-accent2);
}
.mvr\.services\.row:first-of-type{border-top:1px solid var(--site-accent2);}
.mvr\.services\.row--reverse{direction:rtl;}
.mvr\.services\.row--reverse > *{direction:ltr;}
.mvr\.services\.media{aspect-ratio:4/3;border-radius:var(--radius-card);overflow:hidden;box-shadow:var(--shadow-card);}
.mvr\.services\.media img{width:100%;height:100%;object-fit:cover;display:block;}
.mvr\.services\.index{
  font-family:var(--font-heading);font-size:2rem;color:var(--site-accent);
  font-weight:700;font-variant-numeric:tabular-nums;
}
.mvr\.services\.copy h3{font-size:1.6rem;margin:8px 0 12px;}
.mvr\.services\.copy p{color:var(--site-muted);}
.mvr\.services\.list{list-style:none;margin:20px 0 0;display:grid;gap:9px;padding:0;}
.mvr\.services\.list li{padding-left:22px;position:relative;font-size:.92rem;color:var(--site-muted);}
.mvr\.services\.list li::before{content:"";position:absolute;left:0;top:.6em;width:9px;height:1px;background:var(--site-accent);}

/* ==========================================================================
   PROCESS — vertical timeline
   ========================================================================== */
.mvr\.process\.timeline{position:relative;max-width:760px;margin:0 auto;padding-left:60px;}
.mvr\.process\.timeline::before{content:"";position:absolute;left:19px;top:6px;bottom:6px;width:1px;background:var(--site-accent2);}
.mvr\.process\.step{position:relative;padding-bottom:56px;}
.mvr\.process\.step:last-child{padding-bottom:0;}
.mvr\.process\.marker{
  position:absolute;left:-60px;top:0;width:40px;height:40px;border-radius:50%;
  background:#fff;border:1px solid var(--site-accent);color:var(--site-accent);
  display:grid;place-items:center;font-weight:700;font-family:var(--font-heading);font-size:.9rem;
}
.mvr\.process\.body h3{margin:0 0 8px;font-size:1.15rem;}
.mvr\.process\.body p{color:var(--site-muted);margin:0;}

/* ==========================================================================
   FAQ — accordion (collapsed by default, .is-open expands)
   ========================================================================== */
.mvr\.faq\.list{border-top:1px solid var(--site-accent2);}
[data-acc-item]{border-bottom:1px solid var(--site-accent2);}
[data-acc-trigger]{
  width:100%;text-align:left;background:none;border:0;padding:26px 4px;
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  font-family:var(--font-heading);font-size:1.04rem;font-weight:600;color:var(--site-text);cursor:pointer;
}
[data-acc-trigger] i{transition:transform .3s ease;color:var(--site-accent);flex:none;}
[data-acc-item].is-open [data-acc-trigger] i{transform:rotate(45deg);}
.mvr\.faq\.body{max-height:0;overflow:hidden;transition:max-height .3s ease;}
[data-acc-item].is-open .mvr\.faq\.body{max-height:600px;}
.mvr\.faq\.body-inner{padding:0 4px 26px;color:var(--site-muted);max-width:70ch;}

/* ==========================================================================
   CTA STRIP — split / centered / band
   ========================================================================== */
.mvr\.cta\.strip--split{
  display:grid;grid-template-columns:1.2fr .8fr;gap:48px;align-items:center;
  background:var(--site-surface);border-radius:var(--radius-card);padding:56px;
}
.mvr\.cta\.strip\.info{display:grid;gap:12px;}
.mvr\.cta\.strip\.info li{display:flex;align-items:center;gap:12px;color:var(--site-muted);list-style:none;}
.mvr\.cta\.strip\.info li i{color:var(--site-accent);}

.mvr\.cta\.strip--centered{
  max-width:720px;margin:0 auto;text-align:center;background:var(--site-text);color:#fff;
  border-radius:var(--radius-card);padding:64px 48px;box-shadow:var(--shadow-card);
}
.mvr\.cta\.strip--centered .mvr\.section\.title{color:#fff;}

.mvr\.cta\.strip--band{
  background:var(--site-accent);color:#fff;padding:70px 48px;text-align:center;border-radius:var(--radius-card);
}
.mvr\.cta\.strip--band .mvr\.section\.title{color:#fff;}

/* ==========================================================================
   AUDIENCE — this is for you / this is not
   ========================================================================== */
.mvr\.audience\.grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.mvr\.audience\.col{padding:42px;border-radius:var(--radius-card);border:1px solid var(--site-accent2);}
.mvr\.audience\.col--yes{background:#fff;box-shadow:var(--shadow-card);}
.mvr\.audience\.col--no{background:var(--site-surface);}
.mvr\.audience\.col h3{margin-top:0;}
.mvr\.audience\.list{list-style:none;margin:22px 0 0;display:grid;gap:15px;padding:0;}
.mvr\.audience\.list li{padding-left:30px;position:relative;color:var(--site-muted);}
.mvr\.audience\.col--yes .mvr\.audience\.list li::before{content:"\2713";position:absolute;left:0;color:var(--site-accent);font-weight:700;}
.mvr\.audience\.col--no .mvr\.audience\.list li::before{content:"\2715";position:absolute;left:0;color:var(--site-muted);font-weight:700;}

/* ==========================================================================
   SECTORS — list rows: sector + what changes
   ========================================================================== */
.mvr\.sectors\.list{border-top:1px solid var(--site-accent2);}
.mvr\.sectors\.row{
  display:grid;grid-template-columns:240px 1fr;gap:32px;padding:30px 0;
  border-bottom:1px solid var(--site-accent2);align-items:baseline;
}
.mvr\.sectors\.name{font-family:var(--font-heading);font-weight:700;font-size:1.1rem;}
.mvr\.sectors\.desc{color:var(--site-muted);margin:0;}

/* ==========================================================================
   STATS — row of big numbers
   ========================================================================== */
.mvr\.stats\.row{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px;text-align:center;}
.mvr\.stats\.item{padding:32px 16px;border-left:1px solid var(--site-accent2);}
.mvr\.stats\.item:first-child{border-left:0;}
.mvr\.stats\.num{
  font-family:var(--font-heading);font-size:clamp(36px,5vw,58px);font-weight:700;
  color:var(--site-accent);font-variant-numeric:tabular-nums;line-height:1;
}
.mvr\.stats\.label{color:var(--site-muted);font-size:.84rem;text-transform:uppercase;letter-spacing:.07em;margin-top:10px;}

/* ==========================================================================
   METHODOLOGY — numbered phases with rule between
   ========================================================================== */
.mvr\.methodology\.phase{
  display:grid;grid-template-columns:140px 1fr;gap:32px;padding:48px 0;border-bottom:1px solid var(--site-accent2);
}
.mvr\.methodology\.phase:first-child{border-top:1px solid var(--site-accent2);}
.mvr\.methodology\.num{
  font-family:var(--font-heading);font-size:clamp(40px,5vw,64px);font-weight:700;
  color:var(--site-accent);font-variant-numeric:tabular-nums;line-height:1;
}
.mvr\.methodology\.body h3{margin:0 0 10px;}
.mvr\.methodology\.body p{color:var(--site-muted);margin:0;}

/* ==========================================================================
   WHY US — three arguments with supporting paragraphs
   ========================================================================== */
.mvr\.why\.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:44px;}
.mvr\.why\.item h3{display:flex;align-items:center;gap:12px;font-size:1.18rem;}
.mvr\.why\.item h3 i{color:var(--site-accent);}
.mvr\.why\.item p{color:var(--site-muted);margin-top:12px;}

/* ==========================================================================
   QUOTE FEATURE — heading-font quote with attribution rule
   ========================================================================== */
.mvr\.quote\.feature{max-width:820px;margin:0 auto;text-align:center;}
.mvr\.quote\.text{
  font-family:var(--font-heading);font-size:clamp(24px,4vw,38px);font-weight:600;
  line-height:1.4;letter-spacing:-.01em;margin:0;
}
.mvr\.quote\.attr{margin-top:34px;display:inline-flex;flex-direction:column;align-items:center;gap:10px;}
.mvr\.quote\.attr::before{content:"";width:60px;height:2px;background:var(--site-accent);}
.mvr\.quote\.name{font-weight:700;margin:0;}
.mvr\.quote\.role{color:var(--site-muted);font-size:.9rem;margin:0;}

/* ==========================================================================
   CONTACT — two columns: reassurance left, form right
   ========================================================================== */
.mvr\.contact\.grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:56px;align-items:start;}
.mvr\.contact\.aside ul{list-style:none;margin:24px 0 0;display:grid;gap:18px;padding:0;}
.mvr\.contact\.aside li{display:flex;gap:14px;align-items:flex-start;color:var(--site-muted);}
.mvr\.contact\.aside li i{color:var(--site-accent);margin-top:4px;flex:none;}
.mvr\.contact\.form{
  background:#fff;border-radius:var(--radius-card);box-shadow:var(--shadow-card);
  padding:42px;border:1px solid var(--site-accent2);
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.mvr\.form\.group{margin-bottom:20px;}
.mvr\.form\.label{display:block;font-weight:600;font-size:.85rem;margin-bottom:8px;}
.mvr\.form\.input,.mvr\.form\.textarea{
  width:100%;padding:14px 18px;border-radius:12px;border:1px solid var(--site-accent2);
  background:var(--site-surface);font-family:inherit;font-size:.95rem;color:var(--site-text);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.mvr\.form\.input:focus,.mvr\.form\.textarea:focus{
  outline:none;border-color:var(--site-accent);box-shadow:0 0 0 4px rgba(0,87,255,.12);
}
.mvr\.form\.textarea{min-height:160px;resize:vertical;}

/* ==========================================================================
   SWIPER — shared slider styling
   ========================================================================== */
.swipe-deck-of9{padding-bottom:56px;}
.swipe-deck-of9 .swiper-slide{height:auto;}
.swiper-pagination-bullet{background:var(--site-accent2);opacity:1;}
.swiper-pagination-bullet-active{background:var(--site-accent);}
.swiper-button-next,.swiper-button-prev{
  color:var(--site-text);width:44px;height:44px;background:#fff;border-radius:50%;box-shadow:var(--shadow-card);
}
.swiper-button-next::after,.swiper-button-prev::after{font-size:15px;}

/* ==========================================================================
   MODAL — .lightbox-9n9, scroll-safe
   ========================================================================== */
.lightbox-9n9{
  position:fixed;inset:0;z-index:300;display:flex;align-items:center;justify-content:center;
  padding:24px;opacity:0;pointer-events:none;transition:opacity .3s ease;
}
.lightbox-9n9.is-open{opacity:1;pointer-events:auto;}
.mvr\.modal\.backdrop{position:absolute;inset:0;background:rgba(10,14,20,.6);}
.mvr\.modal\.dialog{
  position:relative;background:#fff;border-radius:var(--radius-card);box-shadow:var(--shadow-card);
  max-width:520px;width:100%;padding:42px;transform:translateY(20px);transition:transform .3s ease;
}
.lightbox-9n9.is-open .mvr\.modal\.dialog{transform:translateY(0);}
.mvr\.modal\.close{
  position:absolute;top:16px;right:16px;width:38px;height:38px;border-radius:50%;
  border:1px solid var(--site-accent2);background:none;cursor:pointer;
}

/* ==========================================================================
   CARD (generic)
   ========================================================================== */
.mvr\.card{background:#fff;border-radius:var(--radius-card);box-shadow:var(--shadow-card);padding:32px;}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media(max-width:1200px){
  .mvr\.footer\.grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:960px){
  .mvr\.header\.meta-item:nth-child(2){display:none;}
}

@media(max-width:820px){
  :root{--sp-section:64px;}
  .mvr\.page-hero{padding:112px 0 64px;}
  .mvr\.page-hero--type{padding:140px 0 84px;}
  .mvr\.page-hero--side .mvr\.page-hero\.grid,
  .mvr\.location\.split,
  .mvr\.contact\.grid,
  .mvr\.services\.row,
  .mvr\.audience\.grid,
  .mvr\.cta\.strip--split,
  .mvr\.footer\.top{
    grid-template-columns:1fr;
  }
  .mvr\.services\.row--reverse{direction:ltr;}
  .mvr\.services\.row{padding:40px 0;}
  .mvr\.methodology\.phase{grid-template-columns:1fr;gap:14px;}
  .mvr\.sectors\.row{grid-template-columns:1fr;gap:8px;}
  .mvr\.curriculum\.item{grid-template-columns:64px 1fr;}
  .mvr\.stats\.item{border-left:0;border-top:1px solid var(--site-accent2);}
  .mvr\.stats\.item:first-child{border-top:0;}
  .mvr\.contact\.aside{position:static;}
  .mvr\.footer\.grid{grid-template-columns:1fr 1fr;}
  .mvr\.newsletter\.bar{padding:28px 26px;}
}

@media(max-width:560px){
  .mvr\.header\.meta-item:nth-child(3){display:none;}
  .mvr\.hero\.title,.mvr\.page-hero\.title{letter-spacing:-.01em;}
  .mvr\.formats\.card--popular{transform:none;}
  .mvr\.footer\.grid{grid-template-columns:1fr;}
  .mvr\.testimonials\.card,.mvr\.credentials\.card,.mvr\.blog\.body{padding:26px 22px;}
  .mvr\.audience\.col,.mvr\.contact\.form,.mvr\.cta\.strip--split,.mvr\.cta\.strip--centered,.mvr\.cta\.strip--band{padding:32px 24px;}
}

@media(max-width:400px){
  .mvr\.header\.meta{gap:14px;}
  .mvr\.curriculum\.item{grid-template-columns:1fr;gap:10px;}
}


/* --- cookie consent (per-site) --- */
.cookie-bar-fgj-overlay{position:fixed;inset:0;opacity:0;visibility:hidden;transition:.25s;z-index:9998;}
.cookie-bar-fgj-overlay.is-open{opacity:1;visibility:visible;}
.cookie-bar-fgj-panel{position:fixed;background:var(--site-surface,#fff);color:var(--site-text,#1a1a1a);
  box-shadow:0 20px 60px rgba(0,0,0,.28);padding:24px;opacity:0;visibility:hidden;transition:.25s;z-index:9999;}
.cookie-bar-fgj-panel.is-open{opacity:1;visibility:visible;}
.cookie-bar-fgj-panel h3{margin:0 0 8px;font-size:1.2rem;}
.cookie-bar-fgj-panel>p{margin:0 0 16px;color:var(--site-muted,#666);font-size:.95rem;}
.cookie-bar-fgj-cat{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0;border-top:1px solid rgba(128,128,128,.2);}
.cookie-bar-fgj-cat h4{margin:0 0 2px;font-size:.98rem;}
.cookie-bar-fgj-cat p{margin:0;color:var(--site-muted,#777);font-size:.85rem;}
.cookie-bar-fgj-switch{position:relative;flex:0 0 auto;width:44px;height:24px;}
.cookie-bar-fgj-switch input{opacity:0;width:0;height:0;position:absolute;}
.cookie-bar-fgj-switch span{position:absolute;inset:0;background:#c9c9c9;border-radius:999px;transition:.2s;cursor:pointer;}
.cookie-bar-fgj-switch span::before{content:"";position:absolute;width:18px;height:18px;left:3px;top:3px;background:#fff;border-radius:50%;transition:.2s;}
.cookie-bar-fgj-switch input:checked+span{background:var(--site-accent,#2b7);}
.cookie-bar-fgj-switch input:checked+span::before{transform:translateX(20px);}
.cookie-bar-fgj-switch input:disabled+span{opacity:.6;cursor:not-allowed;}
.cookie-bar-fgj-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px;}
.cookie-bar-fgj-actions button{flex:1;min-width:140px;padding:11px 16px;border:none;border-radius:10px;font:inherit;font-weight:600;cursor:pointer;}
.cookie-bar-fgj-actions #cookie-bar-fgj-all{background:var(--site-accent,#2b7);color:#fff;}
.cookie-bar-fgj-actions #cookie-bar-fgj-save{background:transparent;color:var(--site-text,#222);border:1px solid rgba(128,128,128,.4);}
.cookie-bar-fgj-links{display:flex;gap:16px;margin-top:14px;font-size:.85rem;}
.cookie-bar-fgj-links a{color:var(--site-accent,#2b7);text-decoration:underline;}
.cookie-bar-fgj-trigger{position:fixed;left:18px;bottom:18px;width:44px;height:44px;border-radius:50%;border:none;cursor:pointer;
  background:var(--site-surface,#fff);color:var(--site-accent,#2b7);box-shadow:0 6px 18px rgba(0,0,0,.2);z-index:9997;font-size:1.1rem;}

.cookie-bar-fgj-overlay{background:transparent;pointer-events:none;}
.cookie-bar-fgj-panel{left:0;right:0;bottom:0;width:100%;border-radius:16px 16px 0 0;transform:translateY(100%);}
.cookie-bar-fgj-panel>*{max-width:900px;margin-left:auto;margin-right:auto;}
.cookie-bar-fgj-panel.is-open{transform:translateY(0);}
@media(max-width:520px){.cookie-bar-fgj-actions button{min-width:100%;}}
#side-dock-o7k{left:auto !important;right:18px !important;}
@media(max-width:520px){#side-dock-o7k{right:12px !important;}}
html[data-cookie-open] #side-dock-o7k{bottom:min(46vh,260px) !important;}


/* --- safety net (deterministic) --- */
*,*::before,*::after{box-sizing:border-box;}
html,body{overflow-x:hidden;overflow-x:clip;max-width:100%;}
img,svg,video,iframe,canvas{max-width:100%;}
table{max-width:100%;}
/* simpleParallax оборачивает <img> в свой .simpleParallax — заставляем обёртку
   тянуться на всю высоту родителя, а фото внутри — cover. Проценты безопасны:
   при родителе без заданной высоты height:100% откатывается к auto (без коллапса). */
.simpleParallax{display:block;width:100%;height:100%;}
.simpleParallax img{width:100%;height:100%;object-fit:cover;}
/* Браузерный дефолт для <blockquote> и <figure> — margin: 1em 40px. Модель берёт
   эти семантические теги для отзывов и карточек с подписью, но сбросить поля
   забывает: внутри карточки в 267px текст сжимался до 131px (по 40px с каждой
   стороны) и переносился по одному слову, а между карточками зияли пустоты.
   Сбрасываем только горизонтальные поля — вертикальные обычно задуманы. */
blockquote, figure { margin-left: 0; margin-right: 0; }
/* Вложенные фигуры внутри сеток тоже не должны добавлять отступ сбоку. */
figure > blockquote, figure > figcaption { margin-left: 0; margin-right: 0; }
/* Если AOS не поднялся (CDN недоступен, блокировщик) — main.js вешает .no-aos.
   Без этого элементы с data-aos остались бы с opacity:0 из aos.css, то есть
   половина страницы была бы невидимой. */
html.no-aos [data-aos]{opacity:1 !important;transform:none !important;}
/* Пользователи с prefers-reduced-motion получают контент сразу, без анимаций. */
@media(prefers-reduced-motion:reduce){
  [data-aos]{opacity:1 !important;transform:none !important;transition:none !important;}
}
