/* ===== Reset / base ===== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
body {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  background-color: #fdfcf9;
  color: #1f2937;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}

/* ===== Wrapper ===== */
.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ===== Page switching ===== */
.page {
  display: none;
  flex-grow: 1;
  width: 100%;
}
.page--active {
  display: block;
}

/* ===== Container helpers (single-class, BEM blocks) ===== */
.container {
  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;
  width: 100%;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(253, 252, 249, 0.95);
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 1px;
  border-left-width: 0;
  border-bottom-style: solid;
  border-bottom-color: #dee1e8;
}
.site-header__inner {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  column-gap: 8px;
  text-decoration: none;
  color: inherit;
}
.site-header__logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2c3e63;
  color: #fdfcf9;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.site-header__logo-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}
.site-header__logo-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7385;
  margin-top: 2px;
}
.site-header__nav {
  display: none;
  align-items: center;
  column-gap: 28px;
}
.site-header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #2a3242;
  text-decoration: none;
  cursor: pointer;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: inherit;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.site-header__nav-link--hover {
  color: #2c3e63;
}
.site-header__nav-link--active {
  color: #2c3e63;
  font-weight: 600;
}
.site-header__cta {
  display: none;
  background-color: #2c3e63;
  color: #fdfcf9;
  font-size: 14px;
  font-weight: 500;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  text-decoration: none;
}
.site-header__cta--hover {
  opacity: 0.9;
}
.site-header__burger {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  color: #1f2937;
}
.site-header__mobile-menu {
  display: none;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #dee1e8;
  background-color: #fdfcf9;
}
.site-header__mobile-menu--open {
  display: block;
}
.site-header__mobile-inner {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.site-header__mobile-link {
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2a3242;
  text-decoration: none;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  text-align: left;
  cursor: pointer;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  font-family: inherit;
}
.site-header__mobile-link--hover {
  color: #2c3e63;
}
.site-header__mobile-cta {
  margin-top: 8px;
  background-color: #2c3e63;
  color: #fdfcf9;
  text-align: center;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #dee1e8;
}
.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to right, rgba(253, 252, 249, 0.96), rgba(253, 252, 249, 0.82) 45%, rgba(253, 252, 249, 0.32));
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 64px;
  padding-right: 16px;
  padding-bottom: 64px;
  padding-left: 16px;
}
.hero__content {
  max-width: 640px;
}
.hero__badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
  padding-top: 4px;
  padding-right: 12px;
  padding-bottom: 4px;
  padding-left: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #6b7385;
}
.hero__title {
  margin-top: 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hero__title-accent {
  color: #2c3e63;
  display: inline;
}
.hero__lead {
  margin-top: 20px;
  max-width: 560px;
  font-size: 16px;
  color: rgba(31, 41, 55, 0.85);
}
.hero__actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  cursor: pointer;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  font-family: inherit;
}
.hero__btn--primary {
  background-color: #2c3e63;
  color: #fdfcf9;
}
.hero__btn--secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
}
.hero__btn--hover {
  opacity: 0.9;
}
.hero__meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 8px;
  font-size: 12px;
  color: #6b7385;
}
.hero__meta-item {
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
}

/* ===== Stats ===== */
.stats {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #dee1e8;
  background-color: #f5f2ec;
}
.stats__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: 1fr;
  row-gap: 24px;
  column-gap: 24px;
  text-align: center;
}
.stats__item {
  display: block;
}
.stats__value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: #2c3e63;
}
.stats__label {
  margin-top: 4px;
  font-size: 14px;
  color: #6b7385;
}

/* ===== Section primitives ===== */
.section {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #dee1e8;
}
.section--muted {
  background-color: #f5f2ec;
}
.section__inner {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 64px;
  padding-right: 16px;
  padding-bottom: 64px;
  padding-left: 16px;
}
.section__head {
  max-width: 640px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  text-align: center;
}
.section__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2c3e63;
}
.section__title {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.section__lead {
  margin-top: 12px;
  font-size: 16px;
  color: #6b7385;
}

/* ===== Two-column layout (Who / FAQ) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
  column-gap: 48px;
}
.two-col__intro-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2c3e63;
}
.two-col__intro-title {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
}
.two-col__intro-text {
  margin-top: 16px;
  color: #6b7385;
}
.two-col__intro-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #2c3e63;
  text-decoration: none;
  cursor: pointer;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: inherit;
}
.two-col__intro-link--hover {
  text-decoration: underline;
}

/* ===== Card grids ===== */
.card-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  column-gap: 20px;
}
.card-grid--two-up {
  margin-top: 0;
}
.card {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
.card--lg {
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.card--hover {
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.08);
}
.card__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #efece4;
  color: #2c3e63;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  font-size: 18px;
}
.card__icon--lg {
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.card__title {
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
}
.card__title--lg {
  margin-top: 16px;
  font-size: 18px;
}
.card__text {
  margin-top: 6px;
  font-size: 14px;
  color: #6b7385;
}
.card__list {
  margin-top: 16px;
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.card__list-item {
  display: flex;
  column-gap: 8px;
  font-size: 14px;
}
.card__list-icon {
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
  color: #2c3e63;
}

/* ===== Steps ===== */
.steps {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  column-gap: 24px;
}
.step {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.step__num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  color: #d8a866;
}
.step__title {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
}
.step__text {
  margin-top: 8px;
  font-size: 14px;
  color: #6b7385;
}

/* ===== Testimonials ===== */
.testimonials {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  column-gap: 20px;
}
.testimonial {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.testimonial__mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  color: rgba(44, 62, 99, 0.4);
  line-height: 1;
}
.testimonial__quote {
  margin-top: 12px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 14px;
  line-height: 1.6;
}
.testimonial__author {
  margin-top: 16px;
  padding-top: 12px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #dee1e8;
  font-size: 14px;
}
.testimonial__name {
  font-weight: 600;
}
.testimonial__role {
  font-size: 12px;
  color: #6b7385;
  margin-top: 2px;
}

/* ===== FAQ items ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.faq-item {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
}
.faq-item__q-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 16px;
  cursor: pointer;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  width: 100%;
  text-align: left;
  font-family: inherit;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  color: inherit;
}
.faq-item__question {
  font-size: 15px;
  font-weight: 600;
}
.faq-item__sign {
  color: #2c3e63;
  font-size: 18px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.faq-item__answer {
  display: none;
  margin-top: 12px;
  font-size: 14px;
  color: #6b7385;
}
.faq-item__answer--open {
  display: block;
}

/* ===== CTA card ===== */
.cta {
  padding-top: 64px;
  padding-bottom: 64px;
}
.cta__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;
}
.cta__card {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
  column-gap: 32px;
}
.cta__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
}
.cta__text {
  margin-top: 12px;
  max-width: 560px;
  color: #6b7385;
}
.cta__contacts {
  background-color: #efece4;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  font-size: 14px;
}
.cta__contact-row {
  display: flex;
  align-items: flex-start;
  column-gap: 12px;
}
.cta__contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7385;
}
.cta__contact-value {
  font-weight: 500;
  margin-top: 2px;
  text-decoration: none;
  color: inherit;
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 64px;
  background-color: #f5f2ec;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #dee1e8;
}
.site-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: 1fr;
  row-gap: 32px;
  column-gap: 32px;
}
.site-footer__brand-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
}
.site-footer__brand-text {
  margin-top: 8px;
  font-size: 14px;
  color: #6b7385;
}
.site-footer__col-title {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
}
.site-footer__list {
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  font-size: 14px;
  color: #6b7385;
}
.site-footer__link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: inherit;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  text-align: left;
  font-size: 14px;
}
.site-footer__link--hover {
  color: #2c3e63;
}
.site-footer__bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #dee1e8;
}
.site-footer__bottom-inner {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 16px;
  padding-bottom: 20px;
  padding-left: 16px;
  font-size: 12px;
  color: #6b7385;
}

/* ===== Page header ===== */
.page-header {
  background-color: #f5f2ec;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #dee1e8;
}
.page-header__inner {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 56px;
  padding-right: 16px;
  padding-bottom: 56px;
  padding-left: 16px;
}
.page-header__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.page-header__lead {
  margin-top: 12px;
  max-width: 720px;
  font-size: 16px;
  color: #6b7385;
}

/* ===== Generic prose ===== */
.prose {
  max-width: 720px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 48px;
  padding-right: 16px;
  padding-bottom: 48px;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.7;
}
.prose__p {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 16px;
  margin-left: 0;
}
.prose__h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
}
.prose__list {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 24px;
  color: #6b7385;
}
.prose__list-item {
  margin-bottom: 6px;
}
.prose__muted {
  color: #6b7385;
  margin-bottom: 16px;
}
.prose__details-card {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 14px;
}
.prose__dl {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 8px;
  column-gap: 16px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.prose__dt {
  color: #6b7385;
  font-size: 13px;
}
.prose__dd {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-weight: 500;
}

/* ===== Services groups ===== */
.services {
  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;
  display: flex;
  flex-direction: column;
  row-gap: 48px;
}
.services__group-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}
.services__group-lead {
  margin-top: 8px;
  color: #6b7385;
  max-width: 640px;
}
.services__items {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  column-gap: 20px;
}
.services__cta {
  background-color: #f5f2ec;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  text-align: center;
}
.services__cta-actions {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
}

/* ===== Vacancies ===== */
.vacancies {
  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;
}
.vacancies__filters {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.vacancies__search {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  background-color: #fdfcf9;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  outline-style: none;
  color: inherit;
}
.vacancies__select {
  font-family: inherit;
  font-size: 14px;
  background-color: #fdfcf9;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  outline-style: none;
  color: inherit;
}
.vacancies__count {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7385;
}
.vacancies__list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
}
.vacancy-card {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  display: block;
}
.vacancy-card--hover {
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.08);
}
.vacancy-card__top {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.vacancy-card__title {
  font-size: 17px;
  font-weight: 600;
  color: #2c3e63;
}
.vacancy-card__meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 6px;
  font-size: 12px;
  color: #6b7385;
}
.vacancy-card__salary-block {
  display: block;
}
.vacancy-card__salary {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
}
.vacancy-card__exp {
  font-size: 12px;
  color: #6b7385;
  margin-top: 2px;
}
.vacancy-card__desc {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7385;
}
.vacancy-card__more {
  margin-top: 12px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #2c3e63;
}
.vacancies__empty {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: dashed;
  border-right-style: dashed;
  border-bottom-style: dashed;
  border-left-style: dashed;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 40px;
  padding-right: 16px;
  padding-bottom: 40px;
  padding-left: 16px;
  text-align: center;
  color: #6b7385;
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
}
.modal--open {
  display: block;
}
.modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(15, 23, 42, 0.55);
}
.modal__panel {
  position: relative;
  background-color: #ffffff;
  width: 92%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  margin-top: 5vh;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  color: #1f2937;
}
.modal__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  padding-right: 40px;
}
.modal__meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 6px;
  font-size: 13px;
  color: #6b7385;
}
.modal__salary {
  margin-top: 16px;
  background-color: #f5f2ec;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
}
.modal__salary-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
}
.modal__salary-exp {
  margin-top: 2px;
  font-size: 14px;
  color: #6b7385;
}
.modal__description {
  margin-top: 16px;
  line-height: 1.6;
}
.modal__section {
  margin-top: 20px;
}
.modal__section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
}
.modal__section-list {
  margin-top: 8px;
  padding-left: 24px;
  color: #6b7385;
  list-style-type: disc;
}
.modal__section-item {
  margin-bottom: 4px;
}
.modal__cta {
  margin-top: 20px;
  background-color: #f5f2ec;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  text-align: center;
}
.modal__cta-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
}
.modal__cta-text {
  margin-top: 4px;
  font-size: 14px;
  color: #6b7385;
}
.modal__cta-actions {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
}

/* ===== Buttons reusable ===== */
.btn-primary {
  background-color: #2c3e63;
  color: #fdfcf9;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  display: inline-block;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}
.btn-primary--hover {
  opacity: 0.9;
}
.btn-secondary {
  background-color: #ffffff;
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  display: inline-block;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}
.btn-secondary--hover {
  background-color: #f5f2ec;
}

/* ===== Contacts page ===== */
.contacts-grid {
  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;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
  column-gap: 32px;
}
.contacts-block__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}
.contacts-list {
  margin-top: 20px;
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.contacts-item {
  display: flex;
  align-items: flex-start;
  column-gap: 12px;
  font-size: 15px;
}
.contacts-item__icon {
  margin-top: 2px;
  width: 18px;
  color: #2c3e63;
  flex-shrink: 0;
}
.contacts-item__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7385;
}
.contacts-item__value {
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}
.contacts-item__sub {
  font-size: 13px;
  color: #6b7385;
  margin-top: 2px;
}
.contacts-map {
  margin-top: 24px;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.contacts-map__iframe {
  display: block;
  width: 100%;
  height: 320px;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
}
.contacts-map__caption {
  background-color: #ffffff;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  font-size: 14px;
}
.contacts-map__caption-text {
  color: #6b7385;
  margin-top: 2px;
}

/* ===== Form ===== */
.form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
}
.form__label {
  font-size: 14px;
  font-weight: 500;
}
.form__input {
  margin-top: 4px;
  font-family: inherit;
  font-size: 14px;
  background-color: #fdfcf9;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  outline-style: none;
  color: inherit;
}
.form__textarea {
  margin-top: 4px;
  font-family: inherit;
  font-size: 14px;
  background-color: #fdfcf9;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  outline-style: none;
  color: inherit;
  resize: vertical;
}
.form__error {
  margin-top: 4px;
  font-size: 12px;
  color: #c0392b;
}
.form__consent {
  display: flex;
  align-items: flex-start;
  column-gap: 8px;
  font-size: 12px;
  color: #6b7385;
}
.form__consent-checkbox {
  margin-top: 3px;
}
.form__submit {
  background-color: #2c3e63;
  color: #fdfcf9;
  font-size: 14px;
  font-weight: 500;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}
.form__submit--hover {
  opacity: 0.9;
}
.form__success {
  margin-top: 20px;
  background-color: #f5f2ec;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-top: 24px;
  padding-right: 16px;
  padding-bottom: 24px;
  padding-left: 16px;
  text-align: center;
}
.form__success-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
}
.form__success-text {
  margin-top: 8px;
  font-size: 14px;
  color: #6b7385;
}
.form__success-btn {
  margin-top: 16px;
  background-color: #ffffff;
  color: #1f2937;
  font-size: 14px;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  cursor: pointer;
  font-family: inherit;
}

/* ===== Chat widget ===== */
.chat-widget {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 50;
}
.chat-widget__bubble {
  width: 56px;
  height: 56px;
  background-color: #2c3e63;
  color: #fdfcf9;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.25);
}
.chat-widget__bubble--hover {
  transform: scale(1.05);
}
.chat-widget__bubble--hidden {
  display: none;
}
.chat-widget__panel {
  display: none;
  width: 92vw;
  max-width: 360px;
  height: 70vh;
  max-height: 560px;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow-x: hidden;
  overflow-y: hidden;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(31, 41, 55, 0.25);
}
.chat-widget__panel--open {
  display: flex;
}
.chat-widget__header {
  background-color: #2c3e63;
  color: #fdfcf9;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.chat-widget__avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
  object-fit: cover;
}
.chat-widget__title-block {
  flex-grow: 1;
}
.chat-widget__title {
  font-size: 14px;
  font-weight: 600;
}
.chat-widget__subtitle {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}
.chat-widget__close {
  width: 32px;
  height: 32px;
  background-color: transparent;
  color: #fdfcf9;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  font-size: 18px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.chat-widget__close--hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.chat-widget__body {
  flex-grow: 1;
  overflow-y: auto;
  background-color: #f5f2ec;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.chat-widget__msg-row-bot {
  display: flex;
  justify-content: flex-start;
}
.chat-widget__msg-row-user {
  display: flex;
  justify-content: flex-end;
}
.chat-widget__msg-bot {
  max-width: 80%;
  background-color: #ffffff;
  font-size: 14px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 1px 2px rgba(31, 41, 55, 0.06);
}
.chat-widget__msg-user {
  max-width: 80%;
  background-color: #2c3e63;
  color: #fdfcf9;
  font-size: 14px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.chat-widget__form {
  display: flex;
  align-items: center;
  column-gap: 8px;
  background-color: #ffffff;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #dee1e8;
}
.chat-widget__input {
  flex-grow: 1;
  font-family: inherit;
  font-size: 14px;
  background-color: #fdfcf9;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  outline-style: none;
  color: inherit;
}
.chat-widget__send {
  width: 40px;
  height: 40px;
  background-color: #2c3e63;
  color: #fdfcf9;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

/* ===== Cookie banner ===== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 45;
  max-width: 480px;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  box-shadow: 0 16px 40px rgba(31, 41, 55, 0.18);
}
.cookie-banner--shown {
  display: block;
}
.cookie-banner__text {
  font-size: 14px;
}
.cookie-banner__link {
  color: #2c3e63;
  text-decoration: underline;
  cursor: pointer;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: inherit;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: 14px;
}
.cookie-banner__actions {
  margin-top: 12px;
  display: flex;
  column-gap: 8px;
}
.cookie-banner__accept {
  background-color: #2c3e63;
  color: #fdfcf9;
  font-size: 14px;
  font-weight: 500;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  cursor: pointer;
  font-family: inherit;
}
.cookie-banner__more {
  background-color: #ffffff;
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dee1e8;
  border-right-color: #dee1e8;
  border-bottom-color: #dee1e8;
  border-left-color: #dee1e8;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  cursor: pointer;
  font-family: inherit;
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .container {
    padding-right: 24px;
    padding-left: 24px;
  }
  .hero__inner {
    padding-right: 24px;
    padding-left: 24px;
  }
  .hero__title {
    font-size: 40px;
  }
  .hero__lead {
    font-size: 18px;
  }
  .hero__actions {
    flex-direction: row;
  }
  .stats__inner {
    grid-template-columns: 1fr 1fr;
  }
  .form__submit {
    width: auto;
  }
  .services__cta-actions {
    flex-direction: row;
    justify-content: center;
  }
  .modal__cta-actions {
    flex-direction: row;
    justify-content: center;
  }
  .chat-widget {
    bottom: 24px;
    right: 24px;
  }
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
  .hero__inner {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .stats__inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .cta__card {
    padding-top: 48px;
    padding-right: 48px;
    padding-bottom: 48px;
    padding-left: 48px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .vacancies__filters {
    flex-direction: row;
    align-items: center;
  }
  .vacancy-card__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .services__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    padding-top: 112px;
    padding-bottom: 112px;
  }
  .hero__title {
    font-size: 56px;
  }
  .site-header__nav {
    display: flex;
  }
  .site-header__cta {
    display: inline-block;
  }
  .site-header__burger {
    display: none;
  }
  .site-header__mobile-menu {
    display: none;
  }
  .two-col {
    grid-template-columns: 1fr 1.4fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .card-grid--three-up {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cta__card {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .services__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prose__dl {
    grid-template-columns: 1fr 1fr;
  }
}
