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

html {
  max-width: 100%;
  scroll-behavior: smooth;
}

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

body {
  font-family: "Inter", "Arial", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

main {
  display: flex;
  flex-direction: column;
  gap: 180px;
  background-color: rgb(242, 245, 237);
  padding: 0 0 180px 0;
}
@media (max-width: 1023px) {
  main {
    gap: 100px;
    padding: 0 0 100px 0;
  }
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  padding: 0;
}

section[id] {
  scroll-margin-top: 120px;
}

.mobile-only {
  display: none;
}
@media (max-width: 767px) {
  .mobile-only {
    display: inline;
  }
}

@media (max-width: 767px) {
  .mobile-text {
    display: none;
  }
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}
@media (max-width: 1023px) {
  .container {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Inter-VariableFont.woff2") format("woff2");
}
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #FEFEFE;
  border: 1px solid rgba(20, 20, 20, 0.1);
  z-index: 100;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.header__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.header__icon-svg {
  width: 100%;
  height: 100%;
}
.header__nav-list {
  display: flex;
  font-weight: 600;
  font-size: 15px;
  line-height: 22.5px;
  gap: 16px;
}
.header__nav-item {
  padding: 9.5px 16px;
  color: #151515;
}
.header__phone {
  display: flex;
  width: 160px;
  padding: 11px 0;
  background: linear-gradient(135deg, #F1B614 0%, #D8D928 100%);
  box-shadow: 0px 12px 28px 0px rgba(241, 182, 20, 0.2392156863);
  justify-content: center;
  border-radius: 16px;
  flex-shrink: 0;
}
.header__phone-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.header__right {
  display: flex;
  align-items: center;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(20, 20, 20, 0.05);
  border: none;
  cursor: pointer;
  border-radius: 10px;
  flex-shrink: 0;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #151515;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #FEFEFE;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  padding: 12px 0 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.3s;
}
.header__mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}
.header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header__mobile-nav-item {
  display: block;
  padding: 14px 16px;
  background-color: #F0F0EE;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  color: #151515;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.15s ease;
}
.header__mobile-nav-item:active {
  background-color: #E4E4E2;
}
.header__mobile-phone {
  display: block;
  margin-top: 12px;
  padding: 16px;
  background-color: #00967D;
  color: #fff;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.15s ease;
}
.header__mobile-phone:active {
  filter: brightness(0.88);
}
.header__mobile-menu.is-open .header__mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}
.header__mobile-menu.is-open .header__mobile-nav-item:nth-child(1) {
  transition-delay: 0.05s;
}
.header__mobile-menu.is-open .header__mobile-nav-item:nth-child(2) {
  transition-delay: 0.09s;
}
.header__mobile-menu.is-open .header__mobile-nav-item:nth-child(3) {
  transition-delay: 0.13s;
}
.header__mobile-menu.is-open .header__mobile-nav-item:nth-child(4) {
  transition-delay: 0.17s;
}
.header__mobile-menu.is-open .header__mobile-nav-item:nth-child(5) {
  transition-delay: 0.21s;
}
.header__mobile-menu.is-open .header__mobile-nav-item:nth-child(6) {
  transition-delay: 0.25s;
}
.header__mobile-menu.is-open .header__mobile-phone {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.29s;
}
@media (max-width: 1023px) {
  .header__content {
    padding: 18px 0;
  }
  .header__nav-list {
    gap: 4px;
    font-size: 14px;
  }
  .header__nav-item {
    padding: 9px 10px;
  }
  .header__phone {
    width: 130px;
    padding: 10px 0;
  }
  .header__phone-link {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .header__content {
    padding: 14px 0;
  }
  .header__nav {
    display: none;
  }
  .header__right {
    gap: 8px;
  }
  .header__phone {
    width: auto;
    padding: 10px 20px;
    border-radius: 12px;
  }
  .header__phone-link {
    font-size: 15px;
    line-height: 1.4;
  }
  .header__burger {
    display: flex;
  }
}

.hero {
  overflow-x: clip;
}
.hero__banner {
  display: grid;
  position: relative;
  padding: clamp(20px, 2.673vw + 9.5px, 48px) 0 0 0;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hero__banner-glow {
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  left: -120px;
  width: 860px;
  height: 860px;
  background: rgba(245, 235, 199, 0.55);
  filter: blur(130px);
  border-radius: 50%;
  pointer-events: none;
}
.hero__banner-glow--secondary {
  left: unset;
  right: -120px;
  background: rgba(214, 234, 227, 0.75);
}
.hero__banner-content {
  display: flex;
  flex-direction: column;
  padding: 31.5px 0;
  z-index: 99;
}
.hero__banner-heading {
  font-weight: 700;
  font-size: clamp(34px, 2.29vw + 25px, 58px);
  line-height: clamp(38px, 1.91vw + 30.5px, 58px);
  letter-spacing: -0.02em;
  margin: 0 0 clamp(16px, 0.764vw + 13px, 24px) 0;
}
@media (max-width: 1320px) {
  .hero__banner-heading {
    font-size: clamp(28px, 1.7vw + 25px, 48px);
  }
}
@media (max-width: 1050px) {
  .hero__banner-heading {
    font-size: clamp(24px, 1.5vw + 25px, 40px);
  }
}
@media (max-width: 900px) {
  .hero__banner-heading {
    font-size: clamp(22px, 1.2vw + 25px, 32px);
  }
}
.hero__banner-heading-gradient {
  background: linear-gradient(135deg, #F1B614 0%, #00967D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__banner-description {
  font-weight: 400;
  font-size: clamp(15px, 0.286vw + 13.9px, 18px);
  line-height: clamp(24px, 0.573vw + 21.75px, 30px);
  margin: 0 0 clamp(24px, 0.764vw + 21px, 32px) 0;
  color: #5B655D;
  padding: 0 clamp(0px, 23.98vw - 245.2px, 100px) 0 0;
}
@media (max-width: 900px) {
  .hero__banner-description {
    font-size: clamp(14px, 0.286vw + 13.9px, 16px);
  }
}
.hero__banner-image {
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  height: auto;
  background: linear-gradient(150deg, #00967D 0%, #3AA55D 48%, #F1B614 100%), radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.42) 0%, rgba(0, 0, 0, 0) 35%);
  border-radius: clamp(24px, 1.528vw + 18px, 40px);
}
.hero__banner-img {
  padding: 24px 0 0 0;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .hero__banner-img {
    padding: 60px 0 0 0;
  }
}
.hero__banner-note {
  position: absolute;
  font-weight: 700;
  font-size: clamp(12px, 0.191vw + 11.25px, 14px);
  line-height: clamp(18px, 0.382vw + 16.5px, 22px);
  color: #fff;
  left: 24px;
  top: 24px;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.27);
  width: 200px;
  text-align: center;
}
.hero__banner-note-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.096em;
  text-transform: uppercase;
}
.hero__banner-note--big {
  right: 35px;
  bottom: 28px;
  left: unset;
  top: unset;
  backdrop-filter: blur(16px);
  text-align: unset;
}
.hero__links {
  display: flex;
  gap: clamp(10px, 1.337vw + 4.75px, 24px);
  margin: 0 0 clamp(32px, 1.527vw + 26px, 48px) 0;
}
@media (max-width: 1050px) {
  .hero__links {
    margin: 0 0 20px 0;
  }
}
.hero__links-item {
  display: block;
  text-align: center;
  width: 231px;
  color: #151515;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  border: 1px solid rgba(20, 20, 20, 0.1);
}
.hero__links-item--colored {
  background: linear-gradient(135deg, #F1B614 0%, #D7D129 100%);
  box-shadow: 0px 20px 40px 0px rgba(241, 182, 20, 0.26);
  border: unset;
}
.hero__cards {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero__cards-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  height: 123px;
  padding: 16px 10px 25px 16px;
  background-color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 28px;
  box-shadow: 0px 18px 50px 0px rgba(28, 34, 27, 0.08);
}
@media (max-width: 900px) {
  .hero__cards-item {
    padding: 10px;
  }
}
.hero__cards-heading {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  color: #151515;
}
.hero__cards-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #5B655D;
}
@media (max-width: 1240px) {
  .hero__cards-description {
    line-height: 16px;
    font-size: 12px;
  }
}
@media (max-width: 1000px) {
  .hero__cards-description {
    line-height: 15px;
    font-size: 9px;
  }
}
@media (max-width: 1023px) {
  .hero__banner {
    gap: 16px;
  }
  .hero__banner-note {
    padding: 10px 12px;
    left: 16px;
    top: 16px;
  }
  .hero__banner-note--big {
    right: 24px;
    bottom: 20px;
    left: unset;
    top: unset;
  }
  .hero__links-item {
    flex: 1;
    width: auto;
    font-size: 13px;
  }
  .hero__cards {
    gap: 10px;
  }
  .hero__cards-item {
    height: auto;
    min-height: 100px;
    padding: 14px 10px 18px 14px;
  }
  .hero__cards-heading {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .hero__banner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__banner-glow {
    width: 500px;
    height: 500px;
  }
  .hero__banner-content {
    order: 2;
    padding: 0;
  }
  .hero__banner-image {
    order: 1;
    overflow: hidden;
    align-items: flex-end;
    min-height: clamp(340px, 37.43vw + 193px, 480px);
  }
  .hero__banner-img {
    padding: 0;
    width: 72%;
    margin: 0 auto;
  }
  .hero__banner-note {
    width: auto;
    max-width: 180px;
    padding: 10px 14px;
    left: 16px;
    top: 16px;
  }
  .hero__banner-note--big {
    right: 16px;
    bottom: 16px;
    left: unset;
    top: unset;
    max-width: 160px;
  }
  .hero__links {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 32px;
  }
  .hero__links-item {
    width: 100%;
    border-radius: 14px;
    padding: 15px 0;
    flex: unset;
    font-size: 16px;
  }
  .hero__cards {
    flex-direction: row;
    gap: 10px;
  }
  .hero__cards-item {
    width: 100%;
    height: auto;
    min-height: unset;
    padding: 16px 16px 20px;
    border-radius: 20px;
  }
  .hero__cards-heading {
    font-size: 22px;
    line-height: 26px;
  }
  .hero__cards-description {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .hero__links {
    flex-direction: column;
  }
  .hero__cards {
    flex-direction: column;
  }
}

.benefits__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 48px 0;
}
@media (max-width: 767px) {
  .benefits__heading {
    margin: 0 0 24px 0;
  }
}
.benefits__heading-note {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #00967D;
  padding: 8px 16px;
  background: rgba(241, 182, 20, 0.14);
  border: 1px solid rgba(241, 182, 20, 0.3);
  text-align: center;
  text-transform: uppercase;
  border-radius: 16px;
  z-index: 1;
}
.benefits__heading-title {
  font-weight: 400;
  font-size: clamp(28px, 5vw, 46px);
  line-height: clamp(32px, 6vw, 54px);
  color: #151515;
  width: 603px;
  margin: 0;
  letter-spacing: -0.02em;
  z-index: 2;
}
@media (max-width: 640px) {
  .benefits__heading-title {
    width: 100%;
    padding: 0 4px 0 0;
  }
}
.benefits__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1023px) {
  .benefits__cards {
    grid-template-columns: 1fr;
  }
}
.benefits__cards-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 28px;
  box-shadow: 0px 18px 50px 0px rgba(28, 34, 27, 0.08);
  padding: 32px 24px;
}
.benefits__cards-number {
  font-weight: 700;
  font-size: 46px;
  line-height: 48px;
  color: #B88700;
  margin: 0 0 24px 0;
}
.benefits__cards-title {
  margin: 0 0 16px 0;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #151515;
}
.benefits__cards-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #5B655D;
}

.steps__wrapper {
  display: grid;
  grid-template-columns: 738px 1fr;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 1360px) {
  .steps__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .steps__wrapper {
    grid-template-columns: 1fr;
  }
}
.steps__info {
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.78);
  border-radius: 28px;
}
.steps__info-note {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #00967D;
  padding: 8px 16px;
  background: rgba(241, 182, 20, 0.14);
  border: 1px solid rgba(241, 182, 20, 0.3);
  text-align: center;
  text-transform: uppercase;
  border-radius: 16px;
  margin: 0 0 16px 0;
}
.steps__info-heading {
  font-weight: 400;
  font-size: clamp(28px, 3vw, 46px);
  line-height: clamp(32px, 4vw, 54px);
  color: #151515;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
}
@media (max-width: 1100px) {
  .steps__info-heading {
    margin: 0 0 7px 0;
  }
}
.steps__info-description {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #5B655D;
  padding: 0 49px 0 0;
  margin: 24px 0 0 0;
}
@media (max-width: 1100px) {
  .steps__info-description {
    margin: 7px 0 0 0;
  }
}
@media (max-width: 550px) {
  .steps__info-description {
    padding: 0;
  }
}
.steps__right {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  padding: 24px;
  overflow: hidden;
}
.steps__slider {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}
.steps__list {
  display: flex;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps__list-item {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 40px;
  align-content: start;
}
@media (max-width: 1100px) {
  .steps__list-item {
    gap: 20px;
  }
}
@media (max-width: 820px) {
  .steps__list-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.steps__list-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.steps__list-heading {
  font-weight: 700;
  font-size: 36px;
  line-height: 38px;
  color: #00967D;
  margin: 0;
}
.steps__list-title {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #151515;
}
.steps__list-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #5B655D;
}
@media (max-width: 950px) {
  .steps__list-description {
    line-height: 26px;
  }
}
@media (max-width: 820px) {
  .steps__list-description {
    margin: 0 0 20px 0;
  }
}
.steps__controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.steps__pagination {
  display: flex;
  gap: 8px;
}
.steps__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #D1D5DB;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media (max-width: 1023px) {
  .steps__dot {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 767px) {
  .steps__dot {
    width: 8px;
    height: 8px;
  }
}
.steps__dot--active {
  background-color: #00967D;
}
.steps__navigation {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .steps__navigation {
    display: none;
  }
}
.steps__arrow {
  width: 40px;
  height: 20px;
  border: 1px solid #00967D;
  background-color: transparent;
  color: #00967D;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.steps__arrow:hover {
  background-color: #00967D;
  color: #fff;
}
.steps__arrow.swiper-button-disabled {
  opacity: 0.3;
  border-color: #A0AEC0;
  color: #A0AEC0;
  cursor: not-allowed;
}
.steps__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.additional__heading {
  margin: 0 0 48px 0;
}
@media (max-width: 1023px) {
  .additional__heading {
    margin: 0 0 24px 0;
  }
}
.additional__heading-note {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #00967D;
  padding: 8px 16px;
  background: rgba(241, 182, 20, 0.14);
  border: 1px solid rgba(241, 182, 20, 0.3);
  text-align: center;
  text-transform: uppercase;
  border-radius: 16px;
  margin: 0 0 16px 0;
}
.additional__heading-title {
  font-weight: 400;
  font-size: clamp(28px, 4vw, 46px);
  line-height: clamp(32px, 4vw, 54px);
  color: #151515;
  letter-spacing: -0.02em;
  margin: 0;
  width: 846px;
}
@media (max-width: 1023px) {
  .additional__heading-title {
    width: 100%;
  }
}
.additional__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1023px) {
  .additional__list {
    grid-template-columns: 1fr;
  }
}
.additional__list-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 20, 20, 0.1);
  box-shadow: 0px 18px 50px 0px rgba(28, 34, 27, 0.08);
  border-radius: 28px;
  padding: 24px 34px 24px 24px;
}
.additional__list-heading {
  margin: 0 0 16px 0;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #151515;
}
.additional__list-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #5B655D;
  margin: 0;
}

.videoblock__heading {
  margin: 0 0 48px 0;
}
@media (max-width: 767px) {
  .videoblock__heading {
    margin: 0 0 24px 0;
  }
}
.videoblock__heading-note {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #00967D;
  padding: 8px 16px;
  background: rgba(241, 182, 20, 0.14);
  border: 1px solid rgba(241, 182, 20, 0.3);
  text-align: center;
  text-transform: uppercase;
  border-radius: 16px;
  margin: 0 0 16px 0;
}
.videoblock__heading-title {
  font-weight: 400;
  font-size: 46px;
  line-height: 54px;
  color: #151515;
  letter-spacing: -0.02em;
  margin: 0;
  width: 820px;
}
@media (max-width: 1023px) {
  .videoblock__heading-title {
    width: 100%;
    font-size: clamp(28px, 4vw, 46px);
    line-height: clamp(32px, 4vw, 54px);
  }
}
.videoblock__wrapper {
  width: 100%;
  overflow: hidden;
  margin: 0 0 16px 0;
}
.videoblock__track {
  display: flex;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.videoblock__card {
  position: relative;
  flex-shrink: 0;
  background: linear-gradient(140.21deg, #FFFFFF 6.83%, #78CD94 31.93%, #3AA55D 60.51%, #F1B614 106.34%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0px 16.12px 44.79px 0px rgba(28, 34, 27, 0.08);
}
.videoblock__card::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.videoblock__card-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 62px;
  height: 62px;
  z-index: 1;
}
.videoblock__card-logo-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.videoblock__card-body {
  position: absolute;
  width: 230px;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: clamp(8px, 2vw, 24px);
  max-width: 52%;
  z-index: 1;
}
.videoblock__card-title {
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 22px);
  line-height: clamp(19px, 2.5vw, 28px);
  color: #151515;
  margin: 0;
}
.videoblock__card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #F1B614;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(241, 182, 20, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}
.videoblock__card-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(241, 182, 20, 0.6);
}
.videoblock__card-play svg {
  width: 18px;
  height: 20px;
  margin-left: 3px;
  fill: #159C71;
}
.videoblock__card-person {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
}
.videoblock__controls {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}
.videoblock__pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.videoblock__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #D1D5DB !important;
  border-radius: 50%;
  opacity: 1 !important;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media (max-width: 1023px) {
  .videoblock__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.videoblock__pagination .swiper-pagination-bullet-active {
  background-color: #00967D !important;
}
.videoblock__navigation {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .videoblock__navigation {
    display: none;
  }
}
.videoblock__arrow {
  width: 40px;
  height: 20px;
  border: 1px solid #00967D;
  background-color: transparent;
  color: #00967D;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.videoblock__arrow:hover {
  background-color: #00967D;
  color: #fff;
}
.videoblock__arrow.swiper-button-disabled {
  opacity: 0.3;
  border-color: #A0AEC0;
  color: #A0AEC0;
  cursor: not-allowed;
}
.videoblock__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
@media (max-width: 1023px) {
  .videoblock__card-logo {
    width: 48px;
    height: 48px;
    top: 16px;
    left: 16px;
  }
  .videoblock__card-body {
    padding: 16px;
    bottom: 16px;
    left: 16px;
    border-radius: 12px;
  }
  .videoblock__card-title {
    font-size: 16px;
    line-height: 19px;
  }
}
@media (max-width: 767px) {
  .videoblock__card {
    border-radius: 20px;
  }
  .videoblock__card-logo {
    width: 100%;
    height: 100%;
    top: 12px;
    left: 12px;
  }
  .videoblock__card-body {
    padding: 8px;
    bottom: 12px;
    left: 12px;
    border-radius: 10px;
    max-width: 122px;
  }
  .videoblock__card-title {
    font-size: 14px;
    line-height: 20px;
    word-wrap: break-word;
  }
  .videoblock__card-play {
    width: 44px;
    height: 44px;
  }
  .videoblock__controls {
    padding-top: 8px;
  }
  .videoblock__pagination {
    gap: 2px;
  }
  .videoblock__navigation {
    display: none;
  }
}

.calculator__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 767px) {
  .calculator__wrapper {
    gap: 24px;
  }
}
.calculator__heading-note {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #00967D;
  padding: 8px 16px;
  background: rgba(241, 182, 20, 0.14);
  border: 1px solid rgba(241, 182, 20, 0.3);
  text-align: center;
  text-transform: uppercase;
  border-radius: 16px;
  margin: 0 0 16px 0;
}
.calculator__heading-title {
  font-weight: 400;
  font-size: 46px;
  line-height: 54px;
  color: #151515;
  letter-spacing: -0.02em;
  margin: 0;
  width: 818px;
}
.calculator__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.calculator__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 28px;
}
.calculator__info-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #5B655D;
  margin: 0;
}
.calculator__thresholds {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calculator__threshold-item {
  background: linear-gradient(135deg, rgba(241, 182, 20, 0.12) 0%, rgba(0, 150, 125, 0.12) 100%);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calculator__threshold-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #5B655D;
}
.calculator__threshold-value {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #151515;
}
.calculator__form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 28px;
  box-shadow: 0px 18px 50px 0px rgba(28, 34, 27, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.calculator__gender {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(20, 20, 20, 0.06);
  border-radius: 16px;
  padding: 4px;
  gap: 4px;
}
.calculator__gender-btn {
  padding: 13px 16px;
  border-radius: 12px;
  border: none;
  background: transparent;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #151515;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.calculator__gender-btn--active {
  background: #00967D;
  color: #fff;
}
.calculator__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calculator__field-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #151515;
}
.calculator__field-input {
  font-family: "Inter", "Arial", sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #151515;
  background: #fff;
  border: 1.5px solid rgba(20, 20, 20, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.calculator__field-input:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
.calculator__field-input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.calculator__field-input[type=number]::-webkit-inner-spin-button, .calculator__field-input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.calculator__result {
  background: linear-gradient(135deg, rgba(0, 150, 125, 0.12) 0%, rgba(241, 182, 20, 0.16) 100%);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calculator__result-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #5B655D;
}
.calculator__result-status {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #151515;
}
.calculator__result-status--ok {
  color: #00967D;
}
.calculator__result-note {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #5B655D;
  margin: 0;
}
.calculator__result-btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  background: #00967D;
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 4px;
  transition: background 0.2s ease;
}
.calculator__result-btn:hover {
  background: #007A65;
}
.calculator__age-hint {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #5B655D;
  background: rgba(0, 150, 125, 0.08);
  border-radius: 14px;
  padding: 14px 20px;
  margin: 0;
}
.calculator__age-hint strong {
  color: #00967D;
  font-weight: 700;
}
.calculator__age-warning {
  display: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #5B655D;
  background: rgba(20, 20, 20, 0.05);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  margin: 0;
}
@media (max-width: 1023px) {
  .calculator__content {
    grid-template-columns: 1fr;
  }
  .calculator__heading-title {
    width: 100%;
    font-size: clamp(28px, 4vw, 46px);
    line-height: clamp(32px, 4vw, 54px);
  }
}

.news__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 767px) {
  .news__wrapper {
    gap: 24px;
  }
}
.news__heading {
  margin: 0;
}
.news__heading-note {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #00967D;
  padding: 8px 16px;
  background: rgba(241, 182, 20, 0.14);
  border: 1px solid rgba(241, 182, 20, 0.3);
  text-align: center;
  text-transform: uppercase;
  border-radius: 16px;
  margin: 0 0 16px 0;
}
.news__heading-title {
  font-weight: 400;
  font-size: 46px;
  line-height: 54px;
  color: #151515;
  letter-spacing: -0.02em;
  margin: 0;
  width: 820px;
}
.news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news__list-item {
  display: flex;
}
.news__card {
  display: grid;
  grid-template-rows: 214px 1fr;
  width: 100%;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 28px;
  box-shadow: 0px 18px 50px 0px rgba(28, 34, 27, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  padding: 27px 24px;
  gap: 24px;
}
.news__card:hover {
  box-shadow: 0px 24px 60px 0px rgba(28, 34, 27, 0.13);
  transform: translateY(-2px);
}
.news__card-img-wrap {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.news__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 20px;
}
.news__card:hover .news__card-img {
  transform: scale(1.03);
}
.news__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 16px 0;
}
.news__card-tag {
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #00967D;
  background: rgba(241, 182, 20, 0.14);
  border: 1px solid rgba(241, 182, 20, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
}
.news__card-date {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #5B655D;
  white-space: nowrap;
}
.news__card-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #151515;
  margin: 0 0 8px 0;
}
.news__card-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5B655D;
  margin: 0 0 16px 0;
}
.news__card-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #00967D;
  background: rgba(0, 150, 125, 0.08);
  border-radius: 20px;
  padding: 8px 16px;
  margin-top: auto;
  align-self: flex-start;
  transition: background 0.2s ease;
}
.news__card:hover .news__card-link {
  background: rgba(0, 150, 125, 0.15);
}
@media (max-width: 1023px) {
  .news__list {
    grid-template-columns: 1fr 1fr;
  }
  .news__heading-title {
    width: 100%;
    font-size: clamp(28px, 4vw, 46px);
    line-height: clamp(32px, 4vw, 54px);
  }
}
@media (max-width: 767px) {
  .news__list {
    grid-template-columns: 1fr;
  }
}

.faq__wrapper {
  display: flex;
  flex-direction: column;
}
.faq__heading {
  margin: 0 0 48px 0;
}
@media (max-width: 767px) {
  .faq__heading {
    margin: 0 0 24px 0;
  }
}
.faq__heading-note {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #00967D;
  padding: 8px 16px;
  background: rgba(241, 182, 20, 0.14);
  border: 1px solid rgba(241, 182, 20, 0.3);
  text-align: center;
  text-transform: uppercase;
  border-radius: 16px;
  margin: 0 0 16px 0;
}
.faq__heading-title {
  font-weight: 400;
  font-size: 46px;
  line-height: 52px;
  color: #151515;
  letter-spacing: -0.02em;
  margin: 0;
  width: 846px;
}
@media (max-width: 1023px) {
  .faq__heading-title {
    width: 100%;
    font-size: clamp(28px, 4vw, 46px);
    line-height: clamp(32px, 4vw, 54px);
  }
}
.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 28px;
  overflow: hidden;
  padding: 26.5px 24px;
}
.faq__item.is-active {
  padding: 24px;
}
.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 28px;
  color: #151515;
}
.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: #151515;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq__icon::before {
  width: 100%;
  height: 4px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq__icon::after {
  width: 4px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.faq__item.is-active .faq__icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}
.faq__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq__content-inner {
  overflow: hidden;
}
.faq__item.is-active .faq__content {
  grid-template-rows: 1fr;
}
.faq__item.is-active .faq__trigger {
  margin: 0 0 16px 0;
}
.faq__answer {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #5B655D;
  margin: 0;
}

.footer {
  background-color: #1C2B1E;
  padding: 48px 0 0;
}
@media (max-width: 767px) {
  .footer {
    background: linear-gradient(180deg, #18211B 0%, #101612 100%), radial-gradient(50% 50% at 0% 0%, rgba(241, 182, 20, 0.18) 0%, rgba(0, 0, 0, 0) 24%);
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 24px;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer__logo {
  width: 60px;
  height: 60px;
}
.footer__logo-svg {
  width: 100%;
  height: 100%;
}
.footer__phone {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: #fff;
  transition: opacity 0.2s ease;
}
@media (max-width: 700px) {
  .footer__phone {
    font-size: 23px;
  }
}
.footer__phone:hover {
  opacity: 0.75;
}
.footer__center {
  flex: 1;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer__address {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer__nav-label {
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 80px;
}
.footer__nav-link {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  transition: opacity 0.2s ease;
}
.footer__nav-link:hover {
  opacity: 0.65;
}
.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom-copy {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1023px) {
  .footer {
    padding: 40px 0 0;
  }
  .footer__left {
    gap: 32px;
  }
  .footer__phone {
    font-size: 24px;
    line-height: 28px;
  }
  .footer__nav-grid {
    gap: 14px 48px;
  }
  .footer__nav-link {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 36px 0 0;
  }
  .footer__content {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer__left {
    gap: 24px;
  }
  .footer__logo {
    width: 52px;
    height: 52px;
  }
  .footer__phone {
    font-size: 32px;
    line-height: 38px;
  }
  .footer__center {
    flex: none;
    width: 100%;
  }
  .footer__nav {
    width: 100%;
    gap: 16px;
  }
  .footer__nav-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer__nav-link {
    font-size: 18px;
    line-height: 26px;
  }
  .footer__bottom {
    padding: 20px 0;
  }
}

.hero--thanks {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 109px);
}
.hero--thanks .hero__banner {
  width: 100%;
}
.hero--thanks .hero__banner-content {
  justify-content: center;
}
@media (max-width: 767px) {
  .hero--thanks {
    min-height: 0;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.video-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.video-modal__container {
  position: relative;
  width: 100%;
  max-width: 960px;
  z-index: 1;
  transform: scale(0.93);
  transition: transform 0.25s ease;
}
.video-modal.is-open .video-modal__container {
  transform: scale(1);
}
.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.video-modal__close svg {
  width: 18px;
  height: 18px;
}
.video-modal__box {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}
.video-modal__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 767px) {
  .video-modal {
    padding: 16px;
  }
  .video-modal__close {
    top: -44px;
  }
}

.wa-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.wa-popup {
  width: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.wa-popup.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.wa-popup__header {
  background: #075E54;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-popup__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: #aadad2;
  border-radius: 50%;
}
.wa-popup__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wa-popup__info {
  flex: 1;
}
.wa-popup__name {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin: 0 0 2px 0;
}
.wa-popup__status {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.wa-popup__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.wa-popup__close:hover {
  background: rgba(255, 255, 255, 0.12);
}
.wa-popup__body {
  background: #E5DDD5;
  padding: 20px 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 140px;
}
.wa-popup__time {
  font-size: 12px;
  color: #667781;
  background: rgba(255, 255, 255, 0.65);
  padding: 3px 10px;
  border-radius: 8px;
}
.wa-popup__message {
  background: #fff;
  border-radius: 0 8px 8px 8px;
  padding: 10px 14px;
  font-size: 15px;
  line-height: 22px;
  color: #111;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  max-width: 92%;
}
.wa-popup__footer {
  background: #E5DDD5;
  padding: 8px 16px 20px;
}
.wa-popup__btn {
  display: block;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 14px;
  border-radius: 28px;
  transition: background 0.2s;
}
.wa-popup__btn:hover {
  background: #1ebe57;
  color: #fff;
}

@keyframes wa-pulse {
  0%, 100% {
    transform: scale(1);
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  }
  50% {
    transform: scale(1.07);
    background-color: rgb(37, 211, 102);
    box-shadow: 0 6px 24px rgb(37, 211, 102);
  }
}
.wa-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  pointer-events: all;
  animation: wa-pulse 2.8s ease-in-out infinite;
}
.wa-btn:hover {
  animation: none;
  transform: scale(1.06);
  background-color: #fff;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
}
.wa-btn__icon {
  width: 42px;
  height: 42px;
}
.wa-btn__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: #FF3B30;
  border-radius: 50%;
  border: 2px solid #fff;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lead-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.lead-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 180, 90, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.lead-modal__card {
  position: relative;
  width: 800px;
  min-height: 578px;
  background: #fff;
  border-radius: 28px;
  padding: 48px 48px 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: scale(0.95);
  transition: transform 0.25s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
}
@media (max-width: 767px) {
  .lead-modal__card {
    padding: 32px 32px 24px 32px;
  }
}
.lead-modal.is-open .lead-modal__card {
  transform: scale(1);
}
.lead-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}
.lead-modal__close:hover {
  background: rgba(0, 0, 0, 0.06);
}
.lead-modal__badge {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #00967D;
  padding: 6px 16px;
  background: rgba(241, 182, 20, 0.14);
  border: 1px solid rgba(241, 182, 20, 0.3);
  text-transform: uppercase;
  border-radius: 16px;
  align-self: flex-start;
}
.lead-modal__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: #151515;
  margin: 0;
}
@media (max-width: 767px) {
  .lead-modal__title {
    font-size: clamp(25px, 2vw, 32px);
  }
}
.lead-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.lead-modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead-modal__label {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: rgb(91, 101, 93);
}
.lead-modal__input {
  width: 100%;
  padding: 16px 20px;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #151515;
  background: #fff;
  border: 1.5px solid rgba(20, 20, 20, 0.15);
  border-radius: 16px;
  outline: none;
  transition: border-color 0.2s;
}
.lead-modal__input::placeholder {
  color: rgba(20, 20, 20, 0.35);
}
.lead-modal__input:focus {
  border-color: #00967D;
}
.lead-modal__error {
  display: block;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #d64545;
  margin: 6px 0 0;
}
.lead-modal__error[hidden] {
  display: none;
}
.lead-modal__disclaimer {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #5B655D;
  margin: 4px 0 0;
}
.lead-modal__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}
@media (max-width: 400px) {
  .lead-modal__footer {
    justify-content: unset;
  }
}
.lead-modal__submit {
  padding: 16px 40px;
  background: linear-gradient(135deg, #F1B614 0%, #D8D928 100%);
  box-shadow: 0px 12px 28px 0px rgba(241, 182, 20, 0.4);
  border: none;
  border-radius: 16px;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #151515;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
}
@media (max-width: 400px) {
  .lead-modal__submit {
    width: 100%;
  }
}
.lead-modal__submit:hover {
  opacity: 0.9;
  box-shadow: 0px 16px 36px 0px rgba(241, 182, 20, 0.5);
}

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