:root {
  --brand-primary: #69ce79;
  --brand-primary-dark: #176b35;
  --brand-secondary: #efffe9;
  --brand-accent: #f4fff0;
  --text-dark: #18361d;
  --text-muted: #6d7c71;
  --border: #dceedd;
  --shadow: 0 20px 50px rgba(105, 206, 121, 0.18);
  font-size: 16px;
}

/* Green themed scrollbars (WebKit + Firefox) */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--brand-primary) #eaf9e7;
}
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #eaf9e7;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  border-radius: 10px;
  border: 2px solid #eaf9e7;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--brand-primary-dark) 0%, #2ea94a 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: #f7fff3;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 10px;
  background: #173d25;
  color: #fff;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid #f3a712;
  outline-offset: 3px;
}

body.menu-open {
  overflow: hidden;
}
/* Global toast */
.toast {
  position: fixed;
  left: 50%;
  top: 12px;
  transform: translateX(-50%) translateY(-16px);
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  font-weight: 700;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

header,
main,
footer {
  transition: filter 0.6s ease, transform 0.6s ease;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(105, 206, 121, 0.1);
}
/* Ensure header (and thus mobile nav) stays above backdrop when menu is open */
body.menu-open header { z-index: 2200; }

.top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  min-height: 64px;
  position: relative;
  column-gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  flex: 1 1 auto;
  justify-self: start;
}
.nav-wrapper { justify-self: center; }
.lang-group { justify-self: end; }

.logo img {
  width: 140px;
  height: auto;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px 18px;
  border-radius: 60px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  gap: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(120deg, #f4fff6 0%, #f9fffb 100%);
  border-radius: 50px;
  padding: 6px;
}

nav a {
  position: relative;
  font-weight: 600;
  color: var(--text-dark);
  padding: 12px 22px;
  border-radius: 40px;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .12s ease;
  will-change: transform, box-shadow;
  /* subtle glass look */
  background: rgba(255,255,255,.6);
  backdrop-filter: saturate(130%) blur(2px);
}
/* animated underline */
nav a::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  bottom:8px;
  height:3px;
  border-radius:3px;
  background: linear-gradient(90deg,#69ce79 0%, #3fbf7a 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

nav a.active {
  background: #78d55f;
  color: #fff;
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.12), 0 8px 18px #78d55f;
}
nav a.active::after{ transform: scaleX(0); }
/* active item hover - keep calm */
nav a.active:hover{
  background: #78d55f;
  color:#fff;
  transform:none;
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.12), 0 8px 18px #78d55f;
}
nav a.active:hover::after{ transform: scaleX(0); }

nav a:hover {
  background: #78d55f;
  color: #fff;
  transform: translateY(-0.5px);
  box-shadow: 0 6px 14px rgba(105,206,121,.12);
}
nav a:hover::after{ transform: scaleX(0); }
nav a:focus-visible{ outline:3px solid #f3a712; outline-offset:2px; }

/* Backdrop for mobile menu */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: transparent; /* base */
  backdrop-filter: none; /* base */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 900;
}
.menu-backdrop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(2px);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1f2937;
  border-radius: 2px;
  position: relative;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #1f2937;
  border-radius: 2px;
  transition: transform .25s ease, top .25s ease, opacity .25s ease;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 36px;
  min-height: 44px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #7fe08d 100%);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
}

.lang-group { position: relative; }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 120px;
  background: #ffffff;
  border: 1px solid rgba(105,206,121,.18);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
  padding: 8px;
  display: none;
  z-index: 1100;
}
.lang-group.open .lang-menu { display: block; }
.lang-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #1f2937;
  font-weight: 600;
}
.lang-menu a:hover { background: #f7fff3; }

.hero {
  width: 100%;
  margin: 0;
  padding: 68px 0 46px;
  background: linear-gradient(135deg, #eaffdf 0%, #f4fff0 100%);
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: 0 28px 60px rgba(105, 206, 121, 0.15);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 85% 8%,
    rgba(105, 206, 121, 0.18) 0%,
    transparent 55%
  );
  pointer-events: none;
  border-radius: inherit;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 48px;
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  text-align: left;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.4rem);
  margin: 0;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(120deg, #2ca24b 0%, #52cf69 35%, #1d8f3e 65%, #7ff08d 100%);
  background-size: 260% 260%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 14px 30px rgba(45, 140, 70, 0.38);
  animation: textPulse 4.5s ease-in-out infinite;
}

.hero h1 .accent {
  background: linear-gradient(120deg, #0f7f32 0%, #2ea94a 35%, #0f6b2a 65%, #55e073 100%);
  background-size: 260% 260%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 18px 38px rgba(31, 126, 58, 0.45);
  animation: textPulse 4.5s ease-in-out infinite;
}

.hero p {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 420px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  background: #89d033;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(72, 177, 90, 0.25);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
}

.hero-image img {
  width: min(540px, 96%);
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center bottom;
  position: relative;
  z-index: 1;
 }

.partners {
  padding: 48px 0;
  background: #fff;
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.partners-list img {
  width: clamp(120px, 16vw, 160px);
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: drop-shadow(0 6px 12px rgba(105, 206, 121, 0.15));
}

.partners-list img:hover {
  transform: translateY(-6px) scale(1.02);
  opacity: 1;
}

.stats {
  padding: 80px 0;
  background: none;
}

.stats .container {
  background: #eaf9e7;
  border-radius: 32px;
  padding: 64px 70px;
  box-shadow: 0 24px 60px rgba(111, 222, 134, 0.18);
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head span {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-primary-dark);
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 20px;
}

.stats-grid::before,
.stats-grid::after { display: none; }

.stat-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  position: relative;
  overflow: visible;
  transition: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.stat-card::after { display: none; }

.stat-card:hover { transform: none; box-shadow: none; }

.stat-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #ffffff !important;
  border: 2px solid rgba(105, 206, 121, 0.25);
  box-shadow: 0 10px 22px rgba(105, 206, 121, 0.18);
}

.stat-icon::after { display: none; }

.stat-icon img {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.stat-card:nth-of-type(1) .stat-icon,
.stat-card:nth-of-type(2) .stat-icon,
.stat-card:nth-of-type(3) .stat-icon,
.stat-card:nth-of-type(4) .stat-icon { background: #ffffff !important; }

.stat-card strong {
  display: block;
  font-size: 2.6rem;
  color: var(--brand-primary-dark);
  letter-spacing: 0.01em;
  text-shadow: none;
  margin: 0;
}

.stat-card strong .unit {
  font-size: 1rem;
  vertical-align: super;
  margin-left: 4px;
  letter-spacing: 0.06em;
}

.stat-card span {
  font-size: 1rem;
  color: rgba(24, 54, 29, 0.65);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
}

.treatments,
.products,
.articles {
  padding: 70px 0;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.treatment-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  height: 220px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  font-weight: 600;
  background: #18361d;
}

.treatment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 32, 9, 0.15) 0%, #0f2311 100%);
}

.treatment-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-card span {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

/* Reusable premium product grid and card */
.nl-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 32px);
  align-items: stretch;
}

.nl-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e6ece7;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(24, 54, 29, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.nl-product-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.nl-product-card__link:focus-visible {
  border-radius: 16px;
  outline: 3px solid rgba(40, 103, 49, 0.42);
  outline-offset: 4px;
}

.nl-product-card:hover {
  transform: translateY(-6px);
  border-color: #d6ead8;
  box-shadow: 0 20px 44px rgba(24, 54, 29, 0.12);
}

.nl-product-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 276px;
  flex: 0 0 276px;
  overflow: hidden;
  border: 1px solid #edf3ee;
  border-radius: 18px;
  background: linear-gradient(145deg, #fbfdfb 0%, #eef8ed 100%);
}

.nl-product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, rgba(137, 208, 51, 0.09), transparent 62%);
}

.nl-product-card__image {
  position: relative;
  z-index: 2;
  display: block;
  width: 90%;
  height: 90%;
  object-fit: contain;
  object-position: center;
  transition: transform 260ms ease;
}

.nl-product-card:hover .nl-product-card__image { transform: scale(1.025); }

.nl-product-card__fallback {
  position: absolute;
  z-index: 1;
  inset: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #6c8b70;
  font-weight: 700;
  opacity: 0;
}

.nl-product-card__fallback svg { width: 54px; height: 54px; }
.nl-product-card__media.is-fallback .nl-product-card__fallback { opacity: 1; }

.nl-product-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 18px 4px 2px;
}

.nl-product-card__benefit {
  display: -webkit-box;
  min-height: 3em;
  margin: 0 0 8px;
  overflow: hidden;
  color: #6b7280;
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nl-product-card__title {
  display: -webkit-box;
  min-height: 2.36em;
  margin: 0 0 10px;
  overflow: hidden;
  color: #17201a;
  font-size: clamp(1.5rem, 1.8vw, 1.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nl-product-card__description {
  display: -webkit-box;
  min-height: 4.65em;
  margin: 0 0 18px;
  overflow: hidden;
  color: #667085;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.55;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.nl-product-card__disclaimer {
  display: block;
  min-height: 2.7em;
  margin: -5px 0 14px;
  color: #52635a;
  font-size: .8125rem;
  line-height: 1.35;
}

.nl-product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  padding: 0 18px;
  color: #ffffff;
  font-weight: 750;
  text-decoration: none;
  background: #5fbb46;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(95, 187, 70, 0.2);
  transition: background-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.nl-product-card:hover .nl-product-card__button {
  color: #ffffff;
  background: #469b35;
  box-shadow: 0 11px 24px rgba(70, 155, 53, 0.27);
}

.nl-product-card__arrow {
  display: inline-flex;
  flex: 0 0 auto;
  margin-left: 12px;
  transition: transform 240ms ease;
}

.nl-product-card:hover .nl-product-card__arrow { transform: translateX(4px); }

@media (min-width: 768px) and (max-width: 1279px) {
  .nl-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nl-product-card__media { height: 264px; flex-basis: 264px; }
}

@media (max-width: 767px) {
  .nl-products-grid { grid-template-columns: 1fr; gap: 18px; }
  .nl-product-card { padding: 13px; border-radius: 20px; }
  .nl-product-card__media { height: 232px; flex-basis: 232px; border-radius: 16px; }
  .nl-product-card__content { padding: 15px 3px 2px; }
  .nl-product-card__benefit { font-size: 1rem; }
  .nl-product-card__title { font-size: clamp(1.3125rem, 6vw, 1.4375rem); }
  .nl-product-card__description { font-size: 1rem; }
  .nl-product-card__button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .nl-product-card,
  .nl-product-card__image,
  .nl-product-card__button,
  .nl-product-card__arrow { transition: none; }
  .nl-product-card:hover { transform: none; }
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.article-card {
  border-radius: 24px;
  background: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 40px rgba(105, 206, 121, 0.1);
}

.article-card img {
  border-radius: 18px;
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.article-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.article-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  flex: 1;
}

.article-card a {
  font-weight: 600;
  color: var(--brand-primary-dark);
}

.contacts {
  padding: 80px 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

.contact-card {
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(105, 206, 121, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.contact-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card a {
  font-weight: 600;
  color: var(--brand-primary-dark);
}

form {
  display: grid;
  gap: 16px;
}

input,
textarea {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  font: inherit;
  background: #f9fff7;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(105, 206, 121, 0.2);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: clamp(56px, 5vw, 68px) 0 calc(28px + var(--site-chat-reserve, 0px));
  color: #304437;
  border-top: 1px solid #d9e7db;
  background: linear-gradient(180deg, #f8fcf7 0%, #f3f9f2 100%);
}

.site-footer__container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(28px, 3.5vw, 48px);
  align-items: start;
}

.site-footer__brand,
.site-footer__column {
  min-width: 0;
}

.site-footer__logo {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 9px;
}

.site-footer__logo img {
  width: 154px;
  height: auto;
}

.site-footer__brand p {
  max-width: 33ch;
  margin: 17px 0 0;
  color: #58695e;
  font-size: .94rem;
  line-height: 1.68;
}

.site-footer__column h2 {
  margin: 0 0 15px;
  color: #18361d;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.site-footer__contact-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__contact-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  min-height: 48px;
  align-items: center;
  gap: 10px;
}

.site-footer__contact-list span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.site-footer__contact-list a {
  display: grid;
  min-width: 0;
  min-height: 44px;
  align-content: center;
  gap: 2px;
}

.site-footer__contact-list small {
  color: #66776c;
  font-size: .76rem;
  font-weight: 650;
}

.site-footer__contact-list a,
.site-footer__contact-list strong {
  color: #244a2c;
  font-size: .91rem;
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.site-footer__icon {
  width: 20px;
  height: 20px;
  color: #347d3d;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer__address {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  margin: 0;
  color: #4c6053;
  font-size: .92rem;
  font-style: normal;
  line-height: 1.62;
}

.site-footer__address p {
  margin: -3px 0 0;
}

.site-footer__map-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  color: #245d2d;
  font-size: .9rem;
  font-weight: 800;
}

.site-footer__map-link span {
  transition: transform .2s ease;
}

.site-footer__map-link:hover span {
  transform: translateX(3px);
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.site-footer__navigation {
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.site-footer__links a {
  position: static;
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  color: #36523d;
  font-size: .89rem;
  font-weight: 700;
  line-height: 1.35;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
  overflow-wrap: anywhere;
}

.site-footer__links a::after {
  content: none;
}

.site-footer__links a:hover {
  color: #176b35;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.site-footer :where(a:not(.site-footer__logo)) {
  text-decoration-line: underline;
  text-decoration-color: rgba(52, 125, 61, .34);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.site-footer :where(a:not(.site-footer__logo)):hover {
  color: #176b35;
  text-decoration-color: currentColor;
}

.site-footer :where(a, button):focus-visible {
  outline: 3px solid #f3a712;
  outline-offset: 3px;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
  gap: 32px;
  align-items: start;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #d4e2d6;
}

.site-footer__bottom p {
  margin: 0;
  font-size: .8rem;
  line-height: 1.55;
}

.site-footer__copyright {
  color: #354b3b;
  font-weight: 750;
}

.site-footer__disclaimer {
  max-width: 76ch;
  justify-self: end;
  color: #68786e;
  text-align: right;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 48px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 48px;
  }

  .site-footer__container {
    width: min(100% - 28px, 1180px);
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .site-footer__brand p {
    max-width: 42ch;
  }

  .site-footer__bottom {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-top: 30px;
  }

  .site-footer__disclaimer {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 899px) {
  body:has(.product-sticky-cta) .site-footer {
    padding-bottom: calc(28px + var(--site-chat-reserve, 0px) + var(--product-sticky-height, 72px));
  }
}

@media (max-width: 960px) {
  .top-bar { display: flex; justify-content: space-between; }
  .logo { position: static; justify-self: auto; }
  .nav-wrapper { justify-self: auto; }
  .lang-group { justify-self: auto; }
  .nav-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    padding: 10px 18px;
  }

  .menu-toggle { display: inline-flex; }
  .top-bar { justify-content: space-between; }
  .menu-toggle { margin-left: auto; }

  /* Mobile off-canvas/dropdown menu */
  .nav-wrapper {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 72px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(0,0,0,.12);
    border: 1px solid rgba(105,206,121,.18);
    padding: 16px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 2000; /* above backdrop */
    display: block;
    max-height: calc(100vh - 88px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav-wrapper.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
  }
  .nav-wrapper:focus { outline: none; box-shadow: 0 0 0 2px rgba(120,213,95,.55) inset; }

  .nav-wrapper nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: transparent;
    padding: 0;
  }

  .nav-wrapper nav a {
    width: 100%;
    text-align: center;
    display: block;
    background: #ffffff;
    border: 1px solid rgba(105,206,121,.22);
    border-radius: 16px;
    color: #18361d;
    padding: 14px 18px;
    box-shadow: 0 6px 16px rgba(0,0,0,.04);
    transform: none !important;
    transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  }
  .nav-wrapper nav a::after{ content:none !important; }
  .nav-wrapper nav a:hover{
    background:#f7fff3;
    color:#18361d;
    box-shadow: 0 10px 22px rgba(0,0,0,.06);
  }
  .nav-wrapper nav a.active{
    background:#78d55f !important;
    color:#fff !important;
    border-color:#78d55f !important;
    box-shadow: 0 12px 28px rgba(120,213,95,.26) !important;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
  }

  .hero {
    width: 100%;
    margin: 0;
    padding: 60px 0 40px;
    border-radius: 32px;
    box-shadow: 0 18px 45px rgba(105, 206, 121, 0.12);
  }

  .hero-grid {
    width: min(640px, 92vw);
    gap: 32px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1,
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-image img {
    width: min(78vw, 420px);
    margin-right: 0;
  }

  .stats .container {
    padding: 48px 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 18px;
  }

  .treatment-card {
    height: 200px;
  }
}

@media (max-width: 720px) {
  header { position: sticky; top: 0; z-index: 100; }
  .top-bar { flex-direction: row; gap: 12px; }
  .hero h1 { font-size:clamp(2.15rem,11vw,2.7rem); line-height:1.08; }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-icon {
    width: 68px;
    height: 68px;
  }
}

@keyframes textPulse {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
