

/* Start:/local/templates/vetunion-labs/assets/css/landing-lab-modals.css?178791282312011*/
/* Shared landing modals + herd select — scoped by .page-lab-landing / .page-smi */

:is(.page-lab-landing, .page-smi) .modal.m-lab {
  --llm-black: #253746;
  --llm-white: #ffffff;
  --llm-close: #e9ebed;
  --llm-accent: #dd9fd4;
  --llm-accent-soft: rgba(221, 159, 212, 0.2);
  --llm-border: #dddddd;
  --llm-muted: rgba(255, 255, 255, 0.6);

  width: min(446px, calc(100vw - 32px));
  max-width: 446px;
  padding: 40px 32px;
  border-radius: 32px 18px 32px 32px;
  background: var(--llm-black);
  color: var(--llm-white);
  box-sizing: border-box;
  overflow: visible;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}

:is(.page-lab-landing, .page-smi) .modal-container {
  z-index: 1102;
}

@keyframes llmModalFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

:is(.page-lab-landing, .page-smi) .modal.m-lab.active,
:is(.page-lab-landing, .page-smi) .modal.success.active {
  animation: llmModalFade 0.3s ease;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__close {
  top: 0;
  left: 100%;
  right: auto;
  bottom: auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 18px;
  background: var(--llm-close);
  cursor: pointer;
  box-sizing: border-box;
}

.page-lab-landing .modal.m-lab .modal__close {
  top: 0;
  left: 100%;
  right: auto;
  bottom: auto;
  margin: 0;
}

.page-smi .modal.m-lab {
  padding: 56px 24px 32px;
}

.page-smi .modal.m-lab .modal__close {
  top: 16px;
  left: 16px;
  right: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--llm-white);
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__close img {
  width: 14px;
  height: 13px;
  filter: brightness(0) saturate(100%);
}

.page-smi .modal.m-lab .modal__close img {
  width: 11px;
  height: 9px;
  filter: none;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__title {
  margin: 0 0 16px;
  color: var(--llm-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}

.page-lab-landing .modal.m-lab .modal__title {
  margin: 0 0 24px;
}

.page-lab-landing .modal.m-lab .modal__title:has(+ .modal__text:not([hidden])) {
  margin-bottom: 0;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__text {
  margin: 0 0 24px;
  color: var(--llm-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

.page-lab-landing .modal.m-lab .modal__text:not([hidden]) {
  margin: 8px 0 24px;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 382px;
  margin: 0 auto;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab input[type="text"],
:is(.page-lab-landing, .page-smi) .modal.m-lab input[type="email"],
:is(.page-lab-landing, .page-smi) .modal.m-lab input[type="tel"],
:is(.page-lab-landing, .page-smi) .modal.m-lab textarea {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 16px;
  border: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--llm-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  box-sizing: border-box;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab textarea {
  min-height: 96px;
  border-radius: 24px;
  resize: vertical;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .form-of-apply__field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab input::placeholder,
:is(.page-lab-landing, .page-smi) .modal.m-lab textarea::placeholder {
  color: rgba(37, 55, 70, 0.4);
}

:is(.page-lab-landing, .page-smi) .modal.m-lab input.is-error,
:is(.page-lab-landing, .page-smi) .modal.m-lab textarea.is-error,
:is(.page-lab-landing, .page-smi) .modal.m-lab .lab-landing-select.is-error .lab-landing-select__trigger {
  box-shadow: 0 0 0 1px #e36b8c;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .errortext {
  margin: 4px 0 0 16px;
  color: #e36b8c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .errortext[hidden] {
  display: none;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__policy {
  margin: 16px 0 0;
  color: var(--llm-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__policy p,
:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__policy p:not(:last-child) {
  margin: 0;
  margin-bottom: 0;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__policy a {
  color: var(--llm-muted);
  border: 0;
  text-decoration: underline;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__button {
  margin-top: 16px;
}

.page-lab-landing .modal.m-lab .modal__policy {
  display: grid;
  gap: 16px;
  margin: 25px 0 0;
}

.page-lab-landing .modal.m-lab .modal__button {
  margin-top: 25px;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__button .button,
:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__button input[type="submit"] {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 19px 24px;
  border: 0;
  border-radius: 99px;
  background: var(--llm-white) !important;
  color: var(--llm-black) !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
}

@keyframes landing-lab-spin {
  to {
    transform: rotate(360deg);
  }
}

:is(.page-lab-landing, .page-smi) [type="submit"].is-send,
:is(.page-lab-landing, .page-smi) button.is-send {
  --form-spinner: #ffffff;
  --form-spinner-track: rgba(255, 255, 255, 0.35);
  position: relative;
  pointer-events: none;
  color: transparent !important;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__button .button.is-send,
:is(.page-lab-landing, .page-smi) .modal.m-lab .modal__button input[type="submit"].is-send {
  --form-spinner: #253746;
  --form-spinner-track: rgba(37, 55, 70, 0.25);
  position: relative;
  pointer-events: none;
  color: transparent !important;
}

:is(.page-lab-landing, .page-smi) button.is-send > * {
  visibility: hidden;
}

:is(.page-lab-landing, .page-smi) button.is-send::after,
:is(.page-lab-landing, .page-smi) .form-preloader-wrap.is-send .form-preloader {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid var(--form-spinner-track);
  border-top-color: var(--form-spinner);
  border-radius: 50%;
  animation: landing-lab-spin 0.6s linear infinite;
}

:is(.page-lab-landing, .page-smi) button.is-send::after {
  content: '';
}

:is(.page-lab-landing, .page-smi) .form-preloader-wrap {
  position: relative;
  display: block;
  width: 100%;
}

:is(.page-lab-landing, .page-smi) .form-preloader-wrap .form-preloader {
  display: none;
  pointer-events: none;
}

:is(.page-lab-landing, .page-smi) .form-preloader-wrap.is-send .form-preloader {
  display: block;
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .button.is-send,
:is(.page-lab-landing, .page-smi) .modal.m-lab .form-preloader-wrap.is-send {
  --form-spinner: #253746;
  --form-spinner-track: rgba(37, 55, 70, 0.25);
}

:is(.page-lab-landing, .page-smi) .modal.m-lab .landing-lab-form__errors {
  margin: 0 0 12px;
  color: #ffb4b4;
  font-size: 14px;
  line-height: 1.3;
}

:is(.page-lab-landing, .page-smi) .modal.success {
  --llm-black: #253746;
  width: min(446px, calc(100vw - 32px));
  max-width: 446px;
  padding: 40px 32px;
  border-radius: 32px;
  background: #f6f6f6;
}

:is(.page-lab-landing, .page-smi) .modal.success .modal__title {
  margin-bottom: 8px;
  color: var(--llm-black, #253746);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

:is(.page-lab-landing, .page-smi) .modal.success .modal__text {
  margin-bottom: 0;
  color: var(--llm-black, #253746);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
  text-align: center;
}

:is(.page-lab-landing, .page-smi) .modal.success .modal__button {
  margin-top: 24px;
}

/* Custom herd select */
.lab-landing-select {
  --llm-black: #253746;
  --llm-accent: #dd9fd4;
  --llm-accent-soft: rgba(221, 159, 212, 0.2);
  --llm-border: #dddddd;
  position: relative;
  width: 100%;
}

.lab-landing-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  border: 1px solid #dcdcdc;
  border-radius: 100px;
  background: #fcfcfc;
  color: var(--llm-black);
  font: inherit;
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.lab-landing-select__trigger-label {
  color: #acacac;
}

.lab-landing-select.is-filled .lab-landing-select__trigger-label {
  color: var(--llm-black);
}

.lab-landing-select__chevron {
  width: 14px;
  height: 14px;
  border-right: 2px solid #acacac;
  border-bottom: 2px solid #acacac;
  transform: rotate(45deg) translateY(-2px);
  flex-shrink: 0;
}

.lab-landing-select.is-open .lab-landing-select__chevron {
  transform: rotate(-135deg) translateY(-2px);
}

.lab-landing-select__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  padding: 24px;
  border: 1px solid var(--llm-border);
  border-radius: 32px;
  background: #f6f6f6;
  box-sizing: border-box;
  box-shadow: 0 12px 32px rgba(37, 55, 70, 0.12);
}

.lab-landing-select.is-open {
  position: relative;
  z-index: 200;
}

.lab-landing-select.is-open .lab-landing-select__dropdown {
  display: grid;
  gap: 16px;
  z-index: 201;
}

.lab-landing-select__option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 20px;
  border: 1px solid #dcdcdc;
  border-radius: 100px;
  background: #fcfcfc;
  color: var(--llm-black);
  font-size: 16px;
  line-height: 1.25;
  cursor: pointer;
  box-sizing: border-box;
}

.lab-landing-select__option.is-active {
  border-color: var(--llm-accent);
  background: var(--llm-accent-soft);
}

.lab-landing-select__radio {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid #99a1af;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
}

.lab-landing-select__option.is-active .lab-landing-select__radio {
  border-color: var(--llm-accent);
}

.lab-landing-select__option.is-active .lab-landing-select__radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--llm-accent);
}

:is(.page-lab-landing, .page-smi) .modal .lab-landing-select__trigger {
  min-height: 48px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 0;
  font-size: 14px;
}

:is(.page-lab-landing, .page-smi) .modal .lab-landing-select__dropdown {
  top: auto;
  bottom: calc(100% + 8px);
  max-height: min(240px, 36vh);
  overflow-y: auto;
  padding: 12px;
  background: #fff;
  overscroll-behavior: contain;
}

:is(.page-lab-landing, .page-smi) .modal .lab-landing-select.is-open .lab-landing-select__dropdown {
  gap: 8px;
}

:is(.page-lab-landing, .page-smi) .modal .lab-landing-select__option {
  min-height: 44px;
}

@media (max-width: 575.98px) {
  :is(.page-lab-landing, .page-smi) .modal.m-lab {
    padding: 32px 20px;
    border-radius: 24px;
  }

  :is(.page-lab-landing, .page-smi) .modal.m-lab .modal__close {
    top: 12px;
    right: 12px;
    left: auto;
    bottom: auto;
    width: 40px;
    height: 40px;
  }

  .page-lab-landing .modal.m-lab .modal__close {
    top: 12px;
    right: 12px;
    left: auto;
    bottom: auto;
  }

  .page-smi .modal.m-lab {
    padding: 56px 20px 24px;
  }

  .page-smi .modal.m-lab .modal__close {
    top: 12px;
    left: 12px;
    right: auto;
  }

  :is(.page-lab-landing, .page-smi) .modal.success .modal__title {
    font-size: 28px;
  }

  :is(.page-lab-landing, .page-smi) .modal.success .modal__text {
    font-size: 18px;
  }
}

/* End */


/* Start:/local/templates/vetunion-labs/assets/css/landing-lab.css?178791282352079*/
/* Лендинг свиней — изолированные стили */
.landing-lab {
  --lp-black: var(--black, #253746);
  --lp-white: var(--white, #fff);
  --lp-blue: #cef5f3;
  --lp-violet: var(--violet, #dd9fd4);
  --lp-light-violet: var(--light-violet, #f8e1f4);
  --lp-yellow: var(--yellow, #fff3a9);
  --lp-gray: #f6f6f6;
  --lp-radius: 32px;
  --lp-gap: 40px;
  --lp-container: 1386px;

  color: var(--lp-black);
  font-family: "TT Hoves", sans-serif;
  padding: 16px 16px 60px;
  overflow: visible;
}

.landing-lab__container {
  width: 100%;
  max-width: var(--lp-container);
  margin: 0 auto;
}

.landing-lab section + section {
  margin-top: var(--lp-gap);
}

.landing-lab__section-head {
  margin-bottom: 24px;
}

.landing-lab__section-head--light .landing-lab__title,
.landing-lab__section-head--light .landing-lab__label-text {
  color: var(--lp-black);
}

.landing-lab__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.landing-lab__label-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--lp-black);
  flex-shrink: 0;
}

.landing-lab__label-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2857;
  text-transform: none;
}

.landing-lab__title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.083;
}

.landing-lab__subtitle {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.167;
  max-width: 56em;
}

/* Hero — пропорции по Figma 1386×670 */
.landing-lab__hero-card {
  --hero-pad-x: 24px;
  --hero-pad-y: 28px;
  position: relative;
  overflow: hidden;
  background: var(--lp-blue);
  border-radius: var(--lp-radius);
  padding: var(--hero-pad-y) var(--hero-pad-x) 0;
  min-height: 480px;
}

.landing-lab__hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 100%;
  padding-bottom: 16px;
}

.landing-lab__hero-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.landing-lab .landing-lab__hero-eyebrow,
.landing-lab .landing-lab__hero-title,
.landing-lab .landing-lab__hero-text {
  margin: 0;
  color: var(--lp-black);
}

.landing-lab__hero-eyebrow {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.landing-lab__hero-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  max-width: 11em;
}

.landing-lab__hero-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  max-width: 28em;
}

.landing-lab__hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px 36px;
}

.landing-lab__hero-stat {
  position: relative;
  display: grid;
  gap: 6px;
  padding-left: 13px; /* 1px линия + 12px gap */
  min-height: 54px;
  box-sizing: border-box;
}

.landing-lab__hero-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--lp-black);
}

.landing-lab__hero-stat-value {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--lp-black);
}

.landing-lab__hero-stat-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--lp-black);
}

.landing-lab__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.landing-lab__hero-actions .button {
  min-height: 56px;
  padding: 16px 28px;
  border-radius: 80px;
  font-size: 16px;
  font-weight: 600;
  box-sizing: border-box;
}

.landing-lab__hero-actions .button_stroke {
  background: var(--lp-white);
  border: 1px solid var(--lp-white);
  color: var(--lp-black);
}

.landing-lab__hero-visual {
  position: relative;
  z-index: 1;
  height: 240px;
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 24px;
  pointer-events: none;
}

/* display:contents — обёртка picture не должна участвовать в раскладке,
   иначе img теряет размеры родительского .hero-visual */
.landing-lab__hero-picture {
  display: contents;
}

.landing-lab__hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
}

.landing-lab__hero-bubble {
  position: absolute;
  top: 12%;
  right: 8%;
  z-index: 3;
  width: 200px;
  padding: 14px 18px;
  border-radius: 32px;
  background: var(--lp-white);
  box-shadow: 0 10px 28px rgba(37, 55, 70, 0.12);
  pointer-events: auto;
}

.landing-lab__hero-bubble::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -6px;
  bottom: -40px;
  width: 57px;
  height: 52px;
  background: no-repeat center / contain;
  filter: drop-shadow(0 4px 6px rgba(37, 55, 70, 0.08));
}

.landing-lab--pigs .landing-lab__hero-bubble::after {
  background-image: url("/local/templates/vetunion-labs/assets/css/../images/landing-lab/pigs/hero-bubble-tail.svg");
}

.landing-lab--krs .landing-lab__hero-bubble::after {
  background-image: url("/local/templates/vetunion-labs/assets/css/../images/landing-lab/krs/hero-bubble-tail.png");
}

/* КРС: фото без inset-карточки, к правому/нижнему краю (Figma 399:6864) */
.landing-lab--krs .landing-lab__hero-visual {
  border-radius: 0;
  overflow: visible;
}

.landing-lab--krs .landing-lab__hero-image {
  object-fit: cover;
  object-position: left center;
}

.landing-lab--krs .landing-lab__hero-bubble {
  box-shadow: none;
}

.landing-lab__hero-bubble strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.landing-lab__hero-bubble span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.3;
}

/* Benefits */
.landing-lab__benefits .landing-lab__section-head {
  margin-bottom: 32px;
}

.landing-lab__benefits .landing-lab__label {
  margin-bottom: 0;
}

.landing-lab__benefits .landing-lab__label-text {
  color: var(--lp-black);
}

.landing-lab__benefits .landing-lab__title {
  color: var(--lp-black);
}

.landing-lab__benefits .landing-lab__subtitle {
  margin-top: 20px;
  max-width: 1263px;
  font-size: 18px;
  line-height: 22px;
  color: var(--lp-black);
}

.landing-lab__benefits-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.landing-lab__benefit-card {
  background: #f6f6f6;
  border-radius: var(--lp-radius);
  padding: 32px 24px;
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 100%;
  height: 100%;
  box-sizing: border-box;
}

.landing-lab--pigs .landing-lab__benefits-grid {
  align-items: start;
}

.landing-lab--pigs .landing-lab__benefit-card {
  min-height: 0;
  height: auto;
}

.landing-lab__benefit-card--flip {
  padding: 0;
  background: transparent;
  perspective: 900px;
  cursor: pointer;
}

.landing-lab__benefit-card--flip:focus {
  outline: none;
}

.landing-lab__benefit-card--flip:focus-visible {
  outline: 2px solid var(--lp-violet);
  outline-offset: 2px;
}

.landing-lab__benefit-inner {
  position: relative;
  display: grid;
  min-height: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.45s ease;
}

.landing-lab__benefit-card--flip.is-flipped .landing-lab__benefit-inner {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .landing-lab__benefit-card--flip:hover .landing-lab__benefit-inner,
  .landing-lab__benefit-card--flip:focus-within .landing-lab__benefit-inner {
    transform: rotateY(180deg);
  }
}

.landing-lab__benefit-face {
  grid-area: 1 / 1;
  display: grid;
  align-content: start;
  gap: 24px;
  width: 100%;
  min-height: 100%;
  padding: 32px 24px;
  border-radius: var(--lp-radius);
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.landing-lab__benefit-face--front {
  background: #f6f6f6;
}

.landing-lab__benefit-face--back {
  background: #253746;
  color: #fff;
  transform: rotateY(180deg);
}

.landing-lab__benefit-face--back .landing-lab__benefit-text {
  color: #fff;
}

.landing-lab__benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lp-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-lab__benefit-icon img {
  display: block;
  width: 28px;
  height: 28px;
}

@media (prefers-reduced-motion: reduce) {
  .landing-lab__benefit-inner,
  .landing-lab__profile-inner {
    transition: none;
  }
}

.landing-lab .landing-lab__benefit-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--lp-black);
}

.landing-lab--pigs .landing-lab__benefit-text {
  font-size: 18px;
  line-height: 22px;
}

/* Profiles */
.landing-lab__profiles-grid {
  display: grid;
  gap: 16px;
}

.landing-lab__profile-card {
  background: var(--lp-blue);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.landing-lab__profile-card--flip {
  padding: 0;
  background: transparent;
  perspective: 900px;
  cursor: pointer;
}

.landing-lab__profile-card--flip:focus {
  outline: none;
}

.landing-lab__profile-card--flip:focus-visible {
  outline: 2px solid var(--lp-violet);
  outline-offset: 2px;
}

.landing-lab__profile-inner {
  display: grid;
  min-height: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.45s ease;
}

.landing-lab__profile-card--flip.is-flipped .landing-lab__profile-inner {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .landing-lab__profile-card--flip:hover .landing-lab__profile-inner,
  .landing-lab__profile-card--flip:focus-within .landing-lab__profile-inner {
    transform: rotateY(180deg);
  }
}

.landing-lab__profile-face {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 54px;
  width: 100%;
  min-height: 100%;
  padding: 28px 24px;
  border-radius: var(--lp-radius);
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.landing-lab__profile-face--front {
  background: var(--lp-blue);
}

.landing-lab__profile-face--back {
  background: var(--lp-black);
  color: var(--lp-white);
  transform: rotateY(180deg);
}

.landing-lab__profile-back-copy {
  display: grid;
  gap: 8px;
}

.landing-lab__profile-back-label {
  margin: 0;
  color: var(--lp-violet);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.286;
}

.landing-lab__profile-back-text {
  margin: 0;
  color: var(--lp-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.22;
}

.landing-lab__profile-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.landing-lab__profile-chip {
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lp-white);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.landing-lab__profile-card--cta {
  background: var(--lp-blue);
}

.landing-lab__profile-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.landing-lab__profile-meta-label {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.landing-lab__profile-meta-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

.landing-lab__profile-card--cta .button {
  width: 100%;
  min-height: 56px;
}

/* Directions — сверка с макетом */
.landing-lab__directions .landing-lab__section-head {
  margin-bottom: 32px;
}

.landing-lab__directions .landing-lab__label {
  margin-bottom: 16px;
}

.landing-lab__directions .landing-lab__subtitle {
  margin-top: 16px;
  max-width: 900px;
}

/* Розовый блок поверх серого контейнера — как Frame 399:6946 */
.landing-lab__directions-stack {
  overflow: hidden;
  background: var(--lp-gray);
  border-radius: var(--lp-radius);
}

.landing-lab__directions-box {
  background: #dd9fd4;
  border-radius: var(--lp-radius);
  padding: 24px 20px;
}

.landing-lab__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.landing-lab__tag {
  display: inline-flex;
  align-items: center;
  padding: 16px 24px;
  border-radius: 30px;
  background: var(--lp-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #253745;
}

.landing-lab__catalog {
  display: grid;
  gap: 24px;
  align-items: center;
  justify-items: stretch;
  padding: 28px 20px;
  background: transparent;
}

.landing-lab__catalog-copy {
  display: grid;
  max-width: 456px;
}

.landing-lab__catalog-title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  color: var(--lp-black);
}

.landing-lab__catalog-text {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: var(--lp-black);
}

.landing-lab__catalog-preview {
  display: block;
  width: min(280px, 100%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  justify-self: center;
}

.landing-lab__catalog .button {
  width: 100%;
  min-height: 60px;
  padding: 20px 48px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  border-radius: 100px;
}

/* Process */
/* Process — Figma 399:6972 */
.landing-lab__process .landing-lab__section-head {
  margin-bottom: 32px;
}

.landing-lab__process-track {
  position: relative;
}

.landing-lab__process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.landing-lab__process-item {
  display: grid;
  gap: 24px;
  align-content: start;
}

.landing-lab__process-num {
  width: 52px;
  height: 51px;
  border-radius: 40px;
  background: var(--lp-blue);
  color: var(--lp-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

.landing-lab__process-item--accent .landing-lab__process-num {
  background: var(--lp-violet);
  color: var(--lp-white);
}

.landing-lab__process-body {
  display: grid;
  gap: 12px;
}

.landing-lab__process-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.landing-lab__process-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.landing-lab__process-line {
  display: none;
}

/* Trust */
/* Trust — Figma 399:7011 */
.landing-lab__trust .landing-lab__section-head {
  margin-bottom: 24px;
}

.landing-lab__trust-grid {
  display: grid;
  gap: 16px;
}

.landing-lab__trust-card {
  display: grid;
  gap: 24px;
  align-content: start;
  min-height: 0;
  background: var(--lp-gray);
  border-radius: var(--lp-radius);
  padding: 24px 20px;
}

.landing-lab__trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lp-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-lab__trust-icon img {
  width: 28px;
  height: 28px;
}

.landing-lab__trust-copy {
  display: grid;
  gap: 8px;
}

.landing-lab__trust-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.landing-lab__trust-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

/* Blog */
.landing-lab__blog-grid {
  display: grid;
  gap: 16px;
}

.landing-lab__blog-card {
  display: flex;
  flex-direction: column;
  background: var(--lp-gray);
  border-radius: var(--lp-radius);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-lab__blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 55, 70, 0.08);
  color: inherit;
}

.landing-lab__blog-image {
  display: block;
  width: 100%;
  aspect-ratio: 420 / 240;
  object-fit: cover;
}

.landing-lab__blog-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
  padding: 20px;
}

.landing-lab__blog-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--lp-black);
}

.landing-lab__blog-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #5c6b76;
}

.landing-lab__blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.landing-lab__blog-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #8a939b;
}

.landing-lab__blog-date-icon {
  display: block;
  flex-shrink: 0;
}

.landing-lab__blog-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-white);
  flex-shrink: 0;
}

/* Cases */
/* Cases — Figma 399:7026 */
.landing-lab__cases .landing-lab__section-head {
  margin-bottom: 24px;
}

.landing-lab__cases-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.landing-lab__case-card {
  background: var(--lp-blue);
  border-radius: var(--lp-radius);
  padding: 24px 20px;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.landing-lab__case-body {
  display: grid;
  gap: 24px;
  flex: 1 1 auto;
}

.landing-lab__case-tag {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 10px 16px;
  border-radius: 80px;
  background: var(--lp-black);
  color: var(--lp-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
}

.landing-lab__case-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.landing-lab__case-author {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: auto;
  flex-shrink: 0;
  min-height: 112px; /* одинаковая высота — имена на одной линии */
}

.landing-lab__case-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #d9d9d9;
  color: var(--lp-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
}

img.landing-lab__case-avatar {
  display: block;
  padding: 0;
}

.landing-lab__case-meta {
  display: grid;
  gap: 0;
  min-width: 0;
}

.landing-lab__case-author p,
.landing-lab__case-author p:not(:last-child) {
  margin: 0;
  margin-bottom: 0;
}

.landing-lab__case-name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--lp-black);
}

.landing-lab__case-role {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--lp-black);
}

/* FAQ — Figma 399:4957 */
.landing-lab__faq .landing-lab__label {
  margin-bottom: 10px;
}

.landing-lab__faq-layout {
  display: grid;
  gap: 32px;
}

.landing-lab__faq-aside {
  display: grid;
  gap: 40px;
  align-content: start;
}

.landing-lab__faq-head {
  display: grid;
  gap: 24px;
}

.landing-lab__faq-desc {
  margin: 0;
  max-width: 439px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--lp-black);
}

.landing-lab__faq-actions {
  display: grid;
  justify-items: start;
}

.landing-lab__faq-actions .button {
  min-height: 58px;
  min-width: 279px;
  padding: 19px 83px;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.landing-lab__faq-promo {
  display: grid;
  gap: 32px;
  width: 100%;
  max-width: 386px;
  padding: 0;
  border: 1px solid #e9ebed;
  border-radius: var(--lp-radius);
  background: #f6f6f6;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  box-sizing: border-box;
}

.landing-lab__faq-promo-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 0;
}

.landing-lab__faq-promo-title {
  flex: 1;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.17;
  color: var(--lp-black);
}

.landing-lab__faq-promo-arrow {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
}

.landing-lab__faq-promo-image {
  display: block;
  width: 100%;
  height: 239px;
  object-fit: cover;
  object-position: center bottom;
}

.landing-lab__faq-item {
  display: grid;
  gap: 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9ebed;
}

.landing-lab__faq-item.is-open {
  gap: 24px;
}

.landing-lab__faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--lp-black);
  font: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
}

.landing-lab__faq-toggle {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
  background: #f6f6f6;
}

.landing-lab__faq-toggle img {
  display: block;
  width: 15px;
  height: 18px;
  transition: transform 0.2s ease;
}

.landing-lab__faq-item.is-open .landing-lab__faq-toggle img {
  transform: rotate(180deg);
}

.landing-lab__faq-answer {
  display: none;
  padding: 0 48px 0 0;
}

.landing-lab__faq-item.is-open .landing-lab__faq-answer {
  display: block;
}

.landing-lab__faq-answer p,
.landing-lab__faq-answer p:not(:last-child) {
  margin: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--lp-black);
}

/* Checklist lead */
.landing-lab__checklist-box {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 28px 20px;
  background: var(--lp-gray);
  border-radius: var(--lp-radius);
}

.landing-lab__checklist-copy {
  display: grid;
  gap: 24px;
  max-width: 456px;
}

.landing-lab__checklist-title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.11;
  color: var(--lp-black);
}

.landing-lab__checklist-text {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--lp-black);
}

.landing-lab__checklist-preview {
  display: block;
  width: min(320px, 100%);
  height: auto;
  justify-self: center;
  border-radius: 27px;
  object-fit: cover;
}

.landing-lab__checklist-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
  min-height: 260px;
}

.landing-lab__checklist-action form {
  display: grid;
  gap: 32px;
  width: 100%;
  margin: 0;
}

.landing-lab__checklist-action form[hidden] {
  display: none;
}

.landing-lab__checklist-form-inner {
  display: grid;
  gap: 32px;
}

.landing-lab__checklist-fields {
  display: grid;
  gap: 16px;
}

.landing-lab__checklist-submit {
  display: grid;
  gap: 16px;
}

.landing-lab__checklist-action .button {
  position: relative;
  width: 100%;
  height: 60px;
  min-height: 60px;
  margin: 0;
  padding: 0 24px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.landing-lab__checklist-action .button.is-send {
  pointer-events: none;
  color: transparent;
  opacity: 1;
}

.landing-lab__checklist-action .button.is-send .landing-lab__checklist-submit-label {
  visibility: hidden;
}

.landing-lab__checklist-action .button.is-send::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: landing-lab-spin 0.6s linear infinite;
}

@keyframes landing-lab-spin {
  to {
    transform: rotate(360deg);
  }
}

.landing-lab__checklist-note {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--lp-black);
  text-align: center;
}

.landing-lab__checklist-note a {
  color: inherit;
}

.landing-lab__checklist-success {
  display: grid;
  gap: 8px;
  justify-items: center;
  width: 100%;
}

.landing-lab p.landing-lab__checklist-success-title,
.landing-lab p.landing-lab__checklist-success-text {
  margin: 0;
  margin-bottom: 0;
  color: var(--lp-black);
  text-align: left;
}

.landing-lab__checklist-success-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.105;
}

.landing-lab__checklist-success-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.167;
}

@media (min-width: 1170px) {
  .landing-lab__checklist-box {
    grid-template-columns: minmax(0, 385px) minmax(0, 421px) minmax(0, 428px);
    gap: 24px;
    justify-content: space-between;
    padding: 36px 48px;
  }

  .landing-lab__checklist-title {
    font-size: 36px;
  }

  .landing-lab__checklist-text {
    font-size: 20px;
  }

  .landing-lab__checklist-preview {
    width: 421px;
  }

  .landing-lab__checklist-note {
    text-align: center;
  }
}

/* Form section */
.landing-lab__form-box {
  display: grid;
  gap: 28px;
  background: var(--lp-black);
  border-radius: var(--lp-radius);
  padding: 28px 20px;
  color: var(--lp-white);
}

.landing-lab__form-eyebrow {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--lp-white);
}

.landing-lab__form-title {
  margin: 16px 0 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--lp-white);
}

.landing-lab__form-text {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.35;
  color: var(--lp-white);
}

.landing-lab__form-steps {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.landing-lab__form-step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.landing-lab__form-step-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-violet);
  color: #253746;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.landing-lab__form-step-body {
  display: grid;
  gap: 0;
}

.landing-lab .landing-lab__form-step-body p,
.landing-lab .landing-lab__form-step-title,
.landing-lab .landing-lab__form-step-text {
  margin: 0;
}

.landing-lab__form-step-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--lp-white);
}

.landing-lab__form-step-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

.landing-lab__form {
  position: relative;
  z-index: 100;
  overflow: visible;
}

.landing-lab__form-box,
.landing-lab__form-card {
  overflow: visible;
}

.page-lab-landing .footer {
  position: relative;
  z-index: 1;
}

.landing-lab__form-card {
  background: #f6f6f6;
  border-radius: var(--lp-radius);
  padding: 24px 20px 32px;
  color: var(--lp-black);
}

.landing-lab__form-card form {
  margin: 0;
}

.landing-lab__form-card form[hidden] {
  display: none;
}

.landing-lab-form__success {
  display: grid;
  align-content: center;
  min-height: 100%;
  height: 100%;
  gap: 8px;
  text-align: center;
}

.landing-lab__form-box:has(.landing-lab-form__success) {
  align-items: stretch;
}

.landing-lab__form-card:has(.landing-lab-form__success) {
  display: grid;
  height: 100%;
  box-sizing: border-box;
}

.landing-lab p.landing-lab-form__success-title,
.landing-lab p.landing-lab-form__success-text {
  margin: 0;
  margin-bottom: 0;
  color: var(--lp-black);
}

.landing-lab-form__success-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.105;
}

.landing-lab-form__success-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.167;
}

.landing-lab .landing-lab-form__fields {
  display: grid;
  gap: 24px;
}

.landing-lab .landing-lab-form__field {
  display: grid;
  gap: 4px;
  margin: 0;
}

.landing-lab .landing-lab-form__label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.286;
  color: var(--lp-black);
}

.landing-lab .landing-lab-form__errors {
  color: #c0392b;
  font-size: 14px;
}

.landing-lab .landing-lab-form__input {
  width: 100%;
  min-height: 56px;
  margin: 0;
  border: 1px solid #dcdcdc;
  border-radius: 100px;
  background: #fcfcfc;
  padding: 16px 20px;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--lp-black);
  box-sizing: border-box;
  appearance: none;
}

.landing-lab .landing-lab-form__field .lab-landing-select {
  width: 100%;
}

.landing-lab .landing-lab-form__field .lab-landing-select__trigger {
  min-height: 56px;
  padding: 16px 20px;
  border: 1px solid #dcdcdc;
  border-radius: 100px;
  background: #fcfcfc;
  font-size: 16px;
  line-height: 1.25;
  color: var(--lp-black);
}

.landing-lab .landing-lab-form__field .lab-landing-select__trigger-label {
  opacity: 1;
  color: var(--lp-black);
}

.landing-lab .landing-lab-form__field .lab-landing-select:not(.is-filled) .lab-landing-select__trigger-label {
  color: #acacac;
}

.landing-lab .landing-lab-form__input--textarea {
  min-height: 148px;
  border-radius: 24px;
  resize: vertical;
}

.landing-lab .landing-lab-form__input::placeholder {
  color: #acacac;
}

.landing-lab .landing-lab-form__actions {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.landing-lab .landing-lab-form__submit {
  position: relative;
  width: 100%;
  min-height: 60px;
  margin: 0;
  border: 0;
  border-radius: 100px;
  background: var(--lp-violet) !important;
  color: var(--lp-white) !important;
  border-color: var(--lp-violet) !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.landing-lab .landing-lab-form__submit.is-send {
  pointer-events: none;
  color: transparent !important;
}

.landing-lab .landing-lab-form__submit.is-send .landing-lab-form__submit-label {
  visibility: hidden;
}

.landing-lab .landing-lab-form__submit.is-send::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: landing-lab-spin 0.6s linear infinite;
}

.landing-lab .landing-lab-form__fields .button {
  margin: 0;
}

.landing-lab .landing-lab-form__policy {
  display: grid;
  gap: 16px;
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--lp-black);
}

.landing-lab .landing-lab-form__policy p,
.landing-lab .landing-lab-form__policy p:not(:last-child) {
  margin: 0;
  margin-bottom: 0;
}

.landing-lab .landing-lab-form__policy-link {
  color: inherit;
  text-decoration: underline;
}

.landing-lab--pigs .landing-lab-form__actions,
.landing-lab--krs .landing-lab-form__actions {
  gap: 16px;
  margin-top: 8px;
}

.landing-lab--pigs .landing-lab-form__policy,
.landing-lab--krs .landing-lab-form__policy {
  gap: 0;
  font-size: 16px;
  line-height: 1.25;
}

.landing-lab--pigs .landing-lab-form__policy-link,
.landing-lab--krs .landing-lab-form__policy-link {
  text-decoration: none;
}

/* Tablet+ */
@media (min-width: 768px) {
  .landing-lab {
    --lp-gap: 80px;
    padding: 32px 24px 100px;
  }

  .landing-lab__title {
    font-size: 40px;
    line-height: 1.083;
  }

  .landing-lab__subtitle {
    font-size: 20px;
    line-height: 1.167;
  }

  .landing-lab__hero-card {
    --hero-pad-x: 40px;
    --hero-pad-y: 40px;
    padding: var(--hero-pad-y) var(--hero-pad-x);
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
  }

  .landing-lab__hero-content {
    gap: 48px;
    /* 642.59 от карточки 1386, а не от content-box после padding */
    width: calc(642.59 / 1386 * (100% + 2 * var(--hero-pad-x)));
    max-width: 643px;
    padding: 0;
  }

  .landing-lab__hero-top {
    gap: 18px;
  }

  .landing-lab__hero-title {
    font-size: 36px;
    line-height: 40px;
    max-width: 520px;
  }

  .landing-lab__hero-text {
    margin-top: 14px;
    font-size: 20px;
    line-height: 24px;
    max-width: 520px;
  }

  .landing-lab__hero-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 36px;
  }

  .landing-lab__hero-stat {
    padding-left: 13px;
  }

  .landing-lab__hero-stat-value {
    font-size: 24px;
    line-height: 28px;
  }

  .landing-lab__hero-visual {
    position: absolute;
    top: 6.12%; /* 41 / 670 */
    right: 2.67%; /* (1386 - 674.56 - 674) / 1386 */
    bottom: auto;
    left: auto;
    width: 48.63%; /* 674 / 1386 */
    height: 87.16%; /* 584 / 670 */
    margin: 0;
    overflow: hidden;
    border-radius: 32px;
  }

  .landing-lab__hero-image {
    position: static;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
  }

  .landing-lab__hero-bubble {
    top: 19.4%; /* 113 / 584 */
    left: auto;
    right: 12.6%;
    width: 240px;
  }

  /* Свиньи: bubble у плеча врача (Figma 399:4789) */
  .landing-lab--pigs .landing-lab__hero-bubble {
    top: 19.4%; /* 113.2 / 584 */
    left: 47.5%; /* 320.43 / 674 */
    right: auto;
    width: 257px;
    padding: 13px 20px;
  }

  .landing-lab--pigs .landing-lab__hero-bubble strong {
    font-size: 20px;
    line-height: 1.2;
  }

  .landing-lab--pigs .landing-lab__hero-bubble::after {
    left: 0;
    bottom: -52px;
    width: 52px;
    height: 67px;
  }

  /* КРС: фото к правому/нижнему краю (Figma 399:6864) */
  .landing-lab--krs .landing-lab__hero-visual {
    top: 17.31%; /* 116 / 670 */
    right: 0;
    width: 55.56%; /* 770 / 1386 */
    height: 82.69%; /* 554 / 670 */
    border-radius: 0;
    overflow: hidden;
  }

  .landing-lab--krs .landing-lab__hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: left center;
    border-radius: 0;
  }

  .landing-lab--krs .landing-lab__hero-bubble {
    top: 0;
    right: auto;
    left: min(49.74%, calc(100% - 253px - 16px));
    width: 253px;
    max-width: calc(100% - 16px);
    padding: 16px 20px;
    box-sizing: border-box;
  }

  .landing-lab--krs .landing-lab__hero-bubble::after {
    left: -12px;
    bottom: -52px;
    width: 52px;
    height: 67px;
  }

  .landing-lab__benefits .landing-lab__subtitle {
    font-size: 20px;
    line-height: 24px;
  }

  .landing-lab__benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .landing-lab .landing-lab__benefit-text {
    font-size: 18px;
    line-height: 22px;
  }

  .landing-lab__profiles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-lab__directions .landing-lab__section-head {
    margin-bottom: 32px;
  }

  .landing-lab__directions-box {
    padding: 32px 32px 37px;
  }

  .landing-lab__tags {
    gap: 16px;
  }

  .landing-lab__tag {
    padding: 19px 24px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    border-radius: 30px;
  }

  .landing-lab__catalog {
    grid-template-columns: 456px minmax(0, 1fr) 282px;
    gap: 24px;
    align-items: center;
    justify-content: space-evenly;
    padding: 0px 48px;
    min-height: 246px;
  }

  .landing-lab__catalog-title {
    font-size: 36px;
    line-height: 40px;
  }

  .landing-lab__catalog-text {
    font-size: 20px;
    line-height: 24px;
  }

  .landing-lab__catalog-preview {
    width: 365px;
  }

  .landing-lab__catalog .button {
    width: 282px;
    min-width: 282px;
    min-height: 60px;
    padding: 20px 48px;
    justify-self: end;
  }

  .landing-lab__process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .landing-lab__process-item {
    gap: 36px;
  }

  .landing-lab__process-num {
    font-size: 32px;
  }

  .landing-lab__process-title {
    font-size: 24px;
    line-height: 28px;
  }

  .landing-lab__process-text {
    font-size: 18px;
    line-height: 22px;
  }

  .landing-lab__trust .landing-lab__section-head {
    margin-bottom: 32px;
  }

  .landing-lab__trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .landing-lab__trust-card {
    padding: 32px 24px;
    min-height: 242px;
  }

  .landing-lab__trust-title {
    font-size: 20px;
    line-height: 24px;
  }

  .landing-lab__trust-text {
    font-size: 18px;
    line-height: 22px;
  }

  .landing-lab__blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .landing-lab__blog-title {
    font-size: 22px;
  }

  .landing-lab__cases .landing-lab__section-head {
    margin-bottom: 32px;
  }

  .landing-lab__cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .landing-lab__case-card {
    padding: 32px;
    min-height: 430px;
  }

  .landing-lab__case-tag {
    font-size: 16px;
  }

  .landing-lab__case-text {
    font-size: 18px;
    line-height: 22px;
  }

  .landing-lab__case-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
  }

  .landing-lab__case-role {
    font-size: 18px;
    line-height: 22px;
    color: var(--lp-black);
  }

  .landing-lab__faq-layout {
    grid-template-columns: minmax(280px, 446px) minmax(0, 914px);
    gap: 24px;
    align-items: start;
  }

  .landing-lab__faq-actions .button {
    min-width: 279px;
    padding: 19px 83px;
  }

  .landing-lab__faq-question {
    font-size: 24px;
    line-height: 1.2;
  }

  .landing-lab__form-box {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: start;
  }

  .landing-lab__form-eyebrow {
    font-size: 28px;
    line-height: 1.15;
  }

  .landing-lab__form-title {
    font-size: 36px;
    line-height: 1.15;
  }

  .landing-lab__form-text {
    font-size: 20px;
    line-height: 1.3;
  }

  .landing-lab__form-step-title {
    font-size: 18px;
    line-height: 22px;
  }

  .landing-lab__form-step-text {
    font-size: 16px;
    line-height: 1.35;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .landing-lab {
    --lp-gap: 100px;
    padding: 40px 24px 120px;
  }

  .landing-lab__title {
    font-size: 48px;
    line-height: 1.083;
  }

  .landing-lab__subtitle {
    font-size: 24px;
    line-height: 1.167;
  }

  .landing-lab__hero-card {
    --hero-pad-x: 49px;
    --hero-pad-y: 48px;
    padding: var(--hero-pad-y) var(--hero-pad-x);
    min-height: 0;
    aspect-ratio: 1386 / 670;
  }

  .landing-lab__hero-content {
    gap: 48px;
    width: calc(642.59 / 1386 * (100% + 2 * var(--hero-pad-x)));
    max-width: 643px;
  }

  .landing-lab__hero-title {
    font-size: 48px;
    line-height: 52px;
    max-width: 520px;
  }

  .landing-lab__hero-text {
    font-size: 24px;
    line-height: 28px;
    max-width: 520px;
  }

  .landing-lab__hero-stat-value {
    font-size: 24px;
    line-height: 28px;
  }

  .landing-lab__hero-actions {
    gap: 16px;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .landing-lab__hero-actions .button {
    min-height: 68px;
    height: 68px;
    padding: 22px 48px;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .landing-lab__hero-actions .button_stroke {
    padding: 23px 24px;
  }

  .landing-lab__hero-visual {
    top: 41px;
    right: 37px;
    width: 674px;
    max-width: 48.63%;
    height: 584px;
    max-height: calc(100% - 82px);
  }

  .landing-lab__hero-bubble {
    top: 113px;
    right: 85px;
    width: 257px;
    padding: 13px 20px;
  }

  .landing-lab__hero-bubble strong {
    font-size: 20px;
    line-height: 1.2;
  }

  .landing-lab__hero-bubble span {
    font-size: 14px;
  }

  /* Свиньи: Figma 399:4789 — left 320px внутри фото 674 */
  .landing-lab--pigs .landing-lab__hero-bubble {
    top: 113px;
    left: 320px;
    right: auto;
    width: 257px;
  }

  .landing-lab--pigs .landing-lab__hero-bubble::after {
    left: 0;
    bottom: -52px;
    width: 52px;
    height: 67px;
  }

  .landing-lab--krs .landing-lab__hero-visual {
    top: 116px;
    right: 0;
    width: 770px;
    max-width: 55.56%;
    height: 554px;
    max-height: none;
    border-radius: 0;
  }

  .landing-lab--krs .landing-lab__hero-image {
    object-fit: cover;
    object-position: left center;
  }

  .landing-lab--krs .landing-lab__hero-bubble {
    top: 0;
    left: min(383px, calc(100% - 253px - 16px));
    right: auto;
    width: 253px;
    max-width: calc(100% - 16px);
    padding: 16px 20px;
    box-sizing: border-box;
  }

  .landing-lab--krs .landing-lab__hero-bubble::after {
    left: -12px;
    bottom: -52px;
    width: 52px;
    height: 67px;
  }

  .landing-lab__benefits .landing-lab__subtitle {
    font-size: 24px;
    line-height: 28px;
  }

  .landing-lab__benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .landing-lab--pigs .landing-lab__benefits .landing-lab__section-head {
    margin-bottom: 52px;
  }

  /* КРС: 5 карточек в ряд по макету */
  .landing-lab--krs .landing-lab__benefits-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .landing-lab--pigs .landing-lab__benefit-card {
    min-height: 0;
    height: auto;
  }

  .landing-lab--krs .landing-lab__benefit-card {
    min-height: 0;
    padding: 28px 16px;
  }

  .landing-lab--krs .landing-lab__benefit-card--flip {
    padding: 0;
  }

  .landing-lab--krs .landing-lab__benefit-face {
    padding: 28px 16px;
  }

  .landing-lab .landing-lab__benefit-text {
    font-size: 18px;
    line-height: 22px;
  }

  .landing-lab__profiles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .landing-lab__profile-card {
    min-height: 320px;
    padding: 32px;
  }

  .landing-lab__profile-card--flip {
    padding: 0;
  }

  .landing-lab__profile-face {
    padding: 32px;
  }

  .landing-lab__profile-back-text {
    font-size: 18px;
    line-height: 22px;
  }

  .landing-lab__profile-title {
    font-size: 24px;
  }

  .landing-lab__profile-meta-text {
    font-size: 18px;
  }

  .landing-lab__process .landing-lab__section-head {
    margin-bottom: 40px;
  }

  .landing-lab__process-track {
    padding-bottom: 0;
  }

  .landing-lab__process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .landing-lab__process-item {
    gap: 48px;
  }

  .landing-lab__process-line {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    height: 16px;
    pointer-events: none;
    z-index: 0;
  }

  .landing-lab__process-rail {
    position: absolute;
    left: 26px;
    right: 26px;
    top: 6px;
    height: 4px;
    border-radius: 50px;
    background: #e9ebed;
  }

  .landing-lab__process-dot {
    position: relative;
    z-index: 1;
    width: 8px;
    height: 8px;
    margin: 4px 0 0 22px;
    border-radius: 50%;
    background: var(--lp-violet);
  }

  .landing-lab__trust .landing-lab__section-head {
    margin-bottom: 40px;
  }

  .landing-lab__trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .landing-lab__blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .landing-lab__blog-body {
    padding: 24px;
  }

  .landing-lab__cases .landing-lab__section-head {
    margin-bottom: 40px;
  }

  .landing-lab__cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .landing-lab__form-box {
    gap: 48px;
    padding: 48px;
  }

  .landing-lab__form-eyebrow {
    font-size: 32px;
    line-height: 36px;
  }

  .landing-lab__form-title {
    margin-top: 24px;
    font-size: 48px;
    line-height: 1.08;
  }

  .landing-lab__form-text {
    margin-top: 24px;
    font-size: 24px;
    line-height: 1.17;
  }

  .landing-lab__form-steps {
    margin-top: 40px;
    gap: 24px;
  }

  .landing-lab__form-card {
    padding: 32px 32px 48px;
  }

  .landing-lab--pigs .landing-lab__form-box {
    grid-template-columns: minmax(0, 1fr) 652px;
  }

  .landing-lab--pigs .landing-lab__form-card {
    width: 652px;
    max-width: 100%;
  }
}

/* Mobile 375 — Figma 476:1745. Идёт последним, чтобы гарантированно
   перебивать базовые и другие медиа-правила той же специфичности. */
@media (max-width: 767.98px) {
  .landing-lab {
    --lp-gap: 80px;
    --lp-radius: 24px;
    padding: 16px 16px 40px;
  }

  .landing-lab__title {
    font-size: 32px;
    line-height: 1.125;
  }

  .landing-lab__subtitle {
    margin-top: 16px;
    font-size: 20px;
    line-height: 1.2;
  }

  .landing-lab__section-head {
    margin-bottom: 32px;
  }

  /* Hero */
  .landing-lab__hero-card {
    --hero-pad-x: 16px;
    --hero-pad-y: 24px;
    border-radius: 24px;
    padding: 24px 16px 0;
    min-height: 0;
  }

  .landing-lab__hero-content {
    width: 100%;
    max-width: none;
    gap: 20px;
    padding-bottom: 0;
  }

  .landing-lab__hero-top {
    gap: 16px;
  }

  .landing-lab__hero-eyebrow {
    font-size: 13px;
    line-height: 1.31;
  }

  .landing-lab__hero-title {
    font-size: 32px;
    line-height: 1.125;
    max-width: none;
  }

  .landing-lab__hero-text {
    margin-top: 0;
    font-size: 20px;
    line-height: 1.2;
    max-width: none;
  }

  .landing-lab__hero-stats {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 12px;
  }

  .landing-lab__hero-stat {
    min-height: 0;
  }

  .landing-lab__hero-stat-value {
    font-size: 24px;
    line-height: 1.17;
  }

  .landing-lab__hero-stat-label {
    font-size: 16px;
    line-height: 1.25;
  }

  .landing-lab__hero-actions {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 16px;
  }

  .landing-lab__hero-actions .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    height: 52px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.25;
    box-sizing: border-box;
    white-space: nowrap;
  }

  .landing-lab__hero-actions .button_stroke {
    padding: 0 20px;
  }

  .landing-lab__hero-visual {
    position: relative;
    top: auto;
    right: auto;
    height: 325px;
    width: auto;
    max-width: none;
    max-height: none;
    margin: 32px -16px 0;
    border-radius: 0;
    overflow: hidden;
  }

  /* inset:0 вместо width/height:100% — не зависит от расчёта высоты
     родителя во flow и всегда растягивает картинку на весь блок */
  .landing-lab__hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }

  /* Figma 476:1827 — бабл 253×74 на (9, 200) внутри блока с коровой */
  .landing-lab__hero-bubble {
    position: absolute;
    top: auto;
    bottom: 51px;
    left: 9px;
    right: auto;
    z-index: 3;
    width: 253px;
    padding: 16px 20px;
    border-radius: 32px;
    box-shadow: none;
  }

  .landing-lab__hero-bubble strong {
    font-size: 20px;
    line-height: 1.2;
  }

  .landing-lab__hero-bubble span {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.286;
  }

  .landing-lab--krs .landing-lab__hero-card {
    overflow: hidden; /* блок с коровой шире карточки и обрезается ею */
  }

  /* КРС ≤767: корова + bubble прижаты к правому краю карточки */
  .landing-lab--krs .landing-lab__hero-visual {
    width: 401px;
    height: 325px;
    margin: 50px -16px 0 auto;
    overflow: hidden;
  }

  /* hero-mobile.png уже содержит нужный кроп с масштабом и наклоном
     по макету, поэтому просто растягиваем его на весь блок */
  .landing-lab--krs .landing-lab__hero-image {
    object-fit: fill;
    object-position: center;
  }

  /* Figma 476:1832 — тонкий треугольник, остриё вверх-вправо к шее,
     основание уходит под бабл (скрыто через z-index:-1) */
  .landing-lab--krs .landing-lab__hero-bubble::after {
    left: 39px;
    top: -45px;
    bottom: auto;
    width: 52px;
    height: 67px;
    background-image: url("/local/templates/vetunion-labs/assets/css/../images/landing-lab/krs/hero-bubble-tail.svg");
    background-size: 100% 100%;
    filter: none;
    transform: none;
  }

  /* Benefits */
  .landing-lab__benefits .landing-lab__section-head {
    margin-bottom: 32px;
  }

  .landing-lab__benefits .landing-lab__subtitle {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.2;
  }

  .landing-lab__benefit-card {
    padding: 24px 20px;
    border-radius: 32px;
  }

  .landing-lab__benefit-card--flip {
    padding: 0;
  }

  .landing-lab__benefit-face {
    padding: 24px 20px;
    border-radius: 32px;
  }

  .landing-lab__benefit-icon {
    width: 48px;
    height: 48px;
  }

  .landing-lab__benefit-icon img {
    width: 24px;
    height: 24px;
  }

  .landing-lab .landing-lab__benefit-text {
    font-size: 16px;
    line-height: 1.25;
  }

  /* Profiles */
  .landing-lab__profile-card {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 32px;
    gap: 54px;
  }

  .landing-lab__profile-card--flip {
    padding: 0;
  }

  .landing-lab__profile-face {
    padding: 24px 20px;
    border-radius: 32px;
    gap: 32px;
  }

  .landing-lab__profile-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .landing-lab__profile-meta-text {
    font-size: 16px;
    line-height: 1.25;
  }

  .landing-lab__profile-card--cta .button {
    min-height: 60px;
  }

  /* Directions */
  .landing-lab__directions-box {
    padding: 20px 20px 30px;
  }

  .landing-lab__tag {
    padding: 12px 16px;
    font-size: 14px;
  }

  .landing-lab__catalog {
    padding: 30px 20px;
    gap: 24px;
  }

  .landing-lab__catalog .button {
    width: 100%;
    min-height: 60px;
  }

  /* Process — вертикальный трек слева */
  .landing-lab__process-track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
  }

  .landing-lab__process-line {
    display: block;
    position: relative;
    order: -1;
    flex: 0 0 8px;
    width: 8px;
    align-self: stretch;
    min-height: 100%;
  }

  .landing-lab__process-rail {
    position: absolute;
    inset: 0;
    width: 8px;
    height: auto;
    border-radius: 50px;
    background: #e9ebed;
  }

  .landing-lab__process-dot {
    display: none;
  }

  .landing-lab__process-grid {
    flex: 1 1 auto;
    min-width: 0;
    gap: 40px;
  }

  .landing-lab__process-item {
    gap: 16px;
  }

  .landing-lab__process-num {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .landing-lab__process-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .landing-lab__process-text {
    font-size: 16px;
    line-height: 1.25;
  }

  /* Trust */
  .landing-lab__trust-card {
    padding: 24px 20px;
    border-radius: 32px;
  }

  .landing-lab__trust-icon {
    width: 48px;
    height: 48px;
  }

  .landing-lab__trust-title {
    font-size: 20px;
    line-height: 1.2;
  }

  /* Cases */
  .landing-lab__case-card {
    padding: 20px 20px 0;
    border-radius: 32px;
  }

  .landing-lab__case-author {
    min-height: 0;
  }

  /* FAQ */
  .landing-lab__faq-layout {
    gap: 32px;
  }

  .landing-lab__faq-aside {
    gap: 24px;
  }

  .landing-lab__faq-actions .button {
    width: 100%;
    min-height: 56px;
  }

  .landing-lab__faq-promo {
    min-height: 240px;
  }

  /* Checklist */
  .landing-lab__checklist-box {
    padding: 24px 20px;
    gap: 24px;
  }

  .landing-lab__checklist-action .button {
    width: 100%;
    height: 56px;
    min-height: 56px;
  }

  .landing-lab__checklist-success-title {
    font-size: 28px;
  }

  .landing-lab__checklist-success-text {
    font-size: 18px;
  }

  /* Form */
  .landing-lab__form-box {
    padding: 16px;
    gap: 32px;
    border-radius: 32px;
  }

  .landing-lab__form-eyebrow {
    font-size: 14px;
    font-weight: 600;
  }

  .landing-lab__form-title {
    margin-top: 10px;
    font-size: 32px;
    line-height: 1.125;
  }

  .landing-lab__form-text {
    font-size: 16px;
  }

  .landing-lab__form-card {
    padding: 20px 16px 32px;
    border-radius: 24px;
  }

  .landing-lab .landing-lab-form__submit {
    min-height: 56px;
    height: 56px;
  }
}

/* End */
/* /local/templates/vetunion-labs/assets/css/landing-lab-modals.css?178791282312011 */
/* /local/templates/vetunion-labs/assets/css/landing-lab.css?178791282352079 */
