:root {
  --font-coefficient: 1;
  --font-heading: 'Comfortaa', system-ui, sans-serif;
  --font-primary: 'Inter', system-ui, sans-serif;
  --font-size-h1: calc(clamp(35px, 27.2px + 2vw, 56px) * var(--font-coefficient));
  --font-size-h2: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  --font-size-h3: calc(clamp(17px, 12.9px + 1.05vw, 28px) * var(--font-coefficient));
  --font-size-lead: clamp(16px, 14.5px + 0.38vw, 20px);
  --font-size-body: 16px;
  --spacing-xs: 8px;
  --spacing-s: 16px;
  --spacing-m: 24px;
  --spacing-l: 40px;
  --spacing-xl: 64px;
  --spacing-xxl: 80px;
  --side-padding: 80px;
  --max-width: 1440px;
  --grid-gap: 24px;
  --section-padding: 80px;
  --section-padding-s: 40px;
  --section-padding-m: 80px;
  --section-padding-l: 120px;
  --radius-global: 20px;
  --radius-image: 20px;
  --radius-btn: 100px;
  --radius-none: 0px;
  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 16px;
  --radius-full: 9999px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #193617;
  background-color: #FDFDF9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:not([class*="btn"]):hover {
  color: #399A48;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Comfortaa', system-ui, sans-serif;
  line-height: 1;
}
section {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 1024px) {
  section {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.img-zoom img {
  transition: transform 0.4s ease;
  will-change: transform;
}
.img-zoom:hover img {
  transform: scale(1.1);
}
@media (prefers-reduced-motion: reduce) {
  .img-zoom img {
    transition: none;
  }
  .img-zoom:hover img {
    transform: none;
  }
}
[data-fadeup] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: calc(var(--i, 0) * 80ms);
}
[data-fadeup].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-fadeup] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
:root {
  --scheme-1-bg: #FDFDF9;
  --scheme-1-bg-additional: #D8EAD6;
  --scheme-1-content: #193617;
  --scheme-1-btn: #399A48;
  --scheme-1-btn-text: #ffffff;
  --scheme-2-bg: #D8EAD6;
  --scheme-2-bg-additional: #193617;
  --scheme-2-content: #193617;
  --scheme-2-btn: #399A48;
  --scheme-2-btn-text: #ffffff;
}
.hero {
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: #FDFDF9;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
}
.hero__content {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(35px, 27.2px + 2vw, 56px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.hero__lead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}
.hero__image-wrap {
  grid-column: span 6;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  background-color: #F5F5FA;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .hero {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .hero__image-wrap {
    aspect-ratio: unset;
    height: 100%;
    min-height: 320px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__image-wrap {
    grid-column: span 1;
    order: 1;
    aspect-ratio: 1 / 1;
    height: auto;
  }
  .hero__content {
    grid-column: span 1;
    order: 2;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero__lead {
    max-width: 100%;
  }
  .hero__actions {
    margin-top: 24px;
  }
}
.hero .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.hero .btn--primary:hover,
.hero .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
.hero .btn--secondary {
  background-color: transparent;
  border-color: #399A48;
  color: #399A48;
}
.hero .btn--secondary:hover,
.hero .btn--secondary:focus-visible {
  background-color: #399A48;
  color: #ffffff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.btn--primary {
  background-color: #399A48;
  color: #ffffff;
  border-color: #399A48;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
  outline: none;
}
.btn--secondary {
  background-color: transparent;
  color: #399A48;
  border-color: #399A48;
}
.btn--secondary:hover,
.btn--secondary:focus-visible {
  background-color: #399A48;
  color: #ffffff;
  outline: none;
}
.hero-bg {
  position: relative;
  min-height: 60vh;
  max-height: 80vh;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  background-color: #FDFDF9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-bg__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.hero-bg__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 80px;
  display: flex;
  align-items: center;
}
.hero-bg__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}
.hero-bg__title {
  font-family: var(--font-heading, 'Comfortaa', system-ui, sans-serif);
  font-size: calc(clamp(35px, 27.2px + 2vw, 56px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  margin: 0;
}
.hero-bg__lead {
  font-family: var(--font-primary, 'Inter', system-ui, sans-serif);
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 520px;
}
.hero-bg__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.hero-bg .btn--outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
}
.hero-bg .btn--outline-white:hover,
.hero-bg .btn--outline-white:focus-visible {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  outline: none;
}
.hero-bg .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.hero-bg .btn--primary:hover,
.hero-bg .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
  outline: none;
}
@media (max-width: 768px) {
  .hero-bg {
    min-height: unset;
    max-height: unset;
  }
  .hero-bg__inner {
    padding: 40px 24px;
  }
  .hero-bg__content {
    max-width: 100%;
  }
  .hero-bg__lead {
    max-width: 100%;
  }
}
.hero-centered {
  background-color: #FDFDF9;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.hero-centered__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero-centered__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(35px, 27.2px + 2vw, 56px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
  max-width: 760px;
}
.hero-centered__lead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
  max-width: 600px;
}
.hero-centered__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.hero-centered__image-wrap {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 20px;
}
.hero-centered__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-centered .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.hero-centered .btn--primary:hover,
.hero-centered .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
.hero-centered .btn--secondary {
  background-color: transparent;
  border-color: #399A48;
  color: #399A48;
}
.hero-centered .btn--secondary:hover,
.hero-centered .btn--secondary:focus-visible {
  background-color: #399A48;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero-centered {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-centered__inner {
    padding-bottom: 40px;
  }
  .hero-centered__title,
  .hero-centered__lead {
    max-width: 100%;
  }
  .hero-centered__image-wrap {
    aspect-ratio: 4 / 3;
  }
}
.strengths {
  background-color: #FDFDF9;
  padding-left: 80px;
  padding-right: 80px;
}
.strengths__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
}
.strengths__item {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(57, 154, 72, 0.2);
  padding: 24px;
  border-radius: 20px;
  justify-content: center;
}
.strengths__icon {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #399A48;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .strengths {
    padding-left: 24px;
    padding-right: 24px;
  }
  .strengths__inner {
    flex-direction: column;
    gap: 16px;
  }
}
.info-bar {
  background-color: #D8EAD6;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 80px;
  padding-right: 80px;
}
.info-bar__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.info-bar__group {
  display: flex;
  align-items: center;
  gap: 24px;
}
.info-bar__item {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  text-decoration: none;
}
.info-bar__item--link {
  color: #193617;
  text-decoration: underline;
}
.info-bar__item--link:hover {
  color: #399A48;
}
@media (max-width: 1024px) {
  .info-bar__item--hours,
  .info-bar__item--email {
    display: none;
  }
}
@media (max-width: 768px) {
  .info-bar {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.header {
  background-color: #FDFDF9;
  padding-left: 80px;
  padding-right: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__nav-toggle {
  display: none;
}
.header__nav-toggle:checked ~ .header__mobile-menu {
  display: block;
}
.header__nav-toggle:checked ~ .header__inner .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__nav-toggle:checked ~ .header__inner .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__nav-toggle:checked ~ .header__inner .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}
.header__logo {
  text-decoration: none;
}
.header__logo-wordmark {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(17px, 12.9px + 1.05vw, 28px) * var(--font-coefficient));
  font-weight: 700;
  color: #193617;
  letter-spacing: 0.02em;
}
.header__logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
  white-space: nowrap;
}
.header__nav-link--active {
  color: #399A48;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
  padding: 0;
  white-space: nowrap;
}
.header__lang svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
.header__lang:hover {
  color: #399A48;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  flex-shrink: 0;
}
.header__burger-line {
  display: block;
  height: 2px;
  background-color: #193617;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.header__mobile-menu {
  display: none;
  background-color: #D8EAD6;
  border-radius: 0 0 20px 20px;
}
.header__mobile-list {
  max-width: 1440px;
  margin: 0 auto;
  list-style: none;
  padding: 0 16px;
}
.header__mobile-list li {
  border-bottom: 1px solid rgba(25, 54, 23, 0.1);
}
.header__mobile-list li:last-child {
  border-bottom: none;
}
.header__mobile-link {
  display: block;
  padding: 16px 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
}
.header__mobile-link--active {
  color: #399A48;
}
.header .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.header .btn--primary:hover,
.header .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
@media (max-width: 1024px) {
  .header {
    padding-left: 24px;
    padding-right: 24px;
  }
  .header__nav {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .header__logo-wordmark {
    font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  }
}
.services {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #FDFDF9;
}
.services__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title  action" "grid   grid";
  gap: 40px 24px;
  align-items: center;
}
.services__title {
  grid-area: title;
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.services__action {
  grid-area: action;
}
.services__grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  min-width: 0;
}
.services__item {
  border-radius: 20px;
  overflow: hidden;
  background-color: #D8EAD6;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.services__item-image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #9999B3;
}
.services__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services__item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  flex: 1;
}
.services__item-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.services__item-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
  margin: 0;
}
.services__item-price-value {
  color: #399A48;
}
.services__item-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  opacity: 0.7;
  margin: 0;
}
.services .btn--secondary {
  background-color: transparent;
  border-color: #399A48;
  color: #399A48;
}
.services .btn--secondary:hover,
.services .btn--secondary:focus-visible {
  background-color: #399A48;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .services__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "grid" "action";
    justify-items: center;
  }
  .services__title {
    text-align: center;
  }
  .services__grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.offer {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #D8EAD6;
}
.offer__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
}
.offer__heading {
  grid-column: 1 / span 5;
}
.offer__content {
  grid-column: 7 / -1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.offer__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.offer__lead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
}
.offer .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
  align-self: flex-start;
}
.offer .btn--primary:hover,
.offer .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
@media (max-width: 768px) {
  .offer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .offer__grid {
    grid-template-columns: 1fr;
  }
  .offer__heading {
    grid-column: span 1;
  }
  .offer__content {
    grid-column: span 1;
  }
  .offer .btn--primary {
    margin-top: 16px;
  }
}
.about {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #FDFDF9;
  overflow: hidden;
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
}
.about__content {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.about__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
  max-width: 520px;
}
.about__lead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
  max-width: 520px;
}
.about__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}
.about__image-wrap {
  grid-column: span 6;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  background-color: #F5F5FA;
}
.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .about {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__image-wrap {
    grid-column: span 1;
    order: 1;
  }
  .about__content {
    grid-column: span 1;
    order: 2;
    padding-top: 20px;
    padding-bottom: 0;
  }
  .about__title,
  .about__lead {
    max-width: 100%;
  }
  .about__actions {
    margin-top: 24px;
  }
}
.about .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.about .btn--primary:hover,
.about .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
.reviews {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #D8EAD6;
}
.reviews__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title  action" "grid   grid";
  gap: 40px 24px;
  align-items: center;
}
.reviews__title {
  grid-area: title;
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.reviews__action {
  grid-area: action;
}
.reviews__grid {
  grid-area: grid;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-self: start;
}
.reviews__item {
  flex: 0 0 calc((100% - 16px * 2) / 3);
  border-radius: 20px;
  background-color: rgba(25, 54, 23, 0.05);
  padding: 24px;
}
.reviews__stars {
  color: #399A48;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.reviews__text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
}
.reviews__author {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
  margin: 40px 0 0;
}
.reviews .btn--secondary {
  background-color: transparent;
  border-color: #399A48;
  color: #399A48;
}
.reviews .btn--secondary:hover,
.reviews .btn--secondary:focus-visible {
  background-color: #399A48;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .reviews__item {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}
@media (max-width: 768px) {
  .reviews {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .reviews__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "grid" "action";
    justify-items: center;
  }
  .reviews__title {
    text-align: center;
  }
  .reviews__item {
    flex: 0 0 100%;
  }
}
.news {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #FDFDF9;
}
.news__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title  action" "grid   grid";
  gap: 40px 24px;
  align-items: center;
}
.news__title {
  grid-area: title;
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.news__action {
  grid-area: action;
}
.news__grid {
  grid-area: grid;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-self: start;
}
.news__item {
  flex: 0 0 calc((100% - 16px * 2) / 3);
  display: flex;
  flex-direction: column;
}
.news__item-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  background-color: #9999B3;
}
.news__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news__item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
}
.news__item-category {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #399A48;
  margin: 0;
}
.news__item-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
  max-width: 80%;
}
.news .btn--secondary {
  background-color: transparent;
  border-color: #399A48;
  color: #399A48;
}
.news .btn--secondary:hover,
.news .btn--secondary:focus-visible {
  background-color: #399A48;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .news__item {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}
@media (max-width: 768px) {
  .news {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .news__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "grid" "action";
    justify-items: center;
  }
  .news__title {
    text-align: center;
  }
  .news__item {
    flex: 0 0 100%;
  }
  .news__item-title {
    max-width: 100%;
  }
}
.visit {
  padding-bottom: 80px;
  background-color: #FDFDF9;
}
.visit__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid #D8EAD6;
  padding-top: 80px;
}
.visit__content {
  grid-column: 1 / span 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.visit__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0 0 24px;
}
.visit__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.visit__info-value {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
  text-decoration: none;
}
.visit__info-value[href] {
  color: #399A48;
  text-decoration: underline;
}
.visit__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.visit__image-wrap {
  grid-column: 6 / -1;
  overflow: hidden;
  border-radius: 20px;
  background-color: #F5F5FA;
}
.visit__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.visit .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.visit .btn--primary:hover,
.visit .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
.visit .btn--secondary {
  background-color: transparent;
  border-color: #399A48;
  color: #399A48;
}
.visit .btn--secondary:hover,
.visit .btn--secondary:focus-visible {
  background-color: #399A48;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .visit__content {
    grid-column: 1 / span 6;
  }
  .visit__image-wrap {
    grid-column: 7 / -1;
  }
}
@media (max-width: 768px) {
  .visit {
    padding-bottom: 40px;
  }
  .visit__grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
  .visit__image-wrap {
    grid-column: span 1;
    order: 1;
    aspect-ratio: 4 / 3;
  }
  .visit__content {
    grid-column: span 1;
    order: 2;
    padding-top: 0;
    padding-bottom: 0;
  }
  .visit__title {
    margin-bottom: 0;
  }
}
.footer {
  background-color: #D8EAD6;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
}
.footer__logo-wordmark {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(17px, 12.9px + 1.05vw, 28px) * var(--font-coefficient));
  font-weight: 700;
  color: #193617;
  letter-spacing: 0.02em;
}
.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  width: 100%;
}
.footer__newsletter-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
}
.footer__newsletter-form {
  display: flex;
  gap: 16px;
}
.footer__newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid #193617;
  background-color: transparent;
  color: #193617;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  outline: none;
}
.footer__newsletter-input::placeholder {
  color: #193617;
}
.footer__main {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 2fr;
  gap: 40px;
  border-top: 1px solid rgba(57, 154, 72, 0.2);
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__contact-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__contact-info {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
}
.footer__contact-link {
  color: #399A48;
  text-decoration: underline;
  transition: color 0.15s;
}
.footer__contact-link:hover {
  color: #2b7537;
}
.footer__contact-btn {
  margin-top: 24px;
  align-self: flex-start;
}
.footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid #399A48;
  color: #399A48;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color 0.2s, color 0.2s;
}
.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer__social:hover,
.footer__social:focus-visible {
  background-color: #399A48;
  color: #ffffff;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col-heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
  margin: 0 0 16px;
}
.footer__col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col-list a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(25, 54, 23, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__col-list a:hover {
  color: #399A48;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(57, 154, 72, 0.2);
  padding-top: 24px;
}
.footer__copyright,
.footer__licence {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(25, 54, 23, 0.6);
  margin: 0;
}
.footer .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.footer .btn--primary:hover,
.footer .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
@media (max-width: 1024px) {
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer__main {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer__contact {
    grid-column: span 3;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer__top {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 24px;
  }
  .footer__newsletter {
    max-width: 100%;
  }
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .footer__contact {
    grid-column: span 2;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-top: 24px;
  }
}
.svc-page {
  background-color: #FDFDF9;
  padding-top: 0;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.svc-page__breadcrumb {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.svc-page__breadcrumb-link {
  color: rgba(25, 54, 23, 0.6);
}
.svc-page__breadcrumb-sep {
  color: rgba(25, 54, 23, 0.4);
  font-size: 14px;
}
.svc-page__breadcrumb-current {
  color: #193617;
}
.svc-page__header {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 1fr 5fr;
  gap: 64px;
  align-items: flex-end;
}
.svc-page__header-cta {
  grid-column: 3;
}
.svc-page__header-title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(35px, 27.2px + 2vw, 56px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0 0 24px;
}
.svc-page__header-lead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  margin: 0;
}
.svc-page__header-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.svc-page__header-cta-heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.svc-page__divider {
  max-width: 1440px;
  margin: 40px auto;
  border: none;
  border-top: 1px solid #D8EAD6;
}
.svc-page__filter-toggle {
  display: none;
}
.svc-page__filter-toggle:checked ~ .svc-page__body .svc-page__sidebar {
  display: flex;
}
.svc-page__filter-btn {
  display: none;
}
.svc-page__body {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 40px;
  align-items: start;
}
.svc-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: calc(80px + 24px);
}
.svc-page__filter-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-page__filter-heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
  margin: 0;
}
.svc-page__filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-page__filter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(25, 54, 23, 0.75);
  cursor: pointer;
  transition: color 0.15s;
}
.svc-page__filter-label:hover {
  color: #193617;
}
.svc-page__filter-label--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.svc-page__filter-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid rgba(25, 54, 23, 0.35);
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}
.svc-page__filter-checkbox:checked {
  background-color: #399A48;
  border-color: #399A48;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23175C4E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.svc-page__filter-checkbox:hover {
  border-color: #399A48;
}
.svc-page__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.svc-page__grid .services__item {
  flex: 0 0 calc((100% - 16px * 2) / 3);
}
.svc-page .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.svc-page .btn--primary:hover,
.svc-page .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
@media (max-width: 1024px) {
  .svc-page {
    padding-left: 24px;
    padding-right: 24px;
  }
  .svc-page__header {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-page__header-cta {
    grid-column: auto;
  }
  .svc-page__filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 1440px;
    margin: 0 auto 24px;
  }
  .svc-page__body {
    grid-template-columns: 1fr;
  }
  .svc-page__filter-group {
    flex: 0 0 calc(50% - 40px / 2);
  }
  .svc-page__sidebar {
    display: none;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  .svc-page__grid .services__item {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}
@media (max-width: 768px) {
  .svc-page {
    padding-bottom: 40px;
  }
  .svc-page__grid .services__item {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}
.svc-single {
  background-color: #FDFDF9;
  padding-top: 0;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.svc-single__breadcrumb {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.svc-single__breadcrumb-link {
  color: rgba(25, 54, 23, 0.6);
}
.svc-single__breadcrumb-sep {
  color: rgba(25, 54, 23, 0.4);
  font-size: 14px;
}
.svc-single__breadcrumb-current {
  color: #193617;
}
.svc-single__body {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 2fr 4fr;
  align-items: start;
}
.svc-single__image-col {
  grid-column: 3;
}
.svc-single__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 64px;
}
.svc-single__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(35px, 27.2px + 2vw, 56px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.svc-single__lead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  margin: 0;
}
.svc-single__desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
.svc-single__desc-toggle {
  display: none;
}
.svc-single__desc-toggle:checked ~ .svc-single__desc {
  max-height: none;
  mask-image: none;
  -webkit-mask-image: none;
}
.svc-single__desc-toggle:checked ~ .svc-single__read-more {
  display: none;
}
.svc-single__desc {
  max-height: calc(5 * 1.6em);
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.svc-single__desc p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  margin: 0 0 16px;
}
.svc-single__desc p:last-child {
  margin-bottom: 0;
}
.svc-single__read-more {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #399A48;
  cursor: pointer;
  text-decoration: underline;
  align-self: flex-start;
}
.svc-single__read-more:hover {
  color: #2b7537;
}
.svc-single__pricing {
  background-color: #D8EAD6;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.svc-single__pricing-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 500;
  color: #193617;
  margin: 0;
}
.svc-single__pricing-sep {
  border: none;
  border-top: 1px solid #FDFDF9;
  margin: 0;
}
.svc-single__pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-single__pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.svc-single__pricing-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #193617;
}
.svc-single__pricing-value {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #399A48;
  white-space: nowrap;
}
.svc-single__pricing-from {
  font-weight: 400;
  color: rgba(25, 54, 23, 0.6);
}
.svc-single__pricing-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #399A48;
  text-decoration: underline;
  align-self: flex-start;
}
.svc-single__pricing-link:hover {
  color: #2b7537;
}
.svc-single__image-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
}
.svc-single__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-single .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.svc-single .btn--primary:hover,
.svc-single .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
@media (max-width: 1024px) {
  .svc-single {
    padding-left: 24px;
    padding-right: 24px;
  }
  .svc-single__body {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .svc-single__image-col {
    grid-column: auto;
    grid-row: 1;
  }
  .svc-single__content {
    grid-row: 2;
  }
}
@media (max-width: 768px) {
  .svc-single {
    padding-bottom: 40px;
  }
}
.pricing-page {
  background-color: #FDFDF9;
  padding-top: 0;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.pricing-page__breadcrumb {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.pricing-page__breadcrumb-link {
  color: rgba(25, 54, 23, 0.6);
}
.pricing-page__breadcrumb-sep {
  color: rgba(25, 54, 23, 0.4);
  font-size: 14px;
}
.pricing-page__breadcrumb-current {
  color: #193617;
}
.pricing-page__body {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 2fr 4fr;
  align-items: center;
}
.pricing-page__image-col {
  grid-column: 3;
}
.pricing-page__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.pricing-page__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(35px, 27.2px + 2vw, 56px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.pricing-page__lead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  margin: 0;
}
.pricing-page__desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
}
.pricing-page__desc-toggle {
  display: none;
}
.pricing-page__desc-toggle:checked ~ .pricing-page__desc {
  max-height: none;
  mask-image: none;
  -webkit-mask-image: none;
}
.pricing-page__desc-toggle:checked ~ .pricing-page__read-more {
  display: none;
}
.pricing-page__desc {
  max-height: calc(5 * 1.6em);
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.pricing-page__desc p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  margin: 0 0 16px;
}
.pricing-page__desc p:last-child {
  margin-bottom: 0;
}
.pricing-page__desc ul,
.pricing-page__desc ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.pricing-page__desc ul:last-child,
.pricing-page__desc ol:last-child {
  margin-bottom: 0;
}
.pricing-page__desc li {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  margin-bottom: 8px;
}
.pricing-page__desc li::marker {
  color: #399A48;
}
.pricing-page__desc li:last-child {
  margin-bottom: 0;
}
.pricing-page__read-more {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #399A48;
  cursor: pointer;
  text-decoration: underline;
  align-self: flex-start;
}
.pricing-page__read-more:hover {
  color: #2b7537;
}
.pricing-page__image-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
}
.pricing-page__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .pricing-page {
    padding-left: 24px;
    padding-right: 24px;
  }
  .pricing-page__body {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .pricing-page__image-col {
    grid-column: auto;
    grid-row: 1;
  }
  .pricing-page__intro {
    grid-row: 2;
  }
}
@media (max-width: 768px) {
  .pricing-page {
    padding-bottom: 40px;
  }
}
.doctors-page {
  background-color: #FDFDF9;
  padding-top: 0;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.doctors-page__breadcrumb {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.doctors-page__breadcrumb-link {
  color: rgba(25, 54, 23, 0.6);
}
.doctors-page__breadcrumb-sep {
  color: rgba(25, 54, 23, 0.4);
  font-size: 14px;
}
.doctors-page__breadcrumb-current {
  color: #193617;
}
.doctors-page__header {
  max-width: 1440px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  align-items: start;
}
.doctors-page__title {
  grid-column: 1;
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(35px, 27.2px + 2vw, 56px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.doctors-page__lead {
  grid-column: 3;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  margin: 0;
}
.doctors-page__groups {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.doctors-page__group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.doctors-page__group-title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.doctors-page__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  row-gap: 64px;
}
.doctors-page__card {
  flex: 0 0 calc((100% - 24px * 3) / 4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.doctors-page__image-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 8px;
}
.doctors-page__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.doctors-page__name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.doctors-page__role {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.6);
  margin: 0;
}
.doctors-page__description {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
}
.doctors-page__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.doctors-page__contact-item {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #399A48;
  text-decoration: none;
}
.doctors-page__contact-item:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .doctors-page {
    padding-left: 24px;
    padding-right: 24px;
  }
  .doctors-page__header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .doctors-page__title,
  .doctors-page__lead {
    grid-column: 1;
  }
  .doctors-page__card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 768px) {
  .doctors-page {
    padding-bottom: 40px;
  }
  .doctors-page__card {
    flex: 0 0 100%;
  }
}
.doc-single {
  background-color: #FDFDF9;
  padding-top: 0;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.doc-single__breadcrumb {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.doc-single__breadcrumb-link {
  color: rgba(25, 54, 23, 0.6);
}
.doc-single__breadcrumb-sep {
  color: rgba(25, 54, 23, 0.4);
  font-size: 14px;
}
.doc-single__breadcrumb-current {
  color: #193617;
}
.doc-single__body {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 2fr 4fr;
  align-items: start;
}
.doc-single__image-col {
  grid-column: 3;
}
.doc-single__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 64px;
}
.doc-single__intro .btn {
  margin-top: 24px;
}
.doc-single__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(35px, 27.2px + 2vw, 56px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.doc-single__role {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
}
.doc-single__lead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  margin: 0;
}
.doc-single__lead p {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0 0 16px;
}
.doc-single__lead p:last-child {
  margin-bottom: 0;
}
.doc-single__accordion {
  border-top: 1px solid rgba(25, 54, 23, 0.15);
}
.doc-single__accordion-item {
  border-bottom: 1px solid rgba(25, 54, 23, 0.15);
}
.doc-single__accordion-item[open] .doc-single__accordion-chevron {
  transform: rotate(180deg);
}
.doc-single__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}
.doc-single__accordion-header::-webkit-details-marker {
  display: none;
}
.doc-single__accordion-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
}
.doc-single__accordion-chevron {
  width: 16px;
  height: 16px;
  color: rgba(25, 54, 23, 0.6);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.doc-single__accordion-body {
  padding-bottom: 24px;
}
.doc-single__accordion-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.doc-single__accordion-item-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  padding-left: 24px;
  position: relative;
}
.doc-single__accordion-item-text::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(25, 54, 23, 0.4);
}
.doc-single__image-wrap {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
}
.doc-single__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.doc-single .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.doc-single .btn--primary:hover,
.doc-single .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
@media (max-width: 1024px) {
  .doc-single {
    padding-left: 24px;
    padding-right: 24px;
  }
  .doc-single__body {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .doc-single__image-col {
    grid-column: auto;
    grid-row: 1;
  }
  .doc-single__content {
    grid-row: 2;
  }
}
@media (max-width: 768px) {
  .doc-single {
    padding-bottom: 40px;
  }
}
.doc-specialises {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
  background-color: #FDFDF9;
}
.doc-specialises__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.doc-specialises__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.doc-specialises__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.doc-specialises__item {
  border-radius: 20px;
  overflow: hidden;
  background-color: #D8EAD6;
  display: flex;
  flex-direction: column;
}
.doc-specialises__item-image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.doc-specialises__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.doc-specialises__item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  flex: 1;
}
.doc-specialises__item-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.doc-specialises__item-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
  margin: 0;
}
.doc-specialises__item-price-value {
  color: #399A48;
}
.doc-specialises__item-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  opacity: 0.7;
  margin: 0;
}
@media (max-width: 1024px) {
  .doc-specialises {
    padding-left: 24px;
    padding-right: 24px;
  }
  .doc-specialises__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .doc-specialises {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .doc-specialises__grid {
    grid-template-columns: 1fr;
  }
}
.doc-gallery {
  background-color: #D8EAD6;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.doc-gallery__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.doc-gallery__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.doc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.doc-gallery__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
}
.doc-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.doc-gallery__thumb:hover img {
  transform: scale(1.04);
}
@media (max-width: 1024px) {
  .doc-gallery {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .doc-gallery {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .doc-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.doc-cta {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
  background-color: #FDFDF9;
}
.doc-cta__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.doc-cta__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.doc-cta .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
  white-space: nowrap;
}
.doc-cta .btn--primary:hover,
.doc-cta .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
@media (max-width: 1024px) {
  .doc-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .doc-cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .doc-cta__inner {
    grid-template-columns: 1fr;
  }
}
.contact-page {
  background-color: #FDFDF9;
  padding-top: 0;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.contact-page__breadcrumb {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.contact-page__breadcrumb-link {
  color: rgba(25, 54, 23, 0.6);
}
.contact-page__breadcrumb-sep {
  color: rgba(25, 54, 23, 0.4);
  font-size: 14px;
}
.contact-page__breadcrumb-current {
  color: #193617;
}
.contact-page__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
}
.contact-page__content {
  grid-column: 1 / span 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}
.contact-page__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(35px, 27.2px + 2vw, 56px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.contact-page__paragraph {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  margin: 0;
}
.contact-page__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-page__info-value {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
  text-decoration: none;
}
.contact-page__info-value[href] {
  color: #399A48;
  text-decoration: underline;
}
.contact-page__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.contact-page__blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 24px;
}
.contact-page__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-page__block-title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(17px, 12.9px + 1.05vw, 28px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.contact-page__block-paragraph {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  margin: 0;
}
.contact-page__image-wrap {
  grid-column: 6 / -1;
  align-self: start;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  background-color: #F5F5FA;
}
.contact-page__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-page__form-wrap {
  grid-column: 6 / -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.contact-page__form-title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.contact-page .wpcf7 {
  width: 100%;
}
.contact-page .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-page .cf7-row {
  display: flex;
  flex-direction: column;
}
.contact-page .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not(.wpcf7-acceptance) {
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: #193617;
  background-color: transparent;
  border: 1px solid #193617;
  border-radius: 4px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.contact-page .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not(.wpcf7-acceptance)::placeholder {
  color: rgba(25, 54, 23, 0.4);
}
.contact-page .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not(.wpcf7-acceptance):focus {
  border-color: #399A48;
}
.contact-page textarea.wpcf7-form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-page .cf7-acceptance {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.7);
}
.contact-page .cf7-acceptance a {
  color: #399A48;
  text-decoration: underline;
}
.contact-page .cf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}
.contact-page .cf7-acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid rgba(25, 54, 23, 0.35);
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}
.contact-page .cf7-acceptance input[type="checkbox"]:checked {
  background-color: #399A48;
  border-color: #399A48;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.contact-page .cf7-acceptance input[type="checkbox"]:hover {
  border-color: #399A48;
}
.contact-page input[type="submit"].wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 100px;
  border: 2px solid #399A48;
  background-color: #399A48;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  align-self: flex-start;
}
.contact-page input[type="submit"].wpcf7-submit:hover,
.contact-page input[type="submit"].wpcf7-submit:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
.contact-page .wpcf7-not-valid-tip {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #c0392b;
  margin-top: 4px;
}
.contact-page .wpcf7-response-output {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid currentColor;
}
.contact-page .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.contact-page .btn--primary:hover,
.contact-page .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
.contact-page .btn--secondary {
  background-color: transparent;
  border-color: #399A48;
  color: #399A48;
}
.contact-page .btn--secondary:hover,
.contact-page .btn--secondary:focus-visible {
  background-color: #399A48;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .contact-page {
    padding-left: 24px;
    padding-right: 24px;
  }
  .contact-page__content {
    grid-column: 1 / span 6;
  }
  .contact-page__image-wrap,
  .contact-page__form-wrap {
    grid-column: 7 / -1;
  }
}
@media (max-width: 768px) {
  .contact-page {
    padding-bottom: 40px;
  }
  .contact-page__grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
  .contact-page__image-wrap,
  .contact-page__form-wrap {
    grid-column: span 1;
    order: 1;
  }
  .contact-page__image-wrap {
    aspect-ratio: 4 / 3;
  }
  .contact-page__content {
    grid-column: span 1;
    order: 2;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.gallery-page {
  background-color: #FDFDF9;
  padding-top: 0;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.gallery-page__breadcrumb {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.gallery-page__breadcrumb-link {
  color: rgba(25, 54, 23, 0.6);
}
.gallery-page__breadcrumb-sep {
  color: rgba(25, 54, 23, 0.4);
  font-size: 14px;
}
.gallery-page__breadcrumb-current {
  color: #193617;
}
.gallery-page__groups {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.gallery-page__group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.gallery-page__group-title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.gallery-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-page__thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}
.gallery-page__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-page__thumb:hover img {
  transform: scale(1.04);
}
@media (max-width: 1024px) {
  .gallery-page {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .gallery-page {
    padding-bottom: 40px;
  }
  .gallery-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border-radius: 20px;
}
.gallery-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #193617;
  font-size: 32px;
  line-height: 1;
  padding: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.gallery-lightbox__close:hover {
  opacity: 1;
}
.gallery-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  border: none;
  background-color: #399A48;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.15s;
}
.gallery-lightbox__arrow svg {
  width: 20px;
  height: 20px;
}
.gallery-lightbox__arrow:hover {
  background-color: #2b7537;
}
.gallery-lightbox__arrow--prev {
  left: 24px;
}
.gallery-lightbox__arrow--next {
  right: 24px;
}
.news-page {
  background-color: #FDFDF9;
  padding-top: 0;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.news-page__breadcrumb {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.news-page__breadcrumb-link {
  color: rgba(25, 54, 23, 0.6);
}
.news-page__breadcrumb-sep {
  color: rgba(25, 54, 23, 0.4);
  font-size: 14px;
}
.news-page__breadcrumb-current {
  color: #193617;
}
.news-page__header {
  max-width: 1440px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  align-items: start;
}
.news-page__title {
  grid-column: 1;
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(35px, 27.2px + 2vw, 56px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.news-page__lead {
  grid-column: 3;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  margin: 0;
}
.news-page__filters {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news-page__filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  border-radius: 100px;
  border: 1px solid rgba(25, 54, 23, 0.2);
  background-color: transparent;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(25, 54, 23, 0.6);
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.news-page__filter-btn:hover {
  border-color: rgba(25, 54, 23, 0.4);
  color: #193617;
}
.news-page__filter-btn.is-active {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.news-page__grid {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 64px;
  align-items: start;
}
.news-page__item {
  flex: 0 0 calc((100% - 16px * 2) / 3);
  display: flex;
  flex-direction: column;
}
.news-page__item-image-wrap {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  background-color: #9999B3;
}
.news-page__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-page__item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
}
.news-page__item-category {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #399A48;
  margin: 0;
}
.news-page__item-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
  max-width: 80%;
}
.news-page__item-title a {
  color: inherit;
  text-decoration: none;
}
.news-page__item-title a:hover {
  color: #399A48;
}
@media (max-width: 1024px) {
  .news-page {
    padding-left: 24px;
    padding-right: 24px;
  }
  .news-page__header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .news-page__title,
  .news-page__lead {
    grid-column: 1;
  }
  .news-page__item {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}
@media (max-width: 768px) {
  .news-page {
    padding-bottom: 40px;
  }
  .news-page__item {
    flex: 0 0 100%;
  }
  .news-page__item-title {
    max-width: 100%;
  }
}
.article-page {
  background-color: #FDFDF9;
  padding-top: 0;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.article-page__breadcrumb {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.article-page__breadcrumb-link {
  color: rgba(25, 54, 23, 0.6);
}
.article-page__breadcrumb-sep {
  color: rgba(25, 54, 23, 0.4);
  font-size: 14px;
}
.article-page__breadcrumb-current {
  color: #193617;
}
.article-page__content {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.article-page__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(35px, 27.2px + 2vw, 56px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.article-page__divider {
  border: none;
  border-top: 1px solid rgba(25, 54, 23, 0.15);
  margin: 0;
}
.article-page__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.article-page__share {
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-page__share-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #193617;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.article-page__share-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-page__share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid rgba(25, 54, 23, 0.15);
  color: #399A48;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.article-page__share-icon svg {
  width: 16px;
  height: 16px;
}
.article-page__share-icon:hover {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.article-page__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.article-page__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  border-radius: 100px;
  border: 1px solid rgba(25, 54, 23, 0.2);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(25, 54, 23, 0.6);
}
.article-page__featured-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
}
.article-page__featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-page__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article-page__body h2 {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
  margin-top: 16px;
}
.article-page__body h3 {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(17px, 12.9px + 1.05vw, 28px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
  margin-top: 8px;
}
.article-page__body h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.article-page__body p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
}
.article-page__body ul {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-page__body li {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
}
.article-page__body li::marker {
  color: #399A48;
}
.article-page__body-image {
  border-radius: 20px;
  overflow: hidden;
}
.article-page__body-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .article-page {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .article-page {
    padding-bottom: 40px;
  }
  .article-page__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .article-page__tags {
    justify-content: flex-start;
  }
}
.article-page + .news {
  padding-top: 0;
}
.article-page + .news .news__inner {
  border-top: 1px solid #D8EAD6;
  padding-top: 80px;
}
.pricing-table {
  background-color: #D8EAD6;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.pricing-table__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 10fr 1fr;
}
.pricing-table__list {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(25, 54, 23, 0.15);
}
.pricing-table__item {
  border-bottom: 1px solid rgba(25, 54, 23, 0.15);
}
.pricing-table__item[open] .pricing-table__item-chevron {
  transform: rotate(180deg);
}
.pricing-table__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  list-style: none;
  cursor: pointer;
  color: #193617;
  user-select: none;
}
.pricing-table__item-header::-webkit-details-marker {
  display: none;
}
.pricing-table__item-header:hover {
  color: rgba(25, 54, 23, 0.8);
}
.pricing-table__item-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: inherit;
  margin: 0;
}
.pricing-table__item-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: #399A48;
}
.pricing-table__item-body {
  padding-bottom: 24px;
}
.pricing-table__prices {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-table__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-left: 16px;
  border-radius: 4px;
  transition: background-color 0.15s;
}
.pricing-table__price-row:hover {
  background-color: rgba(25, 54, 23, 0.05);
}
.pricing-table__price-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #193617;
}
.pricing-table__price-value {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #399A48;
  white-space: nowrap;
}
.pricing-table__price-from {
  font-weight: 400;
  color: rgba(25, 54, 23, 0.5);
}
@media (max-width: 1024px) {
  .pricing-table {
    padding-left: 24px;
    padding-right: 24px;
  }
  .pricing-table__inner {
    grid-template-columns: 1fr;
  }
  .pricing-table__list {
    grid-column: 1;
  }
}
@media (max-width: 768px) {
  .pricing-table {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.pricing-discounts {
  background-color: #FDFDF9;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.pricing-discounts__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.pricing-discounts__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
  text-align: center;
}
.pricing-discounts__boxes {
  display: flex;
  gap: 16px;
  width: 100%;
}
.pricing-discounts__box {
  flex: 1;
  background-color: #D8EAD6;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pricing-discounts__box-heading {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(17px, 12.9px + 1.05vw, 28px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.pricing-discounts__box-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-discounts__box-body li {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  padding-left: 24px;
  position: relative;
}
.pricing-discounts__box-body li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #399A48;
}
.pricing-discounts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-discounts__list-item {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.8);
  padding-left: 24px;
  position: relative;
}
.pricing-discounts__list-item::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #399A48;
}
@media (max-width: 1024px) {
  .pricing-discounts {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .pricing-discounts {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pricing-discounts__boxes {
    flex-direction: column;
  }
}
.why-choose {
  background-color: #D8EAD6;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 80px;
  padding-right: 80px;
}
.why-choose__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.why-choose__heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.why-choose__grid {
  display: flex;
  gap: 16px;
}
.why-choose__item {
  flex: 1;
  background-color: rgba(25, 54, 23, 0.05);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-choose__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #193617;
}
.why-choose__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.why-choose__text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
}
@media (max-width: 768px) {
  .why-choose {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .why-choose__grid {
    flex-direction: column;
  }
}
.svc-overview {
  background-color: #FDFDF9;
  padding-top: 80px;
  padding-bottom: 80px;
}
.svc-overview__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 8fr 2fr;
  gap: 40px;
}
.svc-overview__title {
  grid-column: 2;
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.svc-overview__list {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(25, 54, 23, 0.15);
}
.svc-overview__item {
  border-bottom: 1px solid rgba(25, 54, 23, 0.15);
}
.svc-overview__item[open] .svc-overview__item-chevron {
  transform: rotate(180deg);
}
.svc-overview__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  list-style: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
  user-select: none;
}
.svc-overview__item-header::-webkit-details-marker {
  display: none;
}
.svc-overview__item-header h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: inherit;
  margin: 0;
}
.svc-overview__item-header:hover {
  color: rgba(25, 54, 23, 0.8);
}
.svc-overview__item-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: #399A48;
}
.svc-overview__item-body {
  padding-bottom: 24px;
}
.svc-overview__item-body p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.75);
  margin: 0;
}
@media (max-width: 1024px) {
  .svc-overview {
    padding-left: 24px;
    padding-right: 24px;
  }
  .svc-overview__inner {
    grid-template-columns: 1fr;
  }
  .svc-overview__title,
  .svc-overview__list {
    grid-column: 1;
  }
}
@media (max-width: 768px) {
  .svc-overview {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.cta-boxes {
  background-color: #FDFDF9;
  padding-top: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.cta-boxes__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
.cta-boxes__box {
  flex: 1;
  background-color: #D8EAD6;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.cta-boxes__box-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-boxes__box-heading {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(17px, 12.9px + 1.05vw, 28px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.cta-boxes__box-body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.75);
  margin: 0;
}
.cta-boxes__box-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-boxes .btn--primary {
  background-color: #399A48;
  border-color: #399A48;
  color: #ffffff;
}
.cta-boxes .btn--primary:hover,
.cta-boxes .btn--primary:focus-visible {
  background-color: #2b7537;
  border-color: #2b7537;
}
.cta-boxes .btn--secondary {
  background-color: transparent;
  border-color: #399A48;
  color: #399A48;
}
.cta-boxes .btn--secondary:hover,
.cta-boxes .btn--secondary:focus-visible {
  background-color: #399A48;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cta-boxes {
    padding-top: 40px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .cta-boxes__inner {
    flex-direction: column;
  }
}
.our-doctors {
  background-color: #FDFDF9;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 80px;
}
.our-doctors__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.our-doctors__title {
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.our-doctors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.our-doctors__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.our-doctors__image-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 8px;
}
.our-doctors__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.our-doctors__name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.our-doctors__role {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.6);
  margin: 0;
}
.our-doctors__services {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
}
@media (max-width: 1024px) {
  .our-doctors {
    padding-left: 24px;
    padding-right: 24px;
  }
  .our-doctors__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .our-doctors__grid::-webkit-scrollbar {
    display: none;
  }
  .our-doctors__item {
    flex: 0 0 calc((100% - 24px * 2) / 2.5);
    scroll-snap-align: start;
  }
}
@media (max-width: 768px) {
  .our-doctors {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .our-doctors__item {
    flex: 0 0 calc((100% - 24px) / 1.5);
  }
}
.svc-faq {
  background-color: #FDFDF9;
  padding-top: 80px;
  padding-bottom: 80px;
}
.svc-faq__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 8fr 2fr;
  gap: 40px;
}
.svc-faq__title {
  grid-column: 2;
  font-family: 'Comfortaa', system-ui, sans-serif;
  font-size: calc(clamp(25px, 19.4px + 1.43vw, 40px) * var(--font-coefficient));
  font-weight: 500;
  line-height: 1;
  color: #193617;
  margin: 0;
}
.svc-faq__list {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(25, 54, 23, 0.15);
}
.svc-faq__item {
  border-bottom: 1px solid rgba(25, 54, 23, 0.15);
}
.svc-faq__item[open] .svc-faq__item-chevron {
  transform: rotate(180deg);
}
.svc-faq__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  list-style: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
  user-select: none;
}
.svc-faq__item-header::-webkit-details-marker {
  display: none;
}
.svc-faq__item-header h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: inherit;
  margin: 0;
}
.svc-faq__item-header:hover {
  color: rgba(25, 54, 23, 0.8);
}
.svc-faq__item-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: #399A48;
}
.svc-faq__item-body {
  padding-bottom: 24px;
}
.svc-faq__item-body p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.75);
  margin: 0;
}
@media (max-width: 1024px) {
  .svc-faq {
    padding-left: 24px;
    padding-right: 24px;
  }
  .svc-faq__inner {
    grid-template-columns: 1fr;
  }
  .svc-faq__title,
  .svc-faq__list {
    grid-column: 1;
  }
}
@media (max-width: 768px) {
  .svc-faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.testimonials-slider {
  background-color: #D8EAD6;
  padding-top: 80px;
  padding-bottom: 80px;
}
.testimonials-slider__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 6fr 3fr;
  align-items: center;
  gap: 24px;
}
.testimonials-slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  border: none;
  background-color: #399A48;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.15s;
  flex-shrink: 0;
}
.testimonials-slider__arrow svg {
  width: 20px;
  height: 20px;
}
.testimonials-slider__arrow:hover {
  background-color: #2b7537;
}
.testimonials-slider__arrow--prev {
  justify-self: start;
}
.testimonials-slider__arrow--next {
  justify-self: end;
}
.testimonials-slider__track-wrap {
  overflow: hidden;
}
.testimonials-slider__track {
  display: flex;
  transition: transform 0.35s ease;
}
.testimonials-slider__slide {
  flex: 0 0 100%;
}
.testimonials-slider__stars {
  color: #399A48;
  font-size: clamp(16px, 14.5px + 0.38vw, 20px);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.testimonials-slider__text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #193617;
  margin: 0;
}
.testimonials-slider__author {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193617;
  margin: 40px 0 0;
}
@media (max-width: 1024px) {
  .testimonials-slider__inner {
    grid-template-columns: auto 1fr auto;
  }
}
@media (max-width: 768px) {
  .testimonials-slider {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
}
.booking-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}
.booking-modal.is-open .booking-modal__backdrop {
  opacity: 1;
}
.booking-modal.is-open .booking-modal__panel {
  opacity: 1;
  transform: translateY(0);
}
.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.booking-modal__panel {
  position: relative;
  z-index: 1;
  background-color: #FDFDF9;
  border-radius: 20px;
  padding: 64px 64px 40px;
  width: calc(100% - (80px * 2));
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (max-width: 768px) {
  .booking-modal__panel {
    width: calc(100% - (24px * 2));
    padding: 40px 24px 24px;
  }
}
.booking-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: rgba(25, 54, 23, 0.6);
  cursor: pointer;
  border-radius: 9999px;
  transition: color 0.15s, background-color 0.15s;
}
.booking-modal__close:hover {
  color: #193617;
  background-color: rgba(25, 54, 23, 0.08);
}
.booking-modal__body {
  margin-top: 16px;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-form__input {
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: #193617;
  background-color: transparent;
  border: 1px solid rgba(25, 54, 23, 0.4);
  border-radius: 4px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.booking-form__input::placeholder {
  color: rgba(25, 54, 23, 0.4);
}
.booking-form__input:focus {
  border-color: #399A48;
}
.booking-form__textarea {
  resize: vertical;
  min-height: 100px;
}
.booking-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='currentColor' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: calc(16px + 20px);
  cursor: pointer;
}
.booking-form__select option {
  color: initial;
  background-color: initial;
}
.booking-form__row {
  display: flex;
  flex-direction: column;
}
.booking-form__row--2col {
  flex-direction: row;
  gap: 16px;
}
.booking-form__row--2col .booking-form__input {
  flex: 1;
  min-width: 0;
}
.booking-form__acceptance {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.7);
}
.booking-form__acceptance a {
  color: #399A48;
  text-decoration: underline;
}
.booking-form__acceptance-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.booking-form__checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1.5px solid rgba(25, 54, 23, 0.35);
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}
.booking-form__checkbox:checked {
  background-color: #399A48;
  border-color: #399A48;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.booking-form__checkbox:hover {
  border-color: #399A48;
}
.booking-form__response {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid currentColor;
}
.booking-form__response--success {
  color: #1a7a3c;
}
.booking-form__response--error {
  color: #c0392b;
}
.booking-form__note {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(25, 54, 23, 0.55);
  margin: 0;
}
.booking-form__submit {
  align-self: flex-start;
}
.booking-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .booking-form__row--2col {
    flex-direction: column;
  }
}
body.modal-open {
  overflow: hidden;
}
