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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

.wrapper {
  max-width: 1338px;
  margin: 0 auto;
}

.section-padding {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 650px) {
  .section-padding {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.button-green-transparent {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #fff;
  border: 1.5px solid #0fedc8;
  border-radius: 8px;
  padding: 10px 16px;
  background: rgba(15, 237, 200, 0.12);
  cursor: pointer;
  display: inline-block;
  transition: all ease 0.4s;
}
.button-green-transparent:hover {
  background: rgba(15, 237, 200, 0.4);
  border-color: #0fedc8;
}
.button-green-transparent:focus {
  border-color: #0fedc8;
  background: rgba(15, 237, 200, 0.12);
}

.arr_link {
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.arr_link img {
  transition: all ease 0.6s;
}
.arr_link:hover img {
  transform: rotate(-45deg);
}

.button-green {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #000;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: "Urbanist", sans-serif;
  background: #0fedc8;
  border: none;
  cursor: pointer;
  display: inline-block;
  border: 1px solid #0fedc8;
  transition: all ease 0.4s;
}
.button-green:hover {
  background: #00d3b3;
  border-color: #00d3b3;
}
.button-green:focus {
  border-color: #028374;
  background: #028374;
}

.button-red-transparent {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #f14228;
  border: 1.5px solid #f14228;
  font-family: "Urbanist", sans-serif;
  border-radius: 8px;
  padding: 10px 16px;
  background: rgba(241, 66, 40, 0.12);
  cursor: pointer;
  display: inline-block;
  transition: all ease 0.4s;
}
.button-red-transparent:hover {
  background: rgba(241, 66, 40, 0.3);
  border-color: #f14228;
}
.button-red-transparent:focus {
  border-color: #c81a00;
  background: rgba(241, 66, 40, 0.12);
  color: #c81a00;
}

.kicker {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0a4065;
  margin-bottom: 34px;
  gap: 18px;
}
.kicker span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0a4065;
  color: transparent;
}

h2 {
  font-family: "Urbanist", sans-serif !important;
  font-weight: 600;
  font-size: 50px;
  line-height: 134%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
h2 {
  color: #000;
}

.heading_text_width_button {
  margin-bottom: 54px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.heading_text_width_button p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  margin-top: 18px;
  max-width: 700px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.section-bg-img {
  background-image: url(/wp-content/uploads/2026/07/bg-4-scaled.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .section-bg-img {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.section-bg-img .heading_text_width_button h2,
.section-bg-img .heading_text_width_button p {
  color: #fff;
}
.section-bg-img .kicker {
  color: #0fedc8;
}
.section-bg-img .kicker span {
  background: #0fedc8;
}

:where(figure) {
  margin: 0 !important;
}

body {
  font-family: "Inter", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: red;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(3, 25, 38, 0.13);
  border-bottom: 0.71px solid #323536;
  padding-top: 32px;
  padding-bottom: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media screen and (max-width: 840px) {
  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.site-header .site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .site-header__row ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}
@media screen and (max-width: 1212px) {
  .site-header .site-header__row ul {
    gap: 19px;
  }
}
.site-header .site-header__row ul a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 1212px) {
  .site-header .site-header__row ul a {
    font-size: 12px;
  }
}
.site-header .site-header__row .site-header__ctas {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .site-header .site-header__row .site-header__ctas {
    display: none;
  }
}
.site-header .site-header__row .site-header__ctas {
  gap: 10px;
}
.site-header .site-header__row .site-header__ctas a {
  font-size: 14px;
}
@media screen and (max-width: 1212px) {
  .site-header .site-header__row .site-header__ctas a {
    font-size: 10px;
    padding: 6px 11px;
  }
}
.site-header .site-header__row .burger {
  display: none;
  border: none;
  padding: 0;
  background: none;
}
@media screen and (max-width: 840px) {
  .site-header .site-header__row .burger {
    display: block;
  }
}

.site-header__logo {
  width: 402.27px;
}
@media screen and (max-width: 1305px) {
  .site-header__logo {
    width: 292px;
  }
}
@media screen and (max-width: 1000px) {
  .site-header__logo {
    width: 200px;
  }
}
@media screen and (max-width: 920px) {
  .site-header__logo {
    width: auto;
  }
}
@media screen and (max-width: 920px) {
  .site-header__logo {
    width: auto;
  }
}

@media screen and (max-width: 840px) {
  .site-header__nav {
    display: none;
  }
}

.site-footer {
  padding-top: 56px;
  padding-bottom: 32px;
  background: #f9f7f0;
}
.site-footer .site-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
@media screen and (max-width: 762px) {
  .site-footer .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.site-footer .site-footer__grid .site-footer__col-title {
  color: #000;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}
.site-footer .site-footer__grid ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.site-footer .site-footer__grid ul a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #727272;
}
.site-footer .site-footer_bottom {
  padding-top: 24px;
  border-top: 1px solid #c4c4c4;
  margin-top: 40px;
}
.site-footer .site-footer_bottom p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #000;
}

/* inter-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin_latin-ext-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/inter-v20-latin_latin-ext-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v20-latin_latin-ext-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v20-latin_latin-ext-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/urbanist-v18-latin_latin-ext-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-600 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/urbanist-v18-latin_latin-ext-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/urbanist-v18-latin_latin-ext-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.product-steps {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .product-steps {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.product-steps {
  background: #0a4065;
}
.product-steps .kicker {
  color: #0fedc8;
}
.product-steps .kicker span {
  background: #0fedc8;
}
.product-steps .h2 {
  color: #fff;
}
.product-steps .product-steps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}
.product-steps .product-steps-header p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 684px;
  margin-top: 14px;
}
.product-steps .product-steps-text {
  margin-top: 40px;
  max-width: 763px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #fff;
  margin-bottom: 90px;
}
.product-steps .product-steps-text p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
}
.product-steps .product-steps-text p a {
  color: #0fedc8;
}

.gr-grid div {
  background: #fff;
  border-top: 6px solid #0fedc8;
  border-radius: 12px;
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.gr-grid div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #064b75 0%, #08799b 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gr-grid div img {
  width: 44px;
  height: 44px;
}
.gr-grid div h3 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 132%;
  letter-spacing: -0.01em;
  color: #000;
  margin-top: 24px;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}
.gr-grid div p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  color: #1a1a1a;
  transition: color 0.3s ease;
}
.gr-grid div:hover::before {
  opacity: 1;
}
.gr-grid div:hover h3 {
  color: #fff;
}
.gr-grid div:hover p {
  color: #f5f5f5;
}

.heading_text_width_button-w h2,
.heading_text_width_button-w p {
  color: #fff;
}
.heading_text_width_button-w h2 {
  max-width: 829px;
}

.section-cards-and-list {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .section-cards-and-list {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.section-cards-and-list {
  background: #f9f7f0;
}
.section-cards-and-list .section-cards-and-list__description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #272727;
  max-width: 652px;
  margin-top: 18px;
}
.section-cards-and-list .section-cards-and-list__grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.section-cards-and-list .section-cards-and-list__left-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.section-cards-and-list .section-cards-and-list__left-list .section-cards-and-list__list-item {
  display: flex;
  align-items: center;
  background: #fff;
  gap: 18px;
  border-radius: 8px;
  padding: 24px 26px;
}
.section-cards-and-list .section-cards-and-list__left-list .section-cards-and-list__list-item .section-cards-and-list__list-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
}
.section-cards-and-list .section-cards-and-list__left-list .section-cards-and-list__list-item img {
  width: 44px;
  height: 44px;
}
.section-cards-and-list h3 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 131%;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 48px;
}
.section-cards-and-list .section-cards-and-list__card-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-cards-and-list .section-cards-and-list__card-list .section-cards-and-list__card-list-item {
  position: relative;
  padding-left: 28px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
}
.section-cards-and-list .section-cards-and-list__card-list .section-cards-and-list__card-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0a4065;
}
.section-cards-and-list .section-cards-and-list__right-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.section-cards-and-list .section-cards-and-list__right-card .section-cards-and-list__card-note {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
}

.eight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.eight-grid .eight-grid__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 12px;
  padding: 24px 18px;
  background: #fff;
  min-height: 264px;
}
.eight-grid .eight-grid__card .eight-grid__card-header {
  display: flex;
  align-items: center;
  gap: 18px;
}
.eight-grid .eight-grid__card .eight-grid__card-header img {
  width: 44px;
  height: 44px;
}
.eight-grid .eight-grid__card .eight-grid__card-header .eight-grid__card-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 132%;
  letter-spacing: -0.01em;
  color: #000;
}
.eight-grid .eight-grid__card .eight-grid__card-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: #000;
}

.product-deployment__grid_desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: #000;
}

.product-deployment__tech-list_bottom {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #000;
  margin-top: 34px;
}
.product-deployment__tech-list_bottom a {
  color: #0a4065;
}

.product-grid-4 {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .product-grid-4 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.product-grid-4 {
  background: #f9f7f0;
}
.product-grid-4 .heading_text_width_button p {
  color: #272727;
}
.product-grid-4 .product-grid-4-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-grid-4 .product-grid-4-cards .product-grid-4-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
}
.product-grid-4 .product-grid-4-cards .product-grid-4-card img {
  width: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  height: 50px !important;
  margin-bottom: 14px !important;
}
.product-grid-4 .product-grid-4-cards .product-grid-4-card .product-grid-4-cards-span-h3 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 121%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .product-grid-4 .product-grid-4-cards .product-grid-4-card .product-grid-4-cards-span-h3 {
    font-size: 26px;
    line-height: 131%;
  }
}
.product-grid-4 .product-grid-4-cards .product-grid-4-card .product-grid-4-cards-span-h3 {
  color: #000;
  margin-bottom: 16px;
}
.product-grid-4 .product-grid-4-cards .product-grid-4-card .product-grid-4-cards-span-p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: #1a1a1a;
}
.product-grid-4 .product-grid-4-last-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.01em;
  margin-top: 34px;
  color: #000;
}

.editor-styles-wrapper .product-grid-4-card .product-grid-4-cards-span-h3 a::after {
  display: none !important;
}

.cont-1 {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .cont-1 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.cont-1 .cont-1-block {
  display: flex;
  gap: 130px;
}
.cont-1 .cont-1-block .cont-1-block-title {
  flex: 638;
}
.cont-1 .cont-1-block .cont-1-block-grid {
  flex: 497;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cont-1 .cont-1-block .cont-1-block-grid div {
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.14);
}
.cont-1 .cont-1-block .cont-1-block-grid div p {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #fff;
}
.cont-1 .cont-1-block .cont-1-block-grid div img {
  width: 44px;
  height: 44px;
  min-width: 44px;
}
.cont-1 .h2 {
  color: #fff;
  margin-bottom: 20px;
}
.cont-1 .cont-1-block-title p {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 131%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 34px;
}
.cont-1 .cont-1-block-title p a {
  color: #0fedc8;
}
.cont-1 .cont-1-block-title p .button-green {
  color: #000;
  margin-bottom: 0;
}

.product-dubble-grid__stats-grid-2 {
  margin-top: 54px;
}

.eight-grid__card {
  position: relative;
}
.eight-grid__card .eight-grid__card-title a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.editor-styles-wrapper .eight-grid__card .eight-grid__card-title a::after {
  display: none !important;
}

.table-section {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .table-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.table-section {
  background: #f9f7f0;
}
.table-section .table-section__description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #272727;
  margin-top: 18px;
}
.table-section .table-section__container {
  border-radius: 12px;
  padding: 50px;
  background-image: url("/wp-content/uploads/2026/07/Section-container.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 54px;
}

.table-section__container-div {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
}

.table-section__note {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #fff;
}
.table-section__note a {
  color: #0fedc8;
}

.comparison-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.comparison-table .comparison-table__row {
  display: table-row;
}
.comparison-table .comparison-table__row:last-child .comparison-table__cell {
  border-bottom: none;
}
.comparison-table .comparison-table__head-cell {
  display: table-cell;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #fff;
  text-align: left;
  padding: 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.comparison-table .comparison-table__head-cell:first-child {
  padding-left: 20px;
}
.comparison-table .comparison-table__head-cell:last-child {
  border-right: none;
  padding-right: 20px;
}
.comparison-table .comparison-table__cell {
  display: table-cell;
  margin: 0;
  padding: 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  vertical-align: top;
}
.comparison-table .comparison-table__cell:first-child {
  padding-left: 20px;
}
.comparison-table .comparison-table__cell:last-child {
  border-right: none;
  padding-right: 20px;
}
.comparison-table .comparison-table__cell--question {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  width: 33%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.comparison-table .comparison-table__cell--info {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #fff;
  width: 34%;
  background: rgba(255, 255, 255, 0.08);
}
.comparison-table .comparison-table__cell--adpal {
  width: 33%;
  background: rgba(255, 255, 255, 0.08);
}
.comparison-table .comparison-table__adpal-flex {
  display: flex;
  align-items: center;
  gap: 12px;
}
.comparison-table .comparison-table__check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
}
.comparison-table .comparison-table__check img {
  display: block;
  width: 100%;
  height: 100%;
}
.comparison-table .comparison-table__check-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #fff;
}

.comparison-table__row--header {
  background: rgba(255, 255, 255, 0.14);
}

.product-grid-4-card {
  position: relative;
}
.product-grid-4-card .product-grid-4-cards-span-h3 a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.cont-2 {
  background: #f9f7f0;
}
.cont-2 .cont-1-block {
  border-radius: 24px;
  padding: 50px 40px;
  background-image: url("/wp-content/uploads/2026/07/bg_2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  gap: 50px;
}
.cont-2 .cont-1-block .cont-1-block-title p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
}
.cont-2 .kicker {
  color: #0fedc8 !important;
  margin-bottom: 24px !important;
}
.cont-2 .kicker span {
  background-color: #0fedc8;
}

.use-cases-hub {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .use-cases-hub {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.use-cases-hub {
  background: #f9f7f0;
}
.use-cases-hub .use-cases-hub__description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 16px;
}
.use-cases-hub .use-cases-hub__tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.use-cases-hub .use-cases-hub__tabs button {
  color: #000;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  padding: 5px 16px;
  background: rgba(15, 237, 200, 0.12);
  border: 1px solid #0fedc8;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
}
.use-cases-hub .use-cases-hub__tabs button.active {
  background: rgba(15, 237, 200, 0.2);
  color: #0a4065;
  font-weight: 500;
  padding-left: 30px;
}
.use-cases-hub .use-cases-hub__tabs button.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #0a4065;
  border-radius: 100%;
}
.use-cases-hub .use-cases-hub__category-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 106%;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: #000;
}
.use-cases-hub .use-cases-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 24px;
}
.use-cases-hub .use-cases-hub__grid .use-cases-hub__card {
  border-radius: 12px;
  padding: 24px;
  background: #fff;
}
.use-cases-hub .use-cases-hub__grid .use-cases-hub__card .use-cases-hub__card-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 131%;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 20px;
}
.use-cases-hub .use-cases-hub__grid .use-cases-hub__card .use-cases-hub__card-meta-cont {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.use-cases-hub .use-cases-hub__grid .use-cases-hub__card .use-cases-hub__card-meta {
  display: flex;
  gap: 12px;
}
.use-cases-hub .use-cases-hub__grid .use-cases-hub__card .use-cases-hub__card-meta .use-cases-hub__card-label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 167%;
  color: #fff;
  width: 77px;
  min-width: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 27px;
  border-radius: 4px;
}
.use-cases-hub .use-cases-hub__grid .use-cases-hub__card .use-cases-hub__card-meta .use-cases-hub__card-value {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #272727;
}

.use-cases-hub * {
  font-style: normal !important;
}

.blue-section {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .blue-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.blue-section {
  background: #f9f7f0;
}
.blue-section .blue-section-cont {
  background-image: url("/wp-content/uploads/2026/07/bg_2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  padding: 50px;
}
.blue-section .blue-section-cont .kicker {
  color: #0fedc8;
  margin-bottom: 24px;
}
.blue-section .blue-section-cont .kicker span {
  background-color: #0fedc8;
}
.blue-section .blue-section-cont h2 {
  color: #f9f7f0;
}
.blue-section .blue-section-cont p {
  color: #e6e6e6;
  max-width: 100% !important;
}
.blue-section .blue-section-cont .heading_text_width_button {
  margin: 0;
}

.grid-four {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .grid-four {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.grid-four {
  background: #f9f7f0;
}
.grid-four .grid-four-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #272727;
}
.grid-four h2 {
  margin-bottom: 18px;
}
.grid-four .grid-four-cont {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-four .grid-four-cont .grid-four-cont-item {
  border-radius: 12px;
  padding: 26px;
  background: #fff;
  display: flex;
  gap: 18px;
  min-height: 139px;
}
.grid-four .grid-four-cont .grid-four-cont-item p {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.01em;
  font-family: "Urbanist", sans-serif;
  color: #000;
}
.grid-four .grid-four-cont .grid-four-cont-item img {
  width: 44px;
  height: 44px;
  min-width: 44px;
  max-width: 44px;
}
.grid-four .grid-four-cont .grid-four-cont-item h3 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 131%;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 16px;
}
.grid-four .grid-four-last-cont {
  border-left: 4px solid #0fedc8;
  border-radius: 12px;
  padding: 16px;
  background: #ede8d9;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 34px;
}
.grid-four .grid-four-last-cont .grid-four-last-contp1 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
}
.grid-four .grid-four-last-cont .grid-four-last-contp2 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: #404040;
}
.grid-four .grid-four-metrics {
  background: #ede8d9;
  border-radius: 12px;
  padding: 24px;
  margin-top: 34px;
}
.grid-four .grid-four-metrics h3 {
  color: #000;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 131%;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.grid-four .grid-four-metrics .grid-four-metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-four .grid-four-metrics .grid-four-metrics__grid div {
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
}
.grid-four .grid-four-metrics .grid-four-metrics__grid div img {
  width: 30px;
  height: 30px;
  max-width: 30px;
  min-width: 30px;
}
.grid-four .grid-four-metrics .grid-four-metrics__grid div p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: #000;
}
.grid-four .grid-four-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
  gap: 24px;
}
.grid-four .grid-four-notes div {
  border-radius: 12px;
  padding: 16px;
  background: #ede8d9;
}
.grid-four .grid-four-notes div .grid-four-notes__title {
  color: #000;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.grid-four .grid-four-notes div .grid-four-notes__desc {
  color: #404040;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
}

.text-section {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .text-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.text-section {
  background: #f9f7f0;
}
.text-section .text-section-cont {
  margin-top: 34px;
  border-radius: 24px;
  padding: 50px;
  background-image: url("/wp-content/uploads/2026/07/bg-4-scaled.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.text-section .text-section-cont p {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
.text-section .text-sectionp1 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #272727;
  margin-top: 18px;
}
.text-section .text-sectionp2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.01em;
  margin-top: 34px;
  color: #000;
}

.section-gal {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .section-gal {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.section-gal {
  background: #f9f7f0;
}
.section-gal .section-gal__description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
}
.section-gal .section-gal__content {
  display: flex;
  gap: 44px;
}
.section-gal .section-gal__content .section-gal__grid {
  flex: 680;
  border-radius: 12px;
  padding: 8px;
  background: #fff;
}
.section-gal .section-gal__content .section-gal__grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}
.section-gal .section-gal__content .section-gal__grid div:not(:last-child) {
  border-bottom: 1px solid #f5f5f5;
}
.section-gal .section-gal__content .section-gal__grid div p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #000;
  text-transform: none;
}
.section-gal .section-gal__content .section-gal__summary-box {
  flex: 608;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background-image: url("/wp-content/uploads/2026/07/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 27px;
  justify-content: space-between;
  align-items: flex-start;
}
.section-gal .section-gal__content .section-gal__summary-box p {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 121%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .section-gal .section-gal__content .section-gal__summary-box p {
    font-size: 26px;
    line-height: 131%;
  }
}
.section-gal .section-gal__content .section-gal__summary-box p {
  color: #fff;
}
.section-gal .section-gal__content .section-gal__summary-box .section-gal__summary-link {
  padding: 14px 48px;
}
.section-gal .section-gal__footer-note {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  margin-top: 18px;
  color: #000;
}

.section-zap {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .section-zap {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.section-zap {
  background: #f9f7f0;
}
.section-zap .section-zap__inner {
  display: flex;
  gap: 34px;
}
.section-zap .section-zap__inner .section-zap__left {
  flex: 681;
}
.section-zap .section-zap__inner .section-zap__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 624;
}
.section-zap .section-zap__inner .section-zap__right .section-zap__quote-text {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 121%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .section-zap .section-zap__inner .section-zap__right .section-zap__quote-text {
    font-size: 26px;
    line-height: 131%;
  }
}
.section-zap .section-zap__inner .section-zap__right .section-zap__quote-text {
  color: #000;
  margin-bottom: 14px;
  line-height: 153%;
}
.section-zap .section-zap__inner .section-zap__right .section-zap__quote-author {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000;
}
.section-zap .section-zap__inner .section-zap__right img {
  width: 51px;
  height: 51px;
  margin-bottom: 23px;
}
.section-zap .section-zap__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}
.section-zap .section-zap__stats div {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 12px;
  padding: 30px 20px;
  background: #0a4065;
}
.section-zap .section-zap__stats div p:first-child {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 77%;
  letter-spacing: -0.01em;
  color: #0fedc8;
}
.section-zap .section-zap__stats div p:last-child {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: #f5f5f5;
}
.section-zap .section-zap__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
.section-zap .kicker {
  margin-bottom: 0;
}

.section-arr-grid h2 {
  color: #fff;
  margin-bottom: 34px;
}
.section-arr-grid .section-arr-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.section-arr-grid .section-arr-grid__grid .section-arr-grid__card {
  border-top: 4px solid #0fedc8;
  border-radius: 12px;
  padding: 24px;
  background: linear-gradient(135deg, #064b75 0%, #08799b 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 73px;
}
.section-arr-grid .section-arr-grid__grid .section-arr-grid__card .arr_link {
  color: #fff;
}
.section-arr-grid .section-arr-grid__grid .section-arr-grid__card .section-arr-grid__card-tag {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0fedc8;
  margin-bottom: 12px;
}
.section-arr-grid .section-arr-grid__grid .section-arr-grid__card h3 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 132%;
  letter-spacing: -0.01em;
  color: #fff;
}
.section-arr-grid .section-arr-grid__grid .section-arr-grid__card .section-arr-grid__card-desc {
  margin-top: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #e6e6e6;
}
.section-arr-grid .section-arr-grid__grid .section-arr-grid__card:has(.section-arr-grid__card-desc) {
  background: rgba(255, 255, 255, 0.08);
  border: none;
}
.section-arr-grid .section-arr-grid__inner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.last-section {
  background-image: url("/wp-content/uploads/2026/07/Container.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .last-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.last-section h2 {
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.last-section .last-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.last-section .last-section__description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #f5f5f5;
  text-align: center;
}
.last-section .last-section__features {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 21px;
}
.last-section .last-section__features div {
  display: flex;
  align-items: center;
  gap: 13px;
}
.last-section .last-section__features div p {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 124%;
  color: #fff;
}
.last-section .last-section__features div img {
  width: 16px;
  height: 16px;
}
.last-section .last-section__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
}
.last-section .last-section__actions a {
  min-width: 200px;
  text-align: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.section-all-text {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .section-all-text {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.section-all-text {
  background: #f9f7f0;
}
.section-all-text .section-all-text__row {
  display: flex;
  align-items: center;
  gap: 34px;
}
.section-all-text .section-all-text__row .section-all-text__col-left {
  flex: 1;
}
.section-all-text .section-all-text__row .section-all-text__col-left p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  margin-top: 18px;
  color: #272727;
}
.section-all-text .section-all-text__row .section-all-text__col-right {
  flex: 1;
}
.section-all-text .section-all-text__row .section-all-text__col-right div {
  border-radius: 12px;
  padding: 24px;
  background: #ede8d9;
}
.section-all-text .section-all-text__row .section-all-text__col-right div p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: #404040;
}

.section-blue-gal1 {
  background: #f9f7f0;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .section-blue-gal1 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.section-blue-gal1 .section-blue-gal1__description {
  color: #272727;
}
.section-blue-gal1 .section-blue-gal1__header {
  margin-bottom: 34px;
}
.section-blue-gal1 .section-blue-gal1__content {
  border-radius: 24px;
  background-image: url("/wp-content/uploads/2026/07/Section-container.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
}
.section-blue-gal1 .section-blue-gal1__content .section-blue-gal1__row {
  max-width: 867px;
  margin: 0 auto;
  border: 1px solid rgba(3, 25, 38, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 47px 29px 29px 29px;
}
.section-blue-gal1 .section-blue-gal1__content .section-blue-gal1__row .section-blue-gal1__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-blue-gal1 .section-blue-gal1__content .section-blue-gal1__row .section-blue-gal1__grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 13px 10px;
}
.section-blue-gal1 .section-blue-gal1__content .section-blue-gal1__row .section-blue-gal1__grid div p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}
.section-blue-gal1 .section-blue-gal1__content .section-blue-gal1__row .section-blue-gal1__grid div img {
  width: 24px;
  height: 24px;
}
.section-blue-gal1 .section-blue-gal1__content .section-blue-gal1__row .section-blue-gal1__summary-box {
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  justify-content: space-between;
  margin-top: 24px;
}
.section-blue-gal1 .section-blue-gal1__content .section-blue-gal1__row .section-blue-gal1__summary-box p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: #fff;
}
.section-blue-gal1 .section-blue-gal1__content .section-blue-gal1__row .section-blue-gal1__summary-box a {
  min-width: 197px;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
}
.section-blue-gal1 .section-blue-gal1__content .section-blue-gal1__col-right {
  max-width: 867px;
  margin: 0 auto;
  margin-top: 34px;
  border: 1px solid #0fedc8;
  border-radius: 12px;
  padding: 24px;
  background: rgba(15, 237, 200, 0.12);
}
.section-blue-gal1 .section-blue-gal1__content .section-blue-gal1__col-right .section-blue-gal1__callout-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 12px;
}
.section-blue-gal1 .section-blue-gal1__content .section-blue-gal1__col-right .section-blue-gal1__callout-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: #f5f5f5;
}

.section-csses-steps {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .section-csses-steps {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.section-csses-steps {
  background: #f9f7f0;
}
.section-csses-steps .section-csses-steps__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
.section-csses-steps .section-csses-steps__content h2 {
  margin-bottom: 18px;
  font-family: "Urbanist", sans-serif;
}
.section-csses-steps .section-csses-steps__content .section-csses-steps__left p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #272727;
}
.section-csses-steps .section-csses-steps__content .section-csses-steps__right {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.section-csses-steps .section-csses-steps__content .section-csses-steps__right .arr_link {
  justify-content: flex-end;
}
.section-csses-steps .section-csses-steps__content .section-csses-steps__right .section-csses-steps__list {
  display: flex;
  flex-direction: column;
  gap: 38px;
  position: relative;
}
.section-csses-steps .section-csses-steps__content .section-csses-steps__right .section-csses-steps__list::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 2px;
  background-color: #e6e6e6;
  transform: translateX(-50%);
  z-index: 1;
}
.section-csses-steps .section-csses-steps__content .section-csses-steps__right .section-csses-steps__list .section-csses-steps__item {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.section-csses-steps .section-csses-steps__content .section-csses-steps__right .section-csses-steps__list .section-csses-steps__item .section-csses-steps__step-num {
  background: #0fedc8;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #0a4065;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.section-csses-steps .section-csses-steps__content .section-csses-steps__right .section-csses-steps__list .section-csses-steps__item .section-csses-steps__step-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #000;
  padding: 16px 20px;
  border-radius: 12px;
  background: #fff;
  text-transform: none;
  margin: 0;
  position: relative;
  z-index: 2;
  width: 100%;
}

.flex-table {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .flex-table {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.flex-table {
  background: #f9f7f0;
}
.flex-table .flex-table__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.flex-table .flex-table__content {
  background-image: url("/wp-content/uploads/2026/07/Section-container.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  padding: 73px 50px 93px 50px;
}
.flex-table .flex-table__content .flex-table__table {
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.14);
}
.flex-table .flex-table__content .flex-table__table .flex-table__table_cont {
  border-radius: 8px;
  overflow: hidden;
}
.flex-table .flex-table__content .flex-table__table .flex-table__table_cont .flex-table__row {
  display: flex;
  align-items: center;
}
.flex-table .flex-table__content .flex-table__table .flex-table__table_cont .flex-table__row p:nth-child(1) {
  flex: 234;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.flex-table .flex-table__content .flex-table__table .flex-table__table_cont .flex-table__row p:nth-child(2) {
  flex: 320;
  text-align: center;
}
.flex-table .flex-table__content .flex-table__table .flex-table__table_cont .flex-table__row p:nth-child(2) span {
  font-weight: 500;
  font-size: 12px;
  background: rgba(15, 237, 200, 0.2);
  border-radius: 20px;
  padding: 4px 10px;
  display: inline-block;
  min-width: 90px;
  text-transform: uppercase !important;
}
.flex-table .flex-table__content .flex-table__table .flex-table__table_cont .flex-table__row p:nth-child(3) {
  flex: 630;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
}
.flex-table .flex-table__content .flex-table__table .flex-table__table_cont .flex-table__row p {
  padding: 11px 12px;
  color: #fff;
}
.flex-table .flex-table__content .flex-table__table .flex-table__table_cont .flex-table__row--header {
  background: rgba(255, 255, 255, 0.14);
}
.flex-table .flex-table__content .flex-table__table .flex-table__table_cont .flex-table__row--header p {
  font-family: "Inter", sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 138% !important;
  letter-spacing: -0.01em !important;
  text-transform: uppercase !important;
}
.flex-table .flex-table__content .flex-table__row.bgr {
  background: rgba(255, 255, 255, 0.08);
}
.flex-table .flex-table__content .flex-table__row.active {
  background: rgba(15, 237, 200, 0.2);
}
.flex-table .flex-table__content .flex-table__row.active span {
  background: #0fedc8 !important;
  color: #000 !important;
}
.flex-table .flex-table-last {
  border-left: 4px solid #0fedc8;
  border-radius: 12px;
  padding: 16px;
  background: #ede8d9;
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flex-table .flex-table-last .flex-table-lastp1 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
}
.flex-table .flex-table-last .flex-table-lastp2 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: #404040;
}

.editor-styles-wrapper .flex-table__row {
  outline: 1px dashed rgba(0, 0, 0, 0.15) !important;
  outline-offset: -1px;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  margin-bottom: 10px !important;
  cursor: pointer;
  transition: outline 0.1s ease-in-out;
}
.editor-styles-wrapper .flex-table__row:hover {
  outline: 1px dashed #007cba !important;
}
.editor-styles-wrapper .flex-table__row.is-selected, .editor-styles-wrapper .flex-table__row:focus-within {
  outline: 2px solid #007cba !important;
  outline-offset: -2px;
}

.section-csses-steps-blue {
  background: #0a4065;
}
.section-csses-steps-blue .kicker {
  color: #0fedc8;
}
.section-csses-steps-blue .kicker span {
  background: #0fedc8;
}
.section-csses-steps-blue .section-csses-steps__content h2 {
  color: #fff;
}
.section-csses-steps-blue .section-csses-steps__content .section-csses-steps__left p {
  color: #e6e6e6;
}
.section-csses-steps-blue .section-csses-steps__content .section-csses-steps__right {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.section-csses-steps-blue .section-csses-steps__content .section-csses-steps__right .section-csses-steps__link {
  display: flex;
  justify-content: flex-end;
}
.section-csses-steps-blue .section-csses-steps__content .section-csses-steps__right .section-csses-steps__list .section-csses-steps__item .section-csses-steps__step-text {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.section-csses-steps-blue .section-csses-steps__content .section-csses-steps__right .section-csses-steps__list::before {
  background-color: rgba(255, 255, 255, 0.14);
}

.split-text-grid-card {
  background: #f9f7f0;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .split-text-grid-card {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.split-text-grid-card .split-text-grid-card__row {
  display: grid;
  grid-template-columns: 1fr 650px;
  gap: 34px;
}
@media screen and (max-width: 1243px) {
  .split-text-grid-card .split-text-grid-card__row {
    grid-template-columns: 1fr 533px;
  }
}
@media screen and (max-width: 1148px) {
  .split-text-grid-card .split-text-grid-card__row {
    grid-template-columns: 1fr;
  }
}
.split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__badge-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0a4065;
}
.split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__badge-wrapper span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0a4065;
  color: transparent;
}
.split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__content h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__content h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__content h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__content h2 {
  color: #000;
  margin-bottom: 18px;
}
.split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__content p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
}
.split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 651px) {
  .split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__grid {
    grid-template-columns: 1fr;
  }
}
.split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__grid .split-text-grid-card__grid-item {
  border-radius: 12px;
  background: #0a4065;
  padding: 20px;
}
@media screen and (max-width: 651px) {
  .split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__grid .split-text-grid-card__grid-item {
    min-height: 127px;
  }
}
.split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__grid .split-text-grid-card__grid-item .split-text-grid-card__grid-num {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 121%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__grid .split-text-grid-card__grid-item .split-text-grid-card__grid-num {
    font-size: 26px;
    line-height: 131%;
  }
}
.split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__grid .split-text-grid-card__grid-item .split-text-grid-card__grid-num {
  color: #0fedc8;
  margin-bottom: 9px;
}
.split-text-grid-card .split-text-grid-card__row .split-text-grid-card__left .split-text-grid-card__grid .split-text-grid-card__grid-item .split-text-grid-card__grid-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: #f5f5f5;
}
.split-text-grid-card .split-text-grid-card__row .swiper-split {
  overflow-x: hidden;
}
.split-text-grid-card .split-text-grid-card__row .swiper-split .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: 12px;
  padding: 24px;
}
@media screen and (max-width: 1148px) {
  .split-text-grid-card .split-text-grid-card__row .swiper-split .swiper-slide {
    gap: 120px;
  }
}
@media screen and (max-width: 500px) {
  .split-text-grid-card .split-text-grid-card__row .swiper-split .swiper-slide {
    gap: 52px;
  }
}
.split-text-grid-card .split-text-grid-card__row .swiper-split .swiper-slide {
  background: #fff;
}
.split-text-grid-card .split-text-grid-card__row .swiper-split .swiper-slide .split-text-grid-card__slide-num {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 113%;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 18px;
}
.split-text-grid-card .split-text-grid-card__row .swiper-split .swiper-slide h3 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 121%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .split-text-grid-card .split-text-grid-card__row .swiper-split .swiper-slide h3 {
    font-size: 26px;
    line-height: 131%;
  }
}
.split-text-grid-card .split-text-grid-card__row .swiper-split .swiper-slide h3 {
  color: #000;
  margin-bottom: 18px;
}
.split-text-grid-card .split-text-grid-card__row .swiper-split .swiper-slide .split-text-grid-card__slide-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  margin-bottom: 18px;
}
.split-text-grid-card .split-text-grid-card__row .swiper-split .swiper-slide .split-text-grid-card__slide-bold {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
}
.split-text-grid-card .split-text-grid-card__row .swiper-split .swiper-slide a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.swiper-split {
  position: relative;
}
.swiper-split .split-text-grid-card__progress {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px) !important;
  height: 1px !important;
  background-color: #c4c4c4;
  z-index: 10;
}
.swiper-split .split-text-grid-card__progress .swiper-pagination-progressbar-fill {
  background-color: #000;
  height: 100%;
  display: block;
}

.editor-styles-wrapper .swiper-split {
  height: auto !important;
  overflow: visible !important;
}
.editor-styles-wrapper .swiper-split .swiper-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  transform: none !important;
  height: auto !important;
}
.editor-styles-wrapper .swiper-split .swiper-slide {
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.editor-styles-wrapper .swiper-split .split-text-grid-card__progress {
  display: none !important;
}

.situation-picker {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .situation-picker {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.situation-picker {
  background-image: url("/wp-content/uploads/2026/07/bg_2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.situation-picker .situation-picker__badge-group {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0fedc8;
}
.situation-picker .situation-picker__badge-group span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0fedc8;
  color: transparent;
}
.situation-picker h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .situation-picker h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .situation-picker h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.situation-picker h2 {
  color: #fff;
  max-width: 785px;
  margin-bottom: 54px;
}
.situation-picker .situation-picker__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media screen and (max-width: 1050px) {
  .situation-picker .situation-picker__grid {
    grid-template-columns: 1fr;
  }
}
.situation-picker .situation-picker__grid .situation-picker__item {
  border-top: 4px solid #0fedc8;
  border-radius: 12px;
  padding: 40px 24px;
  background: linear-gradient(135deg, #064b75 0%, #08799b 100%);
}
@media screen and (max-width: 500px) {
  .situation-picker .situation-picker__grid .situation-picker__item {
    padding: 20px 18px;
    min-height: 126px;
  }
}
.situation-picker .situation-picker__grid .situation-picker__item:last-child {
  background: rgba(243, 76, 78, 0.84);
  border-top: 4px solid #ffb3a6;
}
.situation-picker .situation-picker__grid .situation-picker__item:last-child p {
  color: #fff;
}
.situation-picker .situation-picker__grid .situation-picker__item p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0fedc8;
  margin-bottom: 12px;
}
.situation-picker .situation-picker__grid .situation-picker__item h3 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 121%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .situation-picker .situation-picker__grid .situation-picker__item h3 {
    font-size: 26px;
    line-height: 131%;
  }
}
.situation-picker .situation-picker__grid .situation-picker__item h3 {
  color: #fff;
}

.advantages-grid__item--pricing .advantages-grid__item-header p,
.advantages-grid__item--pricing .advantages-grid__item-header span {
  color: #fff !important;
}
.advantages-grid__item--pricing .advantages-grid__item-body {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.02);
  background: rgba(3, 25, 38, 0.14);
  border: 1px solid rgba(15, 237, 200, 0.2) !important;
}

.advantages-grid {
  background: #f9f7f0;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .advantages-grid {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.advantages-grid .advantages-grid__badge-group {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
  gap: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0a4065;
}
.advantages-grid .advantages-grid__badge-group span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0a4065;
  color: transparent;
  background: #0a4065;
}
.advantages-grid h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .advantages-grid h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .advantages-grid h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.advantages-grid h2 {
  color: #000;
  max-width: 830px;
  margin-bottom: 54px;
}
.advantages-grid .advantages-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media screen and (max-width: 1070px) {
  .advantages-grid .advantages-grid__list {
    grid-template-columns: 1fr;
  }
}
.advantages-grid .advantages-grid__list .advantages-grid__item {
  border-radius: 12px;
  padding: 34px;
  background: #fff;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1376px) {
  .advantages-grid .advantages-grid__list .advantages-grid__item {
    padding: 18px;
  }
}
@media screen and (max-width: 549px) {
  .advantages-grid .advantages-grid__list .advantages-grid__item {
    flex-direction: column;
  }
}
.advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-header {
  flex: 330;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-header img {
  width: 60px;
  height: 60px;
}
.advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-header p {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 106%;
  letter-spacing: -0.01em;
  color: #000;
}
@media screen and (max-width: 1376px) {
  .advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-header p {
    font-size: 18px;
  }
}
.advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-header span {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 106%;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 5px;
  color: #000;
}
@media screen and (max-width: 1376px) {
  .advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-header span {
    font-size: 26px;
  }
}
.advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-body-1 {
  flex: 231;
}
@media screen and (max-width: 1376px) {
  .advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-body-1 {
    flex: 300;
  }
}
@media screen and (max-width: 1201px) {
  .advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-body-1 {
    flex: 330;
  }
}
@media screen and (max-width: 1248px) {
  .advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-body-1 {
    flex: 370;
  }
}
@media screen and (max-width: 1103px) {
  .advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-body-1 {
    flex: 400;
  }
}
@media screen and (max-width: 1070px) {
  .advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-body-1 {
    flex: 231;
  }
}
@media screen and (max-width: 713px) {
  .advantages-grid .advantages-grid__list .advantages-grid__item .advantages-grid__item-body-1 {
    flex: 350;
  }
}
.advantages-grid .advantages-grid__list .advantages-grid__item--pricing .advantages-grid__item-body,
.advantages-grid .advantages-grid__list .advantages-grid__item--setup .advantages-grid__item-body,
.advantages-grid .advantages-grid__list .advantages-grid__item--privacy .advantages-grid__item-body,
.advantages-grid .advantages-grid__list .advantages-grid__item--support .advantages-grid__item-body,
.advantages-grid .advantages-grid__list .advantages-grid__item--invisible .advantages-grid__item-body {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.03);
}

.advantages-grid .advantages-grid__list .advantages-grid__item.advantages-grid__item--pricing {
  background: #0a4065 !important;
}
.advantages-grid .advantages-grid__list .advantages-grid__item.advantages-grid__item--pricing .advantages-grid__pricing-header {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(114, 114, 114, 0.4549019608);
  margin-bottom: 20px;
}
.advantages-grid .advantages-grid__list .advantages-grid__item.advantages-grid__item--pricing .advantages-grid__pricing-header span {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 4px 8px;
  margin-bottom: 12px;
  display: inline-block;
}
.advantages-grid .advantages-grid__list .advantages-grid__item.advantages-grid__item--pricing .advantages-grid__pricing-header p {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #fff;
}
.advantages-grid .advantages-grid__list .advantages-grid__item.advantages-grid__item--pricing .advantages-grid__advantages-box {
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}
.advantages-grid .advantages-grid__list .advantages-grid__item.advantages-grid__item--pricing .advantages-grid__advantages-box .advantages-grid__advantages-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  color: #fff;
}
.advantages-grid .advantages-grid__list .advantages-grid__item.advantages-grid__item--pricing .advantages-grid__advantages-box .advantages-grid__advantages-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.advantages-grid .advantages-grid__list .advantages-grid__item.advantages-grid__item--pricing .advantages-grid__advantages-box .advantages-grid__advantages-items div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.advantages-grid .advantages-grid__list .advantages-grid__item.advantages-grid__item--pricing .advantages-grid__advantages-box .advantages-grid__advantages-items div p {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}

.advantages-grid__item--detection .advantages-grid__item-text {
  color: #000 !important;
}
.advantages-grid__item--detection .advantages-grid__stat-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}
.advantages-grid__item--detection .advantages-grid__stat-cards .advantages-grid__stat-card {
  border: 1px solid rgba(15, 237, 200, 0.2);
  border-radius: 12px;
  padding: 18px;
  background: #0a4065;
}
.advantages-grid__item--detection .advantages-grid__stat-cards .advantages-grid__stat-label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(15, 237, 200, 0.5);
  margin-bottom: 4px;
}
.advantages-grid__item--detection .advantages-grid__stat-cards .advantages-grid__stat-val {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  margin-bottom: 4px;
}
@media screen and (max-width: 1376px) {
  .advantages-grid__item--detection .advantages-grid__stat-cards .advantages-grid__stat-val {
    font-size: 23px;
  }
}
.advantages-grid__item--detection .advantages-grid__stat-cards .advantages-grid__stat-trend {
  display: flex;
  align-items: center;
  gap: 4px;
}
.advantages-grid__item--detection .advantages-grid__stat-cards .advantages-grid__stat-trend .advantages-grid__stat-trend-percent--up {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #07c890;
}
@media screen and (max-width: 1376px) {
  .advantages-grid__item--detection .advantages-grid__stat-cards .advantages-grid__stat-trend .advantages-grid__stat-trend-percent--up {
    font-size: 10px;
  }
}
.advantages-grid__item--detection .advantages-grid__stat-cards .advantages-grid__stat-trend .advantages-grid__stat-trend-label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: rgba(15, 237, 200, 0.5);
}
@media screen and (max-width: 1376px) {
  .advantages-grid__item--detection .advantages-grid__stat-cards .advantages-grid__stat-trend .advantages-grid__stat-trend-label {
    font-size: 9px;
  }
}
.advantages-grid__item--detection .advantages-grid__stat-cards img {
  width: 100%;
  margin-top: 12px;
}

.advantages-grid__item--setup .advantages-grid__install-title,
.advantages-grid__item--privacy .advantages-grid__install-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #000;
  margin-bottom: 24px;
}
.advantages-grid__item--setup .advantages-grid__privacy-grid,
.advantages-grid__item--privacy .advantages-grid__privacy-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 18px;
}
.advantages-grid__item--setup .advantages-grid__privacy-grid div,
.advantages-grid__item--privacy .advantages-grid__privacy-grid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.advantages-grid__item--setup .advantages-grid__privacy-grid div p,
.advantages-grid__item--privacy .advantages-grid__privacy-grid div p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
}

.advantages-grid__install-time-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.advantages-grid__install-time-box .advantages-grid__install-time-label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  margin-bottom: 4px;
}
.advantages-grid__install-time-box .advantages-grid__install-time-value {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.advantages-grid__compliance-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.advantages-grid__compliance-box p {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

.advantages-grid__item--support .advantages-grid__support-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #000;
  padding-bottom: 9px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.advantages-grid__item--support .advantages-grid__support-stats {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 16px;
  margin-bottom: 13px;
  display: flex;
  justify-content: space-between;
}
.advantages-grid__item--support .advantages-grid__support-stats .advantages-grid__support-stat-label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #535353;
  margin-bottom: 4px;
}
.advantages-grid__item--support .advantages-grid__support-stats .advantages-grid__support-stat-value {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000;
}
.advantages-grid__item--support .advantages-grid__support-issues {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.advantages-grid__item--support .advantages-grid__support-issues .advantages-grid__support-issue {
  display: flex;
  align-items: center;
  gap: 12px;
}
.advantages-grid__item--support .advantages-grid__support-issues .advantages-grid__support-issue .advantages-grid__support-issue-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 10px;
  margin-bottom: 6px;
  color: #000;
}
.advantages-grid__item--support .advantages-grid__support-issues .advantages-grid__support-issue .advantages-grid__support-issue-value {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #000;
}
.advantages-grid__item--support .advantages-grid__support-issues .advantages-grid__support-issue .advantages-grid__support-issue-status {
  border-radius: 3px;
  background: #e6e6e6;
  height: 6px;
  width: 100%;
  position: relative;
}
.advantages-grid__item--support .advantages-grid__support-issues .advantages-grid__support-issue .advantages-grid__support-issue-status span {
  background: linear-gradient(135deg, #064b75 0%, #08799b 100%);
  border-radius: 3px;
  height: 6px;
  display: inline-block;
  width: 80%;
  position: absolute;
  top: 0;
  left: 0;
}
.advantages-grid__item--support .advantages-grid__support-issues .advantages-grid__support-issue .advantages-grid__support-issue-status .advantages-grid__support-issue-status-25 {
  width: 18%;
}
.advantages-grid__item--support .advantages-grid__support-issues .advantages-grid__support-issue .advantages-grid__support-issue-status .advantages-grid__support-issue-status-75 {
  width: 42%;
}
.advantages-grid__item--support .advantages-grid__support-issues .advantages-grid__support-issue .advantages-grid__support-issue-status .advantages-grid__support-issue-status-45 {
  width: 28%;
}

.advantages-flex {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 12px;
}
.advantages-flex .advantages-grid__support-issue-info {
  flex: 1;
}

.advantages-grid__customer-feature {
  display: flex;
  gap: 16px;
}
.advantages-grid__customer-feature:first-child, .advantages-grid__customer-feature:nth-child(2) {
  padding-bottom: 5px;
  margin-bottom: 21px;
  border-bottom: 1px solid #e5e7eb;
}
.advantages-grid__customer-feature .advantages-grid__customer-feature-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  margin-bottom: 4px;
}
.advantages-grid__customer-feature img {
  width: 38px;
  height: 38px;
}
.advantages-grid__customer-feature .advantages-grid__customer-feature-desc {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 167%;
  color: #727272;
}

.dashboard-slider {
  background-image: url("/wp-content/uploads/2026/07/bg-4-scaled.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .dashboard-slider {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.dashboard-slider .dashboard-slider__row {
  display: flex;
  align-items: center;
  gap: 54px;
}
@media screen and (max-width: 1125px) {
  .dashboard-slider .dashboard-slider__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.dashboard-slider .dashboard-slider__row .dashboard-slider__header {
  flex: 442;
}
.dashboard-slider .dashboard-slider__row .dashboard-slider__header h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .dashboard-slider .dashboard-slider__row .dashboard-slider__header h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .dashboard-slider .dashboard-slider__row .dashboard-slider__header h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.dashboard-slider .dashboard-slider__row .dashboard-slider__header h2 {
  color: #fff;
}
.dashboard-slider .dashboard-slider__row .dashboard-slider__header .dashboard-slider__badge-group {
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0fedc8;
}
.dashboard-slider .dashboard-slider__row .dashboard-slider__header .dashboard-slider__badge-group span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0fedc8;
  color: transparent;
}
.dashboard-slider .dashboard-slider__row .dashboard-slider__container {
  flex: 849;
  max-width: 849px;
}
@media screen and (max-width: 1260px) {
  .dashboard-slider .dashboard-slider__row .dashboard-slider__container {
    max-width: 700px;
  }
}
@media screen and (max-width: 1125px) {
  .dashboard-slider .dashboard-slider__row .dashboard-slider__container {
    max-width: 100%;
  }
}

.dashboard-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.dashboard-slider__controls .swiper-pagination-big {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-slider__controls .swiper-pagination-big .swiper-pagination-bullet {
  width: 25px;
  height: 3px;
  background: rgba(15, 237, 200, 0.2);
  border-radius: 0 !important;
}
.dashboard-slider__controls .swiper-pagination-big .swiper-pagination-bullet-active {
  background: #0fedc8;
  width: 38px;
}

.dashboard-slider__slide-img {
  width: 100%;
}

.swiper-big-images {
  overflow-x: hidden;
}

.editor-styles-wrapper .dashboard-slider .swiper-big-images {
  height: auto !important;
  overflow: visible !important;
}
.editor-styles-wrapper .dashboard-slider .swiper-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  transform: none !important;
  height: auto !important;
}
.editor-styles-wrapper .dashboard-slider .swiper-slide {
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  padding: 15px !important;
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px dashed rgba(0, 0, 0, 0.2) !important;
  border-radius: 8px !important;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.editor-styles-wrapper .dashboard-slider .swiper-slide:hover {
  border-color: rgba(0, 124, 186, 0.5) !important;
  background: rgba(0, 124, 186, 0.02) !important;
}
.editor-styles-wrapper .dashboard-slider .swiper-slide.is-selected {
  border-color: #007cba !important;
  border-style: solid !important;
  background: rgba(0, 124, 186, 0.04) !important;
}
.editor-styles-wrapper .dashboard-slider .swiper-slide .dashboard-slider__slide-img {
  margin: 0 !important;
}
.editor-styles-wrapper .dashboard-slider .dashboard-slider__controls {
  display: none !important;
}

.how-it-works {
  background: #f9f7f0;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .how-it-works {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.how-it-works .how-it-works__badge-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  color: #0a4065;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.how-it-works .how-it-works__badge-group span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0a4065;
  color: transparent;
}
.how-it-works .how-it-works__header-content h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .how-it-works .how-it-works__header-content h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .how-it-works .how-it-works__header-content h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.how-it-works .how-it-works__header-content h2 {
  color: #000;
  margin-bottom: 25px;
  max-width: 714px;
}
.how-it-works .how-it-works__header-content p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
  max-width: 714px;
}
.how-it-works .how-it-works__steps {
  display: grid;
  margin: 54px 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media screen and (max-width: 1244px) {
  .how-it-works .how-it-works__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 907px) {
  .how-it-works .how-it-works__steps {
    grid-template-columns: 1fr;
  }
}
.how-it-works .how-it-works__steps .how-it-works__step {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: all ease 0.6s;
}
.how-it-works .how-it-works__steps .how-it-works__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/uploads/2026/07/bg-5.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  z-index: -1;
  transition: opacity ease 0.6s;
}
.how-it-works .how-it-works__steps .how-it-works__step .how-it-works__step-num {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 132%;
  letter-spacing: -0.01em;
  color: #0a4065;
  margin-bottom: 48px;
  transition: color ease 0.6s;
}
.how-it-works .how-it-works__steps .how-it-works__step .how-it-works__step-content h3 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 131%;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 24px;
  transition: color ease 0.6s;
}
.how-it-works .how-it-works__steps .how-it-works__step .how-it-works__step-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: #000;
  transition: color ease 0.6s;
}
.how-it-works .how-it-works__steps .how-it-works__step:hover::before {
  opacity: 1;
}
.how-it-works .how-it-works__steps .how-it-works__step:hover .how-it-works__step-num {
  color: #0fedc8;
}
.how-it-works .how-it-works__steps .how-it-works__step:hover .how-it-works__step-content h3 {
  color: #fff;
}
.how-it-works .how-it-works__steps .how-it-works__step:hover .how-it-works__step-content p {
  color: #f5f5f5;
}

.how-it-works__footer {
  display: flex;
  gap: 63px;
}
@media screen and (max-width: 1244px) {
  .how-it-works__footer {
    flex-direction: column;
    gap: 24px;
  }
}
.how-it-works__footer .how-it-works__footer-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: #272727;
}
.how-it-works__footer .how-it-works__footer-text span {
  font-weight: 700;
  font-size: 30px;
  line-height: 152%;
  color: #272727;
  display: block;
}
.how-it-works__footer .how-it-works__footer-features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 907px) {
  .how-it-works__footer .how-it-works__footer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 78px;
  }
}
@media screen and (max-width: 576px) {
  .how-it-works__footer .how-it-works__footer-features {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
.how-it-works__footer .how-it-works__footer-features div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.how-it-works__footer .how-it-works__footer-features div p {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
}
@media screen and (max-width: 907px) {
  .how-it-works__footer .how-it-works__footer-features div p br {
    display: none;
  }
}
.how-it-works__footer .how-it-works__footer-features div img {
  width: 27px;
  height: 27px;
}

.protection-stack {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .protection-stack {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.protection-stack {
  background-image: url("/wp-content/uploads/2026/07/bg-5-scaled.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.protection-stack .protection-stack__badge-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0fedc8;
}
.protection-stack .protection-stack__badge-group span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0a4065;
  color: transparent;
  background: #0fedc8;
}
.protection-stack .protection-stack__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}
@media screen and (max-width: 1240px) {
  .protection-stack .protection-stack__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.protection-stack .protection-stack__header h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .protection-stack .protection-stack__header h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .protection-stack .protection-stack__header h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.protection-stack .protection-stack__header h2 {
  color: #fff;
  max-width: 700px;
  margin-bottom: 25px;
}
.protection-stack .protection-stack__header p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 644px;
}

.protection-stack__grid {
  display: grid;
  grid-template-columns: 1fr 325px;
  gap: 18px;
}
@media screen and (max-width: 1240px) {
  .protection-stack__grid {
    grid-template-columns: 1fr;
  }
}
.protection-stack__grid .protection-stack__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media screen and (max-width: 899px) {
  .protection-stack__grid .protection-stack__features-grid {
    grid-template-columns: 1fr;
  }
}
.protection-stack__grid .protection-stack__features-grid .protection-stack__feature-card {
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.protection-stack__grid .protection-stack__features-grid .protection-stack__feature-card img {
  width: 60px;
  height: 60px;
}
.protection-stack__grid .protection-stack__features-grid .protection-stack__feature-card .protection-stack__feature-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 106%;
  letter-spacing: -0.01em;
  color: #000;
  display: block;
}
@media screen and (max-width: 500px) {
  .protection-stack__grid .protection-stack__features-grid .protection-stack__feature-card .protection-stack__feature-title {
    font-size: 24px;
  }
}
.protection-stack__grid .protection-stack__hero-card {
  background: linear-gradient(135deg, #064b75 0%, #08799b 100%);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1240px) {
  .protection-stack__grid .protection-stack__hero-card {
    gap: 24px;
  }
}
.protection-stack__grid .protection-stack__hero-card .protection-stack__hero-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 106%;
  letter-spacing: -0.01em;
  color: #fff;
  display: block;
}
@media screen and (max-width: 500px) {
  .protection-stack__grid .protection-stack__hero-card .protection-stack__hero-title {
    font-size: 24px;
  }
}
.protection-stack__grid .protection-stack__hero-card img {
  width: 60px;
  height: 60px;
}

.use-cases {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .use-cases {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.use-cases {
  background: #f9f7f0;
}
.use-cases .use-cases__badge-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0a4065;
}
.use-cases .use-cases__badge-group span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0a4065;
  color: transparent;
}
.use-cases .use-cases__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
  gap: 20px;
}
@media screen and (max-width: 734px) {
  .use-cases .use-cases__header {
    flex-direction: column;
    gap: 34px;
    align-items: flex-start;
  }
}
.use-cases .use-cases__header h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .use-cases .use-cases__header h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .use-cases .use-cases__header h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.use-cases .use-cases__header h2 {
  color: #000;
  max-width: 700px;
}
.use-cases .use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media screen and (max-width: 1089px) {
  .use-cases .use-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .use-cases .use-cases__grid {
    grid-template-columns: 1fr;
  }
}
.use-cases .use-cases__grid .use-cases__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 24px;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: all ease 0.6s;
}
.use-cases .use-cases__grid .use-cases__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #064b75 0%, #08799b 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity ease 0.6s;
}
.use-cases .use-cases__grid .use-cases__card img {
  width: 60px;
  height: 60px;
}
.use-cases .use-cases__grid .use-cases__card .use-cases__card-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 121%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .use-cases .use-cases__grid .use-cases__card .use-cases__card-title {
    font-size: 26px;
    line-height: 131%;
  }
}
.use-cases .use-cases__grid .use-cases__card .use-cases__card-title {
  color: #000;
  display: block;
  transition: color ease 0.6s;
}
@media screen and (max-width: 500px) {
  .use-cases .use-cases__grid .use-cases__card .use-cases__card-title {
    font-size: 24px;
  }
}
.use-cases .use-cases__grid .use-cases__card .span_1 {
  border-radius: 5px;
  width: 44px;
  height: 44px;
  background: #0a4065;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background ease 0.6s;
}
.use-cases .use-cases__grid .use-cases__card .span_1 path {
  fill: #0fedc8 !important;
  transition: fill ease 0.6s;
}
.use-cases .use-cases__grid .use-cases__card:hover::before {
  opacity: 1;
}
.use-cases .use-cases__grid .use-cases__card:hover .use-cases__card-title {
  color: #fff;
}
.use-cases .use-cases__grid .use-cases__card:hover .span_1 {
  background: #0fedc8;
}
.use-cases .use-cases__grid .use-cases__card:hover .span_1 path {
  fill: #0a4065 !important;
}

.industries {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .industries {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.industries {
  background-image: url("/wp-content/uploads/2026/07/bg-6-scaled.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.industries .industries__badge {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0fedc8;
  margin-bottom: 34px;
  gap: 18px;
}
.industries .industries__badge span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0fedc8;
  color: transparent;
}
.industries h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .industries h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .industries h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.industries h2 {
  color: #fff;
  margin-bottom: 54px;
}
.industries .industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 850px) {
  .industries .industries__grid {
    grid-template-columns: 1fr;
  }
}
.industries .industries__grid .industries__card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: all ease 0.6s;
}
.industries .industries__grid .industries__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/uploads/2026/07/bg-7.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  z-index: -1;
  transition: opacity ease 0.6s;
}
.industries .industries__grid .industries__card path {
  fill: #0fedc8;
  transition: fill ease 0.6s;
}
.industries .industries__grid .industries__card .industries__card-img-box div {
  border-radius: 5px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a4065;
  margin-bottom: 24px;
  transition: background ease 0.6s;
}
.industries .industries__grid .industries__card h3 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 121%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .industries .industries__grid .industries__card h3 {
    font-size: 26px;
    line-height: 131%;
  }
}
.industries .industries__grid .industries__card h3 {
  color: #000;
  margin-bottom: 24px;
  transition: color ease 0.6s;
}
@media screen and (max-width: 500px) {
  .industries .industries__grid .industries__card h3 {
    font-size: 26px;
  }
}
.industries .industries__grid .industries__card p {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #000;
  transition: color ease 0.6s;
}
.industries .industries__grid .industries__card:hover::before {
  opacity: 1;
}
.industries .industries__grid .industries__card:hover h3 {
  color: #fff;
}
.industries .industries__grid .industries__card:hover p {
  color: #f5f5f5;
}
.industries .industries__grid .industries__card:hover .industries__card-img-box div {
  background: #0fedc8;
}
.industries .industries__grid .industries__card:hover path {
  fill: #0a4065;
}

.website-goals {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .website-goals {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.website-goals {
  background: #f9f7f0;
}
.website-goals .website-goals__badge {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0a4065;
  gap: 18px;
  margin-bottom: 34px;
}
.website-goals .website-goals__badge span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0a4065;
  color: transparent;
}
.website-goals h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .website-goals h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .website-goals h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.website-goals h2 {
  color: #000;
  margin-bottom: 54px;
  max-width: 650px;
}
.website-goals .website-goals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media screen and (max-width: 1212px) {
  .website-goals .website-goals__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 850px) {
  .website-goals .website-goals__grid {
    grid-template-columns: 1fr;
  }
}
.website-goals .website-goals__grid .website-goals__item {
  border-top: 6px solid #0fedc8;
  border-radius: 12px;
  padding: 26px 24px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: all ease 0.6s;
}
.website-goals .website-goals__grid .website-goals__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #064b75 0%, #08799b 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity ease 0.6s;
}
.website-goals .website-goals__grid .website-goals__item div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  background: #0a4065;
  transition: background ease 0.6s;
}
.website-goals .website-goals__grid .website-goals__item div path {
  fill: #0fedc8;
  transition: fill ease 0.6s;
}
@media screen and (max-width: 1212px) {
  .website-goals .website-goals__grid .website-goals__item {
    min-height: 200px;
  }
}
.website-goals .website-goals__grid .website-goals__item .website-goals__item-text {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 131%;
  letter-spacing: -0.01em;
  color: #000;
  transition: color ease 0.6s;
}
@media screen and (max-width: 500px) {
  .website-goals .website-goals__grid .website-goals__item .website-goals__item-text {
    font-size: 24px;
  }
}
.website-goals .website-goals__grid .website-goals__item img {
  width: 55px;
  height: 55px;
}
.website-goals .website-goals__grid .website-goals__item:hover::before {
  opacity: 1;
}
.website-goals .website-goals__grid .website-goals__item:hover .website-goals__item-text {
  color: #fff;
}
.website-goals .website-goals__grid .website-goals__item:hover div {
  background: #0fedc8;
}
.website-goals .website-goals__grid .website-goals__item:hover div path {
  fill: #0a4065;
}

.trust-split {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .trust-split {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.trust-split {
  background: #0a4065;
}
.trust-split .trust-split__badge {
  display: flex;
  align-items: center;
  color: #0fedc8;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 34px;
  gap: 18px;
}
.trust-split .trust-split__badge span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0fedc8;
  color: transparent;
}
.trust-split h2 {
  color: #fff;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 600;
  font-size: 50px;
  line-height: 134%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .trust-split h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.trust-split h2 {
  margin-bottom: 34px;
}
@media screen and (max-width: 1100px) {
  .trust-split h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 500px) {
  .trust-split h2 {
    font-size: 32px;
  }
}
.trust-split .trust-split__row {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 1200px) {
  .trust-split .trust-split__row {
    gap: 40px;
  }
}
@media screen and (max-width: 951px) {
  .trust-split .trust-split__row {
    flex-direction: column;
  }
}
.trust-split .trust-split__row .trust-split__col--integrations {
  flex: 581;
}
@media screen and (max-width: 1200px) {
  .trust-split .trust-split__row .trust-split__col--integrations {
    flex: 678;
  }
}
.trust-split .trust-split__row .trust-split__col--privacy {
  flex: 678;
}
.trust-split .trust-split__row .trust-split__col--privacy .trust-split__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.trust-split .trust-split__row .trust-split__col--privacy .trust-split__features div {
  border-radius: 12px;
  padding: 28px 20px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
}
.trust-split .trust-split__row .trust-split__col--privacy .trust-split__features div span {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 131%;
  letter-spacing: -0.01em;
  color: #000;
}
.trust-split .trust-split__row .trust-split__col--privacy .trust-split__features div img {
  width: 44px;
  height: 44px;
}
.trust-split .trust-split__row .trust-split__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 35px;
}

.pricing-promo {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .pricing-promo {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.pricing-promo {
  background: #f9f7f0;
}
.pricing-promo .pricing-promo__row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-promo .pricing-promo__row .pricing-promo__badge {
  margin-bottom: 34px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0a4065;
  display: flex;
  align-items: center;
  gap: 18px;
}
.pricing-promo .pricing-promo__row .pricing-promo__badge span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0a4065;
  color: transparent;
}
.pricing-promo .pricing-promo__row h2 {
  max-width: 912px;
  text-align: center;
  margin-bottom: 24px;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .pricing-promo .pricing-promo__row h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .pricing-promo .pricing-promo__row h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.pricing-promo .pricing-promo__row h2 {
  color: #000;
}
.pricing-promo .pricing-promo__row .pricing-promo__desc {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #272727;
  margin-bottom: 34px;
  max-width: 724px;
  text-align: center;
}
.pricing-promo .pricing-promo__row .pricing-promo__footer {
  border-radius: 12px;
  padding: 38px 130px;
  background-image: url("/wp-content/uploads/2026/07/bg-88.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: 924px;
}
@media screen and (max-width: 850px) {
  .pricing-promo .pricing-promo__row .pricing-promo__footer {
    padding: 25px;
  }
}
.pricing-promo .pricing-promo__row .pricing-promo__footer p {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: center;
  max-width: 664px;
}
.pricing-promo .pricing-promo__row .pricing-promo__footer .pricing-promo__ctas {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .pricing-promo .pricing-promo__row .pricing-promo__footer .pricing-promo__ctas {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .pricing-promo .pricing-promo__row .pricing-promo__footer .pricing-promo__ctas a {
    width: 100% !important;
  }
}
.pricing-promo .pricing-promo__row .pricing-promo__footer .pricing-promo__ctas .pricing-promo__cta {
  width: 206px;
  text-align: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.business-results {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .business-results {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.business-results {
  background-image: url("/wp-content/uploads/2026/07/bg-99-scaled.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.business-results .business-results__badge {
  margin-bottom: 34px;
  color: #0fedc8;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  gap: 18px;
  display: flex;
  align-items: center;
}
.business-results .business-results__badge span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0fedc8;
  color: transparent;
}
.business-results h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .business-results h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .business-results h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.business-results h2 {
  color: #fff;
  margin-bottom: 44px;
}
.business-results .business-results__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
}
.business-results .business-results__row {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 950px) {
  .business-results .business-results__row {
    flex-direction: column;
  }
}
.business-results .business-results__row .business-results__header {
  flex: 1;
}
.business-results .business-results__row .swiper-slider-text_cont {
  width: 643px;
  overflow-x: hidden;
}
@media screen and (max-width: 1270px) {
  .business-results .business-results__row .swiper-slider-text_cont {
    width: 500px;
  }
}
@media screen and (max-width: 950px) {
  .business-results .business-results__row .swiper-slider-text_cont {
    width: 100%;
  }
}
.business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text {
  overflow-x: hidden;
}
.business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text .swiper-slide img {
  width: 51px;
  height: 51px;
  margin-bottom: 12px;
}
.business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text .swiper-slide .business-results__slide-quote {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 121%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text .swiper-slide .business-results__slide-quote {
    font-size: 26px;
    line-height: 131%;
  }
}
.business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text .swiper-slide .business-results__slide-quote {
  color: #fff;
  margin-bottom: 14px;
}
@media screen and (max-width: 500px) {
  .business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text .swiper-slide .business-results__slide-quote {
    font-size: 26px;
  }
}
.business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text .swiper-slide .business-results__slide-author {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #e6e6e6;
}
.business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text .business-results__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
}
.business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text .business-results__controls .prev-text,
.business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text .business-results__controls .next-text {
  cursor: pointer;
}
.business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text .business-results__controls .swiper-text-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text .business-results__controls .swiper-text-pagination .swiper-pagination-bullet {
  width: 25px;
  height: 3px;
  background: rgba(15, 237, 200, 0.2);
  border-radius: 0 !important;
}
.business-results .business-results__row .swiper-slider-text_cont .swiper-slider-text .business-results__controls .swiper-text-pagination .swiper-pagination-bullet-active {
  background: #0fedc8;
  width: 38px;
}

.editor-styles-wrapper .business-results .swiper-slider-text_cont,
.editor-styles-wrapper .business-results .swiper-slider-text {
  height: auto !important;
  overflow: visible !important;
}
.editor-styles-wrapper .business-results .swiper-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  transform: none !important;
  height: auto !important;
}
.editor-styles-wrapper .business-results .swiper-slide {
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  padding: 15px !important;
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px dashed rgba(0, 0, 0, 0.2) !important;
  border-radius: 8px !important;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.editor-styles-wrapper .business-results .swiper-slide:hover {
  border-color: rgba(0, 124, 186, 0.5) !important;
  background: rgba(0, 124, 186, 0.02) !important;
}
.editor-styles-wrapper .business-results .swiper-slide.is-selected {
  border-color: #007cba !important;
  border-style: solid !important;
  background: rgba(0, 124, 186, 0.04) !important;
}
.editor-styles-wrapper .business-results .swiper-slide .business-results__slide-logo-box {
  margin: 0 !important;
}
.editor-styles-wrapper .business-results .business-results__controls {
  display: none !important;
}

.free-tools {
  background: #f9f7f0;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .free-tools {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.free-tools .free-tools__badge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  color: #0a4065;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.free-tools .free-tools__badge span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0a4065;
  color: transparent;
}
.free-tools h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .free-tools h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .free-tools h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.free-tools h2 {
  margin-bottom: 24px;
  color: #000;
  max-width: 714px;
}
.free-tools .free-tools__desc {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 54px;
}
.free-tools .free-tools__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media screen and (max-width: 950px) {
  .free-tools .free-tools__grid {
    grid-template-columns: 1fr;
  }
}
.free-tools .free-tools__grid div {
  border-radius: 12px;
  padding: 45px 24px;
  background: #0a4065;
}
@media screen and (max-width: 700px) {
  .free-tools .free-tools__grid div {
    padding: 20px;
  }
}
.free-tools .free-tools__grid div h3 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 121%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .free-tools .free-tools__grid div h3 {
    font-size: 26px;
    line-height: 131%;
  }
}
.free-tools .free-tools__grid div h3 {
  margin-bottom: 24px;
  color: #fff;
}
.free-tools .free-tools__grid div .free-tools__card-desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  color: #f5f5f5;
}
@media screen and (max-width: 500px) {
  .free-tools .free-tools__grid div .free-tools__card-desc {
    font-size: 18px;
  }
}
.free-tools .free-tools__grid div a {
  display: inline-block;
}

.failed-defenses {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .failed-defenses {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.failed-defenses {
  background: #0a4065;
}
.failed-defenses .failed-defenses__badge {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0fedc8;
  display: flex;
  align-items: center;
  margin-bottom: 34px;
  gap: 18px;
}
.failed-defenses .failed-defenses__badge span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0fedc8;
  color: transparent;
}
.failed-defenses h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .failed-defenses h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .failed-defenses h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.failed-defenses h2 {
  color: #fff;
  max-width: 580px;
  margin-bottom: 54px;
}
.failed-defenses .failed-defenses__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media screen and (max-width: 1200px) {
  .failed-defenses .failed-defenses__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .failed-defenses .failed-defenses__grid {
    grid-template-columns: 1fr;
  }
}
.failed-defenses .failed-defenses__grid div {
  border-top: 6px solid #0fedc8;
  border-radius: 12px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  transition: all ease 0.6s;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.failed-defenses .failed-defenses__grid div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #064b75 0%, #08799b 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity ease 0.6s;
}
.failed-defenses .failed-defenses__grid div:hover::before {
  opacity: 1;
}
.failed-defenses .failed-defenses__grid div:hover h3 {
  color: #fff;
}
.failed-defenses .failed-defenses__grid div:hover p {
  color: #f5f5f5;
}
.failed-defenses .failed-defenses__grid div h3 {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 93%;
  letter-spacing: -0.01em;
  color: #000;
}
@media screen and (max-width: 500px) {
  .failed-defenses .failed-defenses__grid div h3 {
    font-size: 26px;
  }
}
.failed-defenses .failed-defenses__grid div p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  color: #1a1a1a;
}

.faq {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .faq {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.faq {
  background: #f9f7f0;
}
.faq .faq__badge {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0a4065;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  gap: 18px;
}
.faq .faq__badge span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0a4065;
  color: transparent;
}
.faq h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .faq h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .faq h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.faq h2 {
  color: #000;
  margin-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  .faq h2 {
    margin-bottom: 32px;
    max-width: 100%;
  }
}
.faq .faq__cta-box .faq__cta-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 12px;
  color: #000;
}
.faq .faq__cta-box button {
  padding: 14px 46px;
}
.faq .faq__row {
  display: flex;
  gap: 79px;
}
@media screen and (max-width: 1000px) {
  .faq .faq__row {
    gap: 54px;
  }
}
@media screen and (max-width: 500px) {
  .faq .faq__row {
    gap: 44px;
  }
}
@media screen and (max-width: 1000px) {
  .faq .faq__row {
    flex-direction: column;
  }
}
.faq .faq__row .faq__col-info {
  flex: 529;
}

.faq__col-accordion {
  flex: 732;
}
.faq__col-accordion .faq__accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__col-accordion .faq__accordion-list .faq__item {
  border: 1px solid #b6b6b6;
  border-radius: 8px;
  background: transparent;
  padding: 20px 24px;
  cursor: pointer;
}
.faq__col-accordion .faq__accordion-list .faq__item .faq__item-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
}
.faq__col-accordion .faq__accordion-list .faq__item .faq__item-answer {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  margin-top: 20px;
}

.faq__item-content {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease-in-out;
}

.faq__item-icon {
  transition: transform 0.3s ease-in-out;
}

.faq__item--open {
  background: #fff !important;
}
.faq__item--open .faq__item-icon {
  transform: rotate(180deg);
}

.editor-styles-wrapper .faq__item-content {
  height: auto !important;
  overflow: visible !important;
}

.editor-styles-wrapper .faq__item-content,
.mce-content-body .faq__item-content {
  height: auto !important;
  overflow: visible !important;
}

.h2-34 {
  margin-bottom: 34px !important;
}

.wrapper2 {
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .cta-banner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.cta-banner {
  background-image: url("/wp-content/uploads/2026/07/s-2-scaled.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-banner .kicker {
  color: #0fedc8;
}
.cta-banner .kicker span {
  background: #0fedc8;
}
.cta-banner .cta-banner__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-banner .cta-banner__container h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 122%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .cta-banner .cta-banner__container h2 {
    font-size: 50px;
    line-height: 134%;
  }
}
@media screen and (max-width: 500px) {
  .cta-banner .cta-banner__container h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.cta-banner .cta-banner__container h2 {
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.cta-banner .cta-banner__container .cta-banner__desc {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  max-width: 750px;
  text-align: center;
  color: #f5f5f5;
}
.cta-banner .cta-banner__container .cta-banner__desc a {
  color: #0fedc8;
  text-decoration: none;
}
.cta-banner .cta-banner__container .cta-banner__ctas {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 20px;
  margin-top: 34px;
}
@media screen and (max-width: 500px) {
  .cta-banner .cta-banner__container .cta-banner__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}
.cta-banner .cta-banner__container .cta-banner__ctas .cta-banner__cta {
  width: 206px !important;
  text-align: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
@media screen and (max-width: 500px) {
  .cta-banner .cta-banner__container .cta-banner__ctas .cta-banner__cta {
    width: 100% !important;
    display: block;
  }
}
.cta-banner .cta-banner__container .cta-banner__footer-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #e6e6e6;
}

.hero {
  padding-top: 144px;
  padding-bottom: 59px;
  background-image: url("/wp-content/uploads/2026/07/bg-hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1080px) {
  .hero {
    padding-top: 124px;
  }
}
@media screen and (max-width: 813px) {
  .hero {
    padding-top: 80px;
  }
}
.hero .hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .hero__content h1 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  .hero .hero__content h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 820px) {
  .hero .hero__content h1 {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  .hero .hero__content h1 {
    font-size: 33px;
  }
}
.hero .hero__content h1 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .hero .hero__content h1 {
    font-size: 20px;
  }
}
.hero .hero__content .hero__desc {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #bdbdbd;
  max-width: 835px;
  margin-bottom: 34px;
}
@media screen and (max-width: 1024px) {
  .hero .hero__content .hero__desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 820px) {
  .hero .hero__content .hero__desc {
    font-size: 12px;
    max-width: 475px;
  }
}
.hero .hero__content .hero__ctas {
  display: flex;
  gap: 20px;
}
.hero .hero__content .hero__ctas .hero__cta {
  width: 190px;
  padding-top: 13px;
  padding-bottom: 13px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .hero .hero__content .hero__ctas .hero__cta {
    font-size: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    width: 130px;
  }
}
.hero .hero__content .hero__footer-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  margin-top: 14px;
  color: #e6e6e6;
}
@media screen and (max-width: 500px) {
  .hero .hero__content .hero__footer-text {
    font-size: 8px;
  }
}

.animation_hero {
  margin-top: 62px;
}
.animation_hero .animation_hero_items {
  position: relative;
}
.animation_hero .animation_hero_items span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ff3737;
}
.animation_hero .animation_hero_items .animation_hero_bl span {
  color: #0debff;
}
.animation_hero .animation_hero_cont {
  display: flex;
  justify-content: center;
}
.animation_hero .animation_hero_cont .animation_hero_center {
  border: 0.72px solid #00f2fe;
  border-radius: 7px;
  padding: 18px 32px 32px;
  background: rgba(0, 245, 255, 0.11);
  max-width: 241px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.animation_hero .animation_hero_cont .animation_hero_center .animation_hero_center_title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  color: #00f2fe;
  margin-bottom: 8px;
}
.animation_hero .animation_hero_cont .animation_hero_center div {
  display: flex;
  flex-direction: column;
  margin-bottom: 26px;
  gap: 3px;
}
.animation_hero .animation_hero_cont .animation_hero_center div p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #fff;
}
.animation_hero .animation_hero_cont .animation_hero_center img {
  width: 166px !important;
  min-width: 313px;
}

.animation_hero_items_left span {
  position: absolute;
  white-space: nowrap;
}
.animation_hero_items_left div {
  position: absolute;
  left: -40px;
}
.animation_hero_items_left div:nth-child(1) {
  top: -20px;
}
.animation_hero_items_left div:nth-child(1) span {
  top: 10px;
  left: 60px;
}
.animation_hero_items_left div:nth-child(2) {
  top: 40px;
}
.animation_hero_items_left div:nth-child(2) span {
  top: 7px;
  left: 60px;
}
.animation_hero_items_left div:nth-child(3) {
  top: 90px;
}
.animation_hero_items_left div:nth-child(3) span {
  top: 7px;
  left: 60px;
}
.animation_hero_items_left div:nth-child(4) {
  top: 150px;
}
.animation_hero_items_left div:nth-child(4) span {
  top: 7px;
  left: 60px;
}
.animation_hero_items_left div:nth-child(5) {
  top: 210px;
}
.animation_hero_items_left div:nth-child(5) span {
  top: 7px;
  left: 60px;
}
.animation_hero_items_left div:nth-child(6) {
  top: 270px;
}
.animation_hero_items_left div:nth-child(6) span {
  top: 3px;
  left: 60px;
}
.animation_hero_items_left div:nth-child(7) {
  top: 330px;
}
.animation_hero_items_left div:nth-child(7) span {
  top: 0px;
  left: 60px;
}
.animation_hero_items_left div:nth-child(8) {
  top: 390px;
}
.animation_hero_items_left div:nth-child(8) span {
  top: -15px;
  left: 60px;
}

.animation_hero_items_right {
  position: static !important;
}
.animation_hero_items_right .animation_hero_bl {
  position: absolute;
  top: 0;
  right: 35px;
  display: flex;
  align-items: center;
  width: 218px;
  justify-content: space-between;
}
.animation_hero_items_right .animation_hero_bl div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.animation_hero_items_right .animation_hero_bl:nth-child(1) {
  top: -20px;
}
.animation_hero_items_right .animation_hero_bl:nth-child(2) {
  top: 60px;
}
.animation_hero_items_right .animation_hero_bl:nth-child(3) {
  top: 170px;
}
.animation_hero_items_right .animation_hero_bl:nth-child(4) {
  top: 250px;
}

.a-right {
  position: relative;
  margin-top: 120px;
  margin-left: 15px;
  width: 390px;
}
.a-right .animation_hero_bl div img {
  width: 40px;
  height: 40px;
}

.a-left {
  margin-top: -10px;
  width: 390px;
}
.a-left .animation_hero_red img,
.a-left .animation_hero_bl img {
  width: 40px;
  height: 40px;
}

.an-arr {
  width: 54px;
}

.left-svg,
.right-svg {
  overflow: visible !important;
}

.animation_hero {
  position: relative;
  width: 100%;
}

.animation_hero_cont {
  width: 1222px;
  margin-left: calc(50% - 611px);
  transform-origin: top center;
  will-change: transform;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero_img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 240px;
}
@media screen and (max-width: 1400px) {
  .hero_img {
    max-width: 200px;
  }
}
@media screen and (max-width: 1327px) {
  .hero_img {
    right: -60px;
  }
}
@media screen and (max-width: 1034px) {
  .hero_img {
    max-width: 170px;
  }
}
@media screen and (max-width: 802px) {
  .hero_img {
    max-width: 140px;
  }
}
@media screen and (max-width: 602px) {
  .hero_img {
    max-width: 100px;
  }
}

.hero-product {
  background-image: url("/wp-content/uploads/2026/07/hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 195px;
  padding-bottom: 97px;
}
@media screen and (max-width: 500px) {
  .hero-product {
    padding-top: 100px;
  }
}
.hero-product h1 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 65px;
  line-height: 105%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}
.hero-product h1 mark {
  color: #0fedc8 !important;
}
@media screen and (max-width: 1100px) {
  .hero-product h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 649px) {
  .hero-product h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 500px) {
  .hero-product h1 {
    font-size: 34px;
  }
}
@media screen and (max-width: 500px) {
  .hero-product h1 br {
    display: none;
  }
}
.hero-product .hero-product__description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  margin-bottom: 34px;
  margin-top: 20px;
  max-width: 750px;
  text-align: center;
  color: #e6e6e6;
}
@media screen and (max-width: 649px) {
  .hero-product .hero-product__description {
    font-size: 16px;
  }
}
.hero-product .hero-product__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-product .hero-product__actions {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-product .hero-product__actions div {
  flex: 1;
}
.hero-product .hero-product__actions a {
  min-width: 206px;
  text-align: center;
  padding-top: 14px;
  padding-bottom: 14px;
  width: 100%;
  white-space: nowrap;
}
.hero-product .hero-product__subtext {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #e6e6e6;
}

.product-list {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .product-list {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.product-list {
  background: #f9f7f0;
}
.product-list .product-list-sub {
  margin-bottom: 34px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0a4065;
  display: flex;
  align-items: center;
  gap: 18px;
}
.product-list .product-list-sub span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0a4065;
  color: transparent;
}
.product-list h2 {
  font-family: "Urbanist", sans-serif !important;
  font-weight: 600;
  font-size: 50px;
  line-height: 134%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .product-list h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.product-list h2 {
  color: #000;
  margin-bottom: 18px;
}
.product-list .product-list-deck {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #272727;
  margin-bottom: 54px;
}

.product-card {
  text-decoration: none;
  display: block;
  border-radius: 12px;
  padding: 34px 44px;
  background-image: url("/wp-content/uploads/2026/07/s-2-scaled.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 600px) {
  .product-card {
    padding: 24px;
  }
}
.product-card .product-card__badge-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.product-card .product-card__badge-wrapper .product-card__badge-wrapper-2 {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(15, 237, 200, 0.5);
  border-radius: 20px;
  padding: 5px 10px;
}
.product-card .product-card__badge-wrapper .product-card__badge-wrapper-2 .product-card__badge-icon {
  border-radius: 3px;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 8px 0 #17e3b8;
  background: #0fedc8;
  opacity: 0.97;
}
.product-card .product-card__badge-wrapper .product-card__badge-wrapper-2 .product-card__badge-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #0fedc8;
  font-family: "Urbanist", sans-serif;
}
.product-card .product-card__body {
  margin-top: 75px;
}
@media screen and (max-width: 600px) {
  .product-card .product-card__body {
    margin-top: 32px;
  }
}
.product-card .product-card__body h3 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.01em;
  color: #f9f7f0;
  margin-bottom: 18px;
}
.product-card .product-card__body .product-card__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: #f5f5f5;
  max-width: 668px;
  margin-bottom: 34px;
}
.product-card .product-card__tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.product-card .product-card__tags .product-card__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
}
.product-card .product-card__tags .product-card__tag .product-card__tag-icon {
  border-radius: 3px;
  width: 5px;
  height: 5px;
  background: #0fedc8;
}
.product-card .product-card__tags .product-card__tag .product-card__tag-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #f9f7f0;
}

.products-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.use-cases-second {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .use-cases-second {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.use-cases-second {
  background: #0a4065;
}
.use-cases-second .use-cases-second__kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0fedc8;
}
.use-cases-second .use-cases-second__kicker span {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  background: #0fedc8;
  color: transparent;
}
.use-cases-second h2 {
  font-family: "Urbanist", sans-serif !important;
  font-weight: 600;
  font-size: 50px;
  line-height: 134%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .use-cases-second h2 {
    font-size: 32px;
    line-height: 106%;
  }
}
.use-cases-second h2 {
  color: #fff;
  margin-bottom: 18px;
}
.use-cases-second .use-cases-second__header {
  display: flex;
  align-items: center;
  margin-bottom: 54px;
  justify-content: space-between;
}
@media screen and (max-width: 1162px) {
  .use-cases-second .use-cases-second__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
.use-cases-second .use-cases-second__header p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #f5f5f5;
}
.use-cases-second .use-cases-second__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-rows: 1fr;
}
@media screen and (max-width: 1162px) {
  .use-cases-second .use-cases-second__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 650px) {
  .use-cases-second .use-cases-second__grid {
    grid-template-columns: 1fr;
  }
}
.use-cases-second .use-cases-second__grid .use-cases-second__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  justify-content: space-between;
  min-height: 220px;
}
.use-cases-second .use-cases-second__grid .use-cases-second__card:has(.use-cases-second__card-p) {
  justify-content: flex-start;
}
@media screen and (max-width: 1162px) {
  .use-cases-second .use-cases-second__grid .use-cases-second__card {
    padding: 24px;
    gap: 32px;
  }
}
.use-cases-second .use-cases-second__grid .use-cases-second__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #064b75 0%, #08799b 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.use-cases-second .use-cases-second__grid .use-cases-second__card img {
  height: 44px;
  width: 44px;
  margin-bottom: 18px;
}
.use-cases-second .use-cases-second__grid .use-cases-second__card .use-cases-second__card-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 121%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 500px) {
  .use-cases-second .use-cases-second__grid .use-cases-second__card .use-cases-second__card-title {
    font-size: 26px;
    line-height: 131%;
  }
}
.use-cases-second .use-cases-second__grid .use-cases-second__card .use-cases-second__card-title {
  color: #fff;
}
@media screen and (max-width: 1162px) {
  .use-cases-second .use-cases-second__grid .use-cases-second__card .use-cases-second__card-title {
    font-size: 24px;
  }
}
.use-cases-second .use-cases-second__grid .use-cases-second__card .use-cases-second__card-p {
  margin-top: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: #f5f5f5;
}
.use-cases-second .use-cases-second__grid .use-cases-second__card:hover::before {
  opacity: 1;
}
.use-cases-second .use-cases-second__grid .use-cases-second__card:has(.use-cases-second__card-p) .use-cases-second__card-title {
  font-size: 26px !important;
}
.use-cases-second .use-cases-second-last-cont {
  border: 1px solid #0fedc8;
  border-radius: 12px;
  padding: 24px;
  background: rgba(15, 237, 200, 0.12);
  margin-top: 24px;
}
.use-cases-second .use-cases-second-last-cont .use-cases-second-last-contp1 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 12px;
}
.use-cases-second .use-cases-second-last-cont .use-cases-second-last-contp2 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: #f5f5f5;
}
.use-cases-second .use-cases-second-last-cont .use-cases-second-last-contp2 a {
  color: #0fedc8;
}
.use-cases-second .use-cases-second__btn-2 {
  margin-top: 34px;
}

.use-cases-second__card {
  position: relative;
}
.use-cases-second__card .use-cases-second__card-title a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.editor-styles-wrapper .use-cases-second__card .use-cases-second__card-title a::after {
  display: none !important;
}

.product-deployment {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .product-deployment {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.product-deployment {
  background: #f9f7f0;
}
.product-deployment .product-deployment__kicker {
  color: #0a4065;
}
.product-deployment .product-deployment__kicker span {
  color: #0a4065 !important;
}
.product-deployment h2 {
  margin-bottom: 18px;
}
.product-deployment .product-deployment__description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #272727;
}
.product-deployment .product-deployment__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 813px) {
  .product-deployment .product-deployment__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
.product-deployment .product-deployment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
  margin-bottom: 34px;
}
@media screen and (max-width: 813px) {
  .product-deployment .product-deployment__grid {
    grid-template-columns: 1fr;
  }
}
.product-deployment .product-deployment__grid .product-deployment__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
}
.product-deployment .product-deployment__grid .product-deployment__card .product-deployment__card-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 132%;
  letter-spacing: -0.01em;
  color: #000;
}
.product-deployment .product-deployment__grid .product-deployment__card img {
  width: 44px;
  height: 44px;
}
.product-deployment .product-deployment__tech-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.product-deployment .product-deployment__tech-list p {
  display: flex;
  align-items: center;
  color: #000;
  gap: 8px;
  border-radius: 4px;
  padding: 8px 27px;
  background: #ede8d9;
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-transform: none;
}
.product-deployment .product-deployment__tech-list p::after {
  content: "";
  width: 5px;
  height: 5px;
  background: #0fedc8;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  border-radius: 100%;
}

.product-deployment__tech-list-span-500 {
  font-family: "Inter", sans-serif !important;
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 137% !important;
  letter-spacing: -0.01em !important;
  color: #000 !important;
  background: none !important;
  padding: 0 !important;
}
.product-deployment__tech-list-span-500::after {
  background: none !important;
  width: 0 !important;
  height: 0 !important;
}

.product-deployment__card {
  position: relative;
}
.product-deployment__card .product-deployment__card-title a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.editor-styles-wrapper .product-deployment__card .product-deployment__card-title a::after {
  display: none !important;
}

.product-dubble-grid {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .product-dubble-grid {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.product-dubble-grid {
  background: #f9f7f0;
}

.product-dubble-grid__intro {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.product-dubble-grid__intro .product-dubble-grid__intro-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
}
.product-dubble-grid__intro .product-dubble-grid__intro-promo-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 14px;
  line-height: 118%;
  text-transform: none;
  display: block;
}
.product-dubble-grid__intro a {
  color: #000;
}

.product-dubble-grid__stats-title,
.product-dubble-grid__pain-points-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  color: #000;
}

.product-dubble-grid__stats-text,
.product-dubble-grid__pain-points-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: #000;
}

.product-dubble-grid__pain-points-icon,
.product-dubble-grid__stats-icon {
  width: 44px;
  height: 44px;
}

.product-dubble-grid__stats-grid,
.product-dubble-grid__pain-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-dubble-grid__pain-points-item,
.product-dubble-grid__stats-item {
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.product-dubble-grid__stats-item {
  display: flex;
  gap: 12px;
}
.product-dubble-grid__stats-item figure img {
  width: 44px;
  height: 44px;
  min-width: 44px;
}

.product-dubble-grid__pain-points-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 132%;
  letter-spacing: -0.01em;
  color: #000;
}
.product-dubble-grid__pain-points-header span {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 132%;
  letter-spacing: -0.01em;
  color: #000;
}

.product-dubble-grid__pain-points-summary {
  display: flex;
  align-items: flex-end;
}
.product-dubble-grid__pain-points-summary p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
  line-height: 137%;
}

.product-dubble-grid__transition {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
  border-left: 4px solid #0fedc8;
  border-radius: 0 8px 8px 0;
  padding: 24px 20px;
  background: #ede8d9;
  margin: 34px 0;
}

.text-18-500-fg,
.text-18-500-fgg {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 137%;
  letter-spacing: -0.01em;
  color: #000;
}

.text-18-500-fg {
  margin-top: 54px;
  max-width: 879px;
}

.text-18-500-fgg {
  max-width: 644px;
  margin-top: 18px;
}

.editor-styles-wrapper .wp-block-group .components-placeholder,
.editor-styles-wrapper .wp-block-group .wp-block-group-placeholder {
  display: none !important;
}

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