@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

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

body,
html {
  font-family: 'Onest';
  height: 100%;
  background-color: #edf0f6;
  color: #fff;
}

.market {
  position: relative;
  background-color: #f6f8ff;
  padding: 6rem 2rem 4rem;
  text-align: center;
  overflow: visible;
}

.hero__titles {
  color: #FFF;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  padding-top: 50px;
  padding-bottom: 32px;
}

.hero__sb {
  color: #FFF;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: var(--Static-Title-Medium-Line-Height, 24px);
  /* 120% */
  max-width: 678px;
  margin: 0px auto;
  padding-bottom: 205px;
}

.hero__highlight {
  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--Static-Title-Medium-Line-Height, 24px);
}

/* Обгортка для контролю позиції */
.market__image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
}

.market__image {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 682px;
  height: 80px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

/* Адаптація */
@media (max-width: 768px) {
  .market__image {
    width: 180px;
    top: -60px;
  }
}

/* === Header base === */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding-bottom: 20px;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  padding-top: 20px;
  margin: 0px auto;
}

.header__logo {
  font-size: 1.5rem;
  color: #fff;
}

.header__logo--bold {
  font-weight: 700;
}

/* === Nav Menu === */
.header__nav {
  display: flex;
  align-items: center;
}

.header__list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.header__link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.80);
  text-align: right;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  /* 171.429% */
}

.header__btn {
  border-radius: 1000px;
  background: #566BFE;
  color: #FFF;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.14px;
  padding: 14px 18px;
  text-decoration: none;
}


/* === Burger === */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__burger-line {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
}

/* === Mobile Styles === */
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 30, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
  }

  .header__nav--active {
    right: 0;
  }

  .header__list {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .header__btn {
    margin-top: 2rem;
  }

  .header__burger {
    display: flex;
  }

  .header__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    font-weight: 100;
  }
}


.hero {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  padding-top: 6rem;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: blur(0px) !important;
  -webkit-filter: blur(0px) !important;
}

/* Накладення градієнтного шару поверх відео */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #101A7D 0%, #060738 100%);
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}


.hero__content {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.hero__logo {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero__logo--bold {
  font-weight: 700;
}

.hero__title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero__cta {
  width: 743px;
  height: 115px;
  margin: 0 auto;
  padding: 10px 36px 10px 35px;
  display: flex;
  align-items: center;
  gap: 3px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 4px 40px 0 #566BFE inset;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.00);
  box-shadow: 0 4px 40px 0 #566BFE inset;
  justify-content: space-around;
}

.hero__cta-text {
  color: #FFF;
  font-feature-settings: 'case' on, 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: start;
  max-width: 370px;
}

.hero__button {
  /* display: inline-block; */
  /* padding: 0.75rem 1.5rem; */
  /* border-radius: 50px; */
  /* color: white; */
  /* text-decoration: none; */
  /* font-weight: bold; */
  /* transition: background 0.3s ease; */
  margin-left: 20px;
}

.lith {
  color: rgba(255, 255, 255, 0.60);
  font-feature-settings: 'case' on, 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.hero__note {
  color: #FFF;
  text-align: center;
  font-feature-settings: 'case' on, 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding-top: 20px;
  margin-bottom: 100px;
}

/* Responsive */
@media (max-width: 768px) {
  .header__list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__cta-text {
    font-size: 0.9rem;
    padding-top: 20px;
  }
  .how-it-works__card{
      border-radius: 36px;
  }

  .hero__button {
    font-size: 0.9rem;
  }
}

.market {
  background-color: #edf0f6;
  padding: 4rem 2rem;
  text-align: center;
  color: #12153a;
}

.market__container {
  /* max-width: 900px; */
  margin: 0 auto;
}

.market__eyebrow {
  color: #040CAD;
  text-align: center;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.16px;
  margin-bottom: 1rem;
  background: rgba(78, 101, 255, 0.1);
  padding: 14px 16px;
  display: inline-block;
  border-radius: 20px;

}

.market__title {
  color: #05044E;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--Static-Display-Medium-Line-Height, 52px);
  margin: 0px auto;
  padding-bottom: 32px;
  max-width: 1200px;
}

.market__title--bold {
  font-weight: 700;
  display: block;
  color: #101a7d;
}

.market__desc {
  font-size: 1.1rem;
  color: #5c5c74;
  margin-bottom: 1rem;
}

.market__desc--secondary {
  margin-top: 1rem;
  font-weight: 500;
  color: #2a2a3c;
}

.market__problems {
  margin-top: 2rem;
}

.market__problems-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.market__problem-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 1140px;
  /* flex-direction: column; */
  margin: 0px auto;
}

.market__problem-item {
  /* border: 1px solid #dcdcff; */
  padding: 0.6rem 1rem;
  border-radius: 30px;
  font-size: 0.95rem;
  /* background-color: white; */
  color: #12153a;
  /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); */
  border: 1px solid #101A7D;
  display: flex;
  align-items: center;
  gap: 5px;
}

.market__footer {
  color: #FFF;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--Static-Title-Medium-Line-Height, 24px);
  /* 133.333% */
  max-width: 100%;
  margin: 0px auto;
  text-align: center;
  background: #566BFE;
  padding-top: 10px;
  padding-bottom: 10px;
}

.market__footer span {
  color: #FFF;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--Static-Title-Medium-Line-Height, 24px);
  /* 133.333% */
}

.market__problem-item svg {
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
}

/* === Responsive === */
@media (max-width: 768px) {
  .market__title {
    font-size: 1.5rem;
  }

  .market__desc {
    font-size: 1rem;
  }

      .market__problem-item {
        font-size: 12px;
        padding: 0.5rem 0.8rem;
        width: 100%;
    }

  .market__footer {
    font-size: 0.85rem;
  }
}

.defence {
  background-image: url('/source/Rectangle\ 6322.png');
  padding: 4rem 1.5rem;
  background-size: contain;
  text-align: center;
}

.defence__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 140px;
}

.defence__tag {
  background: #DAE0F7;
  color: #4e65ff;
  font-size: 0.9rem;
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.defence__title {
    color: #05044E;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: var(--Static-Display-Medium-Line-Height, 52px);
    max-width: 996px;
    padding-bottom: 60px;
    margin: 0px auto;
}
.defence__title strong{
    color: #05044E;
font-feature-settings: 'liga' off, 'clig' off;
font-family: Onest;
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: var(--Static-Display-Medium-Line-Height, 52px);
}
.defence__title--highlight {
  font-weight: 700;
  color: #101a7d;
}

.defence__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) 1.5fr;
  gap: 1.5rem;
  align-items: stretch;
}

.defence__card {
  background: white;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 386px;
}

.defence__icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  background-color: #E7E7F7;
  padding: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
}

.defence__text {
  color: #060738;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 116.667% */
  letter-spacing: -0.24px;
}

/* Правий блок */
.defence__message {
  border-radius: 25px;
  background: #040CAD;
  color: white;
  padding: 2rem;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 387px;
}

.defence__message-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: absolute;
    top: 24px;
    margin-bottom: 25px;
}

.defence__message-text {
    color: #FFF;
    font-family: Onest;
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: 28px;
    letter-spacing: -0.24px;
    padding-top: 20px;
}

.defence__message-text strong {
  color: #FFF;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.24px;
}

.defence__message-icon svg {
  background-color: #566BFE;
  /* padding: 10px; */
  width: 62px;
  height: 62px;
  padding: 9px;
  border-radius: 50%;
}

.defence__shield {
    position: absolute;
    bottom: -140px;
    right: -80px;
    width: 90px;
    height: auto;
    width: 341px;
    height: 341px;
    /* transform: rotate(-15.345deg); */
    aspect-ratio: 1 / 1;
}

/* Адаптив */
@media (max-width: 992px) {
  .defence__grid {
    grid-template-columns: 1fr;
  }

  .defence__message {
    margin-top: 1rem;
    text-align: center;
  }

  .defence__message-text {
    text-align: left;
  }

  .defence__shield {
    position: static;
    margin: 1rem auto 0;
    display: block;
  }
}

@media (max-width: 600px) {
  .defence__title {
    font-size: 1.5rem;
  }

  .defence__text {
    font-size: 0.95rem;
  }

  .defence__message-text {
    font-size: 0.95rem;
  }
}

.wrappp {
  background: #EDF0F6;
  padding: 4rem 2rem;
  text-align: center;
}

.wrappp__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Заголовки */
.wrappp__tag {
  font-size: 0.9rem;
  background: rgba(78, 101, 255, 0.1);
  color: #4e65ff;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 1rem;
}

.wrappp__title {
  color: #05044E;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: var(--Static-Display-Medium-Line-Height, 52px);
  /* 108.333% */
  padding-bottom: 20px;
}

.wrappp__title--highlight {
  font-weight: 700;
  color: #101a7d;
}

.wrappp__title strong {
  color: #05044E;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--Static-Display-Medium-Line-Height, 52px);
}

.wrappp__subtitle {
  color: rgba(5, 4, 78, 0.60);
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--Static-Title-Medium-Line-Height, 24px);
  /* 133.333% */
  padding-bottom: 40px;
}

.wrappp__subtitle strong {
  color: #05044E;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--Static-Title-Medium-Line-Height, 24px);

}

/* Сітка */
.wrappp__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.wrappp__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  max-width: 347px;
  height: 150px;
}

.wrappp__card-tag {
  color: #060738;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding-bottom: 40px;
}

.wrappp__card-text {
  color: #060738;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 116.667% */
  letter-spacing: -0.24px;
}

.wrappp__card--image img {
  max-width: 347px;
  border-radius: 12px;
  height: 150px;
}

.act {
  padding-left: 25px;
  padding-top: 14px;
  padding-right: 25px;
}

.fk---mrs {
  display: flex;
  gap: 36px;
  justify-content: center;
}

.wrappp__module {
  margin: 0px auto;
}



.wrappp__structure-tag {
  background: #DAE0F7;
  color: #040CAD;
  text-align: center;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.16px;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 1rem;
}

.wrappp__structure-title {
  color: #05044E;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: var(--Static-Display-Medium-Line-Height, 52px);
  /* 108.333% */
  margin-bottom: 3rem;
}

.wrappp__structure-title span {
  color: #05044E;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--Static-Display-Medium-Line-Height, 52px);
}

/* Модулі */
.wrappp__modules {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.wrappp__module-title {
  color: #05044E;
  text-align: center;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.16px;
}

.wrappp__module-heading {
  color: #060738;
  text-align: right;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 116.667% */
  letter-spacing: -0.24px;
  max-width: 330px;
}

.wrappp__steps {
    position: relative;
    background: none; /* прибираємо red */
}

.wrappp__steps::before {
    content
: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
    width: 20px;
    background-color: #DAE0F7;
    border-radius: 10px;
    z-index: 1;
}

.wrappp__steps li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    left: 22px;
}
.li--line {
    width: 380px;
}
.author-section__facts li svg {
    /* padding: 2px; */
    padding-right: 5px;
}

.wrappp__step-num {
  background: #4e65ff;
  color: white;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Адаптивність */
@media (max-width: 768px) {
  .wrappp__title {
    font-size: 1.6rem;
  }

  .wrappp__structure-title {
    font-size: 1.4rem;
  }

  .wrappp__grid {
    grid-template-columns: 1fr;
  }

  .wrappp__modules {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .header__close {
    display: none;
  }
}

.defence__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) 1.5fr;
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
  align-items: stretch;
}

.defence__card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.defence__card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.defence__card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.defence__card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.defence__message {
  grid-column: 3;
  grid-row: 1 / 3;
}

.defence__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .defence__grid {
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .defence__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .defence__message {
    grid-column: 1 / 3;
  }
}

@media (min-width: 1024px) {
  .defence__grid {
    grid-template-columns: repeat(2, 1fr) 1.5fr;
    gap: 2rem;
  }

  .defence__message {
        grid-column: 3;
        grid-row: 1 / 3;
        position: relative;
    }
}

@media (min-width: 1280px) {
  .defence__grid {
    gap: 2.5rem;
  }
}

.header {
  background: transparent;
  color: white;
  transition: all 0.3s ease;
  position: fixed;
  /* або sticky — залежно від дизайну */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header.scrolled {
  background: #040cad;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  padding-bottom: 20px;
}

.header.scrolled .header__logo svg path {
  fill: #ffffff !important;
}

.header.scrolled .header__link,
.header.scrolled .header__btn {
  color: #ffffff;
}

.header.scrolled .header__btn {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;

}

.header.scrolled .header__burger-line {
  background-color: #000000;
}

.flex--modul {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 35px;
}

.line--m {
  width: 454px;
  height: 2px;
  background-color: #DAE0F7;
}

.results {
  padding: 60px 20px;
  border-radius: 20px;
  color: #fff;
}

.results__container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, #EDF0F6 0%, #566BFE 0.01%);
  padding-left: 90px;
  padding-right: 90px;
  padding-bottom: 90px;
  padding-top: 35px;
  border-radius: 15px;
}

.market__res {
  position: relative;
  width: 100%;
  height: 0;
}

.market__images {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 682px;
  height: 80px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

/* Адаптація */
@media (max-width: 768px) {
  .market__images {
    width: 180px;
    top: -60px;
  }
}

.results__icon svg {
  background-color: #E7E7F7;
  padding: 15px;
  width: 60px;
  height: 60px;
  border-radius: 55px;
}

.results__tag {
  display: inline-block;
  background-color: #dbe3ff;
  color: #000;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  position: relative;
  top: -35px;
  z-index: 1;
}

.results__title {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
}

.results__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.results__item {
  background-color: #fff;
  color: #000;
  width: calc(33.333% - 13.33px);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  min-height: 150px;
  box-sizing: border-box;
  text-align: start;
  height: 180px;
}

.results__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.results__text
 {
    font-size: 24px;
    font-weight: 500;
    text-align: start;
}
.pricing-card__limit svg{
    width: 50px;
}

.results__item--image {
  padding: 0;
  background: none;
  box-shadow: none;
}

.results__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Адаптивність */
@media (max-width: 991px) {
  .results__item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .results__item {
    width: 100%;
  }
}

.pricing-section {
  padding: 160px 20px 60px;
  background-image:
    url('cloud.png'),
    linear-gradient(180deg, #EDF0F6 0%, #566BFE 50.05%);
  background-repeat: no-repeat, no-repeat;
  background-position: center -100px, center;
  background-size: 100% 750px, 100% 100%;
  background-attachment: fixed, scroll;
}



.pricing-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.rs--m {
  margin-left: 90px;
}

.pricing-section__title {
  color: #040CAD;
  text-align: center;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.16px;
  display: flex;
  width: 202px;
  flex-direction: column;
  justify-content: center;
  border-radius: 1000px;
  background: #DAE0F7;
  /* padding-bottom: 65px; */
  margin: 0px auto;
  margin-bottom: 65px;
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Цінові блоки */
.pricing-section__cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 590px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  text-align: start;
  position: relative;
}

.pricing-card--highlighted {
  border-radius: 25px;
  background: #040CAD;
  position: relative;
}

.pricing-card__title {
  color: #FFF;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.24px;
  text-align: start;
  margin-bottom: 45px;
}

.pricing-card__price {
  color: #FFF;
  font-family: Onest;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 43.75% */
  letter-spacing: -0.64px;
  text-align: start;
  margin-bottom: 35px;
}

.pricing-card__image {
  object-fit: contain;
  margin-bottom: 20px;
  position: absolute;
  width: 318px;
  height: 212px;
  aspect-ratio: 3 / 2;
  top: -50px;
  right: -45px;
}

.pricing-card__images {
  object-fit: contain;
  margin-bottom: 20px;
  position: absolute;
  width: 307px;
  height: 212px;
  aspect-ratio: 307 / 212;
  top: -70px;
  right: 5px;
}

.pricing-card__description {
  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: var(--Static-Title-Medium-Line-Height, 24px);
  /* 133.333% */
  text-align: start;
  margin-bottom: 20px;
}

.pricing-card__description strong {
  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--Static-Title-Medium-Line-Height, 24px);

}

.pricing-card__limit {
  /* font-size: 14px; */
  /* font-weight: 500; */
  /* margin-top: 10px; */
  display: flex;
  padding-bottom: 5px;
  gap: 18px;
  text-align: start;
  align-items: center;
}

.bottom---fmx {
  color: #FFF;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: 18px;
  letter-spacing: -0.18px;
}

.bottom---fmx strong {
  color: #FFF;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  /* 100% */
  letter-spacing: -0.18px;
}

.pricing-card__footer {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.pricing-card__avatars img {
  width: 77.536px;
  height: 77.536px;
  border-radius: 50%;
  margin-right: -8px;
  border: 2px solid #fff;
}

.pricing-card__avatars img:nth-child(2) {
  /* margin-right: 25px; */
  position: relative;
  right: 15px;
}

.pricing-card__avatars img:nth-child(3) {
  position: relative;
  right: 25px;
}

.pricing-card__companies {
  font-size: 14px;
  font-weight: bold;
}

/* Авторська частина */
.author-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
}

.pricing-card__comp {
  color: #060738;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.18px;
}

.pricing-card__comp strong {
  color: #566BFE;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  /* 100% */
  letter-spacing: -0.18px;
}

.author-section__info {
  flex: 1 1 400px;
}

.author-section__tag {
  background: #ffffffaa;
  color: #000;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 10px;
}

.author-section__name {
  font-size: 28px;
  margin-bottom: 20px;
}

.author-section__facts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.author-section__facts li
 {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 200;
    line-height: 24px;
    align-items: start;
}

.li--line strong {

  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.author-section__image-wrapper {
  flex: 1 1 600px;
  text-align: center;
  display: flex;
}

.author-section__image {
  width: 440px;
  height: 534px;
  aspect-ratio: 103/125;
}

.author-section__partners {
  margin-top: 110px;
}

.author-section__partners img {
  height: 40px;
  margin: 10px;
}

.lm--img {
  /* padding-bottom: 100px; */
  margin-bottom: 100px !important;
  margin-top: 100px !important;
}

.author-section__button {
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Адаптивність */
@media (max-width: 768px) {
  .pricing-section__cards {
    flex-direction: column;
    align-items: center;
  }

  .author-section {
    flex-direction: column;
    text-align: center;
  }

  .author-section__info,
  .author-section__image-wrapper {
    flex: 1 1 100%;
  }
}

.cta-section {
  background: #edf0f6;
  text-align: center;
  /* padding: 60px 20px; */
  position: relative;
  padding-bottom: 60px;
  padding-top: 10px;
}

.market__res--cta {
  position: relative;
  width: 100%;
  height: 0;
}

.market__images_cta {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 682px;
  height: 80px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.pricing-card__tm {
  color: #060738;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 116.667% */
  letter-spacing: -0.24px;
  margin-bottom: 48px;
}

.pricing-card__price_n {
  color: #566BFE;
  font-family: Onest;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 43.75% */
  letter-spacing: -0.64px;
  margin-bottom: 35px;
}

.pricing-card__description__uif {
  color: rgba(5, 4, 78, 0.60);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--Static-Title-Medium-Line-Height, 24px);
  /* 133.333% */
}







/* Адаптація */
@media (max-width: 768px) {
  .market__images_cta {
    width: 180px;
    top: -60px;
  }
}

.cta-section__container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section__title {
  color: #05044E;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--Static-Display-Medium-Line-Height, 52px);
  padding-bottom: 25px;
}

.cta-section__description {
  color: rgba(5, 4, 78, 0.60);
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--Static-Title-Medium-Line-Height, 24px);
  /* 133.333% */
  padding-bottom: 35px;
  max-width: 450px;
  margin: 0px auto;
}

.cta-section__button {
  display: inline-block;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-section__description strong {
  color: #05044E;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--Static-Title-Medium-Line-Height, 24px);
}

.cta-section__button span {
  margin-left: 10px;
  font-size: 18px;
}

.cta-section__note {
  font-size: 14px;
  margin-top: 20px;
  color: #666;
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
}

.footer {
  background: #040CAD;
  color: #fff;
  padding: 40px 20px 20px;
  border-radius: 25px;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logos img {
  max-height: 40px;
  margin-right: 20px;
}

.footer__nav-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer__logos {
  display: flex;
  gap: 80px;
  /* align-items: center; */
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infest--rows {
  max-width: 1200px;
  margin: 0px auto;
  position: relative;
}

.infest--rows img {
  max-width: 1200px;
  position: absolute;
  top: -90px;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.80);
  text-align: right;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  /* 171.429% */
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__phone {
  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 127.615%;
  /* 30.628px */
  padding-bottom: 20px;
}

.footer__email {
  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 127.615%;
}

.footer__bottom {
  text-align: start;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.40);
  leading-trim: both;
  text-edge: cap;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 1200px;
  margin: 0px auto;
}

/* Адаптивність */
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__logos img {
    margin: 0 10px;
  }

  .footer__nav,
  .footer__contact {
    margin-top: 20px;
  }
}

.how-it-works {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
  padding-bottom: 90px;
}

.how-it-works__label {
  flex: 0 0 auto;
  background-color: #DAE0F7;
  padding: 10px 20px;
  border-radius: 20px;
  color: #040CAD;
  text-align: center;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.16px;
  height: fit-content;
}

.how-it-works__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex: 1;
}

.how-it-works__card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 calc(33.333% - 14px);
  min-width: 240px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.how-it-works__card--image {
  padding: 0;
  overflow: hidden;
}

.how-it-works__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.how-it-works__card-title {
  color: #060738;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: flex;
  /* justify-content: space-around; */
  gap: 10px;
  padding-bottom: 37px;
}

.how-it-works__card-text {
  color: #060738;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 116.667% */
  letter-spacing: -0.24px;
  text-align: start;
}

/* Адаптивність */
@media (max-width: 991px) {
  .how-it-works__card {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .how-it-works {
    flex-direction: column;
  }

  .how-it-works__cards {
    flex-direction: column;
  }

  .how-it-works__card {
    flex: 1 1 100%;
  }
}

@media (min-width: 360px) and (max-width: 1000px) {

  html,
  body {
    max-width: 100%;
    /*overflow-x: hidden;*/
    margin: 0;
    padding: 0;
  }

  .header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header__burger-line {
    height: 2px;
    width: 35px;
    background: white;
    border-radius: 2px;
  }

  .hero__titles {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
    padding-top: 50px;
    padding-bottom: 22px;
  }

  .hero__sb {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 100;
    line-height: var(--Static-Title-Medium-Line-Height, 24px);
    max-width: 678px;
    margin: 0px auto;
    padding-bottom: 205px;
  }

  .hero__cta {
    flex-direction: column;
    height: fit-content;
    width: 100%;
  }

  .defence {
    padding: 4rem 1.5rem;
    background-size: contain;
    text-align: center;
    background-size: cover;
  }

  .defence__grid {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }

  .fk---mrs {
    display: flex;
    gap: 36px;
    justify-content: center;
    flex-direction: column;
  }

  .line--m {
    width: 100px;
    height: 2px;
    background-color: #DAE0F7;
    margin: 0px auto;
  }

  .rs--m {
    margin-left: 0px;
    text-align: center;
  }

  .results__container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, #EDF0F6 0%, #566BFE 0.01%);
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 35px;
    border-radius: 15px;
  }

  .author-section__image-wrapper {
    flex: 1 1 600px;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  .infest--rows img {
    max-width: 360px;
    position: absolute;
    top: -90px;
  }

  .footer__logos {
    display: flex;
    gap: 20px;
    /* align-items: center; */
    flex-direction: column;
  }

  .header__btn {
    display: none;
  }

  .defence__card {
    width: 100%;
  }

  .wrappp__steps li svg {
    width: 320px;
  }

  .defence__message {
    width: 100%;
  }

  .pricing-card__images {
    object-fit: contain;
    margin-bottom: 20px;
    position: revert;
    width: 307px;
    height: 212px;
    aspect-ratio: 307 / 212;
    top: -70px;
    right: 5px;
  }

  .pricing-card__image {
    object-fit: contain;
    margin-bottom: 20px;
    position: revert;
    width: 318px;
    height: 212px;
    aspect-ratio: 3 / 2;
    top: -50px;
    right: -45px;
  }

  .li--line {
        text-align: start;
        max-width: 300px;
    }

  .lith {
    color: rgba(255, 255, 255, 0.60);
    font-feature-settings: 'case' on, 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
  }

  .hero__button svg {
    width: 200px;
    /* height: 50px; */
  }

  .market__image {
    width: 280px;
    top: -90px;
    display: none;
  }

  .market__title {
    font-size: 18px;
    line-height: 24px;
    width: 100%;
  }

  .market__desc {
    font-size: 16px;
  }

  .market__footer {
    font-size: 16px;
  }

  .defence__title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
  }

  .defence__title {
    padding-bottom: 25px;
  }

  .defence__message-text strong {
    color: #FFF;
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: -0.24px;
  }

  .defence__message-text {
        font-size: 18px;
        padding-top: 65px;
    }

  .defence__shield {
    display: none;
  }

  .defence__container {
    padding-bottom: 40px;
  }

  .wrappp__title {
    font-size: 22px;
    line-height: 30px;
  }

  .wrappp__title strong {
    color: #05044E;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
  }

  .how-it-works__label {
    flex: 0 0 auto;
    background-color: #DAE0F7;
    padding: 10px 20px;
    border-radius: 20px;
    color: #040CAD;
    text-align: center;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
    height: fit-content;
    margin: 0px auto;
  }

  .how-it-works__card-title {
    color: #060738;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    display: flex;
    /* justify-content: space-around; */
    gap: 10px;
    padding-bottom: 37px;
    text-align: start;
  }

  .how-it-works__card-text {
    color: #060738;
    font-family: Onest;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.24px;
    text-align: start;
  }

  .wrappp__structure-title {
    color: #05044E;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 3rem;
  }

  .wrappp__structure-title span {
    color: #05044E;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
  }

  .wrappp__module-heading {
    text-align: center;
  }

  .results {
    padding: 0px;
    border-radius: 20px;
    color: #fff;
  }

  .market__images {
    width: 280px;
    top: -30px;
  }

  .results__text {
    font-size: 16px;
    font-weight: 500;
    text-align: start;
  }

  .pricing-section {
    padding: 20px;
  /*background: linear-gradient(180deg, #EDF0F6 0%, #566BFE 50.05%);*/
    background-repeat: no-repeat, no-repeat;
    background-position: center -100px, center;
    background-size: contain;
    background-attachment: fixed, scroll;
  }

  .pricing-card__tm {

    font-size: 18px;
    margin-bottom: 8px;
  }

  .pricing-card__images {
    object-fit: contain;
    /* margin-bottom: 20px; */
    position: revert;
    width: 100%;
    /* height: 212px; */
    aspect-ratio: 307 / 212;
    top: -70px;
    right: 5px;
  }

  .pricing-card__price_n {
    color: #566BFE;
    font-family: Onest;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.64px;
    margin-bottom: 5px;
  }

  .pricing-card__avatars img {
    width: 47.536px;
    height: 47.536px;
    border-radius: 50%;
    margin-right: -8px;
    border: 2px solid #fff;
  }

  .pricing-card__image {
    object-fit: contain;
    margin-bottom: 20px;
    position: revert;
    width: 100%;
    height: 212px;
    aspect-ratio: 3 / 2;
    top: -50px;
    right: -45px;
  }

  .author-section__image-wrapper {
    flex: 1 1 600px;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
  }

  .author-section__partners {
    margin-top: 0px;
  }

  .lm--img {
    /* padding-bottom: 100px; */
    margin-bottom: 20px !important;
    margin-top: 20px !important;
  }

  .cta-section__title {
    color: #05044E;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    padding-bottom: 25px;
    padding-top: 30px;
  }

  .cta-section__description {
    font-size: 16px;
    max-width: 320px;
  }

  .market__images_cta {
    width: 280px;
    top: -30px;
    height: 30px;
  }

  .footer__bottom {
    text-align: center;
  }

  .author-section__image {
    width: 240px;
    height: 304px;
    aspect-ratio: 103 / 125;
    margin: 0px auto;
  }

  .author-section__image-wrapper {
    flex: 0px;
  }
  .infest--rows img {
        max-width: 360px;
        position: absolute;
        top: -40px;
        margin-left: 20px;
    }
    .cta-section__button svg{
            width: 200px;
    }
    .pricing-card__limit svg {
        width: 40px;
    }
    .pricing-card__title {
    color: #FFF;
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.24px;
    text-align: start;
    margin-bottom: 15px;
}
.pricing-card__price {
    color: #FFF;
    font-family: Onest;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.64px;
    text-align: start;
    margin-bottom: 5px;
}
.header.scrolled {
    background: #040cad !important;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    padding-bottom: 20px;
}
.footer__phone {
    color: #FFF !important;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 127.615%;
    padding-bottom: 20px;
    text-decoration: none;
}
.wrappp__steps{
display: none;
}
.wrappp {
    background: #EDF0F6;
    padding: 20px;
    text-align: center;
}
.itn___mob{
display: flex;
border-radius: 300px;
background: #FFF;
margin-bottom: 15px;
gap: 10px;
width: 340px;

}
.itn___mob p{
color: #05044E;
font-family: Onest;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 40px; /* 200% */
}
.itn___mob img{
width: 35px;
height: 35px;
}
.boottm{
margin-bottom: 35px;
}
.header.scrolled {
  background: #040cad;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  padding-bottom: 20px;
}

.header.scrolled .header__logo svg path {
  fill: #ffffff !important;
}

.header.scrolled .header__link,
.header.scrolled .header__btn {
  color: #ffffff;
}

.header.scrolled .header__btn {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

.header.scrolled .header__burger-line {
  background-color: #ffffff;
}
.header__link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.80);
    text-align: right;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
.defence__title strong {
    color: #05044E;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}
.wrappp__tag
 {
    font-size: 0.9rem;
    background: rgba(78, 101, 255, 0.1);
    color: #4e65ff;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
    margin-top: 40px;
}
.pricing-card__footer svg {
        width: 40px;
    }
    .pricing-card__comp {
    margin-left: 15px;
}
}




/* 


* {
  outline: 1px dashed red;
  position: relative;
}

*::before {
  content: attr(class);
  position: absolute;
  top: -1em;
  left: 0;
  background: yellow;
  color: black;
  font-size: 10px;
  padding: 2px;
  z-index: 9999;
} */