/* ============================================================
   Fetchy — Colour system
   Source of truth: charte graphique (IDML swatches + p.11)
     Bleu nuit  RGB 0 32 79     #00204f   (primary)
     Bleu noir  RGB 0 17 49     #001131
     Rose       RGB 231 54 74   #e7364a
     Orange     RGB 231 91 74   #e75b4a   (warm "terracotta")
     Jaune      RGB 240 183 116 #f0b774   (sand)
   Neutrals are navy-tinted so greys feel of-a-piece with the
   primary. Botanical green appears ONLY as a clinical status
   colour (nutrient within target) — never as brand chrome.
   ============================================================ */

:root {
  /* ---- Primitives : Navy (Bleu nuit) --------------------- */
  --navy-900: #00102e;
  --navy-800: #001131;
  --navy-700: #00204f;   /* brand primary */
  --navy-600: #0a325f;
  --navy-500: #1a4a7e;
  --navy-400: #3d6699;
  --navy-300: #7d97ba;
  --navy-200: #bcccde;
  --navy-100: #dde6f0;
  --navy-50:  #eef3f8;

  /* ---- Primitives : Coral / terracotta (Rose → Orange) --- */
  --coral-700: #b5283a;
  --coral-600: #cf2f43;
  --coral-500: #e7364a;  /* rose */
  --coral-400: #e75b4a;  /* orange — secondary */
  --coral-300: #f08576;
  --coral-200: #f6b4ab;
  --coral-100: #fbddd8;
  --coral-50:  #fdf0ed;

  /* ---- Primitives : Sand (Jaune) ------------------------- */
  --sand-700: #b07c34;
  --sand-600: #d29a47;
  --sand-500: #f0b774;   /* brand sand */
  --sand-400: #f4c890;
  --sand-300: #f7d8af;
  --sand-200: #fae8cf;
  --sand-100: #fcf2e3;
  --sand-50:  #fefaf3;

  /* ---- Primitives : warm off-white paper + neutrals ------ */
  --paper:      #faf6f0;
  --paper-deep: #f3ece1;
  --white:      #ffffff;

  --ink-900: #0c1a30;
  --ink-800: #16263f;
  --ink-700: #2b3b54;
  --ink-600: #44546d;
  --ink-500: #5f6e85;
  --ink-400: #8693a6;
  --ink-300: #b2bcca;
  --ink-200: #d6dde6;
  --ink-150: #e4e9ef;
  --ink-100: #eef1f6;
  --ink-50:  #f6f8fb;

  /* ---- Primitives : clinical status greens --------------- */
  --green-700: #1f6b4d;
  --green-600: #2f8a64;
  --green-500: #3f9c73;
  --green-100: #dcefe5;
  --green-50:  #eef7f1;

  /* ================= Semantic aliases ===================== */

  /* Brand */
  --brand-primary:        var(--navy-700);
  --brand-primary-hover:  var(--navy-800);
  --brand-primary-active: var(--navy-900);
  --brand-secondary:      var(--coral-400);
  --brand-secondary-hover:var(--coral-500);
  --brand-accent:         var(--sand-500);

  /* Surfaces */
  --surface-page:    var(--paper);
  --surface-card:    var(--white);
  --surface-raised:  var(--white);
  --surface-sunken:  var(--paper-deep);
  --surface-navy:    var(--navy-700);
  --surface-navy-deep: var(--navy-800);
  --surface-tint-coral: var(--coral-50);
  --surface-tint-sand:  var(--sand-50);
  --surface-tint-navy:  var(--navy-50);

  /* Text */
  --text-strong:  var(--ink-900);
  --text-body:    var(--ink-700);
  --text-muted:   var(--ink-500);
  --text-subtle:  var(--ink-400);
  --text-inverse: var(--paper);
  --text-on-navy: #e7eef6;
  --text-on-coral:#fff;
  --text-link:    var(--navy-600);
  --text-link-hover: var(--coral-500);

  /* Borders & dividers */
  --border-subtle:  var(--ink-100);
  --border-default: var(--ink-200);
  --border-strong:  var(--ink-300);
  --border-navy:    var(--navy-200);

  /* Status — clinical */
  --status-ok-fg:      var(--green-700);
  --status-ok-bg:      var(--green-50);
  --status-ok-border:  var(--green-100);
  --status-ok-solid:   var(--green-600);

  --status-warn-fg:    var(--sand-700);
  --status-warn-bg:    var(--sand-50);
  --status-warn-border:var(--sand-200);
  --status-warn-solid: var(--sand-600);

  --status-alert-fg:     var(--coral-700);
  --status-alert-bg:     var(--coral-50);
  --status-alert-border: var(--coral-100);
  --status-alert-solid:  var(--coral-500);

  --status-info-fg:     var(--navy-700);
  --status-info-bg:     var(--navy-50);
  --status-info-border: var(--navy-100);

  /* Focus */
  --focus-ring: 0 0 0 3px rgba(231, 91, 74, 0.35);

  /* Signature gradients */
  --gradient-coral:  linear-gradient(90deg, var(--coral-500) 0%, var(--coral-400) 100%);
  --gradient-sunset: linear-gradient(110deg, var(--coral-500) 0%, var(--coral-400) 48%, var(--sand-500) 100%);
  --gradient-navy:   linear-gradient(160deg, var(--navy-600) 0%, var(--navy-800) 100%);

  /* ---- Typography ---------------------------------------- */
  --font-display: "Nunito", "Segoe UI", system-ui, sans-serif;
  --font-ui:      "Nunito", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Open Sans", "Nunito", "Segoe UI", system-ui, sans-serif;
  --font-mono:    ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;

  --fw-regular:   400;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;

  /* ---- Spacing (4px base) -------------------------------- */
  --space-0:  0;
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.5rem;
  --space-6:  2rem;
  --space-7:  2.5rem;
  --space-8:  3rem;
  --space-9:  4rem;
  --space-10: 5rem;

  /* ---- Radii --------------------------------------------- */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-pill: 999px;

  /* ---- Shadows (warm-navy tint, soft) -------------------- */
  --shadow-xs: 0 1px 2px rgba(0, 32, 79, 0.06);
  --shadow-sm: 0 1px 3px rgba(0, 32, 79, 0.07), 0 1px 2px rgba(0, 32, 79, 0.05);
  --shadow-md: 0 4px 14px rgba(0, 32, 79, 0.08), 0 2px 4px rgba(0, 32, 79, 0.05);
  --shadow-lg: 0 12px 30px rgba(0, 32, 79, 0.10), 0 4px 8px rgba(0, 32, 79, 0.05);
  --shadow-xl: 0 24px 60px rgba(0, 32, 79, 0.14), 0 8px 16px rgba(0, 32, 79, 0.06);
  --shadow-coral: 0 10px 24px rgba(231, 91, 74, 0.28);
  --shadow-inset: inset 0 1px 2px rgba(0, 32, 79, 0.06);

  /* ---- Motion -------------------------------------------- */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:   120ms;
  --dur-base:   200ms;
  --dur-slow:   320ms;

  /* ---- Layout -------------------------------------------- */
  --container-sm:  640px;
  --container-md:  820px;
  --container-lg:  1120px;
  --container-xl:  1280px;

  /* ---- Legacy aliases (for existing components) ---------- */
  --fg: var(--text-strong);
  --fg-muted: var(--text-muted);
  --bg: var(--surface-page);
  --brand: var(--coral-500);
  --brand-hover: var(--coral-600);
  --border: var(--border-subtle);
  --border-strong: var(--border-strong);
  --success: var(--green-500);
  --warning: var(--sand-600);
  --danger: var(--coral-600);
  --info-soft: rgba(0, 32, 79, .08);
  --success-soft: var(--status-ok-bg);
  --warning-soft: var(--status-warn-bg);
  --danger-soft: var(--status-alert-bg);
  --neutral-50:  var(--ink-50);
  --neutral-100: var(--ink-100);
  --neutral-200: var(--ink-200);
  --neutral-300: var(--ink-300);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-strong);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-sm); }

/* ============================================================
   Layout
   ============================================================ */
.vt-shell { max-width: var(--container-lg); margin: 0 auto; padding: 0 24px; }
.vt-shell-narrow { max-width: var(--container-md); margin: 0 auto; padding: 0 24px; }
section[id] { scroll-margin-top: 84px; }

/* ============================================================
   Sticky Header
   ============================================================ */
.vt-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 246, 240, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.vt-header-inner {
  display: flex; align-items: center; gap: 20px; height: 72px;
}
.vt-header .brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-strong);
}
.vt-header .brand img { height: 30px; }
.vt-header .brand .wm {
  font-family: var(--font-display); font-weight: 800;
  font-size: 26px; line-height: 1;
}
.vt-header nav { display: flex; gap: 4px; margin-left: 8px; }
.vt-header nav a {
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-family: var(--font-ui); font-weight: 700;
  font-size: 15px; color: var(--text-body);
  text-decoration: none; transition: all .18s var(--ease-out);
}
.vt-header nav a:hover { color: var(--coral-500); background: var(--navy-50); }
.vt-header .right { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* Mobile burger */
.vt-mobile-burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; border-radius: var(--radius-pill);
  align-items: center; justify-content: center;
  color: var(--navy-700); padding: 6px;
}
.vt-mobile-burger:hover { background: var(--navy-50); }

/* Mobile drawer */
.vt-mobile-drawer {
  position: fixed; top: 0; right: 0; width: min(340px, 88vw); height: 100vh;
  background: var(--surface-card); z-index: 60; box-shadow: -8px 0 30px rgba(0,0,0,.15);
  transform: translateX(100%); transition: transform .28s var(--ease-out);
  overflow-y: auto; padding: 22px;
}
.vt-mobile-drawer.open { transform: translateX(0); }
.vt-mobile-drawer .head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px;
}
.vt-mobile-drawer a {
  display: block; padding: 13px 4px; font-family: var(--font-ui);
  font-weight: 700; font-size: 17px;
  text-decoration: none; color: var(--text-strong); border-bottom: 1px solid var(--border-subtle);
}
.vt-mobile-drawer-overlay {
  position: fixed; inset: 0; background: rgba(12,26,48,.45); z-index: 55;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.vt-mobile-drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   Buttons
   ============================================================ */
.vt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 50px; padding: 0 26px; border-radius: var(--radius-pill);
  font-family: var(--font-ui); font-weight: 700; font-size: 16px; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base),
    background var(--dur-base), border-color var(--dur-base), filter var(--dur-base), color var(--dur-base);
  text-decoration: none;
}
.vt-btn:active { transform: translateY(1px) scale(.985); }
.vt-btn-call { background: var(--gradient-coral); color: #fff; box-shadow: var(--shadow-coral); }
.vt-btn-call:hover { filter: brightness(1.04); box-shadow: var(--shadow-lg); }
.vt-btn-outline { background: transparent; color: var(--navy-700); border-color: var(--navy-200); }
.vt-btn-outline:hover { border-color: var(--navy-700); background: var(--navy-50); }
.vt-btn-ghost { background: transparent; color: var(--navy-700); }
.vt-btn-ghost:hover { background: var(--info-soft); }
.vt-btn-dark { background: var(--navy-700); color: #fff; box-shadow: var(--shadow-sm); }
.vt-btn-dark:hover { background: var(--navy-800); box-shadow: var(--shadow-md); }
.vt-btn-lg { height: 56px; padding: 0 32px; font-size: 18px; }
.vt-btn-sm { height: 42px; padding: 0 20px; font-size: 15px; }
.vt-btn-ghost-white { background: #fff; color: var(--coral-600); }
.vt-btn-ghost-white:hover { filter: brightness(.97); box-shadow: var(--shadow-md); }
.vt-btn-ghost-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.34); }
.vt-btn-ghost-light:hover { background: rgba(255,255,255,.24); }

/* ============================================================
   Eyebrow
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); text-transform: uppercase;
  letter-spacing: .14em; font-size: 12px; font-weight: 800;
  color: var(--coral-500);
}

/* ============================================================
   Hero
   ============================================================ */
.vt-hero { position: relative; overflow: hidden; padding: 40px 0 24px; }
.vt-hero-mesh-bg {
  background:
    radial-gradient(70% 80% at 12% 18%, var(--navy-50) 0%, transparent 60%),
    radial-gradient(60% 70% at 95% 25%, var(--coral-50) 0%, transparent 65%),
    radial-gradient(75% 80% at 85% 92%, var(--sand-100) 0%, transparent 65%),
    radial-gradient(55% 65% at 18% 95%, var(--green-50) 0%, transparent 60%),
    var(--paper-deep);
  color: var(--text-body);
  background-size: 180% 180%, 200% 200%, 220% 220%, 180% 180%, 100% 100%;
  animation: meshDrift 32s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%; }
  50%  { background-position: 40% 30%, 60% 40%, 80% 70%, 20% 60%, 0% 0%; }
  100% { background-position: 70% 50%, 30% 70%, 50% 50%, 50% 30%, 0% 0%; }
}
.vt-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 1.7rem + 4.6vw, 4.2rem); line-height: 1.02;
  letter-spacing: -.02em; margin: 18px 0 18px; max-width: 16ch;
}
.vt-hero h1 .accent { color: var(--coral-500); }
.vt-hero .lede {
  font-size: clamp(17px, 16px + .4vw, 20px); max-width: 40ch; margin: 0 0 28px;
  color: var(--text-muted);
}
.vt-hero .hero-perks {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 22px;
  font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: var(--text-subtle);
}
.vt-hero .hero-perks span { display: flex; align-items: center; gap: 8px; }

/* ============================================================
   Section
   ============================================================ */
.vt-section { padding: 84px 0; }
.vt-section h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 1.4rem + 3vw, 2.7rem); line-height: 1.05;
  letter-spacing: -.02em; margin: 12px 0 12px;
}
.vt-section.dark { background: var(--surface-navy); color: var(--text-on-navy); }
.vt-section.dark p, .vt-section.dark .muted { color: rgba(231,238,246,.7); }
.vt-section.dark .eyebrow { color: var(--sand-400); }
.vt-section.cream { background: var(--surface-sunken); }
.vt-section.tight { padding: 56px 0; }

.sec-head { max-width: 40ch; margin: 0 auto 38px; text-align: center; }
.sec-head h2 { margin: 12px 0 12px; }
.sec-head p { color: var(--text-muted); font-size: 18px; }

/* ============================================================
   Trust strip (with real logos)
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface-card); padding: 26px 0 30px;
}
.trust-strip__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  text-align: center; margin-bottom: 22px; max-width: 760px; margin-left: auto; margin-right: auto;
}
.trust-strip__n {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.2rem); color: var(--navy-700); line-height: 1;
}
.trust-strip__l {
  font-family: var(--font-ui); font-size: 12.5px; font-weight: 700; color: var(--text-muted); margin-top: 6px;
}
.trust-strip__meta {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center; margin-bottom: 26px;
}
.trust-strip__born {
  font-family: var(--font-ui); font-weight: 800; font-size: 14px; color: var(--text-strong);
}
.trust-strip__std {
  font-family: var(--font-ui); font-weight: 700; font-size: 13px; color: var(--sand-700);
}
.trust-strip__divider { height: 1px; background: var(--border-subtle); margin: 0 0 22px; }
.trust-strip__label {
  text-align: center; font-family: var(--font-ui); font-weight: 700;
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-subtle); margin-bottom: 18px;
}
.trust-strip__logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 20px 30px;
}
.trust-strip__logo-item {
  height: 46px; display: flex; align-items: center; justify-content: center;
  filter: grayscale(1); opacity: .56;
  transition: filter var(--dur-base) var(--ease-standard), opacity var(--dur-base) var(--ease-standard);
}
.trust-strip__logo-item img {
  height: 100%; width: auto; max-width: 150px; object-fit: contain; display: block;
}
.trust-strip__logo-item:hover { filter: none; opacity: 1; }

/* ============================================================
   Stats strip (dark navy — animated)
   ============================================================ */
.vt-trust-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
}
.vt-trust-grid .vt-stat {
  position: relative; padding: 8px 0 8px 32px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.vt-trust-grid.in .vt-stat { opacity: 1; transform: none; }
.vt-trust-grid .vt-stat::before {
  content: ''; position: absolute; left: 0; top: 14px; bottom: 14px;
  width: 1px; background: rgba(255,255,255,.12);
}
.vt-trust-grid .vt-stat:first-child { padding-left: 0; }
.vt-trust-grid .vt-stat:first-child::before { display: none; }
.vt-trust-grid .vt-stat .ic {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.07); margin-bottom: 14px;
}
.vt-trust-grid .vt-stat.acc-mint .ic { color: var(--green-100); }
.vt-trust-grid .vt-stat.acc-sky .ic { color: var(--navy-200); }
.vt-trust-grid .vt-stat.acc-peach .ic { color: var(--sand-300); }
.vt-trust-grid .vt-stat .v {
  display: flex; align-items: baseline; gap: 4px;
  color: #fff;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(52px, 5vw, 68px); line-height: 1;
}
.vt-trust-grid .vt-stat .v .unit { font-size: .42em; opacity: .85; }
.vt-trust-grid .vt-stat .tick {
  width: 32px; height: 3px; border-radius: var(--radius-pill); margin: 12px 0 10px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
  transition-delay: calc(var(--d, 0ms) + 250ms);
}
.vt-trust-grid.in .vt-stat .tick { transform: scaleX(1); }
.vt-trust-grid .vt-stat.acc-mint .tick { background: var(--green-100); }
.vt-trust-grid .vt-stat.acc-sky .tick { background: var(--navy-200); }
.vt-trust-grid .vt-stat.acc-peach .tick { background: var(--sand-300); }
.vt-trust-grid .vt-stat .l { font-size: 13px; color: rgba(231,238,246,.6); margin-top: 0; }

/* ============================================================
   Stat cards (Problem section)
   ============================================================ */
.statcards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.statcard {
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
}
.statcard__big {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 2rem + 4vw, 3.6rem); line-height: 1; letter-spacing: -.03em;
}
.statcard--a .statcard__big { color: var(--navy-700); }
.statcard--b .statcard__big { color: var(--coral-500); }
.statcard--c .statcard__big { color: var(--sand-700); }
.statcard__lead { font-family: var(--font-ui); font-weight: 800; font-size: 17px; color: var(--text-strong); margin: 14px 0 8px; }
.statcard__body { font-size: 14.5px; color: var(--text-muted); }
.statcard__src { margin-top: 14px; font-size: 12px; color: var(--text-subtle); font-style: italic; }

/* ============================================================
   Steps (How it works — 3-step with mini UI crops)
   ============================================================ */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; counter-reset: s; }
.step {
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: 0; overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.step__crop { background: var(--surface-sunken); border-bottom: 1px solid var(--border-subtle); padding: 16px; min-height: 180px; display: flex; align-items: center; justify-content: center; }
.step__txt { padding: 20px 22px 24px; }
.step__n {
  counter-increment: s; width: 40px; height: 40px; border-radius: var(--radius-pill);
  background: var(--surface-tint-navy); color: var(--navy-700); font-family: var(--font-display);
  font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 17px; margin-bottom: 14px;
}
.step__n::before { content: counter(s, decimal-leading-zero); }
.step h3 { font-size: 20px; margin-bottom: 7px; }
.step p { color: var(--text-muted); font-size: 15px; }

/* mini UI crops */
.crop-profile { display: flex; flex-direction: column; gap: 9px; }
.crop-field {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
  padding: 8px 11px; font-family: var(--font-ui); font-size: 12.5px;
}
.crop-field .k { color: var(--text-muted); font-weight: 700; }
.crop-field .v { color: var(--text-strong); font-weight: 800; }
.crop-be {
  background: var(--navy-700); color: #fff; border-radius: var(--radius-sm); padding: 10px 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.crop-be .k { font-family: var(--font-ui); font-size: 11px; font-weight: 700; color: rgba(231,238,246,.7); text-transform: uppercase; letter-spacing: .08em; }
.crop-be .v { font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.crop-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.crop-chip {
  font-family: var(--font-ui); font-weight: 700; font-size: 11px;
  padding: 5px 10px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle); background: var(--surface-card);
}
.crop-chip--ok { background: var(--status-ok-bg); border-color: var(--status-ok-border); color: var(--status-ok-fg); }
.crop-chip--warn { background: var(--status-warn-bg); border-color: var(--status-warn-border); color: var(--status-warn-fg); }
.crop-send { display: flex; flex-direction: column; gap: 9px; align-items: center; text-align: center; padding: 6px 0; }
.crop-pdf {
  width: 92px; height: 116px; background: #fff; border: 1px solid var(--border-default); border-radius: 6px;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.crop-pdf::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: var(--gradient-coral); }
.crop-pdf__lines { padding: 12px 11px; display: flex; flex-direction: column; gap: 5px; }
.crop-pdf__lines i { display: block; height: 4px; border-radius: 3px; background: var(--ink-150); }
.crop-pdf__lines i.t { width: 60%; height: 6px; background: var(--navy-300); }
.crop-pdf__lines i.s { width: 85%; }
.crop-pdf__lines i.m { width: 70%; }

/* ============================================================
   Feature grid
   ============================================================ */
.fgrid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.fcell {
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.fcell:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.fcell__icon {
  width: 50px; height: 50px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 16px;
}
.fcell h3 { font-size: 20px; margin-bottom: 8px; }
.fcell p { color: var(--text-muted); font-size: 15px; }
.fcell__meta {
  margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;
}
.fcell__tag {
  font-family: var(--font-ui); font-weight: 700; font-size: 11px;
  padding: 5px 10px; border-radius: var(--radius-pill);
  background: var(--ink-50); border: 1px solid var(--border-subtle); color: var(--text-muted);
}

/* ============================================================
   Prescription showcase
   ============================================================ */
.showcase { background: var(--surface-sunken); }
.showcase__frame {
  background: var(--ink-100); border-radius: var(--radius-2xl); padding: 28px 16px; overflow: hidden;
  box-shadow: var(--shadow-inset); display: flex; justify-content: center;
}
.showcase__caption { text-align: center; max-width: 44ch; margin: 22px auto 0; color: var(--text-muted); font-size: 15px; }

/* ============================================================
   Credibility (navy section)
   ============================================================ */
.cred { background: var(--surface-navy); color: var(--text-on-navy); }
.cred h2 { color: #fff; font-size: clamp(1.9rem, 1.4rem + 3vw, 2.6rem); margin: 12px 0 14px; }
.cred__lead { color: rgba(231,238,246,.82); font-size: 18px; max-width: 52ch; }
.cred__grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 34px 0 30px; }
.cred__card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 22px 22px 24px;
}
.cred__n { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: #fff; line-height: 1; }
.cred__ct { font-family: var(--font-ui); font-weight: 800; font-size: 15px; color: #fff; margin: 12px 0 6px; }
.cred__cb { color: rgba(231,238,246,.72); font-size: 14px; }

/* ============================================================
   Cards
   ============================================================ */
.vt-card {
  background: var(--surface-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle); padding: 28px;
  transition: all .22s var(--ease-out);
}
.vt-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.vt-card .num {
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  color: var(--coral-500); margin-bottom: 8px;
}
.vt-card h3 { margin: 0 0 8px; font-size: 22px; line-height: 1.2; }
.vt-card p { margin: 0; color: var(--text-muted); font-size: 14px; }

/* ============================================================
   Service cards
   ============================================================ */
.svc { text-align: center; padding: 8px; }
.svc .ic {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--info-soft); color: var(--navy-700);
  display: inline-grid; place-items: center; margin-bottom: 14px;
}
.svc .ic svg { width: 24px; height: 24px; }
.svc h4 { margin: 0 0 8px; font-size: 18px; }
.svc p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.55; }

/* ============================================================
   Pricing tiers
   ============================================================ */
.ptiers { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: stretch; }
.ptier {
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl);
  padding: 28px 26px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.ptier--featured { border: 1.5px solid var(--coral-300); box-shadow: var(--shadow-lg); position: relative; }
.ptier__flag {
  position: absolute; top: -13px; left: 26px; background: var(--gradient-coral); color: #fff;
  font-family: var(--font-ui); font-weight: 800; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill); box-shadow: var(--shadow-coral);
}
.ptier__name { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--text-strong); }
.ptier__for { font-family: var(--font-ui); font-size: 13.5px; color: var(--text-muted); margin-top: 4px; min-height: 38px; }
.ptier__price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 4px; }
.ptier__amt {
  font-family: var(--font-display); font-weight: 800;
  font-size: 40px; color: var(--navy-700); letter-spacing: -.02em;
}
.ptier__per { font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--text-muted); }
.ptier__sub { font-size: 13px; color: var(--text-subtle); min-height: 20px; }
.ptier__cta { margin: 22px 0; }
.ptier__feats { display: flex; flex-direction: column; gap: 11px; margin-top: 4px; }
.ptier__feat { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-body); }
.ptier__feat svg { flex-shrink: 0; color: var(--status-ok-solid); margin-top: 2px; }
.pricing__foot { text-align: center; margin-top: 26px; font-size: 15px; color: var(--text-muted); }

/* Arginine partner banner */
.arg {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px;
  align-items: center; padding: 24px 28px;
  background: var(--surface-sunken); border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}
.arg .badge-ic {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--info-soft); color: var(--navy-700);
  display: grid; place-items: center;
}
.arg .badge-ic svg { width: 24px; height: 24px; }
.arg h3 { margin: 0 0 4px; font-size: 18px; }
.arg p { margin: 0; font-size: 14px; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: var(--container-md); margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faqitem { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; }
.faqitem__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%;
  padding: 20px 22px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-ui); font-weight: 800; font-size: 16.5px; color: var(--text-strong);
}
.faqitem__q:hover { background: var(--navy-50); }
.faqitem__icon { flex-shrink: 0; color: var(--coral-500); transition: transform var(--dur-base) var(--ease-standard); }
.faqitem.open .faqitem__icon { transform: rotate(45deg); }
.faqitem__a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-standard); }
.faqitem.open .faqitem__a { max-height: 420px; }
.faqitem__inner { padding: 0 22px 22px; color: var(--text-muted); font-size: 15.5px; line-height: 1.65; }
.faqitem__inner a { color: var(--text-link); font-weight: 700; }

/* ============================================================
   CTA band
   ============================================================ */
.ctaband {
  background: var(--gradient-sunset); border-radius: var(--radius-2xl); padding: 48px 28px; text-align: center;
  color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.ctaband h2 { color: #fff; font-size: clamp(1.9rem, 1.5rem + 3vw, 2.7rem); margin-bottom: 12px; }
.ctaband p { color: rgba(255,255,255,.92); margin-bottom: 26px; font-size: 17px; }
.ctaband .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Student form
   ============================================================ */
.stucard {
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); padding: 28px 26px 30px;
}
.stuform { display: flex; flex-direction: column; gap: 18px; }
.sturow { display: grid; grid-template-columns: 1fr; gap: 18px; }
.stuupload {
  border: 1.5px dashed var(--border-strong); border-radius: var(--radius-md); background: var(--ink-50);
  padding: 22px 18px; text-align: center; cursor: pointer; transition: border-color var(--dur-base), background var(--dur-base);
}
.stuupload:hover { border-color: var(--coral-400); background: var(--coral-50); }
.stuupload.has-file { border-style: solid; border-color: var(--status-ok-solid); background: var(--status-ok-bg); }
.stuupload.err { border-color: var(--coral-500); background: var(--coral-50); }
.stuupload__label {
  font-family: var(--font-ui); font-weight: 800; font-size: 14.5px; color: var(--text-strong);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.stuupload__hint { font-size: 13px; color: var(--text-muted); margin-top: 7px; }
.stuupload svg { color: var(--navy-400); }
.stuupload.has-file svg { color: var(--status-ok-solid); }
.stu-success { text-align: center; padding: 12px 0; }
.stu-success__ic {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--status-ok-bg); border: 1px solid var(--status-ok-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--status-ok-solid);
}
.stu-success h2 { font-size: 24px; margin-bottom: 12px; }
.stu-success p { color: var(--text-muted); font-size: 16px; max-width: 40ch; margin: 0 auto 8px; }
.stufoot-note { text-align: center; margin-top: 22px; font-size: 13.5px; color: var(--text-subtle); }

/* ============================================================
   Form fields
   ============================================================ */
.field-lbl {
  display: block; font-family: var(--font-ui); font-size: 12px; letter-spacing: .06em;
  color: var(--text-muted); font-weight: 700; margin-bottom: 6px; margin-top: 14px;
  text-align: left;
}
.field {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border-default); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 15px;
  background: #fff; color: var(--text-strong); transition: all .18s;
}
.field:focus { outline: 2px solid var(--coral-400); outline-offset: 1px; border-color: var(--coral-400); }
select.field { -webkit-appearance: auto; }
textarea.field { resize: vertical; }

/* ============================================================
   Recipe builder mock
   ============================================================ */
.rb-mock {
  background: var(--surface-card); border: 1px solid var(--border-default);
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl);
}
.rb-mock__bar {
  display: flex; align-items: center; gap: 14px; padding: 12px 16px;
  background: var(--ink-50); border-bottom: 1px solid var(--border-subtle);
}
.rb-mock__dots { display: flex; gap: 7px; }
.rb-mock__dots span { width: 11px; height: 11px; border-radius: 999px; display: block; }
.rb-mock__url {
  flex: 1; display: flex; align-items: center; gap: 8px; height: 30px; padding: 0 14px;
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: 12.5px; color: var(--text-muted); max-width: 320px;
}
.rb-mock__body { padding: 18px; }
.rb-mock__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.rb-mock__avatar {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--gradient-sunset);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.rb-mock__autopilot {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 13px;
  border-radius: var(--radius-pill); background: var(--status-ok-bg); border: 1px solid var(--status-ok-border);
  font-family: var(--font-ui); font-weight: 800; font-size: 12.5px; color: var(--status-ok-fg);
}
.rb-mock__toggle {
  width: 30px; height: 17px; border-radius: 999px; background: var(--status-ok-solid);
  position: relative; display: inline-block;
}
.rb-mock__toggle::after {
  content: ""; position: absolute; top: 2px; right: 2px;
  width: 13px; height: 13px; border-radius: 999px; background: #fff;
}
.rb-mock__rows { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.rb-mock__row {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-md); border: 1px solid transparent;
}
.rb-mock__row--menager { background: var(--status-ok-bg); border-color: var(--status-ok-border); }
.rb-mock__row--industriel { background: var(--surface-tint-navy); border-color: var(--navy-100); }
.rb-mock__row--complement { background: var(--sand-50); border-color: var(--sand-200); }
.rb-mock__iname {
  font-family: var(--font-body); font-size: 13.5px; color: var(--text-strong); font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rb-mock__qty {
  font-family: var(--font-ui); font-weight: 800; font-size: 14px; color: var(--coral-500);
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.rb-mock__meters {
  background: var(--surface-sunken); border-top: 1px solid var(--border-subtle);
  margin: 0 -18px -18px; padding: 16px 18px 18px;
}
.rb-mock__badge-ok {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 800; color: var(--status-ok-fg);
  background: var(--status-ok-bg); border: 1px solid var(--status-ok-border);
  border-radius: var(--radius-pill); padding: 4px 10px;
}
.rb-mock__badge-ok::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--status-ok-solid);
}

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter-card {
  padding: 48px; text-align: center;
  background: linear-gradient(135deg, var(--green-50), var(--navy-50) 60%, var(--coral-50));
  border-radius: var(--radius-lg);
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-card p {
  font-style: italic; color: var(--text-body); font-size: 15px; line-height: 1.6;
  margin: 0 0 16px;
}
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 999px; flex-shrink: 0;
}

/* ============================================================
   Contact (dark)
   ============================================================ */
.vt-section.dark input.field,
.vt-section.dark textarea.field {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}
.vt-section.dark input.field::placeholder,
.vt-section.dark textarea.field::placeholder { color: rgba(255,255,255,.4); }
.vt-section.dark input.field:focus,
.vt-section.dark textarea.field:focus { border-color: var(--coral-400); outline-color: var(--coral-400); }

/* ============================================================
   Team
   ============================================================ */
.tm { text-align: center; }
.tm .ph {
  width: 150px; height: 150px; border-radius: 999px; margin: 0 auto 16px;
  background: var(--gradient-sunset); overflow: hidden;
}
.tm .ph img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }
.tm h4 { margin: 0 0 4px; font-size: 18px; }
.tm .job { font-size: 14px; color: var(--text-muted); margin: 0 0 12px; }
.tm .lk {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--ink-100); color: var(--text-body);
  transition: all .18s var(--ease-out);
}
.tm .lk:hover { background: var(--coral-500); color: #fff; }
.tm .lk svg { width: 16px; height: 16px; }

/* ============================================================
   Footer
   ============================================================ */
.foot {
  background: var(--surface-navy-deep); color: var(--text-on-navy); padding: 48px 0 30px;
}
.foot__logo { height: 30px; width: auto; margin-bottom: 18px; }
.foot__top { display: grid; grid-template-columns: 1fr; gap: 30px; }
.foot__about { color: rgba(231,238,246,.74); font-size: 14px; max-width: 32ch; line-height: 1.6; }
.foot__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 16px; }
.foot__col h5 {
  font-family: var(--font-ui); font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(231,238,246,.55); margin: 0 0 12px;
}
.foot__col a {
  display: block; color: rgba(231,238,246,.9); font-size: 14px; padding: 5px 0;
  transition: color var(--dur-base);
}
.foot__col a:hover { color: var(--coral-300); }
.foot__bottom {
  margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column; gap: 14px;
}
.foot__legalrow { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.foot__legalrow a { font-size: 13px; color: rgba(231,238,246,.7); cursor: pointer; }
.foot__legalrow a:hover { color: #fff; }
.foot__copy { font-size: 12.5px; color: rgba(231,238,246,.5); line-height: 1.6; }

/* ============================================================
   Demo shot
   ============================================================ */
.demo-shot {
  background: var(--surface-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle); overflow: hidden; box-shadow: var(--shadow-lg);
}
.demo-bar {
  display: flex; gap: 6px; padding: 10px 14px;
  border-bottom: 1px solid var(--border-subtle);
}
.demo-bar span { width: 10px; height: 10px; border-radius: 999px; }
.demo-shot .placeholder {
  height: 340px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ink-50), var(--ink-100));
  color: var(--text-muted); font-size: 14px;
}

/* ============================================================
   Paw list
   ============================================================ */
.paw-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.paw-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.paw-list li svg { width: 18px; height: 18px; color: var(--coral-500); flex-shrink: 0; }

/* ============================================================
   Legal pages
   ============================================================ */
.legal-block { margin-bottom: 40px; }
.legal-block h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 28px; margin: 32px 0 16px; color: var(--text-strong);
}
.legal-block h4 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; color: var(--text-strong); }
.legal-block p { margin: 8px 0; line-height: 1.7; font-size: 14.5px; color: var(--text-muted); }
.legal-block ul { list-style: none; padding: 0; margin: 8px 0; }
.legal-block li {
  padding: 6px 0 6px 20px; position: relative; font-size: 14.5px;
  color: var(--text-muted); line-height: 1.6;
}
.legal-block li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 999px; background: var(--coral-500);
}
.legal-block a { color: var(--text-link); font-weight: 700; }

/* ============================================================
   Modal
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(12, 26, 48, .55);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 20px; overflow-y: auto;
  animation: modalFadeIn .2s var(--ease-out);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-box {
  background: var(--surface-card); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); width: 100%; max-width: 560px;
  padding: 32px 28px; position: relative; margin: auto 0;
  animation: modalSlideIn .25s var(--ease-out);
}
.modal-box--wide { max-width: 820px; }
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: var(--radius-pill);
  background: var(--ink-50); border: 1px solid var(--border-subtle);
  cursor: pointer; display: grid; place-items: center;
  color: var(--text-body); transition: all .15s;
}
.modal-close:hover { background: var(--ink-100); color: var(--text-strong); }

/* ============================================================
   Utility classes
   ============================================================ */
.tc { text-align: center; }
.muted { color: var(--text-muted); }
.w100 { width: 100%; justify-content: center; }
.fx { display: flex; }
.fx.col { flex-direction: column; }
.fx.wrap { flex-wrap: wrap; }
.fx.ac { align-items: center; }
.fx.jb { justify-content: space-between; }
.gap8 { gap: 8px; }
.gap10 { gap: 10px; }
.gap12 { gap: 12px; }
.gap14 { gap: 14px; }
.gap16 { gap: 16px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .vt-header nav { display: none; }
  .vt-mobile-burger { display: inline-flex; }
}

@media (max-width: 820px) {
  .vt-shell { padding: 0 20px; }
  .vt-section { padding: 56px 0; }
  .vt-hero .vt-shell { grid-template-columns: 1fr !important; }
  .grid2 { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  .grid4 { grid-template-columns: 1fr; }
  .vt-trust-grid { grid-template-columns: 1fr 1fr; gap: 8px 0; }
  .vt-trust-grid .vt-stat:nth-child(3) { padding-left: 0; }
  .vt-trust-grid .vt-stat:nth-child(3)::before { display: none; }
  .vt-btn-lg { width: 100%; }
  .arg { grid-template-columns: 1fr; text-align: center; }
  .arg .badge-ic { margin: 0 auto; }
  .arg .vt-btn { width: 100%; justify-content: center; }
  .trust-strip__stats { grid-template-columns: 1fr; gap: 20px; }
  .rb-mock__url { display: none; }
  .modal-overlay { padding: 20px 12px; }
  .modal-box { padding: 24px 20px; }
  .trust-strip__logos {
    flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; gap: 26px;
    padding: 4px 2px 14px; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .trust-strip__logos::-webkit-scrollbar { display: none; }
  .trust-strip__logo-item { height: 42px; flex: 0 0 auto; scroll-snap-align: center; opacity: .68; }
}

@media (max-width: 480px) {
  .vt-trust-grid { grid-template-columns: 1fr; }
  .vt-trust-grid .vt-stat { padding-left: 0; }
  .vt-trust-grid .vt-stat::before { display: none; }
}

@media (min-width: 700px) {
  .statcards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .fgrid { grid-template-columns: repeat(2, 1fr); }
  .cred__grid { grid-template-columns: repeat(3, 1fr); }
  .sturow--2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 880px) {
  .vt-shell { padding: 0 48px; }
  .vt-section { padding: 84px 0; }
  .ptiers { grid-template-columns: repeat(3, 1fr); }
  .ptiers .ptier--featured { transform: translateY(-8px); }
  .foot__top { grid-template-columns: 1.6fr 1fr 1fr; }
  .trust-strip__stats { margin-bottom: 26px; }
}

@media (min-width: 1024px) {
  .fgrid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   Prescription document (Showcase)
   ============================================================ */
.rx-doc {
  background: #fff; border-radius: var(--radius-lg); width: 300px;
  box-shadow: 0 2px 16px rgba(0,0,0,.10); overflow: hidden; font-size: 12px;
  color: var(--text-strong); line-height: 1.5;
}
.rx-doc__bar {
  height: 6px;
  background: linear-gradient(90deg, var(--coral-500), var(--coral-400));
}
.rx-doc__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px 0;
}
.rx-doc__logo {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--navy-700);
}
.rx-doc__ref {
  font-family: var(--font-mono, monospace); font-size: 10px; color: var(--text-muted);
}
.rx-doc__block { padding: 8px 18px 0; }
.rx-doc__label {
  font-family: var(--font-ui); font-weight: 800; font-size: 9px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted);
  margin-bottom: 2px;
}
.rx-doc__value { font-size: 12px; }
.rx-doc__value--muted { color: var(--text-muted); font-size: 11px; }
.rx-doc__narrative {
  padding: 10px 18px; font-size: 11px; color: var(--text-muted);
  border-top: 1px solid var(--border-subtle); margin-top: 10px;
}
.rx-doc__table { padding: 0 18px 10px; }
.rx-doc__thead {
  display: flex; justify-content: space-between;
  font-family: var(--font-ui); font-weight: 800; font-size: 10px;
  text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted);
  padding: 6px 0; border-bottom: 1px solid var(--border-subtle);
}
.rx-doc__row {
  display: flex; justify-content: space-between; padding: 4px 0;
  font-size: 11px; border-bottom: 1px solid var(--ink-50, #f5f5f5);
}
.rx-doc__summary { padding: 8px 18px; }
.rx-doc__nutrients {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}
.rx-doc__nutrients span {
  font-family: var(--font-ui); font-weight: 700; font-size: 10px;
  background: var(--ink-50, #f5f5f5); padding: 3px 8px; border-radius: 99px;
  color: var(--text-strong);
}
.rx-doc__footer {
  padding: 10px 18px; font-size: 9px; color: var(--text-muted);
  text-align: center; border-top: 1px solid var(--border-subtle);
}

/* ============================================================
   Testimonial slideshow
   ============================================================ */
.tslide {
  display: flex; align-items: stretch; gap: 12px;
}
.tslide__arrow {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: 99px; width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center; cursor: pointer;
  color: var(--text-muted); transition: all .15s;
  align-self: center;
}
.tslide__arrow:hover { background: var(--ink-100); color: var(--text-strong); }
.tslide__dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 22px;
}
.tslide__dot {
  width: 8px; height: 8px; border-radius: 99px; border: 0;
  background: var(--ink-200); cursor: pointer; padding: 0;
  transition: all .2s;
}
.tslide__dot--active { background: var(--coral-400); width: 22px; }

.tgrid {
  display: grid; grid-template-columns: 1fr; gap: 20px; flex: 1; min-width: 0;
}
.tcard {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 26px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.tcard__text {
  font-style: italic; color: var(--fg); font-size: 15px;
  line-height: 1.6; margin: 0 0 20px;
}
.tcard__author {
  display: flex; align-items: center; gap: 12px;
}
.tcard__avatar {
  width: 36px; height: 36px; border-radius: 99px;
  background: var(--navy-100); color: var(--navy-700);
  font-family: var(--font-ui); font-weight: 800; font-size: 14px;
  display: grid; place-items: center; flex-shrink: 0;
}
.tcard__name {
  font-family: var(--font-ui); font-weight: 700; font-size: 13px;
  color: var(--text-strong);
}
.tcard__role {
  font-size: 12px; color: var(--text-muted);
}
.tcard__clinic {
  font-size: 11px; color: var(--text-muted); opacity: .75;
}

/* ============================================================
   Language switcher (nav)
   ============================================================ */
.langsw__btn {
  display: flex; align-items: center; gap: 5px;
  background: var(--ink-50, #f0f0f0); border: 1px solid var(--border-subtle);
  border-radius: 99px; padding: 5px 12px 5px 9px;
  font-family: var(--font-ui); font-weight: 700; font-size: 12px;
  color: var(--text-strong); cursor: pointer; transition: background .15s;
}
.langsw__btn:hover { background: var(--ink-100); }
.langsw__drop {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 100;
  background: #fff; border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  min-width: 170px; overflow: hidden;
}
.langsw__opt {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; font-size: 13px; font-family: var(--font-ui);
  cursor: default;
}
.langsw__opt--active { font-weight: 700; color: var(--text-strong); }
.langsw__opt--disabled { color: var(--text-muted); opacity: .55; }

/* ============================================================
   Footer language badges
   ============================================================ */
.foot__lang {
  display: flex; gap: 6px; margin-bottom: 14px;
}
.foot__lang-badge {
  font-family: var(--font-ui); font-weight: 700; font-size: 11px;
  padding: 3px 10px; border-radius: 99px;
}
.foot__lang-badge--active {
  background: rgba(255,255,255,.15); color: #fff;
}
.foot__lang-badge--disabled {
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.35);
}

@media (max-width: 767px) {
  .tslide__arrow { display: none; }
}
@media (min-width: 768px) {
  .tgrid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}
