/* Reset */
* {
  box-sizing: border-box;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background-color: #ffffff;
  color: #1a2e26;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
[hidden] {
  display: none !important;
}
button {
  font-family: inherit;
  cursor: pointer;
  border-style: none;
  background-color: transparent;
  color: inherit;
}

/* Layout */
.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main {
  flex-grow: 1;
}
.container {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 40px;
  padding-right: 16px;
  padding-bottom: 40px;
  padding-left: 16px;
}
.container--narrow {
  max-width: 768px;
}
.link {
  color: #1d6049;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
}
.link-hover {
  text-decoration-color: #1d6049;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e8e5;
}
.header__inner {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 0;
  padding-right: 16px;
  padding-bottom: 0;
  padding-left: 16px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
}
.header__logo {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #1d6049;
  font-weight: 600;
  font-size: 18px;
}
.header__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.header__logo-text {
  display: none;
}
.header__nav {
  display: none;
}
.header__nav-link {
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #3a4d44;
  transition-property: color, background-color;
  transition-duration: 150ms;
  transition-timing-function: ease;
}
.header__nav-link-hover {
  color: #1d6049;
}
.header__phone {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: #1d6049;
}
.header__burger {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1a2e26;
}
.header__mobile {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #e3e8e5;
  background-color: #ffffff;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
}
.header__mobile-link {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
  color: #1a2e26;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e8e5;
}
.header__mobile-phone {
  padding-top: 12px;
  padding-bottom: 12px;
  color: #1d6049;
  font-weight: 500;
}

@media (min-width: 640px) {
  .header__logo-text { display: inline; }
}
@media (min-width: 1024px) {
  .header__nav { display: flex; align-items: center; column-gap: 4px; }
  .header__phone { display: inline-flex; }
  .header__burger { display: none; }
  .header__mobile { display: none; }
}

/* HERO */
.hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(29,96,73,0.92), rgba(29,96,73,0.78), rgba(29,96,73,0.5));
}
.hero__inner {
  position: relative;
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 80px;
  padding-right: 16px;
  padding-bottom: 80px;
  padding-left: 16px;
  text-align: center;
  color: #ffffff;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 16px;
}
.hero__title {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  max-width: 880px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  letter-spacing: -0.02em;
}
.hero__text {
  margin-top: 20px;
  font-size: 16px;
  opacity: 0.95;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 12px;
  column-gap: 12px;
}
@media (min-width: 640px) {
  .hero__inner { padding-top: 112px; padding-bottom: 112px; }
  .hero__title { font-size: 48px; }
  .hero__text { font-size: 18px; }
  .hero__actions { flex-direction: row; }
}
@media (min-width: 1024px) {
  .hero__title { font-size: 60px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  border-style: solid;
  border-width: 1px;
  border-color: transparent;
  transition-property: background-color, color, opacity, transform;
  transition-duration: 150ms;
  transition-timing-function: ease;
}
.btn--white {
  background-color: #ffffff;
  color: #1d6049;
}
.btn--white-hover { opacity: 0.9; }
.btn--ghost {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost-hover { background-color: rgba(255,255,255,0.1); }
.btn--primary {
  background-color: #1d6049;
  color: #ffffff;
}
.btn--primary-hover { background-color: #174c3a; }
.btn--outline {
  background-color: #ffffff;
  color: #1a2e26;
  border-color: #e3e8e5;
}
.btn--outline-hover { background-color: #ecf3ef; }
.btn--hide-mobile { display: none; }
@media (min-width: 640px) {
  .btn--hide-mobile { display: inline-flex; }
}

/* STATS */
.stats {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 48px;
  padding-right: 16px;
  padding-bottom: 48px;
  padding-left: 16px;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 16px;
  text-align: center;
}
.stats__card {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.stats__num {
  font-size: 24px;
  font-weight: 700;
  color: #1d6049;
}
.stats__lbl {
  font-size: 12px;
  color: #6b7f76;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .stats__inner { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .stats__num { font-size: 30px; }
  .stats__lbl { font-size: 14px; }
  .stats { padding-top: 64px; padding-bottom: 64px; }
}

/* SECTIONS */
.section {
  padding-top: 48px;
  padding-bottom: 48px;
}
.section--muted {
  background-color: #f1f6f3;
}
.section__inner {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
}
.section__inner--center { text-align: center; }
.section__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section__lead {
  margin-top: 12px;
  color: #6b7f76;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
.section__lead-left {
  margin-top: 8px;
  color: #6b7f76;
}
@media (min-width: 640px) {
  .section__title { font-size: 30px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
}

/* SERVICES GRID (home) */
.services-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  text-align: left;
}
.service-card {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  transition-property: border-color;
  transition-duration: 150ms;
  transition-timing-function: ease;
}
.service-card-hover { border-color: #1d6049; }
.service-card__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.service-card__text {
  margin-top: 8px;
  font-size: 14px;
  color: #6b7f76;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }

/* WHY */
.why-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  column-gap: 20px;
  row-gap: 16px;
  text-align: left;
}
.why-item {
  display: flex;
  align-items: flex-start;
  column-gap: 14px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-top-color: #e6ebe8;
  border-right-color: #e6ebe8;
  border-bottom-color: #e6ebe8;
  border-left-color: #e6ebe8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  transition-property: border-color, box-shadow, transform;
  transition-duration: 200ms;
}
.why-item-hover {
  border-top-color: #1d6049;
  border-right-color: #1d6049;
  border-bottom-color: #1d6049;
  border-left-color: #1d6049;
  box-shadow: 0 6px 18px rgba(29, 96, 73, 0.08);
}
.why-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: #1d6049;
  background-color: #eaf3ee;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
}
.why-item__body {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.why-item__title {
  font-weight: 600;
  font-size: 16px;
  color: #0f2a20;
}
.why-item__text {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7f76;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* PROCESS */
.process-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  column-gap: 20px;
  row-gap: 20px;
  text-align: left;
}
.process-card {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.process-card__num {
  font-size: 30px;
  font-weight: 700;
  color: rgba(200, 160, 76, 0.6);
}
.process-card__title { font-weight: 600; margin-top: 8px; }
.process-card__text { font-size: 14px; color: #6b7f76; margin-top: 4px; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* VACANCIES */
.vacancies-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 16px;
}
.vacancies-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  column-gap: 16px;
  row-gap: 16px;
}
.vacancies-more {
  margin-top: 24px;
  text-align: center;
}
@media (min-width: 768px) { .vacancies-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 640px) { .vacancies-more { display: none; } }

.vacancy-card {
  display: block;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 14px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  cursor: pointer;
  transition-property: border-color, box-shadow, transform;
  transition-duration: 200ms;
  transition-timing-function: ease;
}
.vacancy-card-hover {
  border-color: #1d6049;
  box-shadow: 0 10px 20px -8px rgba(29,96,73,0.18);
  transform: translateY(-2px);
}
.vacancy-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 12px;
}
.vacancy-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #1d6049;
}
.vacancy-card__title-hover { text-decoration-line: underline; }
.vacancy-card__cat {
  font-size: 12px;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 4px;
  padding-left: 10px;
  border-radius: 999px;
  background-color: #ecf3ef;
  color: #2a4a3e;
  flex-shrink: 0;
}
.vacancy-card__meta {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7f76;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.vacancy-card__desc {
  margin-top: 12px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-x: hidden;
  overflow-y: hidden;
}
.vacancy-card__more {
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #1d6049;
}
.vacancy-card__arrow {
  display: inline-block;
  transition-property: transform;
  transition-duration: 150ms;
  transition-timing-function: ease;
}
.vacancy-card__arrow-hover { transform: translateX(4px); }

/* CTA */
.cta {
  background-color: #1d6049;
  color: #ffffff;
  border-radius: 20px;
  padding-top: 32px;
  padding-right: 24px;
  padding-bottom: 32px;
  padding-left: 24px;
  text-align: center;
}
.cta__title { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.cta__text { margin-top: 12px; opacity: 0.9; }
.cta__actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 12px;
  column-gap: 12px;
}
@media (min-width: 640px) {
  .cta { padding-top: 48px; padding-right: 48px; padding-bottom: 48px; padding-left: 48px; }
  .cta__title { font-size: 30px; }
  .cta__actions { flex-direction: row; }
}

/* PAGE */
.page__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page__lead { color: #6b7f76; margin-top: 8px; }
.page__h2 { margin-top: 28px; font-size: 22px; font-weight: 600; }
.page__p { margin-top: 12px; }
.page__muted { font-size: 14px; color: #6b7f76; margin-top: 4px; }
@media (min-width: 640px) { .page__title { font-size: 36px; } }

/* FILTERS */
.filters {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  column-gap: 12px;
  row-gap: 12px;
}
.filters__input, .filters__select {
  width: 100%;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  background-color: #ffffff;
  font-size: 15px;
  color: #1a2e26;
}
@media (min-width: 768px) { .filters { grid-template-columns: repeat(3, minmax(0,1fr)); } }

/* SERVICES LIST */
.services-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.service-block {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.service-block__title { font-size: 20px; font-weight: 600; color: #1d6049; }
.service-block__text { margin-top: 8px; color: #283d35; }
.service-block__list {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  column-gap: 8px;
  row-gap: 4px;
  list-style-type: none;
  font-size: 14px;
  color: #6b7f76;
}
.service-block__item { padding-left: 0; }
@media (min-width: 640px) { .service-block__list { grid-template-columns: repeat(2, minmax(0,1fr)); } }

.cost-block {
  margin-top: 40px;
  background-color: #f1f6f3;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.cost-block__title { font-size: 20px; font-weight: 600; }
.cost-block__text { margin-top: 8px; color: #283d35; }
.cost-block__phone { margin-top: 12px; font-size: 12px; color: #6b7f76; }

/* ABOUT */
.about-stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  column-gap: 16px;
  row-gap: 16px;
}
.about-stats__card {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  text-align: center;
}
.about-stats__num { font-size: 24px; font-weight: 700; color: #1d6049; }
.about-stats__lbl { font-size: 12px; color: #6b7f76; margin-top: 4px; }
@media (min-width: 640px) { .about-stats { grid-template-columns: repeat(3, minmax(0,1fr)); } }

.values-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  column-gap: 16px;
  row-gap: 16px;
}
.value-card {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.value-card__title { font-weight: 600; }
.value-card__text { font-size: 14px; color: #6b7f76; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

.bullet-list {
  margin-top: 12px;
  padding-left: 24px;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.bullet-list__item { padding-left: 4px; }

.req-card {
  margin-top: 12px;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

/* FAQ */
.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.faq-item {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  overflow-x: hidden;
  overflow-y: hidden;
}
.faq-item__btn {
  width: 100%;
  text-align: left;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
  font-weight: 500;
  font-size: 15px;
}
.faq-item__chev {
  display: inline-block;
  transition-property: transform;
  transition-duration: 200ms;
  transition-timing-function: ease;
  font-size: 14px;
  color: #6b7f76;
}
.faq-item__chev-open { transform: rotate(180deg); }
.faq-item__ans {
  padding-top: 0;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  color: #283d35;
}
.faq-foot {
  margin-top: 32px;
  background-color: #f1f6f3;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  font-size: 14px;
}

/* CONTACTS */
.contacts-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  column-gap: 24px;
  row-gap: 24px;
}
.contacts-col {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.contact-card {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.contact-card__lbl { font-size: 14px; color: #6b7f76; }
.contact-card__val { font-size: 17px; font-weight: 600; color: #1d6049; word-break: break-word; }
.contact-card__sub { font-size: 14px; color: #6b7f76; }
.contact-card__row { font-size: 14px; margin-top: 4px; }
@media (min-width: 1024px) { .contacts-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* FORM */
.form {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.form__title { font-size: 20px; font-weight: 600; }
.form__row { display: flex; flex-direction: column; }
.form__label { font-size: 14px; margin-bottom: 4px; }
.form__input, .form__textarea {
  width: 100%;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  color: #1a2e26;
  outline-style: none;
}
.form__textarea { resize: vertical; min-height: 110px; }
.form__err {
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
}
.form__consent {
  display: flex;
  align-items: flex-start;
  column-gap: 8px;
  font-size: 12px;
  color: #6b7f76;
}
.form__checkbox { margin-top: 4px; }
.form__submit {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 8px;
  background-color: #1d6049;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  transition-property: background-color;
  transition-duration: 150ms;
  transition-timing-function: ease;
}
.form__submit-hover { background-color: #174c3a; }
.form__sent {
  text-align: center;
  padding-top: 16px;
}
.form__sent-title { font-size: 18px; font-weight: 600; color: #1d6049; margin-bottom: 8px; }
.form__sent-text { color: #6b7f76; }

/* MAP */
.map-block { margin-top: 40px; }
.map-block__title { font-size: 22px; font-weight: 600; margin-bottom: 16px; }
.map-block__frame {
  border-radius: 12px;
  overflow-x: hidden;
  overflow-y: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
}
.map-block__iframe { border-style: none; display: block; }
.map-block__addr { font-size: 14px; color: #6b7f76; margin-top: 8px; }

/* VACANCY DETAIL */
.vac-back { font-size: 14px; color: #1d6049; }
.vac-title { font-size: 28px; font-weight: 700; margin-top: 12px; letter-spacing: -0.02em; }
.vac-meta {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  column-gap: 12px;
  row-gap: 12px;
  font-size: 14px;
}
.vac-meta__item {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
}
.vac-sect { margin-top: 24px; }
.vac-sect__title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.vac-desc { font-size: 18px; margin-top: 32px; color: #283d35; }
@media (min-width: 640px) { .vac-meta { grid-template-columns: repeat(2, minmax(0,1fr)); } .vac-title { font-size: 36px; } }

/* FOOTER */
.footer {
  margin-top: 80px;
  background-color: #f1f6f3;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #e3e8e5;
}
.footer__inner {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 40px;
  padding-right: 16px;
  padding-bottom: 40px;
  padding-left: 16px;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  column-gap: 32px;
  row-gap: 32px;
  font-size: 14px;
}
.footer__col { display: flex; flex-direction: column; row-gap: 4px; }
.footer__title { font-weight: 600; color: #1a2e26; margin-bottom: 8px; }
.footer__text { color: #6b7f76; }
.footer__link { color: #6b7f76; }
.footer__link-hover { color: #1d6049; }
.footer__copy {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #e3e8e5;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  font-size: 12px;
  color: #6b7f76;
}
@media (min-width: 768px) { .footer__inner { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .footer__inner { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* COOKIE */
.cookie {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 80px;
  z-index: 40;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 12px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.cookie__text { font-size: 14px; color: #283d35; margin-bottom: 12px; }
.cookie__actions { display: flex; column-gap: 8px; }
.cookie__accept {
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  border-radius: 8px;
  background-color: #1d6049;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.cookie__close {
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  font-size: 14px;
}
@media (min-width: 640px) {
  .cookie { right: auto; max-width: 420px; }
}

/* CHAT */
.chat-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background-color: #1d6049;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition-property: transform;
  transition-duration: 150ms;
  transition-timing-function: ease;
}
.chat-fab-hover { transform: scale(1.06); }
.chat-fab__icon { font-size: 26px; }

.chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  width: calc(100vw - 40px);
  max-width: 360px;
  height: 448px;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: hidden;
}
.chat__head {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  background-color: #1d6049;
  color: #ffffff;
}
.chat__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border-style: solid;
  border-width: 2px;
  border-color: rgba(255,255,255,0.3);
}
.chat__head-info { flex-grow: 1; }
.chat__head-name { font-weight: 600; font-size: 14px; }
.chat__head-sub { font-size: 12px; opacity: 0.85; }
.chat__close {
  color: #ffffff;
  font-size: 18px;
  padding-top: 4px;
  padding-right: 4px;
  padding-bottom: 4px;
  padding-left: 4px;
}
.chat__body {
  flex-grow: 1;
  overflow-y: auto;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  background-color: #f6faf8;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.chat__msg { display: flex; }
.chat__msg--me { justify-content: flex-end; }
.chat__msg--bot { justify-content: flex-start; }
.chat__bubble {
  max-width: 80%;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.4;
}
.chat__bubble--me {
  background-color: #1d6049;
  color: #ffffff;
  border-bottom-right-radius: 4px;
}
.chat__bubble--bot {
  background-color: #ffffff;
  color: #1a2e26;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  border-bottom-left-radius: 4px;
}
.chat__form {
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #e3e8e5;
  display: flex;
  column-gap: 8px;
}
.chat__input {
  flex-grow: 1;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  font-size: 14px;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e8e5;
  background-color: #ffffff;
  outline-style: none;
  font-family: inherit;
  color: #1a2e26;
}
.chat__send {
  padding-top: 8px;
  padding-right: 14px;
  padding-bottom: 8px;
  padding-left: 14px;
  border-radius: 8px;
  background-color: #1d6049;
  color: #ffffff;
  font-size: 16px;
}
