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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #292524;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

[id] {
  scroll-margin-top: 5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -0.015em;
  color: #1c1917;
  font-weight: 600;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-size: 1.5rem;
  line-height: 1.25;
}

h3 {
  font-size: 1rem;
  line-height: 1.4;
}

@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 1.875rem;
  }
}
p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.mm-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mm-container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .mm-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.mm-container--narrow {
  max-width: 48rem;
}
.mm-container--prose {
  max-width: 42rem;
}

.mm-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(231, 229, 228, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}

.mm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}
@media (min-width: 640px) {
  .mm-nav {
    padding: 1rem 1.5rem;
  }
}
.mm-nav__brand {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1c1917;
}
.mm-nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.mm-nav__link {
  color: #78716c;
  transition: color 0.15s ease;
}
.mm-nav__link:hover {
  color: #1c1917;
}
.mm-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: #1c1917;
  color: #ffffff;
  font-weight: 500;
  transition: background-color 0.15s ease;
}
.mm-nav__cta:hover {
  background: #44403c;
}

.mm-footer {
  border-top: 1px solid #e7e5e4;
  background: #fafaf9;
}
.mm-footer__inner {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .mm-footer__inner {
    flex-direction: row;
  }
}
.mm-footer__copy {
  font-size: 0.875rem;
  color: #78716c;
}
.mm-footer__nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.mm-footer__link {
  color: #78716c;
}
.mm-footer__link:hover {
  color: #292524;
}

.mm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  text-decoration: none;
}
.mm-btn--block {
  width: 100%;
}
@media (min-width: 640px) {
  .mm-btn--block {
    width: auto;
  }
}
.mm-btn--primary {
  background: #1c1917;
  color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}
.mm-btn--primary:hover {
  background: #44403c;
}
.mm-btn--secondary {
  background: #ffffff;
  color: #292524;
  border-color: #e7e5e4;
}
.mm-btn--secondary:hover {
  background: #fafaf9;
}
.mm-btn--submit {
  padding: 0.875rem 2rem;
}

.mm-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .mm-cta-group {
    flex-direction: row;
  }
}

.mm-card {
  padding: 1.5rem;
  background: rgba(250, 250, 249, 0.5);
  border: 1px solid #e7e5e4;
  border-radius: 1.5rem;
}
.mm-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #1c1917;
}
.mm-card__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #57534e;
}

.mm-card-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .mm-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .mm-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mm-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mm-form__field {
  display: flex;
  flex-direction: column;
}
.mm-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #44403c;
  margin-bottom: 0.25rem;
}
.mm-form__input, .mm-form__textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid #d6d3d1;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #1c1917;
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.mm-form__input:focus, .mm-form__textarea:focus {
  outline: none;
  border-color: #78716c;
  box-shadow: 0 0 0 3px rgba(168, 162, 158, 0.5);
}
.mm-form__textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.mm-bulleted {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #57534e;
}
.mm-bulleted__item {
  display: flex;
  gap: 0.75rem;
}
.mm-bulleted__bullet {
  flex-shrink: 0;
  margin-top: 0.55rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: #a8a29e;
}

.mm-link-inline {
  font-weight: 500;
  color: #1c1917;
  text-decoration: underline;
  text-decoration-color: #a8a29e;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s ease;
}
.mm-link-inline:hover {
  text-decoration-color: #57534e;
}

.mm-section {
  padding: 4rem 1rem;
  border-bottom: 1px solid #e7e5e4;
  background: #ffffff;
}
@media (min-width: 640px) {
  .mm-section {
    padding: 5rem 1.5rem;
  }
}
.mm-section--soft {
  background: rgba(250, 250, 249, 0.8);
}
.mm-section--soft-half {
  background: rgba(250, 250, 249, 0.5);
}
.mm-section--last {
  border-bottom: 0;
}

.mm-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1c1917;
}
@media (min-width: 640px) {
  .mm-section__title {
    font-size: 1.875rem;
  }
}

.mm-section__intro {
  margin-top: 1rem;
  color: #57534e;
}

.mm-section--center .mm-section__title {
  text-align: center;
}
.mm-section--center .mm-section__intro {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
  text-align: center;
}

.mm-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem;
  border-bottom: 1px solid #e7e5e4;
  background: rgba(250, 250, 249, 0.8);
}
@media (min-width: 640px) {
  .mm-hero {
    padding: 7rem 1.5rem;
  }
}
.mm-hero__inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.mm-hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #1c1917;
  line-height: 1.1;
}
@media (min-width: 640px) {
  .mm-hero__title {
    font-size: 3rem;
  }
}
.mm-hero__lead {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  color: #57534e;
}

.mm-prose {
  margin-top: 1rem;
  color: #57534e;
}
.mm-prose--lead {
  font-size: 1.125rem;
  line-height: 1.6;
}
.mm-prose + .mm-prose {
  margin-top: 1rem;
}
.mm-prose strong {
  color: #292524;
  font-weight: 600;
}

.mm-cta-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1c1917;
  text-align: center;
}
@media (min-width: 640px) {
  .mm-cta-section__title {
    font-size: 1.875rem;
  }
}
.mm-cta-section__text {
  margin-top: 1rem;
  text-align: center;
  color: #57534e;
  font-size: 1.125rem;
}
.mm-cta-section__text strong {
  color: #1c1917;
  font-weight: 600;
}

.mm-person {
  margin-top: 2.5rem;
}
.mm-person + .mm-person {
  margin-top: 3rem;
}
.mm-person__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1c1917;
}
.mm-person__role {
  margin-top: 0.25rem;
  color: #78716c;
}
.mm-person__label {
  margin-top: 1rem;
  color: #57534e;
  font-weight: 600;
}
.mm-person__list {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #57534e;
}
.mm-person__skills {
  margin-top: 1rem;
  color: #57534e;
}

.mm-requisites {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e7e5e4;
}
.mm-requisites__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
}
.mm-requisites__line {
  margin-top: 0.5rem;
  color: #57534e;
}
.mm-requisites__line + .mm-requisites__line {
  margin-top: 0;
}

.mm-page-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #1c1917;
}
@media (min-width: 640px) {
  .mm-page-title {
    font-size: 2.25rem;
  }
}
