/* ════════════════════════════════════════════════════════════════════════
   Mediboard — Vitrine v2
   Palette violet + crème (pas d'or), bandeau vertical fixe à gauche,
   animation d'intro (pétale + écriture MEDIBoard puis transformation en
   bandeau), barre flottante en bas, sections animées au scroll.
   ════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --v-violet:        #4C1D95;
  --v-violet-dark:   #3B0764;
  --v-violet-soft:   #F5F3FF;
  --v-violet-accent: #A78BFA;
  --v-cream:         #FAF7F2;
  --v-cream-warm:    #F1ECE2;
  --v-text:          #0f172a;
  --v-text-muted:    #64748b;
  --v-text-faint:    #94a3b8;
  --v-border:        #e9e4dc;
  --v-white:         #ffffff;

  /* Bandeau horizontal en haut (juste le logo, pas de nav) */
  --v-topbar-h:      72px;
  /* Floating bar en bas */
  --v-bar-h:         72px;

  --v-ease:          cubic-bezier(.4, 0, .2, 1);
  --v-ease-out:      cubic-bezier(.16, 1, .3, 1);
  --v-ease-spring:   cubic-bezier(.34, 1.56, .64, 1);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body.v-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--v-text);
  background: var(--v-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.v-body h1, .v-body h2, .v-body h3, .v-body h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0;
}
.v-body p { margin: 0; }
.v-body a { color: inherit; text-decoration: none; }

.v-grad {
  background: linear-gradient(135deg, var(--v-violet) 0%, var(--v-violet-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ═════════════════════════════════════════════════════════════════════════
   INTRO OVERLAY — pétale qui grandit puis MEDIBoard qui s'écrit
   ═════════════════════════════════════════════════════════════════════════ */

.v-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--v-cream);
  pointer-events: none;
  transition: opacity .5s var(--v-ease);
}
/* Wrapper en position absolue : on anime le `top` pour passer du centre
   à la zone topbar (pas de snap, contrairement à align-items). */
.v-intro-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 26px;
  transition: top 1s var(--v-ease-out), gap .9s var(--v-ease-out);
}
/* Halo violet doux derrière le pétale */
.v-intro::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, rgba(76, 29, 149, .14) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 1s var(--v-ease-out), transform 1s var(--v-ease-out);
}

/* Pétale (SVG inline) */
.v-petal {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(.25) rotate(-12deg);
  transition:
    opacity .9s var(--v-ease-out),
    transform 1.1s var(--v-ease-spring);
}
.v-petal svg { width: 100%; height: 100%; display: block; }

/* Texte MEDIBoard — lettres */
.v-logotext {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -3px;
  color: var(--v-violet);
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.v-logotext .ml {
  display: inline-block;
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity .42s var(--v-ease-out),
    transform .42s var(--v-ease-out);
}
.v-logotext .ml.light { font-weight: 400; }

/* Phase 1 : pétale apparaît */
body.v-phase-1 .v-intro::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }
body.v-phase-1 .v-petal { opacity: 1; transform: scale(1) rotate(0); }

/* Phase 2 : texte s'écrit (lettres staggered via JS inline style --d) */
body.v-phase-2 .v-logotext .ml {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--d, 0) * 55ms);
}

/* Phase 3 : la composition glisse vers le HAUT (top: 50% → topbar/2) et
   rétrécit. Reste centrée horizontalement, reste violette, fond reste crème. */
body.v-phase-3 .v-intro-inner {
  top: calc(var(--v-topbar-h) / 2);
  gap: 12px;
}
body.v-phase-3 .v-intro::before { opacity: 0; }
body.v-phase-3 .v-petal {
  width: 38px;
  height: 38px;
  transition: width .9s var(--v-ease-out), height .9s var(--v-ease-out);
}
body.v-phase-3 .v-logotext {
  font-size: 22px;
  letter-spacing: -.5px;
  transition: font-size .9s var(--v-ease-out);
}

/* Phase 4 : intro disparaît, la vraie sidebar prend le relais */
body.v-phase-4 .v-intro { opacity: 0; }

/* Skip animation (motion reduce ou sessionStorage) */
body.v-no-intro .v-intro { display: none; }
body.v-no-intro .v-shell { opacity: 1; transform: none; }

/* ═════════════════════════════════════════════════════════════════════════
   SHELL : sidebar + main + floating bar
   ═════════════════════════════════════════════════════════════════════════ */

.v-shell {
  min-height: 100vh;
  opacity: 0;
  /* Pas de transform : la topbar est dedans, un translate ferait "rebondir"
     le logo de 20px à la fin de l'intro. Juste un fade en opacité. */
  transition: opacity .6s var(--v-ease-out) .15s;
}
body.v-phase-4 .v-shell {
  opacity: 1;
}

/* ─────────────── TOPBAR (bandeau horizontal en haut)
   Fond crème = même teinte que la page → visuellement invisible MAIS opaque,
   donc le contenu qui scrolle ne passe pas à travers. Logo violet centré. ─── */
.v-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--v-topbar-h);
  background: var(--v-cream);
  color: var(--v-violet);
  display: flex;
  align-items: center;
  justify-content: center;          /* logo centré horizontalement */
  padding: 0 28px;
  z-index: 50;
}
/* Lien Connexion discret en haut à droite — porte vers app.mediboard.app */
.v-topbar-login {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--v-violet);
  border: 1.5px solid transparent;
  border-radius: 100px;
  transition: background .18s, border-color .18s;
  text-decoration: none;
}
.v-topbar-login:hover {
  background: var(--v-violet-soft);
  border-color: var(--v-violet-soft);
}
@media (max-width: 600px) {
  .v-topbar-login { right: 14px; padding: 8px 14px; font-size: 13px; }
}
.v-side-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.v-side-brand .v-petal-mini {
  width: 38px; height: 38px;
  display: block;
}
.v-side-brand .v-brandtext {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--v-violet);            /* violet — pas de blanc */
  line-height: 1;
}
.v-side-brand .v-brandtext .light { font-weight: 400; }

/* ─────────────── MAIN ─────────────── */
.v-main {
  padding-top: var(--v-topbar-h);          /* sous la topbar fixe */
  padding-bottom: calc(var(--v-bar-h) + 36px); /* place pour la floating bar */
  position: relative;
}

/* ─────────────── FLOATING BOTTOM BAR ─────────────── */
.v-floatbar {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  gap: 4px;
  padding: 8px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-radius: 100px;
  border: 1px solid var(--v-border);
  box-shadow:
    0 20px 60px -20px rgba(76, 29, 149, .25),
    0 4px 16px -4px rgba(0, 0, 0, .08);
  opacity: 0;
  translate: 0 30px;
  transition: opacity .6s var(--v-ease-out) 1.4s, translate .6s var(--v-ease-out) 1.4s;
}
body.v-phase-4 .v-floatbar { opacity: 1; translate: 0 0; }
body.v-no-intro .v-floatbar { opacity: 1; translate: 0 0; transition: none; }

.v-floatbar a {
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--v-text);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.v-floatbar a:hover { background: var(--v-violet-soft); color: var(--v-violet); }
.v-floatbar a.primary {
  background: var(--v-violet);
  color: var(--v-white);
  font-weight: 600;
  box-shadow: 0 4px 14px -2px rgba(76, 29, 149, .4);
}
.v-floatbar a.primary:hover {
  background: var(--v-violet-dark);
  color: var(--v-white);
}

/* ═════════════════════════════════════════════════════════════════════════
   HERO + SECTIONS (landing minimaliste)
   ═════════════════════════════════════════════════════════════════════════ */

.v-hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 92px 56px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
}
/* Halo crème chaud en fond */
.v-hero::before {
  content: "";
  position: absolute;
  inset: -40px -40px 0;
  background:
    radial-gradient(ellipse 700px 500px at 30% 30%, rgba(167, 139, 250, .12) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(241, 236, 226, .8) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.v-hero > * { position: relative; z-index: 1; }

.v-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--v-white);
  color: var(--v-violet);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--v-violet-soft);
  width: max-content;
  box-shadow: 0 1px 3px rgba(76, 29, 149, .06);
}
.v-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--v-violet);
  box-shadow: 0 0 0 4px rgba(76, 29, 149, .18);
}

.v-hero h1 {
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1.06;
  letter-spacing: -.02em;
  max-width: 880px;
}
.v-hero h1 em { font-style: italic; }
.v-hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--v-text-muted);
  line-height: 1.55;
  max-width: 640px;
}
.v-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Boutons */
.v-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .22s var(--v-ease);
  background: var(--v-white);
  color: var(--v-text);
  border-color: var(--v-border);
}
.v-btn:hover {
  border-color: var(--v-violet);
  color: var(--v-violet);
  transform: translateY(-1px);
}
.v-btn--primary {
  background: var(--v-violet);
  color: var(--v-white);
  box-shadow: 0 6px 18px -4px rgba(76, 29, 149, .4);
  border-color: var(--v-violet);
}
.v-btn--primary:hover {
  background: var(--v-violet-dark);
  color: var(--v-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(76, 29, 149, .5);
}
.v-btn--lg { padding: 18px 34px; font-size: 16px; }

/* Sections génériques */
.v-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 90px 56px;
}
.v-section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.v-section-head .v-eyebrow { margin-bottom: 20px; }
.v-section-head h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.v-section-head p {
  font-size: 17px;
  color: var(--v-text-muted);
  line-height: 1.7;
}

/* ───── Section "Pour qui" / Features compactes ───── */
.v-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.v-feat {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: 22px;
  padding: 32px 28px;
  transition: transform .3s var(--v-ease), box-shadow .3s var(--v-ease), border-color .3s;
}
.v-feat:hover {
  transform: translateY(-4px);
  border-color: var(--v-violet-soft);
  box-shadow: 0 18px 40px -12px rgba(76, 29, 149, .18);
}
.v-feat-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--v-violet-soft);
  color: var(--v-violet);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.v-feat-ico svg { width: 24px; height: 24px; }
.v-feat h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.v-feat p { color: var(--v-text-muted); font-size: 14.5px; line-height: 1.6; }

/* ───── Workflow (4 étapes) ───── */
.v-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.v-flow-step {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: 18px;
  padding: 28px 22px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.v-flow-step:hover {
  transform: translateY(-3px);
  border-color: var(--v-violet);
  box-shadow: 0 12px 26px -10px rgba(76, 29, 149, .18);
}
.v-flow-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--v-violet);
  margin-bottom: 14px;
  display: inline-block;
}
.v-flow-num::after {
  content: "";
  display: block;
  width: 32px; height: 2px;
  background: var(--v-violet);
  margin-top: 6px;
  border-radius: 1px;
}
.v-flow-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 8px;
}
.v-flow-step p { color: var(--v-text-muted); font-size: 13.5px; line-height: 1.55; }

/* ───── CTA Final ───── */
.v-cta-final {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 56px 100px;
}
.v-cta-card {
  background: linear-gradient(135deg, var(--v-violet) 0%, var(--v-violet-dark) 100%);
  border-radius: 28px;
  padding: 70px 48px;
  text-align: center;
  color: var(--v-white);
  position: relative;
  overflow: hidden;
}
.v-cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(167, 139, 250, .35) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(250, 247, 242, .15) 0%, transparent 50%);
}
.v-cta-card > * { position: relative; z-index: 1; }
.v-cta-card h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 14px;
}
.v-cta-card p { opacity: .88; font-size: 16px; margin-bottom: 28px; }
.v-cta-card .v-btn {
  background: var(--v-white);
  color: var(--v-violet);
  border-color: var(--v-white);
}
.v-cta-card .v-btn:hover {
  background: var(--v-cream);
  color: var(--v-violet);
}

/* ═════════════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS (sections qui glissent)
   ═════════════════════════════════════════════════════════════════════════ */

.v-anim {
  opacity: 0;
  transition: opacity .85s var(--v-ease-out), transform .85s var(--v-ease-out);
  will-change: opacity, transform;
}
.v-anim--left  { transform: translateX(-60px); }
.v-anim--right { transform: translateX(60px); }
.v-anim--up    { transform: translateY(40px); }
.v-anim--down  { transform: translateY(-40px); }

.v-anim.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger pour grilles */
.v-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--v-ease-out), transform .7s var(--v-ease-out);
}
.v-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ═════════════════════════════════════════════════════════════════════════
   PAGES DÉDIÉES (demo, contact, tarifs, apropos)
   ═════════════════════════════════════════════════════════════════════════ */

.v-page-head {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 56px 40px;
}
.v-page-head h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.v-page-head h1 em { font-style: italic; }
.v-page-head .v-lead {
  font-size: 19px;
  color: var(--v-text-muted);
  line-height: 1.6;
  max-width: 620px;
}

/* ─── Form layout (demo, contact) ─── */
.v-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}
.v-form-row { display: grid; gap: 6px; }
.v-form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--v-text);
  letter-spacing: .01em;
}
.v-form-row input,
.v-form-row select,
.v-form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--v-border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  background: var(--v-white);
  color: var(--v-text);
  transition: border-color .18s, box-shadow .18s;
}
.v-form-row input:focus,
.v-form-row select:focus,
.v-form-row textarea:focus {
  outline: none;
  border-color: var(--v-violet);
  box-shadow: 0 0 0 4px rgba(76, 29, 149, .12);
}
.v-form-row textarea { min-height: 120px; resize: vertical; }
.v-form-2col { grid-template-columns: 1fr 1fr; gap: 14px; display: grid; }
.v-form button[type="submit"] {
  justify-self: start;
  margin-top: 8px;
}

/* ─── Pricing (tarifs) ─── */
.v-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.v-plan {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: 22px;
  padding: 38px 30px;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.v-plan:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -12px rgba(76, 29, 149, .18); }
.v-plan--featured {
  border-color: var(--v-violet);
  border-width: 2px;
  box-shadow: 0 12px 30px -8px rgba(76, 29, 149, .25);
}
.v-plan--featured::before {
  content: "Le plus populaire";
  position: absolute;
  top: -12px; left: 30px;
  background: var(--v-violet);
  color: var(--v-white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: .02em;
}
.v-plan h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.v-plan .v-plan-tag {
  font-size: 13px;
  color: var(--v-text-muted);
  margin-bottom: 22px;
}
.v-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
}
.v-plan-price .amt {
  font-family: 'DM Serif Display', serif;
  font-size: 54px;
  color: var(--v-violet);
  line-height: 1;
}
.v-plan-price .unit {
  font-size: 14px;
  color: var(--v-text-muted);
}
.v-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.v-plan-features li {
  font-size: 14.5px;
  color: var(--v-text);
  display: flex;
  align-items: start;
  gap: 10px;
}
.v-plan-features li::before {
  content: "✓";
  color: var(--v-violet);
  font-weight: 700;
  flex-shrink: 0;
}
.v-plan .v-btn { width: 100%; justify-content: center; }

/* ─── À propos ─── */
.v-story {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 56px 80px;
}
.v-story p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--v-text);
  margin-bottom: 22px;
}
.v-story p.lead {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  line-height: 1.4;
  color: var(--v-violet);
  margin-bottom: 36px;
}
.v-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 56px auto;
  padding: 0 56px;
}
.v-value {
  padding: 28px;
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: 18px;
}
.v-value h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--v-violet);
}
.v-value p { color: var(--v-text-muted); font-size: 14.5px; line-height: 1.6; }

/* ─── Contact infos ─── */
.v-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 56px 80px;
}
.v-contact-info {
  padding: 30px;
  background: var(--v-cream-warm);
  border-radius: 22px;
  height: max-content;
}
.v-contact-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 22px;
}
.v-contact-info h3:first-child { margin-top: 0; }
.v-contact-info p {
  color: var(--v-text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.v-contact-info a {
  color: var(--v-violet);
  font-weight: 500;
}

/* ═════════════════════════════════════════════════════════════════════════
   RESPONSIVE — mobile : sidebar devient top bar, floating bar reste
   ═════════════════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  :root { --v-topbar-h: 60px; }
  .v-topbar { padding: 0 18px; }
  .v-side-brand .v-petal-mini { width: 32px; height: 32px; }
  .v-side-brand .v-brandtext { font-size: 18px; }

  .v-floatbar {
    left: 12px;
    right: 12px;
    transform: none;
    border-radius: 18px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 6px;
  }
  .v-floatbar a { padding: 9px 14px; font-size: 13px; }

  .v-hero, .v-section, .v-cta-final, .v-page-head, .v-story, .v-values, .v-contact-grid {
    padding-left: 22px;
    padding-right: 22px;
  }
  .v-feats, .v-flow, .v-plans, .v-values, .v-contact-grid {
    grid-template-columns: 1fr;
  }
  .v-form-2col { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
