/*!
 * Parasep landing — styles
 * Extracted from wl-wp-theme/template-parts/custom_shortcodes/landing_parasep_v1.php
 * All rules are scoped under .ps-root / .v1-root.
 */

/* --- 1. ПОВНОШИРИННИЙ КОНТЕЙНЕР ПІД АКТИВНУ ТЕМУ ---
   Раніше тут були селектори wl-wp-theme (.defaultpage, main.main, .whitespace).
   Тепер прив'язка йде до body.parasep-landing — клас додає плагін лише
   на сторінці з шорткодом, тож решта сайту не зачіпається. */
body.parasep-landing .site-content,
body.parasep-landing .content-area,
body.parasep-landing .entry-content,
body.parasep-landing .site-main,
body.parasep-landing .inside-article {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Заголовок сторінки ховаємо: H1 у лендингу свій (.v1b-hero-title),
   інакше на сторінці два H1. */
body.parasep-landing .entry-header,
body.parasep-landing .page-header,
body.parasep-landing .entry-title,
body.parasep-landing h1.page-title {
  display: none !important;
}
body.parasep-landing .site-content {
  display: block !important;
}

/* --- 2. DESIGN TOKENS (SCOPED UNDER ROOT) --- */
.v1-root {
  --diameb-teal: #1F8378;
  --diameb-teal-dark: #176359;
  --diameb-teal-soft: #E6F1EF;
  --diameb-teal-tint: #F4F9F8;

  --apacor-green: #0E8A3E;
  --apacor-green-dark: #0A6E31;
  --parasep-green: #1F6B3A;
  --parasep-green-soft: #E8F1EA;

  --ink-900: #0F1A18;
  --ink-700: #2C3A37;
  --ink-500: #5C6A66;
  --ink-300: #9AA6A2;
  --ink-100: #DDE3E1;
  --ink-50:  #F2F5F4;
  --white:   #FFFFFF;

  --font-sans: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* --- 3. RESET --- */
.ps-root *,
.ps-root *::before,
.ps-root *::after {
  box-sizing: border-box;
}
.ps-root {
  font-family: var(--font-sans);
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
.ps-root img { display: block; max-width: 100%; height: auto; }
.ps-root button { font: inherit; }

/* --- 4. LAYOUT & ELEMENTS (FULL WIDTH EDGE-TO-EDGE) --- */
.v1-root {
  width: 100%;
  background: var(--white);
  color: var(--ink-900);
  font-family: var(--font-sans);
  overflow-x: hidden;
  position: relative;
}

/* Centered content container */
.v1-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
@media (max-width: 768px) {
  .v1-container {
    padding: 0 16px;
  }
}

/* Explicit Heading Colors to prevent theme overrides */
.v1-section-title, .v1b-lab-name {
  color: var(--ink-900) !important;
}

/* Flow-anchors for scroll offset correction */
.ps-root {
  /* Висота липкого хедера теми. Змінюй тут, якщо якорі #labs / #when
     промахуються повз початок секції. */
  --ps-header-offset: 60px;
}
.ps-anchor {
  position: absolute;
  top: calc(0px - var(--ps-header-offset));
  left: 0;
  width: 0;
  height: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .ps-root { --ps-header-offset: 30px; }
}

/* Hero layout - Code-built banner (gradient + wordmark + ribbon + logo) with a scroll-rotating Parasep on the right */
.v1b-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #EAF4F2 52%, #FFFFFF 100%);
  color: var(--ink-900);
  display: flex;
  align-items: center;
  width: 100%;
  padding: 44px 0 64px;
}
/* Decorative background layer (everything except the live product) */
.v1b-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
/* flowing vector ribbon (echoes the Apacor banner swoosh) */
.v1b-hero-ribbon {
  position: absolute;
  right: -2%; bottom: 4%;
  width: min(64vw, 840px); height: auto;
  z-index: 0; opacity: 0.5; pointer-events: none;
}
.v1-btn-ico { width: 18px; height: 18px; flex-shrink: 0; }
/* "покрути" rotate hint — MOBILE ONLY (on desktop the product auto-rotates on scroll) */
.v1b-hero-spin { display: none; }
@keyframes v1bSpinHint { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-42deg); } }
@media (prefers-reduced-motion: reduce) { .v1b-hero-spin-arrow { animation: none !important; } }
.v1b-hero-bg::before,
.v1b-hero-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
/* soft spotlight that grounds the product (upper-right) */
.v1b-hero-bg::before {
  right: -6%; top: -8%;
  width: 720px; height: 680px;
  background: radial-gradient(ellipse at 58% 48%, rgba(31,131,120,0.17), rgba(31,131,120,0) 62%);
  border-radius: 50%;
}
.v1b-hero-bg::after {
  left: -12%; bottom: -22%;
  width: 560px; height: 560px;
  background: radial-gradient(circle at 50% 50%, rgba(14,138,62,0.06), rgba(14,138,62,0) 70%);
  border-radius: 50%;
}
/* Faint PARASEP wordmark, small & light, tucked lower-right behind the product */
.v1b-hero-wordmark {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 13vw, 184px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: #DDE7E4;
  opacity: 0.85;
  user-select: none;
  white-space: nowrap;
}
@media (min-width: 769px) {
  /* keep the wordmark aligned to the content container on wide screens */
  .v1b-hero-wordmark { right: max(0px, calc((100vw - 1200px) / 2)); }
}
/* APACOR — presented as the manufacturer, near the product base */
.v1b-hero-maker {
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2 + 24px));
  bottom: 30px;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.v1b-hero-maker-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-500);
}
/* Harden size against theme image rules (e.g. .content img { width:100% }) */
.ps-root img.v1b-hero-apacor {
  position: static;
  width: 60px !important;
  max-width: 60px !important;
  height: auto !important;
  margin: 0 !important;
  opacity: 0.98;
}
/* Scroll-animated Parasep — single high-quality image, gentle sway + descends across the first two blocks.
   Fixed on desktop so it stays visible while scrolling through hero + "when" section, then fades. */
.v1b-hero-rotor {
  position: fixed;
  z-index: 5;
  top: 0;
  /* Anchor to the 1200px content container's right edge, not the screen edge,
     so the gap stays consistent on any screen width. */
  right: max(16px, calc((100vw - 1100px) / 2));
  width: 181px;   /* one sprite frame, ratio 317:700 */
  height: 400px;
  /* background-image is set from JS (PARASEP.sprite) — see parasep.js */
  background-repeat: no-repeat;
  background-size: 1086px 2400px; /* 6*181 x 6*400 ; refined by JS */
  background-position: 0 0;
  filter: drop-shadow(0 22px 34px rgba(20,60,45,0.18));
  transform: translateY(11vh);
  transform-origin: center center;
  will-change: transform, background-position;
  pointer-events: none;
}
.v1b-hero-inner {
  position: relative;
  padding: 0;
  max-width: 600px;
  z-index: 3;
  text-align: left;
}
@media (min-width: 769px) {
  .v1b-hero-inner {
    margin-top: 0;
  }
}

.v1b-hero-title {
  display: block !important;
  font-family: var(--font-display) !important;
  font-size: clamp(24px, 3.5vw, 38px); line-height: 1.15; letter-spacing: -0.02em;
  font-weight: 700; 
  margin: 0 0 18px !important;
  color: var(--ink-900) !important;
}
.v1b-hero-title sup { font-size: 0.4em; color: var(--diameb-teal); top: -0.8em; }

.v1b-hero-sub {
  font-size: clamp(14px, 1.6vw, 15px); line-height: 1.55;
  color: var(--ink-700);
  max-width: 620px; margin: 0 0 18px;
}

.v1b-hero-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--diameb-teal-dark);
  margin-bottom: 18px;
}

.v1b-hero .v1-hero-cta { margin-bottom: 0; display: flex; gap: 12px; flex-wrap: wrap; }
.v1-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: var(--font-sans);
}
.v1-btn-primary {
  background: var(--diameb-teal);
  color: white !important;
  box-shadow: 0 10px 24px rgba(31,131,120,0.18);
}
.v1-btn-primary:hover {
  background: var(--diameb-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(31,131,120,0.24);
}
.v1-btn-ghost { 
  background: transparent; 
  color: var(--ink-700) !important; 
  border: 1px solid var(--ink-300); 
}
.v1-btn-ghost:hover { 
  border-color: var(--diameb-teal); 
  color: var(--diameb-teal) !important; 
  background: var(--white);
}

/* Problem Section */
.v1b-problem-section {
  padding: 88px 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46'%3E%3Cpath d='M23 15v16 M15 23h16' stroke='%231F8378' stroke-opacity='0.09' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 14% 26%, rgba(31,131,120,0.10), transparent 34%),
    var(--diameb-teal-tint);
  border-bottom: 1px solid var(--ink-100);
  text-align: center;
  width: 100%;
}
.v1b-problem-section { --section-sketch: "02"; }
.v1b-problem-content {
  max-width: 800px;
  margin: 0 auto;
}
.v1b-problem-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--ink-900);
  line-height: 1.2;
}
.v1b-problem-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
}
.v1-problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.v1-problem-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 12px rgba(31,131,120,0.02);
}
.v1-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(31,131,120,0.08);
  border-color: var(--diameb-teal-soft);
}
.v1-problem-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--diameb-teal-soft);
  color: var(--diameb-teal);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.v1-problem-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.v1-problem-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
}

/* Solution / What Parasep® does Section */
.v1-solution-section {
  padding: 88px 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52'%3E%3Ccircle cx='26' cy='26' r='8' fill='none' stroke='%231F8378' stroke-opacity='0.10' stroke-width='1.3'/%3E%3Ccircle cx='26' cy='26' r='1.5' fill='%231F8378' fill-opacity='0.14'/%3E%3C/svg%3E"),
    var(--white);
  border-bottom: 1px solid var(--ink-100);
  width: 100%;
  position: relative;
}
.v1-solution-section { --section-sketch: "03"; }
.v1-section-head {
  margin-bottom: 32px;
  text-align: left;
}
.v1-section-title {
  font-family: var(--font-display) !important;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.2;
}
.v1-section-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  max-width: 850px;
  margin: 0;
}
.v1-section-highlight {
  margin-top: 16px;
  font-weight: 600;
  color: var(--diameb-teal-dark);
}

/* Advantages Grid */
.v1-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.v1-feat {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  text-align: left;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.v1-feat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,131,120,0.06);
  border-color: var(--diameb-teal-soft);
}
.v1-feat-num {
  font-family: var(--font-mono);
  color: var(--diameb-teal);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
/* Іконка заступає номер: перелік переваг не впорядкований, і нумерація
   в ньому лише вдавала послідовність, якої немає. */
.v1-feat-ico {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--diameb-teal-soft);
  color: var(--diameb-teal);
  margin-bottom: 18px;
}
.v1-feat-ico svg { width: 24px; height: 24px; }

/* Іконка в картці «Чому саме Parasep» */
.v1-problem-card-icon svg { width: 24px; height: 24px; }
.v1-feat-label {
  font-family: var(--font-display);
  font-size: 18px; 
  font-weight: 700; 
  margin-bottom: 12px; 
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink-900) !important;
}
.v1-feat-text { 
  font-size: 13.5px; 
  line-height: 1.6; 
  color: var(--ink-700); 
}

/* Comparison Section */
.v1b-compare {
  padding: 88px 0;
  background: var(--diameb-teal-tint);
  border-bottom: 1px solid var(--ink-100);
  width: 100%;
}
.v1-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-family: var(--font-sans);
}
.v1-compare-row {
  border-bottom: 1px solid var(--ink-100);
}
.v1-compare-row-head {
  border-bottom: 2px solid var(--ink-900);
}
.v1-compare-cell {
  padding: 20px 16px;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.55;
}
.v1-compare-cell-label {
  font-weight: 600;
  color: var(--ink-900);
  width: 20%;
}
.v1-compare-cell-standard {
  color: var(--ink-500);
  width: 40%;
}
.v1-compare-cell-parasep {
  color: var(--diameb-teal-dark);
  font-weight: 500;
  width: 40%;
  background: var(--white);
  border-left: 2px solid var(--diameb-teal);
  border-right: 2px solid var(--diameb-teal);
}
.v1-compare-row:last-child .v1-compare-cell-parasep {
  border-bottom: 2px solid var(--diameb-teal);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.v1-compare-row-head .v1-compare-cell-parasep {
  border-top: 2px solid var(--diameb-teal);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-weight: 700;
  color: var(--diameb-teal-dark) !important;
  background: var(--white);
}
.v1-compare-cell-parasep-badge {
  display: inline-block;
  background: var(--diameb-teal);
  color: white;
  font-size: 9px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0.05em;
}

/* Process Section */
.v1-process-section {
  padding: 88px 0;
  background:
    radial-gradient(rgba(31,131,120,0.07) 1.4px, transparent 1.5px) 0 0 / 26px 26px,
    linear-gradient(180deg, #FFFFFF 0%, #F1F7F5 100%);
  border-bottom: 1px solid var(--ink-100);
  text-align: left;
  width: 100%;
}
.v1-process-section { --section-sketch: "04"; }
/* stylized image panel (echoes the vet-block treatment) */
.v1-process-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(31,131,120,0.12) 0%, rgba(14,138,62,0.05) 60%, rgba(255,255,255,0.5) 100%);
  border: 1px solid var(--diameb-teal-soft);
  overflow: hidden;
}
.v1-process-blob {
  position: absolute; right: -12%; bottom: -14%;
  width: 62%; height: auto; z-index: 0; pointer-events: none;
}
.ps-root img.v1-process-img {
  position: relative; z-index: 1;
  max-width: 300px !important; width: 100% !important; height: auto !important;
  margin: 0 auto !important; display: block !important;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(15,26,24,0.14);
}
.v1-process-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.v1-process-left {
  display: flex;
  flex-direction: column;
}
/* Кроки — картки з іконкою, у манері брошури виробника: підпис «Крок N»,
   коротка назва дії, під нею пояснення. */
.v1-process-steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.v1-process-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.v1-process-step:hover {
  border-color: var(--diameb-teal-soft);
  box-shadow: 0 8px 22px rgba(31,131,120,0.06);
}
.v1-process-step-ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--diameb-teal-soft);
  color: var(--diameb-teal);
}
.v1-process-step-ico svg { width: 22px; height: 22px; }
.v1-process-step-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--diameb-teal);
}
.v1-process-step-body { min-width: 0; }
.v1-process-step-kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--diameb-teal);
  margin-bottom: 3px;
}
.v1-process-step-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-900);
  margin-bottom: 4px;
}
.v1-process-step-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-700);
}

/* Labs Section */
.v1b-labs { 
  padding: 88px 0; 
  position: relative;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(31,131,120,0.05) 0 1px, transparent 1px 26px),
    var(--white);
}
.v1b-labs { --section-sketch: "05"; }
.v1b-labs-head { margin-bottom: 32px; text-align: left; }
.v1b-labs-sub {
  font-family: var(--font-sans);
  font-size: 15px; line-height: 1.55; color: var(--ink-700);
  margin: 12px 0 0;
}

.v1b-lab-group-title {
  font-size: 14px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--diameb-teal);
  margin: 32px 0 16px 0;
  border-bottom: 1px solid var(--diameb-teal-soft);
  padding-bottom: 8px;
  text-align: left;
}

/* Lab cards grid (logo · name · site · one phone) */
#psLabList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.v1b-lab-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 18px 24px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.v1b-lab-card:hover {
  box-shadow: 0 10px 28px rgba(15,26,24,0.09);
  border-color: var(--diameb-teal-soft);
  transform: translateY(-2px);
}
.v1b-lab-card-logo {
  height: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.ps-root img.v1b-lab-logo {
  height: 48px !important;
  width: auto !important;
  max-width: 190px !important;
  margin: 0 !important;
  display: block !important;
  object-fit: contain;
}
.v1b-lab-card-name {
  font-family: var(--font-display) !important;
  font-size: 16px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em;
  color: var(--ink-900);
}
.v1b-lab-card-name--inlogo { font-size: 18px; }
.v1b-lab-card-links {
  display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 8px;
}
/* .ps-root додано навмисно: скидання .ps-root button { font: inherit }
   має специфічність (0,1,1) і без цього перебиває типографіку кнопки —
   телефон Пріма МЕД (єдиний <button> серед карток) виходив 17px/400
   замість 14px/600, як у сусідів. */
.ps-root .v1b-lab-card-site,
.ps-root .v1b-lab-card-phone {
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  /* line-height задано явно: у <a> воно успадковувалось від картки,
     а <button> бере його з користувацьких стилів браузера — і кнопка
     телефону виходила вищою за сусідню кнопку сайту. */
  line-height: 1.2;
  color: var(--diameb-teal-dark);
  background: var(--diameb-teal-tint);
  border: 1px solid var(--diameb-teal-soft);
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  transition: color .15s ease, background .15s ease, border-color .15s ease, transform .15s ease;
}
.ps-root .v1b-lab-card-site:hover,
.ps-root .v1b-lab-card-phone:hover {
  color: var(--white) !important;
  background: var(--diameb-teal);
  border-color: var(--diameb-teal);
  transform: translateY(-1px);
}

/* Phone chooser dropdown (labs with 2 numbers, e.g. Пріма МЕД: Франківськ / Львів) */
.v1b-lab-phonepick { position: relative; }
/* Тут стояло font: inherit — shorthand скидав і font-size, і line-height
   на успадковані від картки, тож у Пріма МЕД (єдина лабораторія з двома
   номерами, тому єдина з <button>) телефон був набраний більшим кеглем,
   ніж у решти карток. Типографіку задає спільне правило вище. */
.v1b-lab-phone-toggle { cursor: pointer; gap: 6px; }
.v1b-lab-phone-caret { width: 11px; height: 11px; transition: transform .18s ease; flex-shrink: 0; }
.v1b-lab-phone-toggle[aria-expanded="true"] .v1b-lab-phone-caret { transform: rotate(180deg); }
.v1b-lab-phone-menu {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: calc(100% + 8px); z-index: 30;
  min-width: 210px; padding: 6px;
  background: var(--white); border: 1px solid var(--ink-100);
  border-radius: 14px; box-shadow: 0 14px 34px rgba(15,26,24,0.16);
}
.v1b-lab-phone-menu[hidden] { display: none; }
.v1b-lab-phone-opt {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1px;
  padding: 9px 12px; border-radius: 9px; text-decoration: none;
  transition: background .12s ease;
}
.v1b-lab-phone-opt:hover { background: var(--diameb-teal-tint); }
.v1b-lab-phone-place { font-size: 12px; font-weight: 700; color: var(--diameb-teal-dark); }
.v1b-lab-phone-num { font-size: 14px; color: var(--ink-900); }

@media (max-width: 1024px) { #psLabList { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { #psLabList { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { #psLabList { grid-template-columns: 1fr; } }

.v1b-labs-b2b-cta {
  margin-top: 64px;
  padding: 40px;
  background: var(--diameb-teal-tint);
  border-radius: 16px;
  border: 1px solid var(--diameb-teal-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  flex-wrap: wrap;
}
.v1b-labs-b2b-cta-text {
  flex: 1;
  min-width: 280px;
}
.v1b-labs-b2b-cta h4 {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
}
.v1b-labs-b2b-cta p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.6;
}

/* When / indications section */
.v1-when-section {
  padding: 88px 0;
  background:
    linear-gradient(90deg, rgba(31,131,120,0.06) 0 1px, transparent 1px 32px),
    var(--white);
  border-bottom: 1px solid var(--ink-100);
  width: 100%;
  position: relative;
}
.v1-when-section { --section-sketch: "01"; }
.v1-when-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.v1-when-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px;
  background: var(--diameb-teal-tint);
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.v1-when-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(31,131,120,0.07);
  border-color: var(--diameb-teal-soft);
}
.v1-when-ic {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--diameb-teal);
  color: #fff;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
  margin-top: 2px;
}
.v1-when-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-900);
  margin-bottom: 6px;
  line-height: 1.3;
}
.v1-when-item p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-700); }
.v1-when-note {
  margin: 32px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-500);
  padding: 16px 20px;
  background: var(--ink-50);
  border-left: 3px solid var(--diameb-teal);
  border-radius: 8px;
}
/* Desktop: reserve a right lane so the rotating Parasep doesn't cover the indication cards */
@media (min-width: 1025px) {
  .v1-when-section .v1-container { padding-right: 340px; }
}

/* FAQ section */
.v1-faq-section {
  padding: 88px 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.55) 0 1px, transparent 1px 28px),
    var(--diameb-teal-tint);
  border-bottom: 1px solid var(--ink-100);
  width: 100%;
}
.v1-faq-section { --section-sketch: "?"; }
.v1-faq-list { margin-top: 32px; max-width: 860px; }
.v1-faq-item {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.v1-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.v1-faq-item summary::-webkit-details-marker { display: none; }
.v1-faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 24px;
  color: var(--diameb-teal);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s;
}
.v1-faq-item[open] summary::after { transform: rotate(45deg); }
.v1-faq-item summary:hover { color: var(--diameb-teal-dark); }
.v1-faq-answer {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
}
.v1-faq-answer p { margin: 0; }

/* Region picker */
.v1b-region-picker {
  margin: 0 auto 40px;
  max-width: 560px;
}
.v1b-region-select-wrap {
  position: relative;
}
.v1b-region-icon {
  position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: var(--ink-500); pointer-events: none;
}
.v1b-region-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-700);
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 18px 24px 18px 56px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15,26,24,0.03);
  transition: border-color .15s, box-shadow .15s;
}
.v1b-region-select:hover { border-color: var(--diameb-teal-soft); }
.v1b-region-select:focus {
  outline: none;
  border-color: var(--diameb-teal);
  box-shadow: 0 0 0 3px rgba(31,131,120,0.12);
}

/* Empty / no-lab state */
.v1b-labs-empty {
  margin-top: 24px;
  padding: 32px;
  background: var(--diameb-teal-tint);
  border: 1px dashed var(--diameb-teal-soft);
  border-radius: 16px;
}
.v1b-labs-empty-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.v1b-labs-empty-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
}
/* contact-modal link inside the empty state — reset the theme's .login button to inline text */
.ps-root a.ps-dealer-link {
  display: inline !important;
  color: var(--diameb-teal-dark) !important; font-family: inherit !important; font-weight: 700; font-size: inherit;
  line-height: inherit !important; min-height: 0 !important; height: auto !important;
  padding: 0 !important; margin: 0 !important; border: 0 !important; border-radius: 0 !important;
  background: transparent !important; box-shadow: none !important;
  text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px;
  transition: color .15s;
}
.ps-root a.ps-dealer-link:hover { color: var(--diameb-teal) !important; }
.ps-root a.ps-dealer-link::before, .ps-root a.ps-dealer-link::after { display: none !important; content: none !important; }

/* Veterinary Section */
.v1-vet-section {
  padding: 88px 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='88'%3E%3Cg fill='%231F8378' fill-opacity='0.06'%3E%3Cellipse cx='30' cy='42' rx='7' ry='9'/%3E%3Cellipse cx='20' cy='28' rx='3.4' ry='4.6'/%3E%3Cellipse cx='31' cy='23' rx='3.4' ry='4.6'/%3E%3Cellipse cx='42' cy='28' rx='3.4' ry='4.6'/%3E%3C/g%3E%3Cg fill='%230E8A3E' fill-opacity='0.05'%3E%3Cellipse cx='66' cy='72' rx='6' ry='8'/%3E%3Cellipse cx='58' cy='60' rx='3' ry='4'/%3E%3Cellipse cx='67' cy='56' rx='3' ry='4'/%3E%3Cellipse cx='75' cy='60' rx='3' ry='4'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, #FFFFFF 0%, #F6FBFA 100%);
  border-bottom: 1px solid var(--ink-100);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.v1-vet-section { --section-sketch: "vet"; }
.v1-vet-section > .v1-container { position: relative; z-index: 2; }
.v1-vet-card {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 48px;
  align-items: stretch;
  padding: 0;
}
.v1-vet-card > div:first-child {
  display: flex;
  flex-direction: column;
}
.v1-vet-card > div:first-child > .v1-btn {
  margin-top: auto;
  margin-bottom: 40px;
  align-self: flex-start;
}
.v1-vet-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--diameb-teal-soft);
  color: var(--diameb-teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.v1-vet-title {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 22px;
}
.v1-vet-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0 0 28px;
}
.v1-vet-points {
  display: grid;
  gap: 16px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}
.v1-vet-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-700);
}
.v1-vet-points li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--diameb-teal);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}
.v1-vet-visual {
  min-height: 400px;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(31,131,120,0.12) 0%, rgba(14,138,62,0.06) 55%, rgba(255,255,255,0.5) 100%);
  border: 1px solid var(--diameb-teal-soft);
  overflow: hidden;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
/* friendly hand-drawn pets illustration, sits below the info card */
.v1-vet-pets {
  width: 224px; max-width: 72%;
  margin: 0 auto;
  align-self: center;
  pointer-events: none;
}
.ps-root .v1-vet-pets svg { display: block; width: 100%; height: auto; }
.v1-vet-figure {
  position: relative;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(31,131,120,0.18);
  box-shadow: 0 16px 34px rgba(15,26,24,0.08);
}
.v1-vet-figure-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink-900);
  margin-bottom: 12px;
}
.v1-vet-figure-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px dashed var(--diameb-teal-soft);
  color: var(--ink-700);
  font-size: 13.5px;
  line-height: 1.35;
}
.v1-vet-figure-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--diameb-teal-tint);
  color: var(--diameb-teal-dark);
  font-weight: 800;
}

/* ============ VISUAL POLISH: background elements, eyebrow pills, clearer blocks ============ */
.v1-when-section, .v1b-problem-section, .v1-solution-section, .v1-process-section, .v1-faq-section, .v1b-labs, .v1-vet-section {
  position: relative;
  overflow: hidden;
}
.v1-when-section > .v1-container, .v1b-problem-section > .v1-container,
.v1-solution-section > .v1-container, .v1-process-section > .v1-container,
.v1-faq-section > .v1-container, .v1b-labs > .v1-container, .v1-vet-section > .v1-container { position: relative; z-index: 2; }

/* Cohesive, soft ambient wash — one gentle blob top-left, one bottom-right per
   section. No hard geometry, no text watermarks — just a calm, "illustrated" feel. */
.v1b-problem-section::before, .v1-faq-section::before,
.v1-solution-section::before, .v1-process-section::before,
.v1-vet-section::before, .v1-when-section::before, .v1b-labs::before {
  content: ""; position: absolute; z-index: 1; pointer-events: none;
  width: 480px; height: 480px; top: -150px; left: -160px;
  background: radial-gradient(circle at 50% 50%, rgba(31,131,120,0.09), rgba(31,131,120,0) 70%);
  border-radius: 50%;
}
.v1b-problem-section::after, .v1-faq-section::after,
.v1-solution-section::after, .v1-process-section::after,
.v1-vet-section::after, .v1-when-section::after, .v1b-labs::after {
  content: ""; position: absolute; z-index: 1; pointer-events: none;
  width: 540px; height: 540px; bottom: -180px; right: -170px;
  background: radial-gradient(circle at 50% 50%, rgba(14,138,62,0.06), rgba(14,138,62,0) 70%);
  border-radius: 50%;
}
/* a whisper of dot-grid texture on a few sections, softly faded at the edges */
.v1-when-section .v1-container::before,
.v1-vet-section .v1-container::before,
.v1b-labs .v1-container::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  top: -6px; right: 6px; width: 172px; height: 172px; opacity: 0.5;
  background-image: radial-gradient(rgba(31,131,120,0.16) 1.4px, transparent 1.6px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(circle at 72% 28%, #000, transparent 74%);
          mask-image: radial-gradient(circle at 72% 28%, #000, transparent 74%);
}

.v1b-problem-content { text-align: center; }

/* unified, softer, more distinct cards */
.v1-problem-card, .v1-when-item, .v1-feat {
  border-radius: 16px;
  border: 1px solid var(--ink-100);
  box-shadow: 0 6px 20px rgba(15,26,24,0.05);
}
.v1-problem-card:hover, .v1-when-item:hover, .v1-feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(31,131,120,0.12);
  border-color: var(--diameb-teal-soft);
}

/* --- 5. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .v1-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .v1-when-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .v1-problem-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .v1b-lab-row {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* On mobile the hero stacks: PRODUCT first (above), then the text below */
  .v1b-hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 82px 0 28px; /* top clears the fixed mobile header */
  }
  .v1b-hero-inner {
    order: 2;
    padding: 6px 0 0;
    max-width: 100%;
    margin-top: 0;
    text-align: center;
  }
  .v1b-hero .v1-hero-cta { justify-content: center; }
  .v1b-hero .v1-btn { width: 100%; max-width: 320px; }
  .v1b-hero-title {
    margin-bottom: 16px !important;
  }
  .v1b-hero-bg {
    order: -1; /* real flex child of .v1b-hero (the text sits in .v1-container, order 0) → product goes first */
    position: relative;
    width: 100%;
    height: 320px;
    margin-top: 0;
    margin-bottom: 8px;
  }
  .v1b-hero-spin {
    display: flex; flex-direction: column; align-items: center; gap: 0;
    position: absolute; z-index: 4; pointer-events: none;
    right: 10%; bottom: 5%;
    color: var(--diameb-teal);
  }
  .v1b-hero-spin-arrow { width: 44px; height: 44px; transform-origin: 50% 50%; animation: v1bSpinHint 2.6s ease-in-out infinite; }
  .v1b-hero-spin-word {
    font-family: 'Caveat', 'Segoe Script', cursive;
    font-size: 30px; font-weight: 700; line-height: 1;
    transform: rotate(-6deg); margin-top: -2px;
  }
  .v1b-hero-bg::before,
  .v1b-hero-bg::after {
    display: none;
  }
  .v1b-hero-ribbon { display: none; }
  .v1b-hero-wordmark {
    left: 50%; right: auto; top: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    opacity: 0.7;
  }
  .v1b-hero-maker { display: none !important; } /* out of place on mobile */
  /* let horizontal swipes rotate the tube while vertical still scrolls */
  .v1b-hero-bg { pointer-events: auto; touch-action: pan-y; }
  .v1b-hero-rotor {
    position: absolute;
    left: 50%; right: auto; top: 50%;
    transform: translate(-50%, -50%);
    height: 320px;
    width: 145px;
  }
  .v1-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .v1-feat {
    padding: 24px;
  }
  .v1-about, .v1b-problem-section, .v1-solution-section, .v1b-compare, .v1-process-section, .v1b-labs, .v1-when-section, .v1-faq-section, .v1-vet-section {
    padding: 48px 0;
  }
  .v1-vet-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .v1-vet-title {
    font-size: 26px;
  }
  .v1-vet-visual {
    min-height: 340px;
  }
  .v1-vet-figure {
    padding: 22px;
  }
  .v1-vet-pets { width: 200px; }
  .v1-when-section .v1-container::before,
  .v1b-labs .v1-container::before,
  .v1-vet-section .v1-container::before {
    right: 12px;
    top: -6px;
  }
  .v1b-problem-section .v1-container::after,
  .v1-solution-section .v1-container::after,
  .v1-process-section .v1-container::after {
    display: none;
  }
  .v1-when-grid {
    grid-template-columns: 1fr;
  }
  .v1-process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v1-compare-table {
    display: block;
    margin-top: 24px;
  }
  .v1-compare-row-head {
    display: none;
  }
  .v1-compare-row {
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid var(--ink-100);
  }
  .v1-compare-row:last-child {
    border-bottom: none;
  }
  .v1-compare-cell {
    display: block;
    padding: 6px 0;
    width: 100% !important;
    border: none !important;
    background: transparent !important;
  }
  .v1-compare-cell-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 8px;
  }
  .v1-compare-cell-standard::before {
    content: "Звичайний контейнер: ";
    font-weight: 600;
    color: var(--ink-700);
  }
  .v1-compare-cell-parasep::before {
    content: "Система Parasep®: ";
    font-weight: 600;
    color: var(--diameb-teal-dark);
  }
  .v1-compare-cell-parasep {
    padding-top: 10px;
    border-top: 1px dashed var(--diameb-teal-soft) !important;
  }
  .v1b-lab-row-head {
    display: none;
  }
  .v1b-lab-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 16px;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    background: var(--white);
    margin-bottom: 16px;
  }
  .v1b-lab-row-active {
    margin-left: 0;
    margin-right: 0;
    border-color: var(--diameb-teal);
    background: linear-gradient(180deg, var(--diameb-teal-tint), transparent);
  }
  .v1b-labs-b2b-cta {
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
  }
  .v1b-labs-b2b-cta .v1-btn {
    width: 100%;
    margin-top: 8px;
  }
}
  .ps-brandlink { color: inherit; text-decoration: none; }
  .ps-brandlink:hover { text-decoration: underline; }


/* --- CTA-блок замість модалки wl-wp-theme (#becomeClientModal) --- */
.ps-contact {
  padding: 72px 0;
  background: var(--diameb-teal-tint);
  border-top: 1px solid var(--ink-100);
  width: 100%;
}
.ps-contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--diameb-teal-soft);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15,26,24,0.06);
}
.ps-contact-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 12px;
  line-height: 1.25;
}
.ps-contact-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0 0 26px;
}
.ps-contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.ps-contact-form { margin-top: 28px; text-align: left; }
@media (max-width: 768px) {
  .ps-contact { padding: 48px 0; }
  .ps-contact-card { padding: 26px 20px; }
  .ps-contact-actions .v1-btn { width: 100%; max-width: 320px; }
}

/* --- Походження матеріалу, джерела, дисклеймер --- */
.ps-attribution {
  padding: 56px 0 64px;
  background: var(--white);
  border-top: 1px solid var(--ink-100);
  width: 100%;
}
.ps-attribution-inner {
  max-width: 860px;
  margin: 0 auto;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-500);
}
.ps-attribution-by {
  margin: 0 0 18px;
  color: var(--ink-700);
}
.ps-attribution-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--diameb-teal);
  margin-bottom: 8px;
}
.ps-attribution-sources { margin: 0 0 18px; }
.ps-attribution-sources ol {
  margin: 0;
  padding-left: 20px;
}
.ps-attribution-sources li { margin-bottom: 5px; }
.ps-attribution-sources a {
  color: var(--diameb-teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ps-attribution-date { margin: 0 0 16px; }
.ps-attribution-note {
  margin: 0;
  padding: 14px 18px;
  background: var(--ink-50);
  border-left: 3px solid var(--diameb-teal);
  border-radius: 8px;
  color: var(--ink-700);
}
@media (max-width: 768px) {
  .ps-attribution { padding: 40px 0 48px; }
}

/* ══════════════════════════════════════════════════════════════
   HERO — фото під світло-сірим шаром
   Зелений шар робив тло темно-зеленим, і світла напівпрозора
   пробірка на ньому зливалася. Сірий шар високої щільності лишає
   фото фактурою, дає пробірці контур і не сперечається з зеленим
   усередині неї. Текст лишається темним — як на світлому банері.
   ══════════════════════════════════════════════════════════════ */
.v1b-hero {
  background-image:
    linear-gradient(104deg,
      rgba(244,246,247,0.95) 0%,
      rgba(235,239,241,0.92) 42%,
      rgba(228,233,236,0.84) 100%),
    url("../img/hero-lab.webp");
  background-size: cover, cover;
  background-position: center, center 38%;
  background-repeat: no-repeat, no-repeat;
  color: var(--ink-900);
}

/* Декоративні плями з білого банера на фото лише брудять */
.v1b-hero-bg::before,
.v1b-hero-bg::after { display: none; }

/* Стрічка на фактурі читається як подряпина */
.v1b-hero-ribbon { display: none; }

/* На сірому попередній #DDE7E4 майже зникав */
.v1b-hero-wordmark { color: #D5DCDF; opacity: 0.85; }

/* Пробірці потрібен глибший контур, щоб не здаватися наклейкою */
.v1b-hero-rotor { filter: drop-shadow(0 24px 38px rgba(20,60,45,0.26)); }

@media (max-width: 768px) {
  .v1b-hero {
    background-image:
      linear-gradient(180deg,
        rgba(244,246,247,0.94) 0%,
        rgba(233,238,240,0.90) 55%,
        rgba(240,243,245,0.94) 100%),
      url("../img/hero-lab-mobile.webp");
    background-position: center, center;
  }
}
