:root {
  --green: #59ad3b;
  --green-light: #f0f7ec;
  --green-light-2:#d0e7c7;
  --bg-secondary: #f7f7f7;
  --text-primary: #242424;
  --text-secondary:#848484;
  --font: "Roboto", sans-serif;
}

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

button, input, textarea, select {
  font-family: inherit;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: #f5f5f5;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tabs-pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 0;
  border-radius: 9999px;
  background: var(--green);
  pointer-events: none;
  z-index: 0;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero, .numbers, .mission, .values, .services,
.comfort, .team, .history, .partners,
.faq, .contact, .newsletter {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}

.media {
  border-radius: 32px;
  position: relative;
  margin-bottom: 8px;
}

img[src$=".svg"]:not(.hero__blob) {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.section--bg-secondary {
  background: var(--bg-secondary);
}

.section-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -1px;
  color: #242424;
  text-align: center;
  margin-bottom: 40px;
}
.section-title--comfort {
  margin-bottom: 56px;
  letter-spacing: -0.6px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 28px;
  }
  .section-title--comfort {
    margin-bottom: 32px;
  }
}
.br-1920 {
  display: none;
}

.br-1024 {
  display: none;
}

@media (min-width: 985px) and (max-width: 1024px) {
  .br-1024 {
    display: block;
  }
}
.br-744 {
  display: none;
}

@media (min-width: 521px) and (max-width: 767px) {
  .br-744 {
    display: block;
  }
}
.br-mission-tablet {
  display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .br-mission-tablet {
    display: block;
  }
}
@media (min-width: 1920px) {
  .br-1920 {
    display: block;
  }
}
.br-hero-zdorovya {
  display: none;
}

@media (max-width: 767px) {
  .br-hero-zdorovya {
    display: block;
  }
}
.br-hero-cifrovaya {
  display: none;
}

@media (max-width: 743px) {
  .br-hero-cifrovaya {
    display: block;
  }
}
.br-hero-tech {
  display: none;
}

@media (max-width: 480px) {
  .br-hero-tech {
    display: block;
  }
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--green-light-2);
  cursor: pointer;
  flex-shrink: 0;
  transition: width 0.3s ease, background 0.3s ease;
}
.carousel-dot--active {
  width: 24px;
  background: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}
.btn:active {
  opacity: 0.9;
  transform: scale(0.98);
}
.btn--outline {
  background: var(--bg-secondary);
  color: #242424;
  border: none;
  padding: 10px 20px;
}
.btn--green {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 10px 24px;
}
.btn--white {
  background: #fff;
  color: var(--green);
  border: none;
  padding: 12px 20px;
}
.btn--white-sm {
  background: #fff;
  color: var(--green);
  border: none;
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
}

.comfort-card__btn,
.history__catalog-btn,
.media__btn,
.newsletter__submit,
.footer__podcast-btn,
.footer__contact-btn,
.footer__store-btn {
  transition: opacity 0.2s, transform 0.2s;
}
.comfort-card__btn:hover,
.history__catalog-btn:hover,
.media__btn:hover,
.newsletter__submit:hover,
.footer__podcast-btn:hover,
.footer__contact-btn:hover,
.footer__store-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}
.comfort-card__btn:active,
.history__catalog-btn:active,
.media__btn:active,
.newsletter__submit:active,
.footer__podcast-btn:active,
.footer__contact-btn:active,
.footer__store-btn:active {
  opacity: 0.9;
  transform: scale(0.98);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
  margin: 0 0 1px;
  box-sizing: border-box;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.header__wrap {
  padding: 19.5px 36px 19.5px 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 1279px) {
  .header__wrap {
    padding: 19.5px 36px 19.5px 16px;
  }
}
@media (max-width: 1024px) {
  .header {
    height: 76px;
  }
  .header__wrap {
    padding: 0 36px 0 16px;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .header {
    height: 48px;
    margin-bottom: 0;
  }
}
.header__logo {
  width: 112px;
  height: 37px;
  flex-shrink: 0;
  text-decoration: none;
  display: block;
}
.header__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
@media (max-width: 767px) {
  .header__logo {
    width: 68.688px;
    height: 22px;
  }
}

.breadcrumb-bar {
  background: #f5f5f5;
  height: 84px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .breadcrumb-bar {
    height: 68px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-bar {
    display: none;
  }
}
.breadcrumb-bar__wrap {
  padding: 0 20px 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1279px) {
  .breadcrumb-bar__wrap {
    padding-left: 16px;
  }
}
.breadcrumb-bar__wrap nav {
  display: flex;
  align-items: center;
}
.breadcrumb-bar__link {
  font-size: 16px;
  font-weight: 400;
  color: #242424;
  text-decoration: none;
  transition: text-decoration-color 0.2s;
}
.breadcrumb-bar__link:hover {
  text-decoration: underline;
}
.breadcrumb-bar__sep {
  display: block;
  flex-shrink: 0;
  margin: 0 6px;
}
.breadcrumb-bar__current {
  font-size: 16px;
  font-weight: 400;
  color: #242424;
  cursor: default;
}
.breadcrumb-bar__current:hover {
  text-decoration: underline;
}

.hero {
  padding: 80px 0 80px;
  overflow: hidden;
  background: #fff;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  position: relative;
  width: 100%;
  padding: 0 24px;
}
.hero__blob-mobile {
  display: none;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.hero__blob {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1300px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.hero__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 832px;
  position: relative;
  z-index: 1;
}
.hero__badges {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.hero__badge:hover {
  opacity: 0.85;
  transform: scale(1.04);
}
.hero__badge img {
  display: block;
  width: auto;
  height: 79px;
}
.hero__badge--award {
  flex-shrink: 0;
}
.hero__badge--award img {
  display: block;
  width: 79px;
  height: 79px;
}
.hero__title {
  font-size: 44px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -0.6px;
  color: #242424;
}
.hero__title span {
  color: var(--green);
}
.hero__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #242424;
  max-width: 832px;
}
.hero__card-wrap {
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: 370px;
  z-index: 1;
  overflow: hidden;
}
.hero__card {
  position: absolute;
  inset: 0;
  background: var(--green);
  border-radius: 100px 32px 100px 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  z-index: 1;
}
.hero__card-blob-left, .hero__card-blob-center, .hero__card-blob-right {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero__card-blob-mobile-left, .hero__card-blob-mobile-right {
  display: none;
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero__card-blob-left {
  position: absolute;
  left: 0;
  top: 0;
}
.hero__card-blob-right {
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
}
.hero__card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  width: 420px;
  pointer-events: auto;
}
.hero__card-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  color: #fff;
  letter-spacing: -0.6px;
  white-space: nowrap;
}
.hero__card-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  letter-spacing: -0.2px;
  margin-top: 16px;
}
.hero__card-btn {
  background: #fff;
  color: var(--green);
  border: none;
  border-radius: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  padding: 16px 20px;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-flex;
}
.hero__card-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}
.hero__card-btn:active {
  opacity: 0.9;
  transform: scale(0.98);
}
.hero__card-img-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 680px;
  height: 370px;
  z-index: 2;
  clip-path: inset(0 0 0 0 round 100px 0 0 32px);
}
.hero__card-img-right {
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  width: 646px;
  height: 370px;
  z-index: 2;
  clip-path: inset(0 0 0 0 round 0 32px 100px 0);
}
.hero__card-fade-left {
  position: absolute;
  width: 680px;
  height: 370px;
  z-index: 3;
  transform: rotate(-45deg);
}
.hero__card-fade-right {
  position: absolute;
  width: 646px;
  height: 370px;
  z-index: 3;
  transform: rotate(-45deg);
}
.hero__card-btn-overlay {
  background: #fff;
  color: var(--green);
  border: none;
  border-radius: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  padding: 16px 20px;
  transition: opacity 0.2s, transform 0.2s;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s, transform 0.2s;
  top: 66.6%;
}
.hero__card-btn-overlay:hover {
  opacity: 0.9;
  transform: scale(1.03);
}
.hero__card-btn-overlay:active {
  opacity: 0.9;
  transform: scale(0.98);
}
.hero__card-btn-overlay:hover {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1.03);
}
.hero__card-svg-1920, .hero__card-svg-1440, .hero__card-svg-1041, .hero__card-svg-704, .hero__card-svg-mobile {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
.hero__card-deco, .hero__card-product {
  display: none;
}
.hero__card-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero__card-product {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .hero {
    padding: 56px 0;
  }
  .hero__inner {
    padding: 0 20px;
  }
  .hero__subtitle {
    max-width: 650px;
  }
  .hero__card-wrap {
    width: calc(100% + 32px);
    max-width: 335px;
    margin: 0 -16px;
    height: 320px;
    max-width: calc(100% - 40px);
    border-radius: 64px 24px 64px 24px;
  }
  .hero__card {
    border-radius: 64px 24px 64px 24px;
  }
  .hero__card-blob-left {
    display: block;
    height: 100%;
    width: auto;
    left: 0;
    top: 0;
  }
  .hero__card-blob-right {
    display: block;
    height: 100%;
    width: auto;
    right: 0;
    left: auto;
    top: 0;
  }
  .hero__card-content {
    width: 260px;
  }
  .hero__card-title {
    font-size: 24px;
    line-height: 30px;
  }
  .hero__card-subtitle {
    font-size: 14px;
    margin-top: 10px;
  }
  .hero__card-fade-left, .hero__card-fade-right {
    display: none;
  }
  .hero__card-img-left {
    display: block;
    width: auto;
    height: 100%;
    top: 0;
    clip-path: none;
  }
  .hero__card-img-right {
    display: block;
    width: auto;
    height: 100%;
    top: 0;
    z-index: 3;
    clip-path: none;
  }
  .hero__card-deco {
    display: none;
  }
  .hero__card-product {
    display: none;
  }
}
@media (max-width: 862px) {
  .hero {
    padding: 48px 0;
  }
  .hero__inner {
    gap: 40px;
    padding: 0 16px;
  }
  .hero__top {
    max-width: 90%;
  }
  .hero__title {
    font-size: 36px;
    line-height: 42px;
  }
  .hero__subtitle {
    font-size: 15px;
  }
  .hero__card-wrap {
    height: 280px;
    border-radius: 40px 16px 40px 16px;
  }
  .hero__card {
    border-radius: 40px 16px 40px 16px;
  }
  .hero__card-content {
    width: 190px;
  }
  .hero__card-title {
    font-size: 20px;
    line-height: 26px;
  }
  .hero__card-subtitle {
    font-size: 12px;
    line-height: 17px;
  }
  .hero__card-img-left {
    width: 36%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }
  .hero__card-img-right {
    width: 36%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
  }
}
.hero__card-svg-1920, .hero__card-svg-1440, .hero__card-svg-1041, .hero__card-svg-704, .hero__card-svg-mobile {
  vertical-align: bottom;
}
@media (min-width: 1920px) {
  .hero__card-svg-1920 {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .hero__card-wrap {
    height: auto;
  }
  .hero__card, .hero__card-img-left, .hero__card-img-right, .hero__card-blob-left, .hero__card-blob-right, .hero__card-fade-left, .hero__card-fade-right, .hero__card-content {
    display: none;
  }
  .hero__card-btn-overlay {
    width: 180px;
    height: 56px;
  }
}
@media (min-width: 1025px) and (max-width: 1919px) {
  .hero__card-svg-1440 {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .hero__card-wrap {
    height: auto;
  }
  .hero__card, .hero__card-img-left, .hero__card-img-right, .hero__card-blob-left, .hero__card-blob-right, .hero__card-fade-left, .hero__card-fade-right, .hero__card-content {
    display: none;
  }
  .hero__card-btn-overlay {
    top: 66.6%;
    width: 180px;
    height: 56px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero__blob {
    width: 1300px;
    top: 50px;
  }
  .hero__inner {
    padding: 0 16px;
  }
  .hero__card-svg-1041 {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .hero__card-wrap {
    width: 100%;
    max-width: 984px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
    border-radius: 0;
  }
  .hero__card, .hero__card-img-left, .hero__card-img-right, .hero__card-blob-left, .hero__card-blob-right, .hero__card-fade-left, .hero__card-fade-right, .hero__card-content {
    display: none;
  }
  .hero__card-btn-overlay {
    top: 75.3%;
    width: min(180px, (100vw - 32px) * 180 / 984);
    font-size: min(16px, (100vw - 32px) * 16 / 984);
    padding: min(16px, (100vw - 32px) * 16 / 984) min(20px, (100vw - 32px) * 20 / 984);
    border-radius: min(16px, (100vw - 32px) * 16 / 984);
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: clamp(32px, 6.3vw, 48px) 0;
  }
  .hero__inner {
    gap: clamp(28px, 5.2vw, 40px);
    padding: 0 16px;
  }
  .hero__blob {
    width: 1300px;
    top: 50px;
  }
  .hero__top {
    max-width: 90%;
  }
  .hero__badges {
    gap: clamp(6px, 1.1vw, 8px);
  }
  .hero__badge {
    padding: 0;
  }
  .hero__badge img {
    height: clamp(50px, 10.3vw, 79px);
  }
  .hero__badge--award {
    width: clamp(60px, 10.3vw, 79px);
    height: clamp(60px, 10.3vw, 79px);
  }
  .hero__badge--award img {
    width: clamp(60px, 10.3vw, 79px);
    height: clamp(60px, 10.3vw, 79px);
  }
  .hero__title {
    font-size: clamp(26px, 4.7vw, 36px);
    line-height: clamp(32px, 5.5vw, 42px);
  }
  .hero__subtitle {
    font-size: clamp(14px, 1.96vw, 15px);
    line-height: 22px;
  }
  .hero__card-wrap {
    width: calc(100% + 32px);
    max-width: 335px;
    margin: 0 -16px;
    height: 240px;
    max-width: 100%;
    border-radius: 40px 16px 40px 16px;
    line-height: 0;
  }
  .hero__card {
    position: absolute;
    inset: 0;
    border-radius: 40px 16px 40px 16px;
    height: 100%;
    padding: 0;
  }
  .hero__card {
    display: none;
  }
  .hero__card-img-left, .hero__card-img-right, .hero__card-blob-left, .hero__card-blob-right, .hero__card-fade-left, .hero__card-fade-right, .hero__card-deco, .hero__card-product {
    display: none;
  }
  .hero__card-svg-704 {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .hero__card-wrap {
    width: calc(100% + 32px);
    max-width: 100%;
    margin: 0 -16px;
    height: auto;
    overflow: hidden;
    border-radius: 0;
  }
  .hero__card-content {
    display: none;
  }
  .hero__card-btn-overlay {
    top: 75.3%;
    width: min(180px, 25.5681818182vw);
    font-size: min(16px, 2.2727272727vw);
    padding: min(16px, 2.2727272727vw) min(20px, 2.8409090909vw);
    border-radius: min(16px, 2.2727272727vw);
    line-height: 1.5;
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .hero__blob {
    width: 1300px;
    top: 50px;
  }
  .hero__inner {
    padding: 0 16px;
  }
  .hero__title {
    max-width: 664px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__subtitle {
    max-width: 650px;
  }
  .hero__card-wrap {
    width: 100%;
    max-width: 704px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
    border-radius: 0;
  }
  .hero__card-svg-704 {
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .hero__card-btn-overlay {
    width: min(180px, (100vw - 32px) * 180 / 704);
    font-size: min(16px, (100vw - 32px) * 16 / 704);
    padding: min(16px, (100vw - 32px) * 16 / 704) min(20px, (100vw - 32px) * 20 / 704);
    border-radius: min(16px, (100vw - 32px) * 16 / 704);
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 56px 0;
  }
  .hero__inner {
    padding: 0 20px;
    gap: 56px;
  }
  .hero__blob {
    width: 1300px;
    top: 50px;
  }
  .hero__title {
    font-size: 28px;
    line-height: 28px;
  }
  .hero__subtitle {
    line-height: 20px;
  }
  .hero__badges {
    gap: 8px;
  }
  .hero__badge {
    padding: 0;
  }
  .hero__badge img {
    width: 131.32px;
    height: 56.82px;
  }
  .hero__badge--award {
    width: 57px;
    height: 57px;
  }
  .hero__badge--award img {
    width: 57px;
    height: 57px;
  }
  .hero__card-svg-704 {
    display: none;
  }
  .hero__card-svg-mobile {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .hero__card-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: auto;
    border-radius: 0;
  }
  .hero__card-content {
    display: none;
  }
  .hero__card-btn-overlay {
    top: 44.3%;
    width: calc(100% - 64px);
    font-size: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    line-height: 1.5;
    justify-content: center;
  }
}

.numbers {
  padding: 20px 0;
  background: #fff;
}
.numbers__row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  justify-content: space-between;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding-top: 12px;
}
.stat__icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.stat__icon-bg {
  position: absolute;
  left: 8px;
  top: -8px;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 16px;
  transform: rotate(22deg);
  transform-origin: center;
}
.stat__icon-glass {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat__icon-glass img {
  width: 28px;
  height: 28px;
}
.stat__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}
.stat__value {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #242424;
  text-align: center;
}
.stat__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #848484;
  text-align: center;
}

@media (max-width: 1024px) {
  .numbers {
    padding: 20px 0;
  }
  .numbers__row {
    align-items: center;
  }
  .stat__value {
    white-space: nowrap;
  }
}
@media (min-width: 768px) and (max-width: 908px) {
  .stat__label {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .numbers {
    padding: 20px 0 12px;
  }
  .numbers__row {
    gap: 6px;
  }
  .stat {
    gap: 8px;
  }
  .stat__icon-wrap {
    width: 44px;
    height: 44px;
  }
  .stat__icon-bg {
    position: absolute;
    left: 8px;
    top: -8px;
    width: 44px;
    height: 44px;
    background: var(--green);
    border-radius: 16px;
    transform: rotate(22deg);
    transform-origin: center;
  }
  .stat__icon-glass {
    position: absolute;
    inset: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .stat__icon-glass img {
    width: 22px;
    height: 22px;
  }
  .stat__value {
    font-size: 17px;
    line-height: 22px;
  }
  .stat__label {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .numbers {
    padding: 32px 0;
  }
  .numbers__row {
    gap: 11px;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0;
  }
  .numbers__row::after {
    display: none;
  }
  .stat {
    flex: 1;
    gap: 12px;
    max-width: none;
  }
  .stat__icon-wrap {
    width: 56px;
    height: 56px;
  }
  .stat__icon-bg {
    left: 8px;
    top: -8px;
    width: 56px;
    height: 56px;
  }
  .stat__icon-glass {
    width: 56px;
    height: 56px;
  }
  .stat__icon-glass img {
    width: 28px;
    height: 28px;
  }
  .stat__value {
    font-size: 20px;
    line-height: 24px;
  }
  .stat__label {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 1025px) {
  .stat__label {
    max-width: 170px;
    margin: 0 auto;
  }
}
@media (min-width: 1440px) {
  .stat {
    flex: 0 0 186px;
    max-width: 186px;
  }
}
@media (max-width: 730px) {
  .numbers {
    padding: 24px 0 16px;
  }
  .numbers__row {
    flex-wrap: wrap;
    gap: 16px 12px;
    justify-content: center;
    padding: 0 16px;
  }
  .numbers__row::after {
    content: "";
    display: block;
    flex: 0 0 calc(50% - 8px);
  }
  .stat {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
  .stat__value {
    font-size: 18px;
  }
  .stat__label {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .numbers {
    padding: 40px 0 38px;
  }
}
.mission {
  padding: 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.mission__blob {
  position: absolute;
  left: -50px;
  top: 0;
  width: 1200px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 1024px) {
  .mission .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.mission__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 629px;
  position: relative;
  z-index: 1;
}
.mission__photo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 20px 80px 0;
}
.mission__photo-frame {
  position: relative;
  max-width: 470px;
  width: 100%;
  height: 469px;
  border-radius: 100px 32px 100px 32px;
  overflow: hidden;
  flex-shrink: 1;
}
.mission__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 133%;
  object-fit: cover;
  object-position: top center;
}
.mission__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  padding: 80px 0;
  max-width: 592px;
}
.mission__text-block {
  display: flex;
  flex-direction: column;
}
.mission__quote {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.09;
  letter-spacing: -0.6px;
  color: var(--green);
}
.mission__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
}
.mission__author-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #242424;
}
.mission__author-role {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #848484;
}
.mission__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: rgb(36, 36, 36);
}
@media (max-width: 1024px) {
  .mission__inner {
    min-height: auto;
    gap: 16px;
  }
  .mission__photo-wrap {
    padding: 80px 20px 80px 0;
  }
  .mission__photo-frame {
    max-width: 470px;
    height: 469px;
  }
  .mission__content {
    padding: 80px 0;
    max-width: 484px;
    gap: 40px;
  }
  .mission__quote {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.2px;
  }
  .mission__quote br:not(.br-mission-tablet) {
    display: none;
  }
}
.mission__photo-mobile {
  display: none;
  width: 100%;
  max-width: 335px;
}
.mission__photo-corner {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 767px) {
  .mission__blob {
    top: auto;
    bottom: 0;
  }
  .mission__inner {
    flex-direction: column-reverse;
    min-height: auto;
    gap: 0;
    padding: 0 16px;
  }
  .mission__photo-wrap {
    padding: 0 0 32px;
    justify-content: center;
  }
  .mission__photo-frame {
    display: none;
  }
  .mission__photo-mobile {
    display: block;
  }
  .mission__content {
    padding: 32px 0 0;
    max-width: 100%;
    gap: 20px;
    text-align: center;
    align-items: center;
  }
  .mission__author {
    align-items: center;
  }
  .mission__quote {
    font-size: 24px;
    line-height: 1.2;
  }
  .mission__text {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .mission {
    padding: 64px 0;
  }
  .mission__photo-corner {
    display: none;
  }
  .mission__inner {
    flex-direction: column-reverse;
    gap: 64px;
    padding: 0;
    min-height: auto;
  }
  .mission__photo-wrap {
    padding: 0;
    width: 100%;
    justify-content: unset;
  }
  .mission__photo-frame {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 390px;
    border-radius: 100px 32px 100px 32px;
  }
  .mission__photo {
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .mission__photo-mobile {
    display: none;
  }
  .mission__content {
    padding: 0;
    max-width: 100%;
    gap: 24px;
    text-align: center;
    align-items: center;
  }
  .mission__author {
    align-items: center;
    margin-top: 24px;
  }
  .mission__quote {
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.6px;
  }
  .mission__quote br {
    display: none;
  }
  .mission__quote br.br-mission-tablet {
    display: block;
  }
  .mission__text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    max-width: 533px;
  }
}
@media (max-width: 480px) {
  .mission {
    padding: 56px 0;
  }
  .mission__photo-corner {
    display: none;
  }
  .mission__inner {
    flex-direction: column-reverse;
    gap: 16px;
    padding: 0;
  }
  .mission__photo-wrap {
    padding: 0;
    width: 100%;
  }
  .mission__photo-frame {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 390px;
    border-radius: 100px 32px 100px 32px;
  }
  .mission__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .mission__photo-mobile {
    display: none;
  }
  .mission__content {
    padding: 0;
    gap: 12px;
  }
  .mission__text-block {
    gap: 12px;
  }
  .mission__author {
    margin-top: 0;
  }
  .mission__quote {
    line-height: 28px;
    letter-spacing: -0.2px;
  }
  .mission__quote br:not(.br-mission-tablet) {
    display: block;
  }
  .mission__text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
  }
}
@media (min-width: 1025px) {
  .mission__photo-frame {
    width: 470px;
    height: 469px;
  }
}
@media (max-width: 335px) {
  .mission__blob {
    display: none;
  }
}

.values {
  padding: 80px 0;
  background: #fff;
}
.values .container {
  padding-left: 0;
  padding-right: 0;
}
.values__row {
  display: flex;
  gap: 16px;
}
.values__track {
  display: contents;
}

.value-card {
  flex: 1;
  height: 390px;
  background: var(--bg-secondary);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.value-card__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.value-card__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #242424;
  overflow-wrap: break-word;
}
.value-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #848484;
  overflow-wrap: break-word;
}
.value-card__vector {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}
.value-card__vector img {
  width: 228px;
  height: auto;
  display: block;
}
.value-card__vector-inner {
  display: contents;
}
.value-card__image {
  position: absolute;
  bottom: -35px;
  left: 72px;
  right: auto;
  width: 230px;
  height: 230px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .values__row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    scrollbar-width: none;
  }
  .values__row::-webkit-scrollbar {
    display: none;
  }
  .value-card {
    flex: 0 0 227px;
    height: auto;
    min-height: 390px;
    scroll-snap-align: start;
  }
  .value-card__image {
    width: 195px;
    height: 195px;
  }
  .value-card:nth-child(4) .value-card__image,
  .value-card:nth-child(5) .value-card__image {
    width: 220px;
    height: 220px;
    left: 40px;
    bottom: -45px;
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .values {
    padding: 80px 0;
  }
  .values .section-title {
    margin-bottom: 28px;
  }
  .values__row {
    flex-wrap: wrap;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 16px;
    padding: 0 20px;
    scrollbar-width: unset;
  }
  .values__row::-webkit-scrollbar {
    display: initial;
  }
  .value-card {
    flex: 0 0 calc((100% - 32px) / 3);
    height: 390px;
    scroll-snap-align: unset;
    padding: 32px;
  }
  .value-card__title {
    font-size: 20px;
    line-height: 24px;
  }
  .value-card:nth-child(4),
  .value-card:nth-child(5) {
    flex: 1 0 0;
  }
  .value-card__image {
    left: 45px;
    right: auto;
    bottom: -35px;
    transform: none;
    width: 241px;
  }
  .value-card:nth-child(4) .value-card__image,
  .value-card:nth-child(5) .value-card__image {
    left: 15%;
    right: auto;
    transform: none;
  }
  .value-card:nth-child(4) .value-card__vector img,
  .value-card:nth-child(5) .value-card__vector img {
    content: url("../assets/mission/blob-4-5.svg");
    width: 344px;
  }
  .values__dots {
    display: none;
  }
}
@media (max-width: 743px) {
  .values {
    padding: 48px 0;
  }
  .values__row {
    overflow: hidden;
    padding: 0 0 12px;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
  }
  .values__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    padding-left: 20px;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .value-card,
  .value-card:nth-child(4),
  .value-card:nth-child(5) {
    flex: 0 0 224px;
    height: 390px;
    padding: 32px;
    scroll-snap-align: unset;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .value-card__image {
    left: 72px;
    right: auto;
    bottom: -35px;
    width: 195px;
    height: 195px;
    transform: translateZ(0);
  }
  .value-card:nth-child(4) .value-card__image,
  .value-card:nth-child(5) .value-card__image {
    width: 220px;
    height: 220px;
    left: 40px;
    bottom: -45px;
  }
  .values__dots {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 12px;
  }
}
@media (min-width: 1025px) {
  .value-card__desc {
    max-width: 163.19px;
  }
  .value-card__image {
    width: 195px;
    height: 195px;
  }
  .value-card:nth-child(4) .value-card__image,
  .value-card:nth-child(5) .value-card__image {
    width: 220px;
    height: 220px;
    left: 40px;
    bottom: -45px;
  }
}
@media (min-width: 1920px) {
  .value-card__desc {
    max-width: 190px;
  }
  .value-card__image {
    width: 195px;
    height: 195px;
  }
  .value-card:nth-child(4) .value-card__image,
  .value-card:nth-child(5) .value-card__image {
    width: 220px;
    height: 220px;
    left: 40px;
    bottom: -45px;
  }
}
@media (max-width: 480px) {
  .values {
    padding: 32px 0;
  }
  .values__track {
    padding-left: 16px;
  }
}
.services {
  padding: 80px 0;
  background: #fff;
  position: relative;
}
.services__blob-mobile {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-card {
  background: var(--bg-secondary);
  border-radius: 32px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  height: 346px;
  display: flex;
  align-items: flex-start;
}
.service-card__bg-icon {
  position: absolute;
  bottom: 0;
  left: 80px;
  width: 536px;
  height: auto;
  pointer-events: none;
}
.service-card__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0px;
  color: #242424;
  max-width: 255px;
  overflow-wrap: break-word;
}
.service-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #848484;
  max-width: 300px;
  padding-bottom: 20px;
  overflow-wrap: break-word;
}
.service-card__phone-wrap {
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 241px;
  height: 322px;
  overflow: hidden;
  z-index: 2;
}
.service-card__phone-body {
  position: absolute;
  left: 0.5px;
  top: 0;
  width: 241px;
  height: 498px;
  background: linear-gradient(180deg, #59ad3b 0%, #2e5f1c 60.35%);
  border-radius: 41px;
  border: 0.56px solid rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.service-card__phone-img {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 216px;
  height: 312px;
  border-radius: 31px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.service-card__dynamic-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 77px;
  height: 22px;
  background: linear-gradient(180deg, #59ad3b 0%, #3d7f25 100%);
  border-radius: 20px;
  z-index: 2;
}
.service-card__phone-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 109px;
  background: linear-gradient(to bottom, rgba(247, 247, 247, 0), #f7f7f7);
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 1025px) {
  .service-card {
    padding-right: 210px;
  }
  .service-card__text {
    max-width: 300px;
  }
  .service-card__title {
    max-width: 255px;
  }
}
@media (min-width: 781px) and (max-width: 1024px) {
  .services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .service-card {
    height: 346px;
    padding-right: 210px;
  }
  .service-card__text {
    max-width: 240px;
  }
  .service-card__title {
    max-width: none;
  }
  .service-card__desc {
    max-width: none;
  }
}
@media (min-width: 781px) and (max-width: 1023px) {
  .service-card {
    padding-right: 230px;
  }
  .service-card__text {
    overflow: hidden;
  }
  .service-card__title {
    font-size: clamp(15px, 1.951vw, 20px);
    line-height: clamp(19px, 2.341vw, 24px);
  }
  .service-card__desc {
    font-size: clamp(11px, 1.366vw, 14px);
    line-height: clamp(15px, 1.951vw, 20px);
  }
}
@media (min-width: 521px) and (max-width: 780px) {
  .services {
    padding: 56px 0;
  }
  .services__grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 20px 12px;
    scrollbar-width: none;
  }
  .services__grid::-webkit-scrollbar {
    display: none;
  }
  .service-card {
    flex: 0 0 calc(100vw - 40px);
    max-width: 704px;
    height: 346px;
    scroll-snap-align: start;
    flex-direction: row;
    align-items: flex-start;
    padding: 24px;
    padding-right: 220px;
  }
  .service-card__bg-icon {
    left: 80px;
    right: auto;
    bottom: 0;
    width: 536px;
  }
  .service-card__text {
    max-width: 380px;
    overflow: hidden;
  }
  .service-card__title {
    max-width: none;
    font-size: 20px;
    line-height: 24px;
  }
  .service-card__desc {
    max-width: none;
    font-size: 14px;
    line-height: 20px;
  }
  .service-card__phone-wrap {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 241px;
    height: 322px;
    margin-top: 0;
  }
  .service-card__phone-body {
    width: 241px;
    height: 498px;
  }
  .service-card__phone-img {
    width: 216px;
    height: 312px;
    left: 10px;
    top: 10px;
  }
  .services__dots {
    display: none;
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .services {
    padding: 80px 0;
  }
  .services .section-title {
    margin-bottom: 28px;
  }
  .services__grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 20px;
    scrollbar-width: none;
  }
  .services__grid::-webkit-scrollbar {
    display: none;
  }
  .service-card {
    flex: 0 0 calc(100vw - 40px);
    max-width: 704px;
    height: 346px;
    scroll-snap-align: start;
    flex-direction: row;
    align-items: flex-start;
    padding: 24px;
    padding-right: 220px;
  }
  .service-card__text {
    max-width: 380px;
    overflow: hidden;
  }
  .service-card__title {
    font-size: 20px;
    line-height: 24px;
  }
  .service-card__desc {
    font-size: 14px;
    max-width: none;
    line-height: 20px;
    font-style: normal;
    font-weight: 400;
  }
  .service-card__phone-wrap {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 241px;
    height: 322px;
    margin-top: 0;
  }
  .service-card__phone-body {
    width: 241px;
    height: 498px;
  }
  .service-card__phone-img {
    width: 216px;
    height: 312px;
    left: 10px;
    top: 10px;
  }
  .services__dots {
    display: none;
  }
}
@media (max-width: 780px) {
  .services br:not(.br-744) {
    display: none;
  }
}
.br-744 {
  display: none;
}

@media (min-width: 521px) and (max-width: 780px) {
  .br-744 {
    display: block;
  }
}
@media (max-width: 520px) {
  .services {
    padding: 48px 0;
  }
  .services__blob-mobile {
    display: block;
  }
  .services__grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 20px 12px;
    scrollbar-width: none;
  }
  .services__grid::-webkit-scrollbar {
    display: none;
  }
  .service-card {
    flex: 0 0 300px;
    height: 500px;
    scroll-snap-align: start;
    flex-direction: column;
    align-items: center;
    padding: 24px 24px 290px;
  }
  .service-card__bg-icon {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: -40px;
    width: 320px;
  }
  .service-card__text {
    max-width: 100%;
    width: 100%;
    flex-shrink: 0;
  }
  .service-card__title {
    max-width: none;
    font-size: 20px;
  }
  .service-card__desc {
    max-width: none;
  }
  .service-card__phone-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 241px;
    height: 280px;
    margin-top: 0;
  }
  .service-card__phone-body {
    width: 241px;
    height: 498px;
  }
  .service-card__phone-img {
    width: 216px;
    height: 312px;
    left: 10px;
    top: 10px;
  }
}
.comfort {
  padding: 80px 0 100px;
  background: #fff;
}
.comfort__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 304px auto;
  gap: 16px;
}
.comfort__small-wrap, .comfort__small-track {
  display: contents;
}
.comfort__dots {
  display: none;
}

.comfort-card-big {
  grid-column: 1;
  grid-row: 1/3;
  background: var(--green);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.comfort-card-big__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comfort-card-big__title {
  font-size: 26px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.2px;
  color: #fff;
  overflow-wrap: break-word;
}
.comfort-card-big__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  overflow-wrap: break-word;
}
.comfort-card-big__btn {
  background: #fff;
  color: var(--green);
  border: none;
  border-radius: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  padding: 16px 20px;
  transition: opacity 0.2s, transform 0.2s;
  align-self: flex-start;
  position: relative;
  z-index: 2;
  text-decoration: none;
}
.comfort-card-big__btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}
.comfort-card-big__btn:active {
  opacity: 0.9;
  transform: scale(0.98);
}
.comfort-card-big__blob-mobile {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 335px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.comfort-card-big__blob-tablet {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: none;
  pointer-events: none;
  z-index: 0;
}
.comfort-card-big__light {
  position: absolute;
  left: 60px;
  top: 170px;
  width: 345px;
  height: 625px;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}
.comfort-card-big__vector {
  position: absolute;
  left: calc(50% + 180px);
  bottom: -604px;
  width: 784px;
  height: 751px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.comfort-card-big__icon-wrap {
  position: absolute;
  left: 131px;
  top: 297px;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.comfort-card-big__icon-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1.3px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  width: 61px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-9deg);
}
.comfort-card-big__icon-glass img {
  width: 39px;
  height: 39px;
}

.comfort-card {
  background: var(--bg-secondary);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  width: 389.3px;
  height: 304px;
  flex-shrink: 0;
}
.comfort-card--top {
  display: flex;
  flex-direction: column;
}
.comfort-card--top .comfort-card__icon-wrap {
  margin-bottom: 20px;
}
.comfort-card--top .comfort-card__btn {
  margin-top: auto;
}
.comfort-card--bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.comfort-card__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comfort-card--static {
  min-height: 304px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}
.comfort-card__icon-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.comfort-card__icon-bg {
  position: absolute;
  left: 3.61px;
  top: -10.39px;
  width: 51px;
  height: 51px;
  background: var(--green);
  border-radius: 16px;
  transform: rotate(15deg);
}
.comfort-card__icon-glass {
  position: absolute;
  inset: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comfort-card__icon-glass img {
  width: 24px;
  height: 24px;
}
.comfort-card__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #242424;
  overflow-wrap: break-word;
}
.comfort-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comfort-card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #848484;
  overflow-wrap: break-word;
}
.comfort-card__btn {
  background: #fff;
  color: var(--green);
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  white-space: nowrap;
  text-decoration: none;
}

@media (min-width: 1025px) {
  .comfort .container {
    padding-left: 0;
    padding-right: 0;
  }
  .comfort-card-big__blob-tablet {
    display: none;
  }
  .comfort-card-big__vector {
    left: -50px;
    bottom: -450px;
    transform: none;
  }
  .comfort-card-big__text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
  }
}
@media (min-width: 1025px) {
  .comfort-card-big {
    height: 624px;
  }
}
@media (min-width: 1025px) and (max-width: 1439px) {
  .comfort {
    padding: 64px 0;
  }
  .comfort .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .comfort .section-title {
    margin-bottom: 32px;
  }
  .comfort__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 350px 280px 280px;
    gap: 8px;
  }
  .comfort-card-big {
    grid-column: 1/3;
    grid-row: 1;
    height: 350px;
    min-height: unset;
  }
  .comfort-card-big__title {
    font-size: 26px;
    line-height: 28px;
  }
  .comfort-card-big__text {
    font-size: 16px;
    line-height: 24px;
    max-width: 67%;
    font-style: normal;
    font-weight: 400;
  }
  .comfort-card-big__light {
    left: auto;
    right: 32px;
    top: -66px;
    width: 345px;
    height: 625px;
  }
  .comfort-card-big__vector {
    display: none;
  }
  .comfort-card-big__blob-tablet {
    display: block;
    right: 0;
  }
  .comfort-card-big__icon-wrap {
    left: auto;
    right: 242px;
    top: 62px;
  }
  .comfort-card {
    height: 280px;
    width: auto;
  }
  .comfort-card--static {
    height: 280px;
    min-height: 0;
  }
  .comfort-card--bottom {
    flex: none;
    height: 280px;
  }
}
@media (max-width: 1024px) {
  .comfort {
    padding: 48px 0 56px;
  }
  .comfort .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .comfort__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 350px auto auto;
    gap: 8px;
  }
  .comfort-card-big {
    grid-column: 1/3;
    grid-row: 1;
    height: 350px;
    min-height: unset;
  }
  .comfort-card-big__title {
    font-size: 26px;
    line-height: 28px;
  }
  .comfort-card-big__text {
    font-size: 16px;
    line-height: 24px;
    max-width: 58%;
  }
  .comfort-card-big__light {
    left: auto;
    right: -10px;
    top: -40px;
    width: 345px;
    height: 625px;
  }
  .comfort-card-big__vector {
    display: none;
  }
  .comfort-card-big__blob-tablet {
    display: block;
    right: 0;
  }
  .comfort-card-big__icon-wrap {
    left: auto;
    right: 220px;
    top: 62px;
  }
  .comfort-card {
    height: 280px;
    width: auto;
  }
  .comfort-card--static {
    height: 280px;
    min-height: 0;
  }
  .comfort-card--bottom {
    flex: none;
  }
  .comfort-card--top .comfort-card__btn {
    margin-top: 12px;
  }
}
@media (max-width: 660px) {
  .comfort-card-big {
    height: 300px;
  }
  .comfort-card-big__text {
    font-size: 14px;
    line-height: 20px;
    max-width: 52%;
  }
  .comfort-card-big__light {
    width: 260px;
    height: auto;
    top: -10px;
  }
  .comfort-card-big__blob-tablet {
    height: 100%;
    right: 0;
  }
  .comfort-card-big__icon-wrap {
    right: 170px;
    top: 50px;
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .comfort {
    padding: 64px 0;
  }
  .comfort .section-title {
    letter-spacing: -0.6px;
    margin-bottom: 32px;
  }
  .comfort__grid {
    gap: 16px;
    grid-template-rows: 350px 304px 304px;
  }
  .comfort-card {
    height: 304px;
    width: auto;
  }
  .comfort-card--static {
    height: 304px;
    min-height: 0;
  }
  .comfort-card--bottom {
    height: 304px;
  }
  .comfort-card-big {
    height: 350px;
  }
  .comfort-card-big__text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
  }
  .comfort-card-big__light {
    right: -10px;
    left: auto;
    top: -40px;
    width: 345px;
    height: 625px;
  }
  .comfort-card-big__blob-tablet {
    display: block;
    right: 0;
  }
  .comfort-card-big__icon-wrap {
    right: 220px;
    left: auto;
    top: 62px;
  }
}
@media (max-width: 620px) {
  .comfort {
    padding: 40px 0;
  }
  .comfort .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .comfort__grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .comfort-card-big {
    grid-column: unset;
    grid-row: unset;
    height: auto;
    min-height: 490px;
    padding: 24px;
  }
  .comfort-card-big__title {
    font-size: clamp(22px, 5.5vw, 26px);
    line-height: clamp(26px, 6.5vw, 30px);
  }
  .comfort-card-big__text {
    font-size: clamp(14px, 4vw, 16px);
    line-height: clamp(20px, 5.5vw, 24px);
    max-width: 100%;
  }
  .comfort-card-big__content {
    padding-bottom: 20px;
  }
  .comfort-card-big__light {
    left: auto;
    right: -60px;
    top: 129px;
    width: 345px;
    height: 625px;
  }
  .comfort-card-big__icon-wrap {
    left: auto;
    right: 185px;
    top: 297px;
    width: 74px;
    height: 74px;
  }
  .comfort-card-big__icon-glass {
    width: 61px;
    height: 61px;
  }
  .comfort-card-big__icon-glass img {
    width: 39px;
    height: 39px;
  }
  .comfort-card-big__blob-tablet {
    display: none;
  }
  .comfort-card-big__blob-mobile {
    display: block;
    left: auto;
    right: 0;
    transform: none;
  }
  .comfort-card-big__vector {
    display: none;
  }
  .comfort-card {
    padding: 24px;
  }
  .comfort-card--top {
    height: auto;
    min-height: 260px;
  }
  .comfort-card--top .comfort-card__btn {
    margin-top: 16px;
  }
  .comfort-card--bottom {
    height: auto;
    min-height: 200px;
    flex: none;
  }
  .comfort-card--bottom .comfort-card__btn {
    margin-top: 12px;
    text-decoration: none;
  }
  .comfort-card__text {
    padding-bottom: 0;
  }
  .comfort__small-track > .comfort-card:nth-child(2) {
    height: 272px;
  }
  .comfort__small-track > .comfort-card:nth-child(4) {
    height: 296px;
  }
}
.team {
  padding: 80px 0 100px;
  background: #fff;
  overflow: hidden;
}
.team__title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.6px;
  color: #242424;
  margin-bottom: 56px;
}
.team__slider-wrap {
  overflow: hidden;
  position: relative;
  max-width: 1159px;
  width: 100%;
  margin: 0 auto 56px;
}
.team__cards {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
  will-change: transform;
}
.team__pagination {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.team__pg-btn {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team__pg-btn--prev {
  transform: rotate(180deg);
}
.team__pg-btn svg {
  width: 24px;
  height: 24px;
}
.team__dots {
  display: none;
  gap: 4px;
  align-items: center;
}
.team__dot {
  height: 15px;
  background: var(--green-light-2);
  border-radius: 9999px;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
.team__dot--active {
  width: 33px;
  background: var(--green);
}
.team__dot--inactive {
  width: 15px;
}

.team-card {
  width: 219px;
  height: 490px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.team-card__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.team-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-card__info::before {
  content: "";
  position: absolute;
  inset: -60px 0 0 0;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(to bottom, transparent 0%, rgba(89, 173, 59, 0.75) 40%, rgba(89, 173, 59, 0.95) 100%);
  z-index: -1;
}
.team-card__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #fff;
  overflow-wrap: break-word;
}
.team-card__role {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
@media (hover: hover) {
  .team-card:hover .team-card__role {
    max-height: 200px;
    opacity: 1;
  }
}
.team-card.active .team-card__role {
  max-height: 200px;
  opacity: 1;
}

@media (min-width: 1025px) {
  .team__dots {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .team {
    padding: 64px 0;
  }
  .team__title {
    margin-bottom: 32px;
  }
  .team__slider-wrap {
    max-width: none;
    margin: 0 0 32px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }
  .team__cards {
    gap: 8px;
  }
  .team-card {
    width: 227px;
  }
  .team__dots {
    display: none;
  }
  .team__pg-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .team {
    padding: 48px 0 56px;
  }
  .team__title {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .team__slider-wrap {
    max-width: 689px;
    margin: 0 auto 32px;
    padding-left: 0;
  }
  .team__cards {
    gap: 16px;
  }
  .team-card {
    width: 219px;
    height: 490px;
  }
  .team__pg-btn {
    display: none;
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .team {
    padding: 20px 0;
  }
  .team__title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 32px;
  }
  .team__slider-wrap {
    max-width: none;
    margin: 0 0 32px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }
  .team__cards {
    gap: 8px;
  }
  .team-card {
    width: 227px;
  }
}
@media (min-width: 1440px) {
  .team-card {
    width: 227px;
  }
  .team__slider-wrap {
    max-width: 1199px;
  }
  .team__dots {
    display: flex;
  }
}
@media (max-width: 480px) {
  .team {
    padding: 40px 0 28px;
  }
  .team__slider-wrap {
    max-width: none;
    margin: 0 0 32px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }
  .team-card {
    width: 227px;
    height: 490px;
  }
  .team-card__info {
    padding: 20px 16px 16px;
    gap: 8px;
  }
  .team-card__name {
    font-size: 20px;
    line-height: 24px;
  }
  .team-card__role {
    font-size: 14px;
    line-height: 20px;
  }
}
.history {
  padding: 80px 0 100px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.history__blob-mobile {
  display: none;
  position: absolute;
  top: 275px;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.history__blob {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1200px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.history__blob img {
  width: 100%;
  height: auto;
  display: block;
}
.history__deco {
  position: absolute;
  top: 357px;
  left: 50%;
  transform: translateX(-50%) scaleY(-1) rotate(15deg);
  width: min(1685.288px, 100%);
  height: auto;
  max-width: 100%;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
  overflow: hidden;
}
.history__deco img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.history .container {
  position: relative;
  z-index: 1;
}
.history__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}
.history__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.6px;
  color: #242424;
  text-align: center;
}
.history__tabs-wrap {
  max-width: 800px;
  width: 100%;
}
.history__tabs {
  background: var(--bg-secondary);
  border-radius: 9999px;
  padding: 4px;
  display: flex;
  height: 56px;
  width: 100%;
  position: relative;
}
.history__tab {
  flex: 1;
  height: 100%;
  padding: 0 12px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #242424;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
  font-family: var(--font);
  position: relative;
  z-index: 1;
}
.history__tab.active {
  color: #fff;
  font-weight: 500;
}
.history__body {
  display: flex;
  gap: 16px;
  align-items: center;
}
.history__text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  min-height: 390px;
}
.history__text-col--hidden {
  display: none;
}
.history__text-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.history__event-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.6px;
  color: #242424;
  max-width: 548px;
  overflow-wrap: break-word;
}
.history__event-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #242424;
  max-width: 533px;
  overflow-wrap: break-word;
}
.history__catalog-btn {
  display: inline-flex;
  align-items: center;
  background: var(--green-light);
  color: var(--green);
  border: none;
  border-radius: 16px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  align-self: flex-start;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.history__catalog-btn:hover {
  background: var(--green-light-2);
}
.history__image-col {
  flex: 1;
  height: 390px;
  overflow: hidden;
  border-radius: 100px 32px 100px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.history__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@media (max-width: 1024px) {
  .history__tabs {
    max-width: 100%;
  }
  .history__body {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .history__text-col {
    flex: none;
    min-height: auto;
  }
  .history__event-title {
    font-size: 30px;
  }
  .history__event-text {
    max-width: 700px;
  }
  .history__image-col {
    flex: none;
    width: 100%;
    height: 390px;
  }
}
@media (max-width: 767px) {
  .history {
    padding: 56px 0;
  }
  .history__blob {
    display: none;
  }
  .history__blob-mobile {
    display: block;
  }
  .history__deco {
    display: none;
  }
  .history__header {
    gap: 24px;
    margin-bottom: 64px;
    align-items: flex-start;
  }
  .history__title {
    align-self: stretch;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.2px;
  }
  .history__tabs-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 9999px;
    touch-action: pan-x;
  }
  .history__tabs {
    overflow-x: scroll;
    scrollbar-width: none;
    scroll-behavior: smooth;
    touch-action: pan-x;
    border-radius: 0;
    width: 100%;
    height: 56px;
  }
  .history__tabs::-webkit-scrollbar {
    display: none;
  }
  .history__tab {
    flex: none;
    width: calc((100vw - 48px) / 3);
    font-size: 16px;
    padding: 0 8px;
    white-space: nowrap;
    height: 56px;
    text-align: center;
    touch-action: pan-x;
  }
  .history__body {
    flex-direction: column;
    gap: 24px;
  }
  .history__text-col {
    min-height: auto;
  }
  .history__event-title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.2px;
  }
  .history__event-text {
    font-size: 16px;
    line-height: 24px;
  }
  .history__catalog-btn {
    align-self: stretch;
    justify-content: center;
    min-height: 56px;
    padding: 16px 20px;
  }
  .history__image-col {
    width: 100%;
    height: 390px;
    border-radius: 100px 32px 100px 32px;
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .history {
    padding: 64px 0;
  }
  .history__blob {
    display: block;
  }
  .history__blob-mobile {
    display: none;
  }
  .history__header {
    align-items: center;
    margin-bottom: 64px;
  }
  .history__title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.6px;
  }
  .history__tabs-wrap {
    overflow: visible;
    border-radius: 0;
    width: 100%;
  }
  .history__tabs {
    overflow: visible;
    overflow-x: unset;
    scrollbar-width: auto;
    border-radius: 9999px;
  }
  .history__tab {
    flex: 1;
    width: auto;
    padding: 0 12px;
    font-size: 16px;
    min-height: unset;
    white-space: nowrap;
  }
  .history__event-title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.6px;
  }
  .history__body {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .history__text-col {
    flex: none;
    min-height: auto;
  }
  .history__image-col {
    flex: none;
    width: 100%;
    height: 390px;
  }
  .history__catalog-btn {
    align-self: flex-start;
    min-width: 113px;
    width: auto;
    min-height: 56px;
    padding: 16px 20px;
    justify-content: center;
  }
}

.partners {
  padding: 80px 0 100px;
  background: #fff;
}
.partners__logos {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.partners__logo {
  height: 106px;
  width: 262px;
  flex-shrink: 1;
  min-width: 0;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
}

@media (max-width: 1024px) {
  .partners {
    padding: 64px 0;
  }
  .partners .section-title {
    margin-bottom: 32px;
  }
  .partners__logo {
    width: 234px;
    height: 95px;
  }
}
@media (max-width: 767px) {
  .partners {
    padding: 40px 0 48px;
  }
  .partners__logos {
    gap: 10px;
  }
  .partners__logo {
    width: 101px;
    height: 41px;
  }
  .partners__logo--square {
    width: 101px;
    height: 41px;
  }
}
@media (max-width: 480px) {
  .partners {
    padding: 56px 0 56px;
  }
  .partners__logos {
    gap: 6px;
  }
  .partners__logo {
    width: 101px;
    height: 41px;
  }
  .partners__logo--square {
    width: 101px;
    height: 41px;
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .partners {
    padding: 64px 0;
  }
  .partners .section-title {
    letter-spacing: -0.6px;
    margin-bottom: 32px;
  }
  .partners__logos {
    gap: 16px;
  }
  .partners__logo {
    flex: 1;
    max-width: 164px;
    min-width: 0;
    height: 66.41px;
  }
}
@media (min-width: 1025px) {
  .article-card__title {
    -webkit-line-clamp: 2;
  }
  .media .container {
    padding-left: 0;
    padding-right: 0;
  }
  .article-card {
    height: 142px;
  }
}
.media {
  padding: 80px 0 100px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.media__blob-mobile {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.media__blob-tablet {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.media__blob-tablet-mini {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.media__blob {
  display: flex;
  width: 120%;
  max-width: 1545px;
  height: auto;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -300px;
  pointer-events: none;
  z-index: 0;
}
.media__blob img {
  width: 100%;
  height: auto;
}
.media .container {
  position: relative;
  z-index: 1;
}
.media__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.6px;
  color: #242424;
  text-align: center;
  margin-bottom: 56px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
}
.media__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.media__extra {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease;
}
.media__extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 16px;
}
.media__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.media__btn-wrap.hidden {
  display: none;
}
.media__btn {
  background: #fff;
  color: var(--green);
  border: none;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  min-height: 56px;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s;
}
.media__btn:hover {
  background: var(--green-light);
}

.article-card {
  background: #f7f7f7;
  border: 1px solid #f5f5f5;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.article-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.article-card:hover .article-card__title {
  color: #59ad3b;
}
.article-card__img-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-card__img-wrap--white {
  background: #fff;
}
.article-card__img-wrap--red {
  background: #b11116;
}
.article-card__img-wrap--dark {
  background: #000;
}
.article-card__img-wrap--text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.article-card__img--cover {
  object-fit: cover;
}
.article-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.article-card__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #242424;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
}
.article-card__date {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #848484;
  margin-top: 4px;
}
.article-card__source-text {
  display: block;
  font-family: var(--font);
}
.article-card--hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .media {
    padding: 64px 0;
  }
  .media__blob {
    display: none;
  }
  .media__blob-tablet {
    display: block;
  }
  .media__title {
    margin-bottom: 32px;
  }
  .media__grid,
  .media__extra-grid {
    gap: 8px;
  }
  .media__extra-grid {
    padding-top: 8px;
  }
  .article-card {
    height: 142px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .media__grid,
  .media__extra-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .media__blob-tablet {
    display: none;
  }
  .media__blob-tablet-mini {
    display: block;
  }
}
@media (max-width: 767px) {
  .media {
    padding: 48px 0 56px;
    border-radius: 24px;
    overflow: hidden;
  }
  .media__blob-tablet-mini {
    display: none;
  }
  .media__blob-mobile {
    display: block;
  }
  .media__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 32px;
  }
  .media__grid {
    gap: 10px;
    padding: 0 16px;
  }
  .media__extra-grid {
    gap: 10px;
    padding: 0 16px;
  }
  .article-card {
    padding: 16px;
    gap: 14px;
    border-radius: 14px;
  }
  .article-card__img-wrap {
    width: 56px;
    height: 56px;
    border-radius: 10px;
  }
  .article-card__title {
    font-size: 15px;
    line-height: 20px;
  }
  .article-card--col1-extra {
    display: none !important;
  }
  #mediaGrid.is-expanded .article-card--col1-extra {
    display: flex !important;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .media {
    padding: 64px 0;
  }
  .media__title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 32px;
  }
  .media__grid,
  .media__extra-grid {
    gap: 8px;
    padding: 0;
  }
  .media__extra-grid {
    padding-top: 8px;
  }
  .article-card {
    padding: 32px;
    gap: 24px;
    border-radius: 24px;
  }
  .article-card__img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 16px;
  }
  .article-card__title {
    font-size: 20px;
    line-height: 24px;
  }
  .article-card--col1-extra {
    display: flex !important;
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .article-card {
    height: 142px;
    padding: 20px 24px;
  }
  .media__btn {
    width: 100%;
  }
  .media__btn-wrap {
    padding: 0;
    margin-top: 32px;
  }
}
.article-card__source {
  display: none;
}

@media (max-width: 480px) {
  .media {
    padding: 56px 0;
  }
  .media__title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.2px;
  }
  .media__grid,
  .media__extra-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
  }
  .media__extra-grid {
    padding-top: 8px;
  }
  .article-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 12px;
    border-radius: 24px;
    height: 204px;
  }
  .article-card__img-wrap {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
  .article-card__body {
    width: 100%;
  }
  .article-card__title {
    font-size: 16px;
    line-height: 24px;
  }
  .media__btn {
    width: 100%;
  }
}
.faq {
  padding: 80px 0 100px;
  background: #fff;
}
.faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}
.faq__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.6px;
  color: #242424;
  text-align: center;
}
.faq__tabs {
  background: var(--bg-secondary);
  border-radius: 9999px;
  padding: 4px;
  display: flex;
  height: 56px;
  max-width: 460px;
  width: 100%;
  position: relative;
}
.faq__tab {
  flex: 1;
  height: 100%;
  padding: 0 12px;
  border-radius: 9999px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #242424;
  font-weight: 400;
  transition: color 0.25s ease;
  text-align: center;
  position: relative;
  z-index: 1;
}
.faq__tab.active {
  color: #fff;
  font-weight: 500;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 1000px;
  margin: 0 auto;
  transition: opacity 0.25s ease;
}
.faq__list.hidden {
  display: none;
}

.faq-item {
  background: var(--bg-secondary);
  border-radius: 24px;
  overflow: hidden;
}
.faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 16px 32px;
  cursor: pointer;
  gap: 16px;
}
.faq-item__question {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #242424;
  flex: 1;
}
.faq-item__toggle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.faq-item__toggle img {
  width: 24px;
  height: 24px;
  display: none;
  transition: opacity 0.2s ease;
}
.faq-item__toggle--open {
  background: var(--green);
}
.faq-item__toggle--open .icon-chevron-up {
  display: block;
}
.faq-item__toggle--close {
  background: #fff;
}
.faq-item__toggle--close .icon-chevron-down {
  display: block;
}
.faq-item__answer {
  overflow: hidden;
  padding: 0 32px;
  padding-bottom: 0;
  max-height: 0;
  opacity: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #848484;
  max-width: 767px;
  transition: max-height 0.38s ease, opacity 0.28s ease, padding-bottom 0.38s ease;
}
.faq-item__answer:not(.hidden) {
  max-height: 800px;
  opacity: 1;
  padding-bottom: 24px;
}
@media (max-width: 767px) {
  .faq-item__header {
    padding: 12px 12px 12px 20px;
  }
  .faq-item__question {
    font-size: 15px;
    line-height: 22px;
  }
  .faq-item__toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .faq-item__answer {
    padding: 0 20px;
    font-size: 14px;
  }
  .faq-item__answer:not(.hidden) {
    padding-bottom: 20px;
  }
}

@media (min-width: 521px) and (max-width: 767px) {
  .faq {
    padding: 64px 0;
  }
  .faq__title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.6px;
  }
  .faq__tabs {
    max-width: 460px;
  }
  .faq-item__header {
    padding: 16px 16px 16px 32px;
  }
  .faq-item__question {
    font-size: 20px;
    line-height: 24px;
  }
  .faq-item__toggle {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .faq-item__answer {
    padding: 0 32px;
    font-size: 16px;
    line-height: 24px;
  }
  .faq-item__answer:not(.hidden) {
    padding-bottom: 24px;
  }
}
@media (max-width: 1024px) {
  .faq {
    padding: 64px 0;
  }
  .faq__header {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .faq {
    padding: 48px 0 56px;
  }
  .faq__title {
    font-size: 26px;
  }
  .faq__tabs {
    max-width: 100%;
  }
}
.contact {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}
.contact__blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.contact__blob img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.contact__blob--right {
  top: 0;
  bottom: 0;
  right: -60px;
  width: 819px;
}
.contact__blob--left {
  top: 0;
  bottom: 0;
  left: -60px;
  width: 744px;
}
.contact__blob--center {
  top: 0;
  bottom: 0;
  left: 80%;
  transform: translateX(-50%);
  width: 713px;
}
.contact__blob-mobile-right-up, .contact__blob-mobile-right-down, .contact__blob-mobile-left-down {
  display: none;
  position: absolute;
  pointer-events: none;
  z-index: 0;
  height: auto;
}
.contact .container {
  position: relative;
  z-index: 1;
}
.contact__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.contact__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.contact__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.6px;
  color: #242424;
}
.contact__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #242424;
  max-width: 429px;
}
@media (max-width: 1024px) {
  .contact__subtitle {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.2px;
  }
}
.contact__grid {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}
.contact__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__role {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
  color: #7b7b7b;
}
.contact__phone {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #242424;
}
@media (max-width: 1024px) {
  .contact__blob--center {
    display: none;
  }
  .contact__inner {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .contact {
    padding: 40px 0;
  }
  .contact__title {
    font-size: 36px;
  }
  .contact__blob--right, .contact__blob--left, .contact__blob--center {
    display: none;
  }
  .contact__blob-mobile-right-up {
    display: block;
    top: 0;
    right: 0;
    width: 375px;
  }
  .contact__blob-mobile-right-down {
    display: block;
    bottom: 0;
    right: 0;
    width: 365px;
  }
  .contact__blob-mobile-left-down {
    display: block;
    bottom: 0;
    left: 0;
    width: 375px;
  }
  .contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    gap: 20px;
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .contact {
    padding: 80px 0;
  }
  .contact__blob--right {
    display: block;
  }
  .contact__blob--left {
    display: block;
  }
  .contact__blob-mobile-right-up, .contact__blob-mobile-right-down, .contact__blob-mobile-left-down {
    display: none;
  }
}
@media (max-width: 480px) {
  .contact__title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.2px;
  }
  .contact__inner {
    align-items: center;
    text-align: center;
  }
  .contact__header {
    align-items: center;
  }
  .contact__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .contact__item {
    align-items: center;
  }
  .contact__blob--right {
    width: 500px;
    right: -40px;
  }
  .contact__blob--left {
    display: none;
  }
}

.newsletter {
  padding: 80px 0;
  background: #6cb651;
  position: relative;
  overflow: hidden;
}
.newsletter__blob {
  position: absolute;
  width: 943px;
  height: 943px;
  right: -80px;
  top: -96px;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-23.73deg) scaleY(-1);
  opacity: 0.25;
}
.newsletter__blob img {
  width: 100%;
  height: 100%;
}
.newsletter .container {
  position: relative;
  z-index: 1;
}
.newsletter__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.newsletter__left {
  max-width: 543px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.newsletter__title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.newsletter__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.6px;
  color: #fff;
}
.newsletter__title-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  object-fit: contain;
}
.newsletter__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #fff;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 467px;
  width: 100%;
  flex-shrink: 1;
}
.newsletter__input-row {
  display: flex;
  gap: 8px;
  width: 100%;
}
.newsletter__input {
  flex: 1;
  min-width: 0;
  height: 56px;
  min-height: 56px;
  background: #f7f7f7;
  border: none;
  border-radius: 16px;
  padding: 0 16px;
  font-size: 16px;
  color: #242424;
  font-family: var(--font);
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.newsletter__input:focus {
  outline: none;
}
.newsletter__input:invalid {
  box-shadow: none;
}
.newsletter__input::placeholder {
  color: #7d857a;
}
.newsletter__submit {
  flex-shrink: 0;
  height: 56px;
  background: #59ad3b;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font);
  transition: opacity 0.2s;
}
.newsletter__submit:hover {
  opacity: 0.9;
}
.newsletter__msg {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  border-radius: 8px;
  padding: 8px 12px;
}
.newsletter__msg--success {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.newsletter__msg--info {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.newsletter__msg--error {
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
}
.newsletter__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  cursor: pointer;
  height: 40px;
}
.newsletter__checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.newsletter__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='%2359ad3b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.newsletter__checkbox u {
  text-underline-offset: 2px;
}
@media (max-width: 1024px) {
  .newsletter__inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .newsletter__left {
    align-items: center;
    text-align: center;
  }
  .newsletter__title-row {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .newsletter {
    padding: 56px 0;
  }
  .newsletter__inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .newsletter__left {
    align-items: center;
    text-align: center;
    gap: 16px;
    max-width: 100%;
  }
  .newsletter__title-row {
    justify-content: center;
    gap: 8px;
  }
  .newsletter__title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.2px;
  }
  .newsletter__title-icon {
    width: 36px;
    height: 36px;
  }
  .newsletter__subtitle {
    font-size: 20px;
    line-height: 24px;
  }
  .newsletter__form {
    max-width: 100%;
    width: 100%;
    gap: 8px;
  }
  .newsletter__input-row {
    flex-direction: column;
    gap: 8px;
  }
  .newsletter__input {
    width: 100%;
  }
  .newsletter__submit {
    width: 100%;
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .newsletter {
    padding: 59px 0;
  }
}

.footer {
  background: #fff;
  padding: 60px 40px 20px;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
}
.footer__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__mobile-logo {
  display: none;
}
.footer__mobile-logo img {
  height: 32px;
  width: auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.footer__nav {
  display: flex;
  gap: 0;
  max-width: 779px;
  width: 100%;
  justify-content: space-between;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 168px;
}
.footer__col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: default;
  padding: 0;
  background: none;
  border: none;
  width: 100%;
}
.footer__col-arrow {
  display: none;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.footer__col.is-open .footer__col-arrow {
  transform: rotate(180deg);
}
.footer__col-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #242424;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-links a {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #848484;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col-links a:hover {
  color: var(--green);
}
.footer__col-links a.active {
  color: var(--green);
}
.footer__podcast {
  background: #f1f1f1;
  border-radius: 20px;
  padding: 12px;
  max-width: 386px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer__podcast-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}
.footer__podcast-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.footer__podcast-name {
  font-size: 16px;
  font-weight: 400;
  color: #242424;
  min-width: 0;
}
.footer__podcast-btn {
  background: rgba(0, 0, 0, 0.06);
  color: var(--green);
  border: none;
  border-radius: 16px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 443px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__hotline {
  font-size: 16px;
  font-weight: 500;
  color: #242424;
}
.footer__hotline span {
  font-weight: 400;
  margin-left: 8px;
}
.footer__hours {
  font-size: 16px;
  color: #848484;
  line-height: 22px;
}
.footer__contact-btns {
  display: flex;
  gap: 12px;
}
.footer__contact-btn {
  background: #f1f1f1;
  border: none;
  border-radius: 16px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: var(--green);
  text-decoration: none;
  display: inline-block;
}
.footer__contact-btn--blue {
  color: #398ff5;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__social-title {
  font-size: 16px;
  font-weight: 500;
  color: #242424;
  white-space: nowrap;
}
.footer__social-icons {
  display: flex;
  gap: 12px;
}
.footer__social-icon {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
}
.footer__social-icon img {
  width: 44px;
  height: 44px;
  display: block;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__apps-section {
  display: flex;
  gap: 20px;
}
.footer__app-block {
  background: #f1f1f1;
  border-radius: 24px;
  padding: 32px;
  flex: 1;
  min-width: 0;
}
.footer__app-block--qr {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__app-title {
  font-size: 16px;
  font-weight: 500;
  color: #242424;
  margin-bottom: 16px;
}
.footer__app-services {
  display: flex;
  gap: 48px;
}
.footer__app-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__app-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #848484;
  line-height: 22px;
  text-decoration: none;
}
.footer__app-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  object-fit: cover;
  display: block;
}
.footer__qr-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.footer__qr {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.footer__qr img {
  width: 100%;
  height: 100%;
}
.footer__store-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex: 1;
}
.footer__store-btn {
  flex: 1;
  min-width: 0;
  height: 52px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.6vw, 8px);
  padding: 0 clamp(6px, 1vw, 16px);
  text-decoration: none;
  overflow: hidden;
}
.footer__store-btn-icon {
  width: clamp(18px, 2vw, 28px);
  height: clamp(18px, 2vw, 28px);
  display: block;
  flex-shrink: 0;
}
.footer__store-btn-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.footer__store-btn-name {
  font-size: clamp(10px, 1.1vw, 14px);
  color: #242424;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer__store-row {
  display: none;
  gap: 12px;
  margin-top: 16px;
}
.footer__store-btn-simple {
  flex: 1;
  min-width: 0;
  height: 56px;
  background: #f1f1f1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.5vw, 8px);
  text-decoration: none;
  font-size: clamp(11px, 2.5vw, 14px);
  font-weight: 500;
  color: #242424;
  padding: 0 clamp(8px, 2vw, 16px);
  overflow: hidden;
  white-space: nowrap;
}
.footer__store-btn-simple-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__store-btn-simple-icon img {
  width: clamp(20px, 4vw, 28px);
  height: clamp(20px, 4vw, 28px);
  object-fit: contain;
  display: block;
}
.footer__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  width: 100%;
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__links {
  display: flex;
  flex: 1;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 8px 0;
}
.footer__links a {
  font-size: 12px;
  color: #848484;
  text-decoration: none;
}
.footer__links a:hover {
  color: var(--green);
}
.footer__copyright {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .footer {
    padding: 60px 40px 20px;
  }
  .footer__inner {
    gap: 40px;
  }
  .footer__top {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .footer__left {
    display: contents;
  }
  .footer__right {
    display: contents;
  }
  .footer__nav {
    order: 1;
    max-width: 100%;
    padding-bottom: 28px;
  }
  .footer__podcast {
    order: 2;
    max-width: 100%;
    background: #f1f1f1;
    border-radius: 20px;
    padding: 12px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  .footer__contact {
    order: 3;
    padding-bottom: 24px;
  }
  .footer__social {
    order: 4;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }
  .footer__social-title {
    display: block;
  }
  .footer__social-icons {
    gap: 12px;
    justify-content: flex-start;
    width: auto;
  }
  .footer__hotline {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
  }
  .footer__col {
    width: calc(25% - 4px);
  }
  .footer__app-block--qr {
    display: none;
  }
  .footer__app-block {
    padding: 24px;
  }
  .footer__store-row {
    display: flex;
    gap: 8px;
  }
  .footer__store-btn-simple {
    height: 56px;
  }
  .footer__apps-section {
    flex-direction: column;
    gap: 12px;
  }
  .footer__app-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
  }
  .footer__app-col {
    display: contents;
  }
  .footer__app-item {
    font-size: 14px;
  }
  .footer__legal {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
  }
  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }
}
@media (min-width: 734px) and (max-width: calc(1024px - 1px)) {
  .footer__top {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .footer__nav {
    width: 100%;
  }
  .footer__contact {
    width: 100%;
  }
  .footer__social {
    width: 50%;
    padding-right: 20px;
  }
  .footer__podcast {
    width: 50%;
    padding-left: 20px;
    background: #f1f1f1;
    border-radius: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 16px;
    border-top: none;
    margin-top: 24px;
  }
  .footer__podcast-btn {
    background: #fff;
    border-radius: 12px;
  }
  .footer__apps-section {
    flex-direction: row;
    gap: 20px;
  }
  .footer__app-block--qr {
    display: flex;
  }
  .footer__store-row {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 16px 20px;
    border-radius: 24px 24px 0 0;
  }
  .footer__inner {
    gap: 28px;
  }
  .footer__nav {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 0;
    padding-bottom: 24px;
  }
  .footer__col {
    width: calc(50% - 8px);
  }
  .footer__contact {
    padding-bottom: 20px;
  }
  .footer__contact-btns {
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer__contact-btn {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
  }
  .footer__hours {
    font-size: 14px;
  }
  .footer__app-services {
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }
  .footer__app-item {
    font-size: 14px;
  }
  .footer__store-btn-simple {
    height: 56px;
  }
  .footer__copyright {
    white-space: normal;
  }
  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 24px 16px 16px;
    border-radius: 20px 20px 0 0;
  }
  .footer__inner {
    gap: 0;
  }
  .footer__nav {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .footer__col {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 0;
    gap: 0;
  }
  .footer__col:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .footer__col-header {
    cursor: pointer;
  }
  .footer__col-arrow {
    display: block;
  }
  .footer__col-links {
    display: none;
    margin-top: 10px;
  }
  .footer__col.is-open .footer__col-links {
    display: flex;
  }
  .footer__col-links a {
    font-size: 14px;
  }
  .footer__contact {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: none;
  }
  .footer__contact-btns {
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer__contact-btn {
    background: #f1f1f1;
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 12px;
    flex: 1 1 auto;
    text-align: center;
    white-space: nowrap;
  }
  .footer__social {
    padding-top: 0;
    padding-bottom: 20px;
    border-top: none;
  }
  .footer__podcast {
    background: none;
    border-radius: 0;
    flex-direction: row;
    align-items: center;
    max-width: 100%;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 0;
  }
  .footer__podcast-info {
    flex: 1;
    min-width: 0;
  }
  .footer__podcast-btn {
    flex-shrink: 0;
  }
  .footer__app-block {
    background: #f1f1f1;
    padding: 20px 16px;
    border-radius: 20px;
  }
  .footer__app-block--qr {
    display: none;
  }
  .footer__app-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
  }
  .footer__app-col {
    display: contents;
  }
  .footer__app-item {
    font-size: 14px;
  }
  .footer__apps-section {
    gap: 12px;
  }
  .footer__store-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .footer__store-btn-simple {
    border: none;
    border-radius: 12px;
    height: 52px;
  }
}

.award-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.award-modal[aria-hidden=true] {
  display: none;
}
.award-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.award-modal__box {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  overflow: hidden;
  max-height: 90vh;
  max-width: calc(100vw - 40px);
  display: flex;
}
.award-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}
.award-modal__close:hover {
  background: rgba(0, 0, 0, 0.55);
}
.award-modal__img {
  display: block;
  height: 90vh;
  width: auto;
  max-width: min(63.99vh, 100vw - 40px);
  border-radius: 32px;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.contact-modal[aria-hidden=true] {
  display: none;
}
.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.contact-modal__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.contact-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.contact-modal__section-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.contact-modal__divider {
  border: none;
  border-top: 1.5px dashed #e0e0e0;
  margin: 20px 0;
}
.contact-modal__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-modal__link:hover {
  opacity: 0.8;
}
.contact-modal__link-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-modal__link-icon--tg {
  background: #2AABEE;
}
.contact-modal__link-icon--mail {
  background: #f0f0f0;
}
.contact-modal__close-btn {
  margin-top: 16px;
  background: none;
  border: none;
  font-size: 15px;
  color: var(--green);
  cursor: pointer;
  font-weight: 500;
  transition: opacity 0.2s;
}
.contact-modal__close-btn:hover {
  opacity: 0.7;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 9050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.request-modal[aria-hidden=true] {
  display: none;
}
.request-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.request-modal__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px 32px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
}
.request-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.request-modal__hint {
  background: #EEF4FF;
  border-left: 3px solid #4A90E2;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.5;
  text-align: left;
}
.request-modal__label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-align: left;
}
.request-modal__label span {
  color: #e53935;
}
.request-modal__textarea {
  width: 100%;
  min-height: 110px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.request-modal__textarea:focus {
  border-color: var(--green);
}
.request-modal__field {
  margin-bottom: 20px;
}
.request-modal__input {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.request-modal__input:focus {
  border-color: var(--green);
}
.request-modal__hint-text {
  font-size: 13px;
  color: #848484;
  margin-top: 6px;
  text-align: left;
}
.request-modal__submit {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.request-modal__submit:hover {
  opacity: 0.88;
}
.request-modal__submit:active {
  opacity: 0.95;
}

.city-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.city-modal[aria-hidden=true] {
  display: none;
}
.city-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.city-modal__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.city-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
  flex-shrink: 0;
}
.city-modal__title {
  font-size: 20px;
  font-weight: 600;
  color: #242424;
}
.city-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.city-modal__close:hover {
  background: #e8e8e8;
}
.city-modal__search-wrap {
  position: relative;
  padding: 16px 24px;
  flex-shrink: 0;
}
.city-modal__search {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 15px;
  color: #242424;
  background: #f7f7f7;
  outline: none;
  box-sizing: border-box;
}
.city-modal__search:focus {
  border-color: #59ad3b;
  background: #fff;
}
.city-modal__search::placeholder {
  color: #b4b4b4;
}
.city-modal__search-icon {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.city-modal__body {
  overflow-y: auto;
  flex: 1;
  padding: 0 24px 24px;
}
.city-modal__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 24px;
}
.city-modal__col-title {
  font-size: 13px;
  font-weight: 500;
  color: #b4b4b4;
  margin-bottom: 8px;
  padding: 0 4px;
}
.city-modal__col-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.city-modal__city-btn {
  display: block;
  width: 100%;
  padding: 8px 10px;
  text-align: left;
  background: none;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  color: #242424;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.city-modal__city-btn:hover {
  background: #f0faf0;
  color: #59ad3b;
}
.city-modal__city-btn--active {
  background: #f0faf0;
  color: #59ad3b;
  font-weight: 500;
}
.city-modal__search-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 24px;
}
.city-modal__result-btn {
  display: block;
  width: 100%;
  padding: 8px 10px;
  text-align: left;
  background: none;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  color: #242424;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.city-modal__result-btn:hover {
  background: #f0faf0;
  color: #59ad3b;
}
.city-modal__no-results {
  padding: 32px 0;
  text-align: center;
  color: #b4b4b4;
  font-size: 15px;
}
@media (max-width: 768px) {
  .city-modal {
    padding: 12px;
  }
  .city-modal__box {
    border-radius: 12px;
    max-height: 90vh;
  }
  .city-modal__columns, .city-modal__search-results {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .city-modal__columns, .city-modal__search-results {
    grid-template-columns: 1fr 1fr;
  }
  .city-modal__title {
    font-size: 17px;
  }
  .city-modal__city-btn, .city-modal__result-btn {
    font-size: 14px;
    padding: 7px 8px;
  }
}

/*# sourceMappingURL=main.css.map */
