/* ═══════════════════════════════════════════════════════════════
   SYNAPS PHARMA — Feuille de styles principale
   Pour modifier les couleurs : changer les variables dans :root {}
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables — Charte Synaps Pharma ─────────────────────── */
/*
   Pantone 5655  → vert sauge (#94B09A)
   Noir 88%      → charbon foncé (#2C2C2C)
   Police        → Josefin Sans (approx. Fashion Fetish) + Inter (corps)
*/
:root {
  --color-primary:   #94B09A;   /* Pantone 5655 — vert sauge du logo */
  --color-primary-d: #6E9278;   /* Pantone 5655 assombri (hover) */
  --color-dark:      #2C2C2C;   /* Noir 88% — texte & sections sombres */
  --color-dark-d:    #1A1A1A;   /* Quasi-noir pour hero */
  --color-light:     #F4F7F4;   /* Fond clair teinté sauge */
  --color-white:     #FFFFFF;
  --color-muted:     #6B7A6E;   /* Texte secondaire (gris-sauge) */
  --color-border:    #D5E0D6;   /* Bordures légères */

  --font-heading: 'Josefin Sans', 'Inter', sans-serif;  /* approx. Fashion Fetish */
  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:    12px;
  --radius-sm: 6px;
  --shadow:    0 4px 24px rgba(44,44,44,.10);
  --shadow-md: 0 8px 40px rgba(44,44,44,.16);
  --transition: .25s ease;
  --nav-h: 72px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ── Conteneur ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Boutons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.btn--primary:hover { background: var(--color-accent-d); transform: translateY(-2px); }
.btn--outline {
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
}
.btn--outline:hover { background: rgba(255,255,255,.12); }
.btn--full { width: 100%; justify-content: center; }

/* ── En-têtes de section ───────────────────────────────────── */
.section { padding: 96px 0; }
.section--light { background: var(--color-light); }
.section--dark  { background: var(--color-dark); }
.section--white { background: var(--color-white); }

.section__header { text-align: center; margin-bottom: 64px; }
.section__label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.section__label--light { color: rgba(0,168,120,.8); }
.section__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 16px;
}
.section__title--light { color: #fff; }
.section__sub { max-width: 600px; margin: 0 auto; color: var(--color-muted); font-size: 1.05rem; }
.section__sub--light { color: rgba(255,255,255,.7); }

.link { color: var(--color-accent); font-weight: 600; }
.link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  height: var(--nav-h);
}
.nav.scrolled {
  background: var(--color-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img { height: 46px; width: auto; display: block; }
.nav__logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.5px;
}
.nav__logo-text strong { color: var(--color-accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav__link--cta {
  background: var(--color-accent);
  color: #fff;
  margin-left: 8px;
  padding: 9px 18px;
}
.nav__link--cta:hover { background: var(--color-accent-d); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark-d);
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .3;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.92) 0%, rgba(148,176,154,.25) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 760px;
}
.hero__label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--color-accent);
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero__scroll svg { width: 32px; height: 32px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Animations entrée Hero */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .7s ease forwards;
}
.animate-up:nth-child(1) { animation-delay: .1s; }
.animate-up:nth-child(2) { animation-delay: .25s; }
.animate-up:nth-child(3) { animation-delay: .4s; }
.animate-up:nth-child(4) { animation-delay: .55s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   CHIFFRES CLÉS
══════════════════════════════════════════════════════════════ */
.chiffres {
  background: var(--color-primary);
  padding: 48px 0;
}
.chiffres__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.chiffre-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.chiffre-item:last-child { border-right: none; }
.chiffre-item__val {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.chiffre-item__label {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  margin-top: 6px;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   À PROPOS
══════════════════════════════════════════════════════════════ */
.apropos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.apropos__lead {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--color-dark);
}
.apropos__texte p { margin-bottom: 16px; color: var(--color-muted); }
.apropos__texte .section__title { margin-bottom: 24px; color: var(--color-dark); }

.apropos__valeurs {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.valeur {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
}
.valeur__icon { width: 28px; height: 28px; flex-shrink: 0; margin-top: 2px; color: var(--color-primary); }
.valeur__icon svg { width: 100%; height: 100%; }
.valeur div { display: flex; flex-direction: column; }
.valeur strong { font-weight: 700; color: var(--color-dark); margin-bottom: 2px; }
.valeur span { font-size: .9rem; color: var(--color-muted); }

.apropos__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--color-border);
}
.apropos__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.img-placeholder {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-border) 100%);
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: block;
  color: var(--color-primary);
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.service-card__desc { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   CARTE
══════════════════════════════════════════════════════════════ */
.carte__wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  height: 560px;
  margin-top: 48px;
}
.carte__map {
  height: 100%;
  z-index: 1;
  border-radius: var(--radius) 0 0 var(--radius);
  overflow: hidden;
}
.carte__liste {
  height: 100%;
  overflow-y: auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0 var(--radius) var(--radius) 0;
  border-left: none;
}
.carte__liste::-webkit-scrollbar { width: 4px; }
.carte__liste::-webkit-scrollbar-track { background: var(--color-light); }
.carte__liste::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 2px; }

.pharma-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: background var(--transition);
}
.pharma-item:hover, .pharma-item.active { background: var(--color-light); }
.pharma-item__img {
  width: 56px; height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-border);
}
.pharma-item__info { flex: 1; min-width: 0; }
.pharma-item__nom { font-weight: 700; font-size: .9rem; color: var(--color-dark); margin-bottom: 2px; }
.pharma-item__adresse { font-size: .82rem; color: var(--color-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pharma-item__ville { font-size: .82rem; color: var(--color-muted); }

/* Popup Leaflet personnalisé */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-md) !important;
  border: none !important;
}
.popup-content { max-width: 240px; }
.popup-content img {
  width: 100%; height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  background: var(--color-border);
}
.popup-content h3 { font-size: .95rem; font-weight: 700; color: var(--color-dark); margin-bottom: 4px; }
.popup-content p  { font-size: .83rem; color: var(--color-muted); margin-bottom: 2px; }
.popup-content a  { color: var(--color-primary); font-size: .83rem; font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
   LABORATOIRES
══════════════════════════════════════════════════════════════ */
.labos .section__header { margin-bottom: 48px; }
.labos__track-wrap {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  margin: 0 0 40px;
}
.labos__track-wrap::before,
.labos__track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.labos__track-wrap::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.labos__track-wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }

.labos__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scroll-track 35s linear infinite;
}
.labos__track:hover { animation-play-state: paused; }

.labo-item {
  flex-shrink: 0;
  padding: 16px 40px;
  border-right: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 80px;
  transition: var(--transition);
}
.labo-item:hover { background: var(--color-light); border-radius: var(--radius-sm); }
.labo-item img {
  max-height: 44px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .6;
  transition: var(--transition);
}
.labo-item:hover img { filter: none; opacity: 1; }
.labo-item__name {
  font-weight: 700;
  font-size: .85rem;
  color: var(--color-muted);
  text-align: center;
  transition: color var(--transition);
}
.labo-item:hover .labo-item__name { color: var(--color-primary); }

@keyframes scroll-track {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.labos__note {
  text-align: center;
  color: var(--color-muted);
  font-size: .95rem;
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS / ÉVÉNEMENTS
══════════════════════════════════════════════════════════════ */
.animations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.event-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-card__img-wrap {
  height: 220px;
  overflow: hidden;
  background: var(--color-border);
}
.event-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.event-card:hover .event-card__img-wrap img { transform: scale(1.04); }
.event-card__body { padding: 24px; }
.event-card__tag {
  display: inline-block;
  background: rgba(148,176,154,.18);
  color: var(--color-primary-d);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.event-card__body h3 { font-size: 1.05rem; font-weight: 700; color: var(--color-dark); margin-bottom: 4px; }
.event-card__date { font-size: .82rem; color: var(--color-primary-d); font-weight: 600; margin-bottom: 8px; }
.event-card__body p { font-size: .9rem; color: var(--color-muted); }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__intro {
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
}
.contact__details svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-primary); }
.contact__details a:hover { color: var(--color-accent); }
.contact__socials { display: flex; gap: 12px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }

.contact__form-wrap {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--color-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(148,176,154,.25);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form__note { text-align: center; font-size: .82rem; color: var(--color-muted); margin-top: 12px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--color-dark-d);
  color: rgba(255,255,255,.65);
  padding: 48px 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__logo { height: 44px; width: auto; display: block; }
.footer__logo-text { font-size: 1.1rem; font-weight: 700; color: #fff; }
.footer__logo-text strong { color: var(--color-primary); }
.footer__brand p { font-size: .85rem; font-style: italic; }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.footer__nav a { font-size: .85rem; transition: color var(--transition); }
.footer__nav a:hover { color: var(--color-primary); }
.footer__copy { text-align: right; font-size: .8rem; line-height: 1.7; }
.footer__copy small { opacity: .6; }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS AU DÉFILEMENT
══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal--right {
  transform: translateX(32px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════════════════════════════════════════
   SECTION LABORATOIRES — B2B
══════════════════════════════════════════════════════════════ */
.labos-pro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.labos-pro__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.labos-pro__card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.labos-pro__icon { width: 48px; height: 48px; margin: 0 auto 18px; color: var(--color-primary); }
.labos-pro__icon svg { width: 100%; height: 100%; }
.labos-pro__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.labos-pro__card p { font-size: .88rem; color: var(--color-muted); line-height: 1.6; }
.labos-pro__cta { text-align: center; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablette (≤ 900px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .apropos__grid { grid-template-columns: 1fr; gap: 48px; }
  .apropos__visuel { order: -1; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .carte__wrap { grid-template-columns: 1fr; height: auto; }
  .carte__map { height: 400px; border-radius: var(--radius) var(--radius) 0 0; }
  .carte__liste { border-radius: 0 0 var(--radius) var(--radius); border-left: 1px solid var(--color-border); border-top: none; height: 320px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer__copy { text-align: center; }
  .chiffres__grid { grid-template-columns: repeat(2, 1fr); }
  .chiffre-item:nth-child(2) { border-right: none; }
  .labos-pro__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 640px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--color-primary);
    padding: 32px 24px;
    gap: 8px;
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__link { font-size: 1.1rem; padding: 12px 16px; }
  .nav__burger { display: flex; }
  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__actions { flex-direction: column; }
  .services__grid { grid-template-columns: 1fr; }
  .animations__grid { grid-template-columns: 1fr; }
  .chiffres__grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .labos-pro__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 28px 20px; }
}
