/* MyVibe marketing-site styles */
@import url("./colors_and_type.css");

html, body { background: var(--mv-charcoal); color: #fff; }
body {
  overflow-x: hidden;
  hyphens: none;
  -webkit-hyphens: none;
  word-break: keep-all;
  overflow-wrap: normal;
  orphans: 2;
  widows: 2;
}

a { color: inherit; text-decoration: none; }

/* ---------- Header ---------- */
.mv-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(23, 23, 23, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.mv-header__inner {
  height: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.mv-header__logo { display: flex; align-items: center; gap: 12px; }
.mv-header__logo img { height: 66px; width: auto; object-fit: contain; }
.mv-header__nav {
  display: flex; align-items: center; gap: 26px;
  font-size: 14px; font-weight: 500;
}
.mv-header__nav a {
  position: relative; padding: 6px 0; color: var(--fg-2);
  transition: color var(--dur-fast) var(--ease);
}
.mv-header__nav a.is-strong { color: var(--fg-1); }
.mv-header__nav a:hover { color: var(--fg-1); }
.mv-header__actions { display: flex; align-items: center; gap: 6px; }

/* ---------- Hamburger (mobile) ---------- */
.mv-hamburger {
  display: none;
  position: relative; z-index: 60;
  width: 40px; height: 40px;
  background: transparent; border: 0; cursor: pointer;
  padding: 8px;
}
.mv-hamburger__line {
  position: absolute; left: 8px; right: 8px;
  height: 2px; background: var(--fg-1);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.mv-hamburger__line:nth-child(1) { top: 12px; }
.mv-hamburger__line:nth-child(2) { top: 19px; }
.mv-hamburger__line:nth-child(3) { top: 26px; }
.mv-hamburger.is-open .mv-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mv-hamburger.is-open .mv-hamburger__line:nth-child(2) {
  opacity: 0;
}
.mv-hamburger.is-open .mv-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile nav overlay ---------- */
.mv-mobile-nav {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mv-mobile-nav.is-open {
  opacity: 1; pointer-events: all;
}
.mv-mobile-nav a {
  font-size: 22px; font-weight: 600;
  color: var(--fg-2);
  transition: color var(--dur-fast) var(--ease);
}
.mv-mobile-nav a:hover,
.mv-mobile-nav a.is-active { color: var(--fg-1); }
.mv-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: transparent; color: var(--fg-1); border: 0; cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}
.mv-icon-btn:hover { background: var(--border); }
.mv-cart-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 14px; border-radius: 999px;
  background: var(--fg-1); color: var(--bg); border: 0;
  font-weight: 600; font-size: 13px; cursor: pointer;
}
.mv-cart-btn:hover { background: var(--fg-2); }
.mv-locale {
  position: relative;
  display: inline-flex; align-items: center; gap: 4px;
  height: 36px; padding: 0 12px; border-radius: 999px;
  background: transparent; color: var(--fg-1); border: 1px solid var(--border-strong);
  font-weight: 600; font-size: 12px; letter-spacing: .04em; cursor: pointer;
}
.mv-locale__menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px; padding: 6px;
  background: var(--mv-slate); border: 1px solid var(--border-strong);
  border-radius: 12px; box-shadow: var(--sh-4);
  display: none;
}
.mv-locale__menu.is-open { display: block; }
.mv-locale__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px; border-radius: 8px;
  font-size: 13px; cursor: pointer;
}
.mv-locale__item:hover { background: var(--border); }
.mv-locale__item.is-active { background: var(--border); color: var(--mv-brand-orange); }
.mv-locale__code { font-family: var(--ff-mono); font-size: 11px; color: var(--fg-3); }

/* ---------- Hero ---------- */
.mv-hero {
  position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center;
  background: #0A0A0A; overflow: hidden;
}
.mv-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  z-index: 0;
}
.mv-hero__gradient {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0) 70%, rgba(10,10,10,0.85) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0) 55%);
}
.mv-hero__inner {
  position: relative; z-index: 1;
  max-width: 1280px; width: 100%; margin: 0 auto;
  padding: 96px var(--gutter);
}
.mv-hero__copy { max-width: 640px; }
.mv-hero__eyebrow { color: var(--mv-fog); }
.mv-hero__title {
  margin: 16px 0 14px;
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02; text-wrap: balance;
}
.mv-hero__subtitle { font-size: 20px; color: var(--mv-fog); margin: 0 0 32px; white-space: pre-line; text-wrap: pretty; }
.mv-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Avant MyVibe (Video Block) ---------- */
.mv-video-block {
  position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center;
  justify-content: center; background: #0A0A0A; overflow: hidden;
}
.mv-video-block__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.mv-video-block--active .mv-video-block__video { opacity: 1; }
.mv-video-block__video::-webkit-media-controls { display: none !important; }
.mv-video-block__video::-webkit-media-controls-start-playback-button { display: none !important; }
.mv-video-block__gradient {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0) 70%, rgba(10,10,10,0.85) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0) 55%);
}
.mv-video-block__inner {
  position: relative; z-index: 3;
  max-width: 720px; width: calc(100% - 48px);
  text-align: center;
}
.mv-video-block__eyebrow {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(14px, 1.4vw, 20px);
  color: var(--mv-accent); letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  animation: vbfadeIn 2s ease 1s forwards;
}
.mv-video-block__mission {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(16px, 2.2vw, 28px);
  line-height: 1.6; color: rgba(245,245,240,0.92);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin: 0;
  opacity: 0;
  animation: vbfadeIn 2s ease 3s forwards;
}
.mv-video-block__dim {
  position: absolute; inset: 0;
  background: #0A0A0A;
  opacity: 0;
  transition: opacity 2s ease;
  pointer-events: none;
  z-index: 4;
}
.mv-video-block--dimmed .mv-video-block__dim { opacity: 1; }
.mv-video-block--dimmed .mv-video-block__video { opacity: 0; }
.mv-video-block--dimmed .mv-video-block__mission { opacity: 0; }
.mv-video-block--dimmed .mv-video-block__eyebrow { opacity: 0; }
.mv-video-block--dimmed .mv-video-block__inner > * { opacity: 0 !important; animation: none !important; }

@keyframes vbfadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Sections ---------- */
.mv-section { padding: 120px 0; }
.mv-section--bone { background: var(--mv-bone); color: var(--mv-charcoal); }
.mv-section--bone .mv-eyebrow { color: var(--mv-mute); }
.mv-section__inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }
.mv-section__title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05; text-wrap: balance; margin: 14px 0 0; max-width: 22ch;
}
.mv-section__lede {
  margin-top: 28px; max-width: 60ch;
  font-size: 17px; line-height: 1.7; color: var(--mv-mute); text-wrap: pretty;
}
.mv-section--bone .mv-section__lede { color: #4A4A4A; }
.mv-section__lede + .mv-section__lede { margin-top: 18px; }

/* ---------- Two-column editorial ---------- */
.mv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 880px) { .mv-split { grid-template-columns: 1fr; gap: 40px; } }
.mv-split__media {
  position: relative; display: flex; align-items: center; justify-content: center;
  background: #000; border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 20px 60px rgba(0,0,0,0.45);
  padding: 14px;
}
.mv-split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mv-split--reverse .mv-split__media { order: 2; }
@media (max-width: 880px) { .mv-split--reverse .mv-split__media { order: 0; } }

/* ---------- Bone-conduction explainer ---------- */
.mv-bc { background: #000; color: #fff; }
.mv-bc__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 880px) { .mv-bc__grid { grid-template-columns: 1fr; gap: 40px; } }
.mv-bc__media {
  position: relative; aspect-ratio: 1/1; border-radius: var(--rad-xl);
  overflow: hidden; box-shadow: var(--sh-glow-warm); background: #000;
}
.mv-bc__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mv-bc__steps { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 24px; counter-reset: step; }
.mv-bc__step {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.mv-bc__step:last-child { border-bottom: 0; padding-bottom: 0; }
.mv-bc__num { font-family: var(--ff-display); font-size: 28px; color: var(--mv-brand-orange); line-height: 1; }
.mv-bc__step-title { font-family: var(--ff-display); font-size: 20px; margin-bottom: 6px; color: #fff; }
.mv-bc__step-body { font-size: 15px; line-height: 1.65; color: var(--mv-fog); margin: 0; max-width: 42ch; }

/* ---------- Full bleed ---------- */
.mv-fullbleed {
  position: relative; min-height: 80vh; display: flex; align-items: flex-end;
  background-size: cover; background-position: center 25%; color: #fff;
}
.mv-fullbleed::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
}
.mv-fullbleed .mv-section__inner { position: relative; z-index: 1; padding-block: 80px; }

/* ---------- Model grid ---------- */
.mv-models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
@media (max-width: 880px) { .mv-models { grid-template-columns: 1fr; } }
.mv-model {
  position: relative; background: #fff; color: #0A0A0A;
  border-radius: var(--rad-xl); overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.mv-model:hover { transform: translateY(-3px); box-shadow: var(--sh-3); }
.mv-model__media {
  position: relative; aspect-ratio: 1/1; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.mv-model__media img { width: 100%; height: 100%; object-fit: cover; }
.mv-model__tag {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 10px; border-radius: 999px;
  background: #0A0A0A; color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.mv-model__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 6px; }
.mv-model__name { font-family: var(--ff-display); font-weight: 700; font-size: 24px; letter-spacing: -0.01em; }
.mv-model__endurance { font-size: 14px; color: #4A4A4A; }
.mv-model__row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 14px; }
.mv-model__price { font-family: var(--ff-mono); font-size: 18px; font-weight: 600; }
.mv-model__price-from { font-size: 11px; color: #8A8A8A; text-transform: uppercase; letter-spacing: 0.08em; }
.mv-model__colors { display: inline-flex; gap: 6px; align-items: center; }
.mv-model__color {
  width: 18px; height: 18px; border-radius: 999px;
  border: 1px solid rgba(10,10,10,0.18);
  box-shadow: inset 0 0 0 2px #fff; display: inline-block;
  transition: transform var(--dur-fast) var(--ease);
}
.mv-model__color:hover { transform: scale(1.12); cursor: pointer; }
.mv-model__cta {
  margin-top: 16px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 54px; border-radius: 999px; background: #0A0A0A; color: #fff;
  border: 0; cursor: pointer; font-size: 14px; gap: 1px; padding: 8px 24px;
  line-height: 1.2;
}
.mv-model__cta-main { font-weight: 700; font-size: 14px; }
.mv-model__cta-sub { font-weight: 400; font-size: 10px; opacity: 0.8; letter-spacing: 0.03em; }

/* ---------- Model specs ---------- */
.mv-model__specs { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(10, 10, 10, 0.08); }
.mv-model__specs-heading { margin: 0 0 12px; font-family: var(--ff-body); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #8A8A8A; }
.mv-model__specs-list { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mv-model__specs-row { display: grid; grid-template-columns: 92px 1fr; gap: 12px; align-items: baseline; font-size: 13px; line-height: 1.45; }
.mv-model__specs-row dt { margin: 0; font-weight: 600; color: #0A0A0A; }
.mv-model__specs-row dd { margin: 0; color: #4A4A4A; text-wrap: pretty; }

/* ---------- Reviews ---------- */
.mv-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
@media (max-width: 880px) { .mv-reviews { grid-template-columns: 1fr; } }
.mv-review { background: var(--mv-slate); border: 1px solid var(--border); border-radius: var(--rad-lg); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.mv-review__stars { display: inline-flex; gap: 2px; color: #f59e0b; }
.mv-review__title { font-family: var(--ff-display); font-weight: 600; font-size: 18px; }
.mv-review__body { font-size: 14px; line-height: 1.6; color: var(--mv-fog); text-wrap: pretty; }
.mv-review__author { font-size: 12px; color: var(--mv-mute); margin-top: auto; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }

/* ---------- Footer ---------- */
.mv-footer { background: #000; color: var(--mv-fog); padding: 80px 0 24px; }
.mv-footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }
.mv-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; }
@media (max-width: 880px) { .mv-footer__top { grid-template-columns: 1fr; gap: 40px; } }
.mv-footer__brand img { height: 28px; margin-bottom: 18px; }
.mv-footer__brand p { font-size: 14px; line-height: 1.7; max-width: 50ch; color: var(--mv-mute); text-wrap: pretty; }
.mv-footer__col h4 { font-family: var(--ff-display); font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.mv-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mv-footer__col a { color: var(--mv-fog); font-size: 14px; }
.mv-footer__col a:hover { color: #fff; }
.mv-footer__bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 12px; color: var(--mv-mute); }
.mv-footer__social { display: flex; gap: 14px; }
.mv-footer__social a { color: var(--mv-fog); }
.mv-footer__social a:hover { color: #fff; }

/* ---------- FAQ (light, for homepage) ---------- */
.mv-faq { margin-top: 48px; display: flex; flex-direction: column; border-top: 1px solid rgba(10, 10, 10, 0.12); }
.mv-faq__item { border-bottom: 1px solid rgba(10, 10, 10, 0.12); }
.mv-faq__q {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 22px 4px; background: transparent; border: 0; cursor: pointer;
  font-family: var(--ff-display); font-size: 20px; font-weight: 600;
  line-height: 1.3; color: var(--mv-charcoal); text-align: left;
}
.mv-faq__q:hover { color: var(--mv-ink); }
.mv-faq__icon {
  flex: 0 0 36px; width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid rgba(10,10,10,0.18);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.mv-faq__item.is-open .mv-faq__icon { background: var(--mv-charcoal); border-color: var(--mv-charcoal); color: #fff; }
.mv-faq__a { max-height: 0; overflow: hidden; transition: max-height 350ms var(--ease), padding 350ms var(--ease); padding: 0 60px 0 4px; }
.mv-faq__item.is-open .mv-faq__a { max-height: 380px; padding-bottom: 22px; }
.mv-faq__a p { margin: 0; font-size: 16px; line-height: 1.7; color: #3F3F3F; max-width: 72ch; text-wrap: pretty; }

/* ---------- Toast ---------- */
.mv-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  padding: 14px 22px; border-radius: 999px;
  background: var(--fg-1); color: var(--bg);
  font-size: 14px; font-weight: 600; box-shadow: var(--sh-4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
  z-index: 100;
}
.mv-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .mv-header__nav { display: none; }
  .mv-hamburger { display: flex; }
  .mv-hero { min-height: 52vh; }
  .mv-section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .mv-hero { min-height: 48vh; }
  .mv-hero__inner { padding: 48px var(--gutter); }
}

/* ---------- Delivery banner ---------- */
.delivery-banner { background: #111; border-top: 1px solid #2a2a2a; border-bottom: 1px solid #2a2a2a; padding: 2rem 1.5rem; }
.delivery-banner__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.delivery-banner__item { display: flex; align-items: flex-start; gap: 0.875rem; }
.delivery-banner__icon { width: 22px; height: 22px; stroke: #e5e5e5; flex-shrink: 0; margin-top: 2px; }
.delivery-banner__text { display: flex; flex-direction: column; gap: 0.2rem; }
.delivery-banner__text strong { font-size: 0.85rem; font-weight: 600; color: #f5f5f5; letter-spacing: 0.01em; }
.delivery-banner__text span { font-size: 0.78rem; color: #888; }
@media (max-width: 768px) { .delivery-banner__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .delivery-banner__inner { grid-template-columns: 1fr; } }

/* ---------- Page-specific: about ---------- */
.mv-about { --ab-bg: #111; --ab-fg: #f5f5f0; --ab-muted: rgba(245,245,240,.45); --ab-accent: #f5f5f0; --ab-border: rgba(245,245,240,.1); --ab-num: rgba(245,245,240,.07); background: var(--ab-bg); color: var(--ab-fg); padding: 80px 0 100px; overflow: hidden; position: relative; }
.mv-about::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; }
.mv-about__inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.mv-about__eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ab-muted); margin-bottom: 20px; }
.mv-about__headline { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; white-space: pre-line; margin: 0 0 72px; max-width: 720px; }
.mv-about__chapters { display: flex; flex-direction: column; gap: 0; }
.mv-about__chapter { display: grid; grid-template-columns: 80px 1fr; gap: 0 32px; padding: 48px 0; border-top: 1px solid var(--ab-border); }
.mv-about__chapter:last-child { border-bottom: 1px solid var(--ab-border); }
.mv-about__num { font-size: 3rem; font-weight: 900; color: var(--ab-num); line-height: 1; letter-spacing: -.04em; padding-top: 4px; user-select: none; }
.mv-about__ch-title { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 700; line-height: 1.2; white-space: pre-line; margin: 0 0 20px; }
.mv-about__ch-text { color: rgba(245,245,240,.72); font-size: .9375rem; line-height: 1.75; margin: 0 0 12px; max-width: 620px; text-wrap: pretty; }
.mv-about__ch-text:last-of-type { margin-bottom: 0; }
.mv-about__pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 28px 0 24px; }
.mv-about__pillar { background: rgba(255,255,255,.04); border: 1px solid var(--ab-border); border-radius: 12px; padding: 18px 16px; }
.mv-about__pillar-icon { font-size: 1.4rem; margin-bottom: 8px; }
.mv-about__pillar-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.mv-about__pillar-text { font-size: .8125rem; color: var(--ab-muted); line-height: 1.55; }
.mv-about__closing { font-size: .9375rem; line-height: 1.75; color: rgba(245,245,240,.72); max-width: 620px; margin-top: 20px; font-style: italic; }
.mv-about__signature { display: flex; align-items: center; gap: 20px; margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--ab-border); }
.mv-about__sig-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ab-border); background: rgba(255,255,255,.06); flex-shrink: 0; }
.mv-about__sig-name { font-size: 1rem; font-weight: 700; margin: 0 0 2px; }
.mv-about__sig-role { font-size: .8125rem; color: var(--ab-muted); }
@media (max-width: 560px) { .mv-about__chapter { grid-template-columns: 1fr; gap: 12px 0; } .mv-about__num { font-size: 2rem; } .mv-about { padding: 60px 0 80px; } }

/* ---------- Delivery page ---------- */
.mv-delivery { background: #0a0c0f; color: #e8e6e0; }
.mv-delivery__inner { max-width: 900px; margin: 0 auto; padding: 80px 24px; }
.mv-delivery h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.12; margin: 0 0 12px; }
.mv-delivery__lede { font-size: 1.05rem; color: #8b8880; line-height: 1.7; max-width: 680px; margin-bottom: 48px; }
.mv-delivery__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-bottom: 48px; }
.mv-delivery__card { background: #13161b; border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 24px; }
.mv-delivery__card-icon { font-size: 1.5rem; margin-bottom: 12px; }
.mv-delivery__card h3 { font-size: .85rem; font-weight: 700; margin-bottom: 6px; color: #f0ede8; }
.mv-delivery__card p { font-size: .8125rem; color: #8b8880; line-height: 1.6; }
.mv-delivery__steps { display: flex; flex-direction: column; gap: 0; }
.mv-delivery__step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mv-delivery__step:last-child { border-bottom: 0; }
.mv-delivery__step-num { font-size: 1.2rem; font-weight: 700; color: #2dd4a0; line-height: 1.4; }
.mv-delivery__step-text h3 { font-size: .9rem; font-weight: 600; color: #f0ede8; margin-bottom: 4px; }
.mv-delivery__step-text p { font-size: .8125rem; color: #8b8880; line-height: 1.6; }

/* ---------- Contact page ---------- */
.mv-contact { background: #0a0c0f; color: #e8e6e0; }
.mv-contact__inner { max-width: 900px; margin: 0 auto; padding: 80px 24px; }
.mv-contact h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.12; margin: 0 0 12px; }
.mv-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
@media (max-width: 640px) { .mv-contact__grid { grid-template-columns: 1fr; } }
.mv-contact__form { display: flex; flex-direction: column; gap: 16px; }
.mv-contact__form label { font-size: .8125rem; font-weight: 600; color: #8b8880; }
.mv-contact__form textarea { resize: vertical; min-height: 120px; padding: 12px; }
.mv-contact__info { display: flex; flex-direction: column; gap: 24px; }
.mv-contact__info-card { background: #13161b; border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 24px; }
.mv-contact__info-card h3 { font-size: .85rem; font-weight: 700; margin-bottom: 8px; color: #f0ede8; }
.mv-contact__info-card p { font-size: .875rem; color: #8b8880; text-wrap: pretty; }

/* ---------- Guide page (pillar) ---------- */
.mv-guide { background: #0a0c0f; color: #e8e6e0; }
.mv-guide__inner { max-width: 900px; margin: 0 auto; padding: 64px 24px 100px; }
.mv-guide h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.12; margin: 16px 0 12px; }
.mv-guide__meta { font-size: .8125rem; color: #555250; margin-bottom: 40px; }
.mv-guide h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; margin: 48px 0 16px; color: #f0ede8; }
.mv-guide h3 { font-size: 1.1rem; font-weight: 600; margin: 32px 0 12px; color: #e8e6e0; }
.mv-guide p { font-size: .9375rem; line-height: 1.75; color: #8b8880; margin-bottom: 16px; max-width: 72ch; text-wrap: pretty; }
.mv-guide ul, .mv-guide ol { color: #8b8880; line-height: 1.75; margin-bottom: 16px; padding-left: 20px; }
.mv-guide li { margin-bottom: 8px; }
.mv-guide strong { color: #f0ede8; font-weight: 600; }
.mv-guide__alert { border-radius: 8px; padding: 14px 18px; font-size: .875rem; margin: 24px 0; line-height: 1.65; border-left: 3px solid; background: rgba(45,212,160,0.08); border-color: #2dd4a0; color: #7ee8c8; }
.mv-guide__alert--info { background: rgba(96,165,250,0.08); border-color: #60a5fa; color: #93c5fd; }
.mv-guide__alert--warn { background: rgba(245,158,11,0.08); border-color: #f59e0b; color: #fcd38a; }
.mv-guide__table-wrap { overflow-x: auto; margin: 24px 0; }
.mv-guide table { width: 100%; border-collapse: collapse; font-size: .8125rem; }
.mv-guide th, .mv-guide td { padding: 10px 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.07); color: #8b8880; }
.mv-guide th { background: #13161b; color: #f0ede8; font-weight: 600; white-space: nowrap; }
.mv-guide td { color: #8b8880; }
.mv-guide td:first-child { color: #e8e6e0; font-weight: 600; }

/* ---------- FAQ v2 (dedicated page) ---------- */
.mv-faq-v2 { background: #0a0c0f; color: #e8e6e0; }
.mv-faq-v2__inner { max-width: 900px; margin: 0 auto; padding: 64px 24px 100px; }
.mv-faq-v2__hero { padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mv-faq-v2__title { font-family: var(--ff-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.1; color: #f0ede8; margin: 0 0 16px; }
.mv-faq-v2__intro { font-size: .9375rem; color: #8b8880; margin-bottom: 32px; line-height: 1.65; }
.mv-faq-v2__item { background: #13161b; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.mv-faq-v2__item--ok { border-left: 3px solid #2dd4a0; }
.mv-faq-v2__item--warn { border-left: 3px solid #f59e0b; }
.mv-faq-v2__item--danger { border-left: 3px solid #ef4444; }
.mv-faq-v2__question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; border: 0; background: transparent; color: #8b8880; font-family: var(--ff-body); font-size: 14px; font-weight: 600; text-align: left; cursor: pointer; }
.mv-faq-v2__question:hover, .mv-faq-v2__item.is-open .mv-faq-v2__question { color: #f0ede8; }
.mv-faq-v2__icon { width: 22px; height: 22px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; transition: transform .2s ease; flex-shrink: 0; }
.mv-faq-v2__item.is-open .mv-faq-v2__icon { transform: rotate(180deg); background: #21262f; }
.mv-faq-v2__answer { padding: 0 20px 20px; border-top: 1px solid rgba(255,255,255,0.07); color: #8b8880; font-size: 13.5px; line-height: 1.75; }
.mv-faq-v2__answer p { margin-top: 14px; color: #8b8880; }
.mv-faq-v2__answer strong { color: #f0ede8; font-weight: 600; }

/* ---------- FAQ stats ---------- */
.mv-faq-v2__stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
.mv-faq-v2__stat { background: #13161b; padding: 20px 18px; text-align: center; }
.mv-faq-v2__stat-number { font-size: 28px; color: #2dd4a0; line-height: 1; margin-bottom: 6px; font-weight: 700; }
.mv-faq-v2__stat-label { font-size: 11px; color: #8b8880; line-height: 1.4; }

/* ---------- FAQ cards ---------- */
.mv-faq-v2__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin: 0 0 28px; }
.mv-faq-v2__card { background: rgba(45,212,160,0.08); border: 1px solid rgba(45,212,160,0.2); border-radius: 16px; padding: 18px 20px; }
.mv-faq-v2__card-icon { font-size: 20px; margin-bottom: 10px; }
.mv-faq-v2__card h3 { font-size: 14px; color: #f0ede8; margin-bottom: 6px; }
.mv-faq-v2__card p { font-size: 12px; color: #8b8880; line-height: 1.55; }
.mv-faq-v2__card span { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 8px; margin-top: 8px; background: rgba(45,212,160,0.15); color: #2dd4a0; border: 1px solid rgba(45,212,160,0.2); }
.mv-faq-v2__mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.mv-faq-v2__mini-card { background: #1a1e25; border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 12px 14px; }
.mv-faq-v2__mini-card div { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: #555250; margin-bottom: 4px; }
.mv-faq-v2__mini-card span { font-size: 12px; color: #f0ede8; }
@media (max-width: 600px) { .mv-faq-v2__mini-grid { grid-template-columns: 1fr; } }




/* -- INTRO FULLBLEED (IPX5 style) -- */
.mv-intro-fullbleed {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
}
.mv-intro-fullbleed .mv-section__inner {
  text-align: center;
}
.mv-intro-fullbleed .mv-section__title {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  margin: 0 auto 24px;
}
.mv-intro-fullbleed .mv-section__lede {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .mv-intro-fullbleed { min-height: 70vh; }
  .mv-intro-fullbleed .mv-section__inner { text-align: left; }
  .mv-intro-fullbleed .mv-section__title { margin: 0 0 16px; }
  .mv-intro-fullbleed .mv-section__lede { margin: 0; }
}

/* ---------- Comparison table ---------- */
.mv-comparison {
  margin-top: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.mv-comparison__visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--rad-lg);
}
.mv-comparison__visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.35s ease;
}
.mv-comparison__img-hover {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
}
.mv-comparison__visual:hover .mv-comparison__img-hover {
  opacity: 1;
}
.mv-comparison__visual:hover .mv-comparison__img-default {
  opacity: 0;
}
.mv-comparison__table-wrap {
  width: 100%;
  margin-top: 32px;
}
.mv-comparison__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.mv-comparison__table thead th,
.mv-comparison__table tbody td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
  text-wrap: pretty;
}
.mv-comparison__table thead th {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 17px;
  border-bottom: 2px solid rgba(10,10,10,0.15);
  color: var(--mv-charcoal);
}
.mv-comparison__table tbody td {
  font-size: 14px;
  line-height: 1.55;
  border-bottom: 1px solid rgba(10,10,10,0.08);
  color: #3F3F3F;
}
/* Column color codings */
.mv-comparison__col-intra {
  width: 33.33%;
  background: rgba(10,10,10,0.03);
}
.mv-comparison__col-myvibe {
  width: 33.33%;
  background: rgba(29, 78, 216, 0.05);
}
.mv-comparison__col-ferme {
  width: 33.33%;
  background: rgba(10,10,10,0.07);
}
.mv-comparison__table thead .mv-comparison__col-intra {
  background: rgba(10,10,10,0.06);
}
.mv-comparison__table thead .mv-comparison__col-myvibe {
  background: rgba(29, 78, 216, 0.10);
}
.mv-comparison__table thead .mv-comparison__col-ferme {
  background: rgba(10,10,10,0.12);
}
.mv-comparison__table tbody tr:last-child td {
  border-bottom: 0;
}
@media (max-width: 768px) {
  .mv-comparison__table thead th,
  .mv-comparison__table tbody td {
    padding: 10px 6px;
    font-size: 10.5px;
    line-height: 1.3;
  }
}

/* ==================== MISSION BLOCK ==================== */
.mv-section--mission {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: min(22vh, 200px);
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.mv-section--mission .mv-section__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 40px 24px;
}

@media (max-width: 768px) {
  .mv-section--mission { min-height: 70vh; padding-top: min(18vh, 140px); }
}

/* Legal pages (mentions-legales, cgv, confidentialite, remboursement) */
.mv-legal {
  padding: var(--sp-16) 0 var(--sp-24);
}
.mv-legal__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.mv-legal__hero {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.mv-legal__hero .mv-legal__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  color: var(--fg-1);
  margin: 0 0 var(--sp-4);
}
.mv-legal__hero .mv-legal__intro {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-loose);
  color: var(--fg-3);
  max-width: 640px;
  margin-inline: auto;
}
.mv-legal__body {
  max-width: 800px;
  margin-inline: auto;
  color: var(--fg-2);
  font-size: var(--fs-body);
  line-height: var(--lh-loose);
}
.mv-legal__body h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  color: var(--fg-1);
  margin: var(--sp-10) 0 var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
}
.mv-legal__body h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-h4);
  line-height: var(--lh-snug);
  color: var(--fg-1);
  margin: var(--sp-8) 0 var(--sp-2);
}
.mv-legal__body p {
  margin: 0 0 var(--sp-4);
  color: var(--fg-2);
}
.mv-legal__body strong {
  color: var(--fg-1);
  font-weight: 600;
}
.mv-legal__body a {
  color: var(--mv-brand-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--dur-fast) var(--ease);
}
.mv-legal__body a:hover {
  color: var(--mv-brand-orange);
  opacity: 0.8;
}
.mv-legal__body ul, .mv-legal__body ol {
  margin: 0 0 var(--sp-4);
  padding-left: var(--sp-6);
}
.mv-legal__body li {
  margin-bottom: var(--sp-2);
  color: var(--fg-2);
}
.mv-legal__body li strong {
  color: var(--fg-1);
}
.mv-legal__last-updated {
  margin-top: var(--sp-12);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
  font-size: var(--fs-small);
  color: var(--fg-3);
  text-align: center;
}
@media (max-width: 720px) {
  .mv-legal { padding: var(--sp-10) 0 var(--sp-16); }
  .mv-legal__inner { padding-inline: var(--gutter-mobile); }
  .mv-legal__body { font-size: var(--fs-small); }
  .mv-legal__body h3 { font-size: var(--fs-body-lg); }
  .mv-legal__body li { font-size: var(--fs-small); }
}

/* --- Footer contact --- */
.mv-footer__contact {
  font-size: 13px;
  color: var(--mv-fog, #8A8A8A);
  margin-top: 8px;
  line-height: 1.6;
}
.mv-footer__contact a {
  color: var(--mv-fog, #8A8A8A);
  text-decoration: none;
}
.mv-footer__contact a:hover {
  color: #fff;
}

/* --- Slogan --- */
.mv-model__slogan {
  font-size: 13px;
  font-style: italic;
  color: var(--mv-mute, #6A6A6A);
  margin-bottom: 2px;
  line-height: 1.4;
}
